diff --git a/parse/train/B1xSperKvH/B1xSperKvH.md b/parse/train/B1xSperKvH/B1xSperKvH.md new file mode 100644 index 0000000000000000000000000000000000000000..f27218d03374e6b37cb3bf8db13a9d74bcee2696 --- /dev/null +++ b/parse/train/B1xSperKvH/B1xSperKvH.md @@ -0,0 +1,252 @@ +# ENABLING DEEP SPIKING NEURAL NETWORKSWITH HYBRID CONVERSION AND SPIKE TIMINGDEPENDENT BACKPROPAGATION + +Nitin Rathi1, Gopalakrishnan Srinivasan1, Priyadarshini Panda2 & Kaushik Roy1 + +1School of Electrical and Computer Engineering, Purdue University 2Department of Electrical Engineering, Yale University {rathi2, srinivg}@purdue.edu, priya.panda@yale.edu, kaushik@purdue.edu + +# ABSTRACT + +Spiking Neural Networks (SNNs) operate with asynchronous discrete events (or spikes) which can potentially lead to higher energy-efficiency in neuromorphic hardware implementations. Many works have shown that an SNN for inference can be formed by copying the weights from a trained Artificial Neural Network (ANN) and setting the firing threshold for each layer as the maximum input received in that layer. These type of converted SNNs require a large number of time steps to achieve competitive accuracy which diminishes the energy savings. The number of time steps can be reduced by training SNNs with spike-based backpropagation from scratch, but that is computationally expensive and slow. To address these challenges, we present a computationally-efficient training technique for deep SNNs1. We propose a hybrid training methodology: 1) take a converted SNN and use its weights and thresholds as an initialization step for spike-based backpropagation, and 2) perform incremental spike-timing dependent backpropagation (STDB) on this carefully initialized network to obtain an SNN that converges within few epochs and requires fewer time steps for input processing. STDB is performed with a novel surrogate gradient function defined using neuron’s spike time. The weight update is proportional to the difference in spike timing between the current time step and the most recent time step the neuron generated an output spike. The SNNs trained with our hybrid conversion-and-STDB training perform at $1 0 \times - 2 5 \times$ fewer number of time steps and achieve similar accuracy compared to purely converted SNNs. The proposed training methodology converges in less than 20 epochs of spike-based backpropagation for most standard image classification datasets, thereby greatly reducing the training complexity compared to training SNNs from scratch. We perform experiments on CIFAR-10, CIFAR-100 and ImageNet datasets for both VGG and ResNet architectures. We achieve top-1 accuracy of $6 5 . 1 9 \%$ for ImageNet dataset on SNN with 250 time steps, which is $1 0 \times$ faster compared to converted SNNs with similar accuracy. + +# 1 INTRODUCTION + +In recent years, Spiking Neural Networks (SNNs) have shown promise towards enabling low-power machine intelligence with event-driven neuromorphic hardware. Founded on bio-plausibility, the neurons in an SNN compute and communicate information through discrete binary events (or spikes) a significant shift from the standard artificial neural networks (ANNs), which process data in a real-valued (or analog) manner. The binary all-or-nothing spike-based communication combined with sparse temporal processing precisely make SNNs a low-power alternative to conventional ANNs. With all its appeal for power efficiency, training SNNs still remains a challenge. The discontinuous and non-differentiable nature of a spiking neuron (generally, modeled as leaky-integrate-and-fire (LIF), or integrate-and-fire (IF)) poses difficulty to conduct gradient descent based backpropagation. Practically, SNNs still lag behind ANNs, in terms of performance or accuracy, in traditional learning tasks. Consequently, there has been several works over the past few years that propose different learning algorithms or learning rules for implementing deep convolutional SNNs for complex visual recognition tasks (Wu et al., 2019; Hunsberger & Eliasmith, 2015; Cao et al., 2015). Of all the techniques, conversion from ANN-to-SNN (Diehl et al., 2016; 2015; Sengupta et al., 2019; Hunsberger & Eliasmith, 2015) has yielded state-of-the-art accuracies matching deep ANN performance for Imagenet dataset on complex architectures (such as, VGG (Simonyan & Zisserman, 2014) and ResNet (He et al., 2016) ). In conversion, we train an ANN with ReLU neurons using gradient descent and then convert the ANN to an SNN with IF neurons by using suitable threshold balancing (Sengupta et al., 2019). But, SNNs obtained through conversion incur large latency of 2000−2500 time steps (measured as total number of time steps required to process a given input image2). The term ‘time step’ defines an unit of time required to process a single input spike across all layers and represents the network latency. The large latency translates to higher energy consumption during inference, thereby, diminishing the efficiency improvements of SNNs over ANNs. To reduce the latency, spike-based backpropagation rules have been proposed that perform end-to-end gradient descent training on spike data. In spike-based backpropagation methods, the non-differentiability of the spiking neuron is handled by either approximating the spiking neuron model as continuous and differentiable (Huh & Sejnowski, 2018) or by defining a surrogate gradient as a continuous approximation of the real gradient (Wu et al., 2018; Bellec et al., 2018; Neftci et al., 2019). Spike-based SNN training reduces the overall latency by ${ \sim } 1 0 \times$ (for instance, $2 0 0 \mathrm { ~ - ~ } 2 5 0$ time steps required to process an input (Lee et al., 2019)) but requires more training effort (in terms of total training iterations) than conversion approaches. A single feed-forward pass in ANN corresponds to multiple forward passes in SNN which is proportional to the number of time steps. In spike-based backpropagation, the backward pass requires the gradients to be integrated over the total number of time steps that increases the computation and memory complexity. The multiple-iteration training effort with exploding memory requirement (for backward pass computations) has limited the applicability of spike-based backpropagation methods to small datasets (like CIFAR10) on simple few-layered convolutional architectures. + +In this work, we propose a hybrid training technique which combines ANN-SNN conversion and spike-based backpropagation that reduces the overall latency as well as decreases the training effort for convergence. We use ANN-SNN conversion as an initialization step followed by spike-based backpropagation incremental training (that converges to optimal accuracy with few epochs due to the precursory initialization). Essentially, our hybrid approach of taking a converted SNN and incrementally training it using backpropagation yields improved energy-efficiency as well as higher accuracy than a model trained from scratch with only conversion or only spike-based backpropagation. + +In summary, this paper makes the following contributions: + +• We introduce a hybrid computationally-efficient training methodology for deep SNNs. We use the weights and firing thresholds of an SNN converted from an ANN as the initialization step for spike-based backpropagation. We then train this initialized network with spike-based backpropagation for few epochs to perform inference at a reduced latency or time steps. We propose a novel spike time-dependent backpropagation (STDB, a variant of standard spike-based backpropagation) that computes surrogate gradient using neuron’s spike time. The parameter update is triggered by the occurrence of spike and the gradient is computed based on the time difference between the current time step and the most recent time step the neuron generated an output spike. This is motivated from the Hebb’s principle which states that the plasticity of a synapse is dependent on the spiking activity of the neurons connected to the synapse. Our hybrid approach with the novel surrogate gradient descent allows training of large-scale SNNs without exploding memory required during spike-based backpropagation. We evaluate our hybrid approach on large SNNs (VGG, ResNet-like architectures) on + +Imagenet, CIFAR datasets and show near iso-accuracy compared to similar ANNs and converted SNNs at lower compute cost and energy. + +# 2 SPIKE TIMING DEPENDENT BACKPROPAGATION (STDB) + +In this section, we describe the spiking neuron model, derive the equations for the proposed surrogate gradient based learning, present the weight initialization method for SNN, discuss the constraints applied for ANN-SNN conversion, and summarize the overall training methodology. + +# 2.1 LEAKY INTEGRATE AND FIRE (LIF) NEURON MODEL + +The neuron model defines the dynamics of the neuron’s internal state and the trigger for it to generate a spike. The differential equation + +$$ +\tau \frac { d U } { d t } = - ( U - U _ { r e s t } ) + R I +$$ + +![](images/7c4a28ea13d64064dc648e47aca903dfa249118653d5d33be93a1c4056719f2e.jpg) +Figure 1: Surrogate gradient of the spiking neuron activation function (Eq. 11). $\alpha = 0 . 3 , \beta = 0 . 0 1$ . The gradient is computed for each neuron and $\Delta t$ defines the time difference between current simulation time and the last spike time of the neuron. For example, if a neuron spikes at $t _ { s } = 1 2$ its gradient will be maximum at $t = 1 2 ( \Delta t = 0 )$ and gradually decrease for later time steps. If the same neuron spikes later at $t _ { s } = 2 4$ its previous spike history will be overwritten and the gradient computation for $t = 2 4$ onward will only consider the most recent spike. This avoids the overhead of storing all the spike history in memory. + +is widely used to characterize the leaky-integrate-and-fire (LIF) neuron model where, $U$ is the internal state of the neuron referred as the membrane potential, $U _ { r e s t }$ is the resting potential, $R$ and $I$ are the input resistance and the current, respectively. The above equation is valid when the membrane potential is below the threshold value $( V )$ . The neuron geneartes an output spike when $U { \geqslant } V$ + +and $U$ is reduced to the reset potential. This representation is described in continuous domain and more suitable for biological simulations. We modify the equation to be evaluated in a discrete manner in the Pytorch framework ( $\mathrm { W u }$ et al., 2018). The iterative model for a single post-neuron is described by + +$$ +u _ { i } ^ { t } = \lambda u _ { i } ^ { t - 1 } + \sum _ { j } w _ { i j } o _ { j } ^ { t } - v o _ { i } ^ { t - 1 } +$$ + +$$ +o _ { i } ^ { t - 1 } = \left\{ { \begin{array} { l l } { 1 , } & { { \mathrm { i f ~ } } u _ { i } ^ { t - 1 } > v } \\ { 0 , } & { { \mathrm { o t h e r w i s e } } } \end{array} } \right. +$$ + +where $u$ is the membrane potential, subscript $i$ and $j$ represent the post- and pre-neuron, respectively, superscript $t$ is the time step, $\lambda$ is a constant $( < 1 )$ responsible for the leak in membrane potential, $w$ is the weight connecting the pre- and post-neuron, $o$ is the binary output spike, and $v$ is the firing threshold potential. The right hand side of Equation 2 has three terms: the first term calculates the leak in the membrane potential from the previous time step, the second term integrates the input from the previous layer and adds it to the membrane potential, and the third term which is outside the summation reduces the membrane potential by the threshold value if a spike is generated. This is known as soft reset as the membrane potential is lowered by $v$ compared to hard reset where the membrane potential is reduced to the reset value. Soft reset enables the spiking neuron to carry forward the excess potential above the firing threshold to the following time step, thereby minimizing information loss. + +
Algorithm 1 ANN-SNN conversion: initialization of weights and threshold voltages Input: Trained ANN model (A), SNN model (N), Input (X) // Copy ann weights to snn
for l=1 to L do |Ni.W ← A.W end // Initialize threshold voltage to O V ←[0,·…·,0]L-1 for l=1 to L-1 do c↑0 for t=1 to T do
Ot ← PoissonGenerator(X) for k=1 to l do ifk<l then // Forward (Algorithm 3) end
else // Pre-nonlinearity (A) A ← Nt(O-1) if max(A) > v then v ←max(A) end end end
+ +
Algorithm 2 Initialize the neuron parameters. Membrane potential (U),last spike time(S), dropout mask (M).The initialization is performed once for everymini-batch.
Input: Input(X), network model(N) b_size=X.b_size h=X.height w=X.width for l=1 to L do
if isintance(Ni,Conv) then Ut = zeros(b_size,Ni.out,h,w) St = ones(b_size,Ni.out,h,w) * (-1000) end elseif isintance(Nt,Linear) then Ut = zeros(b_size,Ni.out) St = ones(b_size,Ni.out) *(-1000)
end else if isintance(Ni,Dropout) then // Generate the dropout map that will be fixed for all time steps Mt = Ni(ones(Ut-1.shape)) end else ifisintance(Ni,AugPool) then //Reduce the width and height after average pooling layer h=h//kernel_size w=w//kernel_size end
+ +# 2.2 SPIKE TIMING DEPENDENT BACKPROPAGATION (STDB) LEARNING RULE + +The neuron dynamics (Equation 2) show that the neuron’s state at a particular time step recurrently depends on its state in previous time steps. This introduces implicit recurrent connections in the network (Neftci et al., 2019). Therefore, the learning rule has to perform the temporal credit assignment along with the spatial credit assignment. Credit assignment refers to the process of assigning credit or blame to the network parameters according to their contribution to the loss function. Spatial credit assignment identifies structural network parameters (like weights), whereas temporal credit assignment determines which past network activities contributed to the loss function. Gradient-descent learning solves both credit assignment problem: spatial credit assignment is performed by distributing error spatially across all layers using the chain rule of derivatives, and temporal credit assignment is done by unrolling the network in time and performing backpropagation through time (BPTT) using the same chain rule of derivatives (Werbos et al., 1990). In BPTT, the network is unrolled for all time steps and the final output is computed as the sum of outputs from each time step. The loss function is defined on the summed output. + +The dynamics of the neuron in the output layer is described by Equation (4), where the leak part is removed $\lambda = 1$ ) and the neuron only integrates the input without firing. This eliminates the difficulty of defining the loss function on spike count (Lee et al., 2019). + +$$ +u _ { i } ^ { t } = u _ { i } ^ { t - 1 } + \sum _ { j } w _ { i j } o _ { j } +$$ + +The number of neurons in the output layer is the same as the number of categories in the classification task. The output of the network is passed through a softmax layer that outputs a probability distribution. The loss function is defined as the cross-entropy between the true output and the + +network’s predicted distribution. + +$$ +\begin{array} { c } { L = - \displaystyle \sum _ { i } y _ { i } l o g ( p _ { i } ) } \\ { p _ { i } = \displaystyle \frac { e ^ { u _ { i } ^ { T } } } { \sum _ { k = 1 } ^ { N } e ^ { u _ { k } ^ { T } } } } \end{array} +$$ + +$L$ is the loss function, $y$ the true output, $p$ the prediction, $T$ the total number of time steps, $u ^ { T }$ the accumulated membrane potential of the neuron in the output layer from all time steps, and $N$ the number of categories in the task. For deeper networks and large number of time steps the truncated version of the BPTT algorithm is used to avoid memory issues. In the truncated version the loss is computed at some time step $t ^ { \prime }$ before $\mathrm { T }$ based on the potential accumulated till $t ^ { \prime }$ . The loss is backpropagated to all layers and the loss gradients are computed and stored. At this point, the history of the computational graph is cleaned to save memory. The subsequent computation of loss gradients at later time steps $( 2 t ^ { \prime } , 3 t ^ { \prime } , . . . T )$ are summed together with the gradient at $t ^ { \prime }$ to get the final gradient. The optimizer updates the parameters at $T$ based on the sum of the gradients. Gradient descent learning has the objective of minimizing the loss function. This is achieved by backpropagating the error and updating the parameters opposite to the direction of the derivative. The derivative of the loss function w.r.t. to the membrane potential of the neuron in the final layer is described by, + +$$ +\frac { \partial L } { \partial u _ { i } ^ { T } } = p _ { i } - y _ { i } +$$ + +To compute the gradient at current time step, the membrane potential at last time step $( u _ { i } ^ { t - 1 }$ in Equation 4) is considered as an input quantity. Therefore, gradient descent updates the network parameters $W _ { i j }$ of the output layer as, + +$$ +W _ { i j } = W _ { i j } - \eta \Delta W _ { i j } +$$ + +$$ +\Delta W _ { i j } = \sum _ { t } { \frac { \partial L } { \partial W _ { i j } ^ { t } } } = \sum _ { t } { \frac { \partial L } { \partial u _ { i } ^ { T } } } { \frac { \partial u _ { i } ^ { T } } { \partial W _ { i j } ^ { t } } } = { \frac { \partial L } { \partial u _ { i } ^ { T } } } \sum _ { t } { \frac { \partial u _ { i } ^ { T } } { \partial W _ { i j } ^ { t } } } +$$ + +where $\eta$ is the learning rate, and ${ W } _ { i j } ^ { t }$ represents the copy of the weight used for computation at time step $t$ . In the output layer the neurons do not generate a spike, and hence, the issue of non-differentiability is not encountered. The update of the hidden layer parameters is described by, + +$$ +\Delta W _ { i j } = \sum _ { t } { \frac { \partial L } { \partial W _ { i j } ^ { t } } } = \sum _ { t } { \frac { \partial L } { \partial o _ { i } ^ { t } } } { \frac { \partial o _ { i } ^ { t } } { \partial u _ { i } ^ { t } } } { \frac { \partial u _ { i } ^ { t } } { \partial W _ { i j } ^ { t } } } +$$ + +where $o _ { i } ^ { t }$ is the thresholding function (Equation 3) whose derivative w.r.t to $u _ { i } ^ { t }$ is zero everywhere and not defined at the time of spike. The challenge of discontinuous spiking nonlinearity is resolved by introducing a surrogate gradient which is the continuous approximation of the real gradient. + +$$ +\frac { \partial o _ { i } ^ { t } } { \partial u _ { i } ^ { t } } = \alpha e ^ { - \beta \Delta t } +$$ + +where $\alpha$ and $\beta$ are constants, $\Delta t$ is the time difference between the current time step $\mathbf { \rho } ( t )$ and the last time step the post-neuron generated a spike $( t _ { s } )$ . It is an integer value whose range is from zero to the total number of time steps $( T )$ . + +$$ +\Delta t = ( t - t _ { s } ) , 0 < \Delta t < T , \Delta t \epsilon \mathbb { Z } +$$ + +The values of $\alpha$ and $\beta$ are selected depending on the value of $T$ . If $T$ is large $\beta$ is lowered to reduce the exponential decay so a spike can contribute towards gradients for later time steps. The value of $\alpha$ is also reduced for large $T$ because the gradient can propagate through many time steps. The gradient is summed at each time step and thus a large $\alpha$ may lead to exploding gradient. The surrogate gradient can be pre-computed for all values of $\Delta t$ and stored in a look-up table for faster computation. The parameter updates are triggered by the spiking activity but the error gradients are still non-zero for time steps following the spike time. This enables the algorithm to avoid the ‘dead + +Algorithm 3 Training an SNN with surrogate gradient computed with spike timing. The network is composed of $L$ layers. The training proceeds with mini-batch size (batch size) + +Input: Mini-batch of input $( X )$ - target $( Y )$ pairs, network model $( N )$ , initial weights $( W )$ , threshold voltage $( V )$ +$U , S , M = I$ nitializeNeuronP arameter $s ( X )$ [Algorithm 2] +// Forward propagation +for $t { = } I$ to $T$ do $O _ { 0 } ^ { t } = P o i s s o n G e n e r a t o r ( X )$ for $l { = } l$ to L-1 do if isintanc $e ( N _ { l } , [ C o n v , L i n e a r ] )$ then // accumulate the output of previous layer in $U$ , soft reset when spike occurs $\begin{array} { r } { U _ { l } ^ { t } = \lambda U _ { l } ^ { t - 1 } + W _ { l } \dot { O } _ { l - 1 } ^ { t } - V _ { l } * O _ { l } ^ { t - 1 } } \end{array}$ ? // generate the output $( + 1 )$ if $U$ exceeds $V$ $\hat { O _ { l } ^ { t } } = S T D B ( U _ { l } ^ { t } , V _ { l } , t )$ $/ /$ store the latest spike times for each neuron $S _ { l } ^ { t } [ O _ { l } ^ { t } = = 1 ] = t$ end else if isintance ${ \mathrm { : } } ( N _ { l } , A v g P o o l )$ then $O _ { l } ^ { t } = N _ { l } ( O _ { l - 1 } ^ { t } )$ end else if isintance $( N _ { l } , D r o p o u t )$ then $O _ { l } ^ { t } = O _ { l - 1 } ^ { t } * M _ { l }$ end end $U _ { L } ^ { t } = \lambda U _ { L } ^ { t - 1 } + W _ { L } O _ { L - 1 } ^ { t }$ +end +// Backward Propagation +Compute $\frac { \partial L } { \partial U _ { L } }$ from the cross-entropy loss function using BPTT +for $t { = } T$ to $^ { l }$ do for $\scriptstyle { l = L - I }$ to 1 do Compute $\frac { \partial L } { \partial O _ { l } ^ { t } }$ based on if $N _ { l }$ is linear, conv, pooling, etc. $\begin{array} { r } { \frac { \partial L } { \partial U _ { l } ^ { t } } = \frac { \partial L } { \partial O _ { l } ^ { t } } \frac { \partial O _ { l } ^ { t } } { \partial U _ { l } ^ { t } } = \frac { \partial L } { \partial O _ { l } ^ { t } } \ast \alpha e ^ { - \beta S _ { l } ^ { t } } } \end{array}$ end +end + +neuron’ problem, where no learning happens when there is no spike. Fig. 1 shows the activation gradient for different values of $\Delta t$ , the gradient decreases exponentially for neurons that have not been active for a long time. In Hebbian models of biological learning, the parameter update is activity dependent. This is experimentally observed in spike-timing-dependent plasticity (STDP) learning rule which modulates the weights for pair of neurons that spike within a time window (Song et al., 2000). + +# 3 SNN WEIGHT INITIALIZATION + +A prevalent method of constructing SNNs for inference is ANN-SNN conversion (Diehl et al., 2015; Sengupta et al., 2019). Since the network is trained with analog activations it does not suffer from the non-differentiablity issue and can leverage the training techniques of ANNs. The conversion process has a major drawback: it suffers from long inference latency ( $\mathrm { \sim 2 5 0 0 }$ time steps) as mentioned in Section 1. As there is no provision to optimize the parameters after conversion based on spiking activity, the network can not leverage the temporal information of the spikes. In this work, we propose to use the conversion process as an initialization technique for STDB. The converted weights and thresholds serve as a good initialization for the optimizer and the STDB learning rule is applied for temporal and spatial credit assignment. + +Algorithm 1 explains the ANN-SNN conversion process. The threshold voltages in SNN needs to be adjusted based on the ANN weights. Sengupta et al. (2019) showed two ways to achieve this: weight-normalization and threshold-balancing. In weight-normalization the weights are scaled by a normalization factor and threshold is set to 1, whereas in threshold-balancing the weights are unchanged and the threshold is set to the normalization factor. Both have a similar effect and either can be used to set the threshold. We employ the threshold-balancing method and the normalization factor is calculated as the maximum output of the corresponding convolution/linear layer in SNN. The maximum is calculated over a mini-batch of input for all time steps. + +There are several constraints imposed on training the ANN for the conversion process (Sengupta et al., 2019; Diehl et al., 2015). The neurons are trained without the bias term because the bias term in SNN has an indirect effect on the threshold voltage which increases the difficulty of threshold balancing and the process becomes more prone to conversion loss. The absence of bias term eliminates the use of Batch Normalization (Ioffe & Szegedy, 2015) as a regularizer in ANN since it biases the input of each layer to have zero mean. As an alternative, Dropout (Srivastava et al., 2014) is used as a regularizer for both ANN and SNN training. The implementation of Dropout in SNN is further discussed in Section 5. The pooling operation is widely used in ANN to reduce the convolution map size. There are two popular variants: max pooling and average pooling (Boureau et al., 2010). Max (Average) pooling outputs the maximum (average) value in the kernel space of the neuron’s activations. In SNN, the activations are binary and performing max pooling will result in significant information loss for the next layer, so we adopt the average pooling for both ANN and SNN (Diehl et al., 2015). + +# 4 NETWORK ARCHITECTURES + +![](images/31821489c1dc4301bde516e227360d788e26a0deac85ccef825dbbbadc225416.jpg) +Figure 2: Residual architecture for SNN + +In this section, we describe the changes made to the VGG (Simonyan & Zisserman, 2014) and residual architecture (He et al., 2016) for hybrid learning and discuss the process of threshold computation for both the architectures. + +# 4.1 VGG ARCHITECTURE + +The threshold balancing is performed for all layers except the input and output layer in a VGG architecture. For every hidden convolution/linear layer the maximum input3 to the neuron is computed over all time steps and set as threshold for that layer. The threshold assignment is done sequentially as described in Algorithm 1. The threshold computation for all layers can not be performed in parallel (in one forward pass) because in the forward method (Algorithm 3) we need the threshold at each time step to decide if the neuron should spike or not. + +# 4.2 RESIDUAL ARCHITECTURE + +Residual architectures introduce shortcut connections between layers that are not next to each other. In order to minimize the ANN-SNN conversion loss various considerations were made by Sengupta et al. (2019). The original residual architecture proposed by He et al. (2016) uses an initial convolution layer with wide kernel $( 7 \times 7$ , stride 2). For conversion, this is replaced by a pre-processing block consisting of a series of three convolution layer $( 3 \times 3$ , stride 1) with dropout layer in between (Fig. 2). The threshold balancing mechanism is applied to only these three layers and the layers in the basic block have unity threshold. + +Table 1: Classification results (Top-1) for CIFAR10, CIFAR100 and ImageNet data sets. Column-1 shows the network architecture. Column-2 shows the ANN accuracy when trained under the constraints as described in Section 3. Column-3 shows the SNN accuracy for $T \ : = \ : 2 5 0 0$ when converted from a ANN with threshold balancing. Column-4 shows the performance of the same converted SNN with lower time steps and adjusted thresholds. Column-5 shows the performance after training the Column-4 network with STDB for less than 20 epochs. + +
ArchitectureANNANN-SNNConversion(T = 2500)ANN-SNNConversion (reduced time steps)Hybrid Training(ANN-SNN Conversion+ STDB)
CIFAR10
VGG587.88%87.64%84.56% (T = 75)86.91% (T = 75)
VGG991.45%90.98%87.31% (T = 100)90.54% (T = 100)
VGG1692.81%92.48%90.2% (T = 100)91.13% (T = 100)
ResNet891.35%91.12%89.5% (T = 200)91.35% (T = 200)
ResNet2093.15%92.94%91.12% (T = 250)92.22% (T = 250)
CIFAR100
VGG1171.21%70.94%65.52% (T = 125)67.87% (T = 125)
ImageNet
ResNet3470.2%65.1%56.87% (T = 250)61.48% (T = 250)
VGG1669.35%68.12%62.73% (T= 250)65.19% (T = 250)
+ +# 5 OVERALL TRAINING ALGORITHM + +Algorithm 1 defines the process to initialize the parameters (weights, thresholds) of SNN based on ANN-SNN conversion. Algorithm 2 and 3 show the mechanism of training the SNN with STDB. Algorithm 2 initializes the neuron parameters for every mini-batch, whereas Algorithm 3 performs the forward and backward propagation and computes the credit assignment. The threshold voltage for all neurons in a layer is same and is not altered in the training process. For each dropout layer we initialize a mask $( M )$ for every mini-batch of inputs. The function of dropout is to randomly drop a certain number of inputs in order to avoid overfitting. In case of SNN, inputs are represented as a spike train and we want to keep the dropout units same for the entire duration of the input. Thus, a random mask $( M )$ is initialized (Algorithm 2) for every mini-batch and the input is element-wise multiplied with the mask to generate the output of the dropout layer (Lee et al., 2019). The Poisson generator function outputs a Poisson spike train with rate proportional to the pixel value in the input. A random number is generated at every time step for each pixel in the input image. The random number is compared with the normalized pixel value and if the random number is less than the pixel value an output spike is generated. This results in a Poisson spike train with rate equivalent to the pixel value if averaged over a long time. The weighted sum of the input is accumulated in the membrane potential of the first convolution layer. The STDB function compares the membrane potential and the threshold of that layer to generate an output spike. The neurons that output a spike their corresponding entry in $S$ is updated with current time step (t). The last spike time is initialized with a large negative number (Algorithm 2) to denote that at the beginning the last spike happened at negative infinity time. This is repeated for all layers until the last layer. For last layer the inputs are accumulated over all time steps and passed through a softmax layer to compute the multi-class probability. The cross-entropy loss function is defined on the output of the softmax and the weights are updated by performing the temporal and spatial credit assignment according to the STDB rule. + +# 6 EXPERIMENTS + +We tested the proposed training mechanism on image classification tasks from CIFAR (Krizhevsky et al., 2009) and ImageNet (Deng et al., 2009) datasets. The results are summarized in Table 1. + +![](images/e3e63b533127c274de9937dff4bafa08dd1a34b21cf2cf9cdff0fbbaa024595c.jpg) +Figure 3: Average number of spikes for each layer in a VGG16 architecture for purely converted SNN and SNN trained with hybrid technique. The converted SNN and SNN trained with hybrid technique achieve an accuracy of $8 9 . 2 0 \%$ and $9 1 . 8 7 \%$ , respectively, for the randomly selected 1500 samples from the test set. Both the networks were inferred for 100 time steps and $\mathbf { \epsilon } \cdot \mathbf { \gamma } _ { \mathbf { V } } \mathbf { \epsilon } )$ represents the threshold voltage for each layer obtained during the conversion process (Algorithm 1). + +CIFAR10: The dataset consists of labeled 60, 000 images of 10 categories divided into training (50, 000) and testing (10, 000) set. The images are of size $3 2 \times 3 2$ with RGB channels. + +CIFAR100: The dataset is similar to CIFAR10 except that it has 100 categories. + +ImageNet: The dataset comprises of labeled high-resolution 1.2 million training images and 50, 000 validation images with 1000 categories. + +# 7 ENERGY-DELAY PRODUCT ANALYSIS OF SNNS + +A single spike in an SNN consumes a constant amount of energy (Cao et al., 2015). The first order analysis of energy-delay product of an SNN is dependent on the number of spikes and the total number of time steps. Fig. 3 shows the average number of spikes in each layer when evaluated for 1500 samples from CIFAR10 testset for VGG16 architecture. The average is computed by summing all the spikes in a layer over 100 time steps and dividing by the number of neurons in that layer. For example, the average number of spikes in the $1 0 ^ { t h }$ layer is 5.8 for both the networks, which implies that over a 100 time step period each neuron in that layer spikes 5.8 times on average over all input samples. Higher spiking activity corresponds to lower energy-efficiency. The average number of spikes is compared for a converted SNN and SNN trained with conversion-and-STDB. The SNN trained with conversion-and-STDB has $1 . 5 \times$ less number of average spikes over all layers under iso conditions (time steps, threshold voltages, inputs, etc.) and achieves higher accuracy compared to the converted SNN. The converted SNNs when simulated for larger time steps further degrade the energy-delay product with minimal increase in accuracy (Sengupta et al., 2019). + +# 8 RELATED WORK + +Bohte et al. (2000) proposed a method to directly train on SNN by keeping track of the membrane potential of spiking neurons only at spike times and backpropagating the error at spike times based on only the membrane potential. This method is not suitable for networks with sparse activity due to the ‘dead neuron’ problem: no learning happens when the neurons do not spike. In our work, we need one spike for the learning to start but gradient contribution continues in later time steps as shown in Fig. 1. Zenke & Ganguli (2018) derived a surrogate gradient based method on the membrane potential of a spiking neuron at a single time step only. The error was backpropagated at only one time step and only the input at that time step contributed to the gradient. This method neglects the effect of earlier spike inputs. In our approach, the error is backpropagated for every time step and the weight update is performed on the gradients summed over all time steps. Shrestha & Orchard (2018) proposed a gradient function similar to the one proposed in this work. They used the difference between the membrane potential and the threshold to compute the gradient compared to the difference in spike timing used in this work. The membrane potential is a continuous value whereas the spike time is an integer value bounded by the number of time steps. Therefore, gradients that depend on spike time can be pre-computed and stored in a look-up table for faster computation. They evaluated their approach on shallow architectures with two convolution layer for MNIST dataset. In this work, we trained deep SNNs with multiple stacked layers for complex calssification tasks. Wu et al. (2018) performed backpropagation through time on SNN with a surrogate gradient defined on the membrane potential. The surrogate gradient was defined as piece-wise linear or exponential function of the membrane potential. The other surrogate gradients proposed in the literature are all computed on the membrane potential (Neftci et al., 2019). Lee et al. (2019) approximated the neuron output as continuous low-pass filtered spike train. They used this approximated continuous value to perform backpropagation. Most of the works in the literature on direct training of SNN or conversion based methods have been evaluated on shallow architectures for simple classification problems. In Table 2 we compare our model with the models that reported accuracy on CIFAR10 and ImageNet dataset. Wu et al. (2019) achieved convergence in 12 time steps by using a dedicated encoding layer to capture the input precision. It is beyond the scope of this work to compute the hardware and energy implications of such encoding layer. Our model performs better than all other models at far fewer number of time steps. + +Table 2: Comparion of our work with other SNN models on CIFAR10 and ImageNet datasets + +
ModelDatasetTrainingMethodArchitecture AccuracyTime-steps
Hunsberger&Eliasmith(2015)CIFAR10ANN-SNNConversion2Conv,2Linear82.95%6000
Caoetal.(2015)CIFAR10ANN-SNNConversion3Conv,2Linear77.43%400
Senguptaet al. (2019)CIFAR10ANN-SNNConversionVGG1691.55%2500
Lee etal.(2019)CIFAR10Spiking BPVGG990.45%100
Wu et al.(2019)CIFAR10 SurrogateGradient5Conv,2Linear90.53%12
This workCIFAR10HybridTrainingVGG1691.13%92.02%100200
Senguptaet al. (2019)ImageNetANN-SNNConversionVGG1669.96%2500
This workImageNetHybridTrainingVGG1665.19%250
+ +# 9 CONCLUSIONS + +The direct training of SNN with backpropagation is computationally expensive and slow, whereas ANN-SNN conversion suffers from high latency. To address this issue we proposed a hybrid training technique for deep SNNs. We took an SNN converted from ANN and used its weights and thresholds as initialization for spike-based backpropagation of SNN. We then performed spike-based backpropagation on this initialized network to obtain an SNN that can perform with fewer number of time steps. The number of epochs required to train SNN was also reduced by having a good initial starting point. The resultant trained SNN had higher accuracy and lower number of spikes/inference compared to purely converted SNNs at reduced number of time steps. The backpropagation through time was performed with surrogate gradient defined using neuron’s spike time that captured the temporal information and helped in reducing the number of time steps. We tested our algorithm on CIFAR and ImageNet datasets and achieved state-of-the-art performance with fewer number of time steps. + +# ACKNOWLEDGMENTS + +This work was supported in part by the National Science Foundation, in part by Vannevar Bush Faculty Fellowship, and in part by C-BRIC, one of six centers in JUMP, a Semiconductor Research Corporation (SRC) program sponsored by DARPA. + +# REFERENCES + +Guillaume Bellec, Darjan Salaj, Anand Subramoney, Robert Legenstein, and Wolfgang Maass. Long short-term memory and learning-to-learn in networks of spiking neurons. In Advances in Neural Information Processing Systems, pp. 787–797, 2018. + +Sander M Bohte, Joost N Kok, and Johannes A La Poutre. Spikeprop: backpropagation for networks ´ of spiking neurons. In ESANN, pp. 419–424, 2000. + +Y-Lan Boureau, Jean Ponce, and Yann LeCun. A theoretical analysis of feature pooling in visual recognition. In Proceedings of the 27th international conference on machine learning (ICML-10), pp. 111–118, 2010. + +Yongqiang Cao, Yang Chen, and Deepak Khosla. Spiking deep convolutional neural networks for energy-efficient object recognition. International Journal of Computer Vision, 113(1):54–66, 2015. + +J. Deng, W. Dong, R. Socher, L.-J. Li, K. Li, and L. Fei-Fei. ImageNet: A Large-Scale Hierarchical Image Database. In CVPR09, 2009. + +Peter U Diehl, Daniel Neil, Jonathan Binas, Matthew Cook, Shih-Chii Liu, and Michael Pfeiffer. Fast-classifying, high-accuracy spiking deep networks through weight and threshold balancing. In 2015 International Joint Conference on Neural Networks (IJCNN), pp. 1–8. IEEE, 2015. + +Peter U Diehl, Guido Zarrella, Andrew Cassidy, Bruno U Pedroni, and Emre Neftci. Conversion of artificial recurrent neural networks to spiking neural networks for low-power neuromorphic hardware. In 2016 IEEE International Conference on Rebooting Computing (ICRC), pp. 1–8. IEEE, 2016. + +Kaiming He, Xiangyu Zhang, Shaoqing Ren, and Jian Sun. Deep residual learning for image recognition. In Proceedings of the IEEE conference on computer vision and pattern recognition, pp. 770–778, 2016. + +Dongsung Huh and Terrence J Sejnowski. Gradient descent for spiking neural networks. In Advances in Neural Information Processing Systems, pp. 1433–1443, 2018. + +Eric Hunsberger and Chris Eliasmith. Spiking deep networks with lif neurons. arXiv preprint arXiv:1510.08829, 2015. + +Sergey Ioffe and Christian Szegedy. Batch normalization: Accelerating deep network training by reducing internal covariate shift. arXiv preprint arXiv:1502.03167, 2015. + +Alex Krizhevsky, Geoffrey Hinton, et al. Learning multiple layers of features from tiny images. Technical report, Citeseer, 2009. + +Chankyu Lee, Syed Shakib Sarwar, and Kaushik Roy. Enabling spike-based backpropagation in state-of-the-art deep neural network architectures. arXiv preprint arXiv:1903.06379, 2019. + +Emre O Neftci, Hesham Mostafa, and Friedemann Zenke. Surrogate gradient learning in spiking neural networks. arXiv preprint arXiv:1901.09948, 2019. + +Abhronil Sengupta, Yuting Ye, Robert Wang, Chiao Liu, and Kaushik Roy. Going deeper in spiking neural networks: $\mathrm { V g g }$ and residual architectures. Frontiers in neuroscience, 13, 2019. + +Sumit Bam Shrestha and Garrick Orchard. Slayer: Spike layer error reassignment in time. In Advances in Neural Information Processing Systems, pp. 1412–1421, 2018. + +Karen Simonyan and Andrew Zisserman. Very deep convolutional networks for large-scale image recognition. arXiv preprint arXiv:1409.1556, 2014. +Sen Song, Kenneth D Miller, and Larry F Abbott. Competitive hebbian learning through spike-timing-dependent synaptic plasticity. Nature neuroscience, 3(9):919, 2000. +Nitish Srivastava, Geoffrey Hinton, Alex Krizhevsky, Ilya Sutskever, and Ruslan Salakhutdinov. Dropout: a simple way to prevent neural networks from overfitting. The journal of machine learning research, 15(1):1929–1958, 2014. +Paul J Werbos et al. Backpropagation through time: what it does and how to do it. Proceedings of the IEEE, 78(10):1550–1560, 1990. +Yujie Wu, Lei Deng, Guoqi Li, Jun Zhu, and Luping Shi. Spatio-temporal backpropagation for training high-performance spiking neural networks. Frontiers in neuroscience, 12, 2018. +Yujie Wu, Lei Deng, Guoqi Li, Jun Zhu, Yuan Xie, and Luping Shi. Direct training for spiking neural networks: Faster, larger, better. In Proceedings of the AAAI Conference on Artificial Intelligence, volume 33, pp. 1311–1318, 2019. +Friedemann Zenke and Surya Ganguli. Superspike: Supervised learning in multilayer spiking neural networks. Neural computation, 30(6):1514–1541, 2018. + +# A COMPARISONS WITH OTHER SURROGATE GRADIENTS + +The transfer function of the spiking neuron is a step function and its derivative is zero everywhere except at the time of spike where it is not defined. In order to perform backpropagation with spiking neuron several approximations are proposed for the gradient function (Bellec et al., 2018; Zenke & Ganguli, 2018; Shrestha & Orchard, 2018; Wu et al., 2018). These approximations are either a linear or exponential function of $\mathrm { ~ ( ~ } u \mathrm { ~ \mathrm { ~ - ~ } ~ } V _ { t } \mathrm { ) }$ , where $u$ is the membrane potential and $V _ { t }$ the threshold voltage (Fig. 4). These approximations are referred as surrogate gradient or pseudo-derivative. In this work, we proposed an approximation that is computed using the spike timing of the neuron (Equation 11). We compare our proposed approximation with the following surrogate gradients: + +![](images/cd48833ffbcb4acb67d4884150d62d285617702c65c61e577bbdc212ea2dfd23.jpg) +Figure 4: Linear and Exponential approximation of the gradient of the spiking neuron (step function). + +$$ +\frac { \partial o } { \partial u } = \alpha \ : m a x \{ 0 , 1 - | u - V _ { t } | \} +$$ + +$$ +\frac { \partial o } { \partial u } = \alpha e ^ { - \beta \left| u - V _ { t } \right| } +$$ + +where $o$ is the binary output of the neuron, $u$ is the membrane potential, $V _ { t }$ is the threshold potential, $\alpha$ and $\beta$ are constants. Equation 13 and Equation 14 represent the linear and exponential approximation of the gradient, respectively. We employed these approximations in the hybrid training for a VGG9 network for CIFAR10 dataset. All the approximations (Equation 11, 13, and 14) produced similar results in terms of accuracy and number of epochs for convergence. This shows that the term $\Delta t$ (Equation 11) is a good replacement for $| u - V _ { t } |$ (Equation 14). The behaviour of $\Delta t$ and $| u - V _ { t } |$ is similar, i.e., it is small closer to the time of spike and increases as we move away from the spiking event. The advantage of using $\Delta t$ is that its domain is bounded by the total number of time steps (Equation 12). Hence, all possible values of gradients can be pre-computed and stored in a table for faster access during training. This is not possible for membrane potential because it is a real value computed based on the stochastic inputs and previous state of the neuron which is not known before hand. The exact benefit in energy from the pre-computation is dependent on the overall system architecture and evaluating it is beyond the scope of this paper. + +# B COMPARISONS OF SIMULATION TIME AND MEMORY REQUIREMENTS + +The simulation time and memory requirements for ANN and SNN are very different. SNN requires much more resources to iterate over multiple time steps and store the membrane potential for each neuron. Fig. 5 shows the training and inference time and memory requirements for ANN, SNN trained with backpropagation from scratch, and SNN trained with the proposed hybrid technique. The performance was evaluated for VGG16 architecture trained for CIFAR10 dataset. SNN trained from scratch and SNN trained with hybrid conversion-and-STDB are evaluated for 100 time steps. One epoch of ANN training (inference) takes 0.57 (0.05) minutes and 1.47 (1.15) GB of GPU memory. On the other hand, one epoch of SNN training (inference) takes 78 (11.39) minutes and 9.36 (1.37) GB of GPU memory for same hardware and mini-batch size. ANN and SNN trained from scratch reached convergence after 250 epochs. The hybrid technique requires 250 epochs of ANN training and 20 epochs of spike-based backpropagation. The hybrid training technique is one order of magnitude faster than training SNN from scratch. The memory requirement for hybrid technique is same as SNN as we need to perform fine-tuning with spike-based backpropagation. + +![](images/392c5b09ee728a2f6923f49603f3ba52dfef46b07e93158f58385264a0bbe80e.jpg) +Figure 5: Training and Inference time and memory for ANN, SNN trained with backpropagation from scratch, and SNN trained with hybrid technique. All values are normalized based on ANN values. The y-axis is in log scale. The performance was evaluated on one Nvidia GeForce RTX 2080 Ti TU102 GPU with 11 GB of memory. All the networks were trained for VGG16 architecture, CIFAR10 dataset, 100 time steps, and mini-batch size of 32. ANN and SNN require 250 epochs of training from scratch, hybrid conversion-and-STDB based training requires 250 epochs of ANN training followed by 20 epochs of spike-based backpropagation. \ No newline at end of file diff --git a/parse/train/B1xSperKvH/B1xSperKvH_content_list.json b/parse/train/B1xSperKvH/B1xSperKvH_content_list.json new file mode 100644 index 0000000000000000000000000000000000000000..4cad38fe2ed867bd619144d41e8f6ccdf2a354d7 --- /dev/null +++ b/parse/train/B1xSperKvH/B1xSperKvH_content_list.json @@ -0,0 +1,1238 @@ +[ + { + "type": "text", + "text": "ENABLING DEEP SPIKING NEURAL NETWORKSWITH HYBRID CONVERSION AND SPIKE TIMINGDEPENDENT BACKPROPAGATION", + "text_level": 1, + "bbox": [ + 174, + 98, + 823, + 171 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "Nitin Rathi1, Gopalakrishnan Srinivasan1, Priyadarshini Panda2 & Kaushik Roy1 ", + "bbox": [ + 184, + 194, + 754, + 210 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "1School of Electrical and Computer Engineering, Purdue University 2Department of Electrical Engineering, Yale University {rathi2, srinivg}@purdue.edu, priya.panda@yale.edu, kaushik@purdue.edu ", + "bbox": [ + 184, + 212, + 673, + 265 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "ABSTRACT ", + "text_level": 1, + "bbox": [ + 454, + 303, + 544, + 318 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "Spiking Neural Networks (SNNs) operate with asynchronous discrete events (or spikes) which can potentially lead to higher energy-efficiency in neuromorphic hardware implementations. Many works have shown that an SNN for inference can be formed by copying the weights from a trained Artificial Neural Network (ANN) and setting the firing threshold for each layer as the maximum input received in that layer. These type of converted SNNs require a large number of time steps to achieve competitive accuracy which diminishes the energy savings. The number of time steps can be reduced by training SNNs with spike-based backpropagation from scratch, but that is computationally expensive and slow. To address these challenges, we present a computationally-efficient training technique for deep SNNs1. We propose a hybrid training methodology: 1) take a converted SNN and use its weights and thresholds as an initialization step for spike-based backpropagation, and 2) perform incremental spike-timing dependent backpropagation (STDB) on this carefully initialized network to obtain an SNN that converges within few epochs and requires fewer time steps for input processing. STDB is performed with a novel surrogate gradient function defined using neuron’s spike time. The weight update is proportional to the difference in spike timing between the current time step and the most recent time step the neuron generated an output spike. The SNNs trained with our hybrid conversion-and-STDB training perform at $1 0 \\times - 2 5 \\times$ fewer number of time steps and achieve similar accuracy compared to purely converted SNNs. The proposed training methodology converges in less than 20 epochs of spike-based backpropagation for most standard image classification datasets, thereby greatly reducing the training complexity compared to training SNNs from scratch. We perform experiments on CIFAR-10, CIFAR-100 and ImageNet datasets for both VGG and ResNet architectures. We achieve top-1 accuracy of $6 5 . 1 9 \\%$ for ImageNet dataset on SNN with 250 time steps, which is $1 0 \\times$ faster compared to converted SNNs with similar accuracy. ", + "bbox": [ + 232, + 337, + 764, + 722 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "1 INTRODUCTION ", + "text_level": 1, + "bbox": [ + 176, + 753, + 336, + 768 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "In recent years, Spiking Neural Networks (SNNs) have shown promise towards enabling low-power machine intelligence with event-driven neuromorphic hardware. Founded on bio-plausibility, the neurons in an SNN compute and communicate information through discrete binary events (or spikes) a significant shift from the standard artificial neural networks (ANNs), which process data in a real-valued (or analog) manner. The binary all-or-nothing spike-based communication combined with sparse temporal processing precisely make SNNs a low-power alternative to conventional ANNs. With all its appeal for power efficiency, training SNNs still remains a challenge. The discontinuous and non-differentiable nature of a spiking neuron (generally, modeled as leaky-integrate-and-fire (LIF), or integrate-and-fire (IF)) poses difficulty to conduct gradient descent based backpropagation. Practically, SNNs still lag behind ANNs, in terms of performance or accuracy, in traditional learning tasks. Consequently, there has been several works over the past few years that propose different learning algorithms or learning rules for implementing deep convolutional SNNs for complex visual recognition tasks (Wu et al., 2019; Hunsberger & Eliasmith, 2015; Cao et al., 2015). Of all the techniques, conversion from ANN-to-SNN (Diehl et al., 2016; 2015; Sengupta et al., 2019; Hunsberger & Eliasmith, 2015) has yielded state-of-the-art accuracies matching deep ANN performance for Imagenet dataset on complex architectures (such as, VGG (Simonyan & Zisserman, 2014) and ResNet (He et al., 2016) ). In conversion, we train an ANN with ReLU neurons using gradient descent and then convert the ANN to an SNN with IF neurons by using suitable threshold balancing (Sengupta et al., 2019). But, SNNs obtained through conversion incur large latency of 2000−2500 time steps (measured as total number of time steps required to process a given input image2). The term ‘time step’ defines an unit of time required to process a single input spike across all layers and represents the network latency. The large latency translates to higher energy consumption during inference, thereby, diminishing the efficiency improvements of SNNs over ANNs. To reduce the latency, spike-based backpropagation rules have been proposed that perform end-to-end gradient descent training on spike data. In spike-based backpropagation methods, the non-differentiability of the spiking neuron is handled by either approximating the spiking neuron model as continuous and differentiable (Huh & Sejnowski, 2018) or by defining a surrogate gradient as a continuous approximation of the real gradient (Wu et al., 2018; Bellec et al., 2018; Neftci et al., 2019). Spike-based SNN training reduces the overall latency by ${ \\sim } 1 0 \\times$ (for instance, $2 0 0 \\mathrm { ~ - ~ } 2 5 0$ time steps required to process an input (Lee et al., 2019)) but requires more training effort (in terms of total training iterations) than conversion approaches. A single feed-forward pass in ANN corresponds to multiple forward passes in SNN which is proportional to the number of time steps. In spike-based backpropagation, the backward pass requires the gradients to be integrated over the total number of time steps that increases the computation and memory complexity. The multiple-iteration training effort with exploding memory requirement (for backward pass computations) has limited the applicability of spike-based backpropagation methods to small datasets (like CIFAR10) on simple few-layered convolutional architectures. ", + "bbox": [ + 174, + 785, + 825, + 897 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "", + "bbox": [ + 174, + 103, + 825, + 506 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "In this work, we propose a hybrid training technique which combines ANN-SNN conversion and spike-based backpropagation that reduces the overall latency as well as decreases the training effort for convergence. We use ANN-SNN conversion as an initialization step followed by spike-based backpropagation incremental training (that converges to optimal accuracy with few epochs due to the precursory initialization). Essentially, our hybrid approach of taking a converted SNN and incrementally training it using backpropagation yields improved energy-efficiency as well as higher accuracy than a model trained from scratch with only conversion or only spike-based backpropagation. ", + "bbox": [ + 174, + 512, + 825, + 625 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "In summary, this paper makes the following contributions: ", + "bbox": [ + 174, + 631, + 555, + 645 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "• We introduce a hybrid computationally-efficient training methodology for deep SNNs. We use the weights and firing thresholds of an SNN converted from an ANN as the initialization step for spike-based backpropagation. We then train this initialized network with spike-based backpropagation for few epochs to perform inference at a reduced latency or time steps. We propose a novel spike time-dependent backpropagation (STDB, a variant of standard spike-based backpropagation) that computes surrogate gradient using neuron’s spike time. The parameter update is triggered by the occurrence of spike and the gradient is computed based on the time difference between the current time step and the most recent time step the neuron generated an output spike. This is motivated from the Hebb’s principle which states that the plasticity of a synapse is dependent on the spiking activity of the neurons connected to the synapse. Our hybrid approach with the novel surrogate gradient descent allows training of large-scale SNNs without exploding memory required during spike-based backpropagation. We evaluate our hybrid approach on large SNNs (VGG, ResNet-like architectures) on ", + "bbox": [ + 214, + 659, + 825, + 885 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "Imagenet, CIFAR datasets and show near iso-accuracy compared to similar ANNs and converted SNNs at lower compute cost and energy. ", + "bbox": [ + 232, + 103, + 823, + 132 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "2 SPIKE TIMING DEPENDENT BACKPROPAGATION (STDB) ", + "text_level": 1, + "bbox": [ + 173, + 160, + 678, + 176 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "In this section, we describe the spiking neuron model, derive the equations for the proposed surrogate gradient based learning, present the weight initialization method for SNN, discuss the constraints applied for ANN-SNN conversion, and summarize the overall training methodology. ", + "bbox": [ + 174, + 196, + 485, + 295 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "2.1 LEAKY INTEGRATE AND FIRE (LIF) NEURON MODEL ", + "text_level": 1, + "bbox": [ + 173, + 320, + 410, + 348 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "The neuron model defines the dynamics of the neuron’s internal state and the trigger for it to generate a spike. The differential equation ", + "bbox": [ + 173, + 363, + 483, + 405 + ], + "page_idx": 2 + }, + { + "type": "equation", + "img_path": "images/ca868a77e61676a2fe3969838076cc4d33f04b2cff402211675f9aed2ce13dc2.jpg", + "text": "$$\n\\tau \\frac { d U } { d t } = - ( U - U _ { r e s t } ) + R I\n$$", + "text_format": "latex", + "bbox": [ + 230, + 419, + 428, + 450 + ], + "page_idx": 2 + }, + { + "type": "image", + "img_path": "images/7c4a28ea13d64064dc648e47aca903dfa249118653d5d33be93a1c4056719f2e.jpg", + "image_caption": [ + "Figure 1: Surrogate gradient of the spiking neuron activation function (Eq. 11). $\\alpha = 0 . 3 , \\beta = 0 . 0 1$ . The gradient is computed for each neuron and $\\Delta t$ defines the time difference between current simulation time and the last spike time of the neuron. For example, if a neuron spikes at $t _ { s } = 1 2$ its gradient will be maximum at $t = 1 2 ( \\Delta t = 0 )$ and gradually decrease for later time steps. If the same neuron spikes later at $t _ { s } = 2 4$ its previous spike history will be overwritten and the gradient computation for $t = 2 4$ onward will only consider the most recent spike. This avoids the overhead of storing all the spike history in memory. " + ], + "image_footnote": [], + "bbox": [ + 501, + 214, + 821, + 344 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "is widely used to characterize the leaky-integrate-and-fire (LIF) neuron model where, $U$ is the internal state of the neuron referred as the membrane potential, $U _ { r e s t }$ is the resting potential, $R$ and $I$ are the input resistance and the current, respectively. The above equation is valid when the membrane potential is below the threshold value $( V )$ . The neuron geneartes an output spike when $U { \\geqslant } V$ ", + "bbox": [ + 174, + 463, + 483, + 588 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "and $U$ is reduced to the reset potential. This representation is described in continuous domain and more suitable for biological simulations. We modify the equation to be evaluated in a discrete manner in the Pytorch framework ( $\\mathrm { W u }$ et al., 2018). The iterative model for a single post-neuron is described by ", + "bbox": [ + 174, + 588, + 826, + 643 + ], + "page_idx": 2 + }, + { + "type": "equation", + "img_path": "images/9a764cd6bdfda7f3e162656f136297a22e529f81902dc5bf6fb8c23bd44c34af.jpg", + "text": "$$\nu _ { i } ^ { t } = \\lambda u _ { i } ^ { t - 1 } + \\sum _ { j } w _ { i j } o _ { j } ^ { t } - v o _ { i } ^ { t - 1 }\n$$", + "text_format": "latex", + "bbox": [ + 385, + 652, + 612, + 688 + ], + "page_idx": 2 + }, + { + "type": "equation", + "img_path": "images/3137496a990b78f4f053b333d9ab38f8db4554e8676046b5890d82b65ba96d46.jpg", + "text": "$$\no _ { i } ^ { t - 1 } = \\left\\{ { \\begin{array} { l l } { 1 , } & { { \\mathrm { i f ~ } } u _ { i } ^ { t - 1 } > v } \\\\ { 0 , } & { { \\mathrm { o t h e r w i s e } } } \\end{array} } \\right.\n$$", + "text_format": "latex", + "bbox": [ + 411, + 713, + 584, + 748 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "where $u$ is the membrane potential, subscript $i$ and $j$ represent the post- and pre-neuron, respectively, superscript $t$ is the time step, $\\lambda$ is a constant $( < 1 )$ responsible for the leak in membrane potential, $w$ is the weight connecting the pre- and post-neuron, $o$ is the binary output spike, and $v$ is the firing threshold potential. The right hand side of Equation 2 has three terms: the first term calculates the leak in the membrane potential from the previous time step, the second term integrates the input from the previous layer and adds it to the membrane potential, and the third term which is outside the summation reduces the membrane potential by the threshold value if a spike is generated. This is known as soft reset as the membrane potential is lowered by $v$ compared to hard reset where the membrane potential is reduced to the reset value. Soft reset enables the spiking neuron to carry forward the excess potential above the firing threshold to the following time step, thereby minimizing information loss. ", + "bbox": [ + 173, + 770, + 825, + 924 + ], + "page_idx": 2 + }, + { + "type": "table", + "img_path": "images/6f9596c24c69f972dbb7dfacdd98897f442b2b53243f85c74e46dac6e9329812.jpg", + "table_caption": [], + "table_footnote": [], + "table_body": "
Algorithm 1 ANN-SNN conversion: initialization of weights and threshold voltages Input: Trained ANN model (A), SNN model (N), Input (X) // Copy ann weights to snn
for l=1 to L do |Ni.W ← A.W end // Initialize threshold voltage to O V ←[0,·…·,0]L-1 for l=1 to L-1 do c↑0 for t=1 to T do
Ot ← PoissonGenerator(X) for k=1 to l do ifk<l then // Forward (Algorithm 3) end
else // Pre-nonlinearity (A) A ← Nt(O-1) if max(A) > v then v ←max(A) end end end
", + "bbox": [ + 173, + 103, + 488, + 525 + ], + "page_idx": 3 + }, + { + "type": "table", + "img_path": "images/22c871afd72e7ae17fe73eb2cf2297d3b354828a4e971daebf3388808fa59765.jpg", + "table_caption": [], + "table_footnote": [], + "table_body": "
Algorithm 2 Initialize the neuron parameters. Membrane potential (U),last spike time(S), dropout mask (M).The initialization is performed once for everymini-batch.
Input: Input(X), network model(N) b_size=X.b_size h=X.height w=X.width for l=1 to L do
if isintance(Ni,Conv) then Ut = zeros(b_size,Ni.out,h,w) St = ones(b_size,Ni.out,h,w) * (-1000) end elseif isintance(Nt,Linear) then Ut = zeros(b_size,Ni.out) St = ones(b_size,Ni.out) *(-1000)
end else if isintance(Ni,Dropout) then // Generate the dropout map that will be fixed for all time steps Mt = Ni(ones(Ut-1.shape)) end else ifisintance(Ni,AugPool) then //Reduce the width and height after average pooling layer h=h//kernel_size w=w//kernel_size end
", + "bbox": [ + 513, + 104, + 823, + 527 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "2.2 SPIKE TIMING DEPENDENT BACKPROPAGATION (STDB) LEARNING RULE ", + "text_level": 1, + "bbox": [ + 174, + 553, + 728, + 568 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "The neuron dynamics (Equation 2) show that the neuron’s state at a particular time step recurrently depends on its state in previous time steps. This introduces implicit recurrent connections in the network (Neftci et al., 2019). Therefore, the learning rule has to perform the temporal credit assignment along with the spatial credit assignment. Credit assignment refers to the process of assigning credit or blame to the network parameters according to their contribution to the loss function. Spatial credit assignment identifies structural network parameters (like weights), whereas temporal credit assignment determines which past network activities contributed to the loss function. Gradient-descent learning solves both credit assignment problem: spatial credit assignment is performed by distributing error spatially across all layers using the chain rule of derivatives, and temporal credit assignment is done by unrolling the network in time and performing backpropagation through time (BPTT) using the same chain rule of derivatives (Werbos et al., 1990). In BPTT, the network is unrolled for all time steps and the final output is computed as the sum of outputs from each time step. The loss function is defined on the summed output. ", + "bbox": [ + 173, + 582, + 825, + 762 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "The dynamics of the neuron in the output layer is described by Equation (4), where the leak part is removed $\\lambda = 1$ ) and the neuron only integrates the input without firing. This eliminates the difficulty of defining the loss function on spike count (Lee et al., 2019). ", + "bbox": [ + 174, + 768, + 825, + 811 + ], + "page_idx": 3 + }, + { + "type": "equation", + "img_path": "images/18b0132d3bf849f9819844e04bdf32195c80f6e2bd7ab05d4d6a2fbbc255d3cd.jpg", + "text": "$$\nu _ { i } ^ { t } = u _ { i } ^ { t - 1 } + \\sum _ { j } w _ { i j } o _ { j }\n$$", + "text_format": "latex", + "bbox": [ + 421, + 825, + 576, + 861 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "The number of neurons in the output layer is the same as the number of categories in the classification task. The output of the network is passed through a softmax layer that outputs a probability distribution. The loss function is defined as the cross-entropy between the true output and the ", + "bbox": [ + 174, + 882, + 823, + 924 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "network’s predicted distribution. ", + "bbox": [ + 173, + 103, + 387, + 118 + ], + "page_idx": 4 + }, + { + "type": "equation", + "img_path": "images/d1903200c357aa7e29b818c4bcf23d950a97ad23b168705127aa6b073928e3db.jpg", + "text": "$$\n\\begin{array} { c } { L = - \\displaystyle \\sum _ { i } y _ { i } l o g ( p _ { i } ) } \\\\ { p _ { i } = \\displaystyle \\frac { e ^ { u _ { i } ^ { T } } } { \\sum _ { k = 1 } ^ { N } e ^ { u _ { k } ^ { T } } } } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 429, + 116, + 568, + 195 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "$L$ is the loss function, $y$ the true output, $p$ the prediction, $T$ the total number of time steps, $u ^ { T }$ the accumulated membrane potential of the neuron in the output layer from all time steps, and $N$ the number of categories in the task. For deeper networks and large number of time steps the truncated version of the BPTT algorithm is used to avoid memory issues. In the truncated version the loss is computed at some time step $t ^ { \\prime }$ before $\\mathrm { T }$ based on the potential accumulated till $t ^ { \\prime }$ . The loss is backpropagated to all layers and the loss gradients are computed and stored. At this point, the history of the computational graph is cleaned to save memory. The subsequent computation of loss gradients at later time steps $( 2 t ^ { \\prime } , 3 t ^ { \\prime } , . . . T )$ are summed together with the gradient at $t ^ { \\prime }$ to get the final gradient. The optimizer updates the parameters at $T$ based on the sum of the gradients. Gradient descent learning has the objective of minimizing the loss function. This is achieved by backpropagating the error and updating the parameters opposite to the direction of the derivative. The derivative of the loss function w.r.t. to the membrane potential of the neuron in the final layer is described by, ", + "bbox": [ + 173, + 204, + 825, + 383 + ], + "page_idx": 4 + }, + { + "type": "equation", + "img_path": "images/2e0f69991a1b9cb28836403a655a2c8823cd03fd64bd653c010dc54ee86ae493.jpg", + "text": "$$\n\\frac { \\partial L } { \\partial u _ { i } ^ { T } } = p _ { i } - y _ { i }\n$$", + "text_format": "latex", + "bbox": [ + 446, + 382, + 552, + 416 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "To compute the gradient at current time step, the membrane potential at last time step $( u _ { i } ^ { t - 1 }$ in Equation 4) is considered as an input quantity. Therefore, gradient descent updates the network parameters $W _ { i j }$ of the output layer as, ", + "bbox": [ + 176, + 429, + 823, + 472 + ], + "page_idx": 4 + }, + { + "type": "equation", + "img_path": "images/de2cb2c4e65328e8505e5c38a4758eb0509bbcf848a9b39c9d8dc7377d3d9488.jpg", + "text": "$$\nW _ { i j } = W _ { i j } - \\eta \\Delta W _ { i j }\n$$", + "text_format": "latex", + "bbox": [ + 423, + 478, + 575, + 497 + ], + "page_idx": 4 + }, + { + "type": "equation", + "img_path": "images/7787e29d0e9212acded98702dae3e92f12e9328060a0e72acc22b4c5c84411b8.jpg", + "text": "$$\n\\Delta W _ { i j } = \\sum _ { t } { \\frac { \\partial L } { \\partial W _ { i j } ^ { t } } } = \\sum _ { t } { \\frac { \\partial L } { \\partial u _ { i } ^ { T } } } { \\frac { \\partial u _ { i } ^ { T } } { \\partial W _ { i j } ^ { t } } } = { \\frac { \\partial L } { \\partial u _ { i } ^ { T } } } \\sum _ { t } { \\frac { \\partial u _ { i } ^ { T } } { \\partial W _ { i j } ^ { t } } }\n$$", + "text_format": "latex", + "bbox": [ + 308, + 501, + 689, + 545 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "where $\\eta$ is the learning rate, and ${ W } _ { i j } ^ { t }$ represents the copy of the weight used for computation at time step $t$ . In the output layer the neurons do not generate a spike, and hence, the issue of non-differentiability is not encountered. The update of the hidden layer parameters is described by, ", + "bbox": [ + 174, + 555, + 825, + 611 + ], + "page_idx": 4 + }, + { + "type": "equation", + "img_path": "images/0183488251c9af27b9f2519e8eeb977ce9ad20b05f29372f1069b0f983b6adb2.jpg", + "text": "$$\n\\Delta W _ { i j } = \\sum _ { t } { \\frac { \\partial L } { \\partial W _ { i j } ^ { t } } } = \\sum _ { t } { \\frac { \\partial L } { \\partial o _ { i } ^ { t } } } { \\frac { \\partial o _ { i } ^ { t } } { \\partial u _ { i } ^ { t } } } { \\frac { \\partial u _ { i } ^ { t } } { \\partial W _ { i j } ^ { t } } }\n$$", + "text_format": "latex", + "bbox": [ + 357, + 609, + 640, + 651 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "where $o _ { i } ^ { t }$ is the thresholding function (Equation 3) whose derivative w.r.t to $u _ { i } ^ { t }$ is zero everywhere and not defined at the time of spike. The challenge of discontinuous spiking nonlinearity is resolved by introducing a surrogate gradient which is the continuous approximation of the real gradient. ", + "bbox": [ + 174, + 655, + 825, + 698 + ], + "page_idx": 4 + }, + { + "type": "equation", + "img_path": "images/a540262c31a21913d6a2ef06f28987c7dcfbc20258c80a289155326c3e2c878d.jpg", + "text": "$$\n\\frac { \\partial o _ { i } ^ { t } } { \\partial u _ { i } ^ { t } } = \\alpha e ^ { - \\beta \\Delta t }\n$$", + "text_format": "latex", + "bbox": [ + 446, + 704, + 552, + 739 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "where $\\alpha$ and $\\beta$ are constants, $\\Delta t$ is the time difference between the current time step $\\mathbf { \\rho } ( t )$ and the last time step the post-neuron generated a spike $( t _ { s } )$ . It is an integer value whose range is from zero to the total number of time steps $( T )$ . ", + "bbox": [ + 174, + 744, + 825, + 787 + ], + "page_idx": 4 + }, + { + "type": "equation", + "img_path": "images/31e23731d15cc1e1cfb193f5417fd0d48cc95ec82e121feca8456d06d9963885.jpg", + "text": "$$\n\\Delta t = ( t - t _ { s } ) , 0 < \\Delta t < T , \\Delta t \\epsilon \\mathbb { Z }\n$$", + "text_format": "latex", + "bbox": [ + 372, + 795, + 627, + 813 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "The values of $\\alpha$ and $\\beta$ are selected depending on the value of $T$ . If $T$ is large $\\beta$ is lowered to reduce the exponential decay so a spike can contribute towards gradients for later time steps. The value of $\\alpha$ is also reduced for large $T$ because the gradient can propagate through many time steps. The gradient is summed at each time step and thus a large $\\alpha$ may lead to exploding gradient. The surrogate gradient can be pre-computed for all values of $\\Delta t$ and stored in a look-up table for faster computation. The parameter updates are triggered by the spiking activity but the error gradients are still non-zero for time steps following the spike time. This enables the algorithm to avoid the ‘dead ", + "bbox": [ + 173, + 825, + 825, + 924 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "Algorithm 3 Training an SNN with surrogate gradient computed with spike timing. The network is composed of $L$ layers. The training proceeds with mini-batch size (batch size) ", + "bbox": [ + 173, + 102, + 823, + 132 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "Input: Mini-batch of input $( X )$ - target $( Y )$ pairs, network model $( N )$ , initial weights $( W )$ , threshold voltage $( V )$ \n$U , S , M = I$ nitializeNeuronP arameter $s ( X )$ [Algorithm 2] \n// Forward propagation \nfor $t { = } I$ to $T$ do $O _ { 0 } ^ { t } = P o i s s o n G e n e r a t o r ( X )$ for $l { = } l$ to L-1 do if isintanc $e ( N _ { l } , [ C o n v , L i n e a r ] )$ then // accumulate the output of previous layer in $U$ , soft reset when spike occurs $\\begin{array} { r } { U _ { l } ^ { t } = \\lambda U _ { l } ^ { t - 1 } + W _ { l } \\dot { O } _ { l - 1 } ^ { t } - V _ { l } * O _ { l } ^ { t - 1 } } \\end{array}$ ? // generate the output $( + 1 )$ if $U$ exceeds $V$ $\\hat { O _ { l } ^ { t } } = S T D B ( U _ { l } ^ { t } , V _ { l } , t )$ $/ /$ store the latest spike times for each neuron $S _ { l } ^ { t } [ O _ { l } ^ { t } = = 1 ] = t$ end else if isintance ${ \\mathrm { : } } ( N _ { l } , A v g P o o l )$ then $O _ { l } ^ { t } = N _ { l } ( O _ { l - 1 } ^ { t } )$ end else if isintance $( N _ { l } , D r o p o u t )$ then $O _ { l } ^ { t } = O _ { l - 1 } ^ { t } * M _ { l }$ end end $U _ { L } ^ { t } = \\lambda U _ { L } ^ { t - 1 } + W _ { L } O _ { L - 1 } ^ { t }$ \nend \n// Backward Propagation \nCompute $\\frac { \\partial L } { \\partial U _ { L } }$ from the cross-entropy loss function using BPTT \nfor $t { = } T$ to $^ { l }$ do for $\\scriptstyle { l = L - I }$ to 1 do Compute $\\frac { \\partial L } { \\partial O _ { l } ^ { t } }$ based on if $N _ { l }$ is linear, conv, pooling, etc. $\\begin{array} { r } { \\frac { \\partial L } { \\partial U _ { l } ^ { t } } = \\frac { \\partial L } { \\partial O _ { l } ^ { t } } \\frac { \\partial O _ { l } ^ { t } } { \\partial U _ { l } ^ { t } } = \\frac { \\partial L } { \\partial O _ { l } ^ { t } } \\ast \\alpha e ^ { - \\beta S _ { l } ^ { t } } } \\end{array}$ end \nend ", + "bbox": [ + 176, + 133, + 820, + 609 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "neuron’ problem, where no learning happens when there is no spike. Fig. 1 shows the activation gradient for different values of $\\Delta t$ , the gradient decreases exponentially for neurons that have not been active for a long time. In Hebbian models of biological learning, the parameter update is activity dependent. This is experimentally observed in spike-timing-dependent plasticity (STDP) learning rule which modulates the weights for pair of neurons that spike within a time window (Song et al., 2000). ", + "bbox": [ + 173, + 645, + 825, + 728 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "3 SNN WEIGHT INITIALIZATION", + "text_level": 1, + "bbox": [ + 176, + 758, + 462, + 775 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "A prevalent method of constructing SNNs for inference is ANN-SNN conversion (Diehl et al., 2015; Sengupta et al., 2019). Since the network is trained with analog activations it does not suffer from the non-differentiablity issue and can leverage the training techniques of ANNs. The conversion process has a major drawback: it suffers from long inference latency ( $\\mathrm { \\sim 2 5 0 0 }$ time steps) as mentioned in Section 1. As there is no provision to optimize the parameters after conversion based on spiking activity, the network can not leverage the temporal information of the spikes. In this work, we propose to use the conversion process as an initialization technique for STDB. The converted weights and thresholds serve as a good initialization for the optimizer and the STDB learning rule is applied for temporal and spatial credit assignment. ", + "bbox": [ + 173, + 795, + 825, + 921 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "Algorithm 1 explains the ANN-SNN conversion process. The threshold voltages in SNN needs to be adjusted based on the ANN weights. Sengupta et al. (2019) showed two ways to achieve this: weight-normalization and threshold-balancing. In weight-normalization the weights are scaled by a normalization factor and threshold is set to 1, whereas in threshold-balancing the weights are unchanged and the threshold is set to the normalization factor. Both have a similar effect and either can be used to set the threshold. We employ the threshold-balancing method and the normalization factor is calculated as the maximum output of the corresponding convolution/linear layer in SNN. The maximum is calculated over a mini-batch of input for all time steps. ", + "bbox": [ + 174, + 103, + 825, + 214 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "There are several constraints imposed on training the ANN for the conversion process (Sengupta et al., 2019; Diehl et al., 2015). The neurons are trained without the bias term because the bias term in SNN has an indirect effect on the threshold voltage which increases the difficulty of threshold balancing and the process becomes more prone to conversion loss. The absence of bias term eliminates the use of Batch Normalization (Ioffe & Szegedy, 2015) as a regularizer in ANN since it biases the input of each layer to have zero mean. As an alternative, Dropout (Srivastava et al., 2014) is used as a regularizer for both ANN and SNN training. The implementation of Dropout in SNN is further discussed in Section 5. The pooling operation is widely used in ANN to reduce the convolution map size. There are two popular variants: max pooling and average pooling (Boureau et al., 2010). Max (Average) pooling outputs the maximum (average) value in the kernel space of the neuron’s activations. In SNN, the activations are binary and performing max pooling will result in significant information loss for the next layer, so we adopt the average pooling for both ANN and SNN (Diehl et al., 2015). ", + "bbox": [ + 176, + 222, + 581, + 500 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "4 NETWORK ARCHITECTURES ", + "text_level": 1, + "bbox": [ + 176, + 523, + 439, + 540 + ], + "page_idx": 6 + }, + { + "type": "image", + "img_path": "images/31821489c1dc4301bde516e227360d788e26a0deac85ccef825dbbbadc225416.jpg", + "image_caption": [ + "Figure 2: Residual architecture for SNN " + ], + "image_footnote": [], + "bbox": [ + 596, + 238, + 825, + 531 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "In this section, we describe the changes made to the VGG (Simonyan & Zisserman, 2014) and residual architecture (He et al., 2016) for hybrid learning and discuss the process of threshold computation for both the architectures. ", + "bbox": [ + 174, + 558, + 581, + 613 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "4.1 VGG ARCHITECTURE ", + "text_level": 1, + "bbox": [ + 176, + 635, + 367, + 648 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "The threshold balancing is performed for all layers except the input and output layer in a VGG architecture. For every hidden convolution/linear layer the maximum input3 to the neuron is computed over all time steps and set as threshold for that layer. The threshold assignment is done sequentially as described in Algorithm 1. The threshold computation for all layers can not be performed in parallel (in one forward pass) because in the forward method (Algorithm 3) we need the threshold at each time step to decide if the neuron should spike or not. ", + "bbox": [ + 174, + 662, + 825, + 746 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "4.2 RESIDUAL ARCHITECTURE ", + "text_level": 1, + "bbox": [ + 176, + 767, + 401, + 781 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "Residual architectures introduce shortcut connections between layers that are not next to each other. In order to minimize the ANN-SNN conversion loss various considerations were made by Sengupta et al. (2019). The original residual architecture proposed by He et al. (2016) uses an initial convolution layer with wide kernel $( 7 \\times 7$ , stride 2). For conversion, this is replaced by a pre-processing block consisting of a series of three convolution layer $( 3 \\times 3$ , stride 1) with dropout layer in between (Fig. 2). The threshold balancing mechanism is applied to only these three layers and the layers in the basic block have unity threshold. ", + "bbox": [ + 174, + 795, + 825, + 892 + ], + "page_idx": 6 + }, + { + "type": "table", + "img_path": "images/4d6960da6d2ab1ef250ec4c809150250b2409864fcbf88a1f373de46cc253a99.jpg", + "table_caption": [ + "Table 1: Classification results (Top-1) for CIFAR10, CIFAR100 and ImageNet data sets. Column-1 shows the network architecture. Column-2 shows the ANN accuracy when trained under the constraints as described in Section 3. Column-3 shows the SNN accuracy for $T \\ : = \\ : 2 5 0 0$ when converted from a ANN with threshold balancing. Column-4 shows the performance of the same converted SNN with lower time steps and adjusted thresholds. Column-5 shows the performance after training the Column-4 network with STDB for less than 20 epochs. " + ], + "table_footnote": [], + "table_body": "
ArchitectureANNANN-SNNConversion(T = 2500)ANN-SNNConversion (reduced time steps)Hybrid Training(ANN-SNN Conversion+ STDB)
CIFAR10
VGG587.88%87.64%84.56% (T = 75)86.91% (T = 75)
VGG991.45%90.98%87.31% (T = 100)90.54% (T = 100)
VGG1692.81%92.48%90.2% (T = 100)91.13% (T = 100)
ResNet891.35%91.12%89.5% (T = 200)91.35% (T = 200)
ResNet2093.15%92.94%91.12% (T = 250)92.22% (T = 250)
CIFAR100
VGG1171.21%70.94%65.52% (T = 125)67.87% (T = 125)
ImageNet
ResNet3470.2%65.1%56.87% (T = 250)61.48% (T = 250)
VGG1669.35%68.12%62.73% (T= 250)65.19% (T = 250)
", + "bbox": [ + 173, + 202, + 825, + 488 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "5 OVERALL TRAINING ALGORITHM ", + "text_level": 1, + "bbox": [ + 174, + 493, + 488, + 510 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "Algorithm 1 defines the process to initialize the parameters (weights, thresholds) of SNN based on ANN-SNN conversion. Algorithm 2 and 3 show the mechanism of training the SNN with STDB. Algorithm 2 initializes the neuron parameters for every mini-batch, whereas Algorithm 3 performs the forward and backward propagation and computes the credit assignment. The threshold voltage for all neurons in a layer is same and is not altered in the training process. For each dropout layer we initialize a mask $( M )$ for every mini-batch of inputs. The function of dropout is to randomly drop a certain number of inputs in order to avoid overfitting. In case of SNN, inputs are represented as a spike train and we want to keep the dropout units same for the entire duration of the input. Thus, a random mask $( M )$ is initialized (Algorithm 2) for every mini-batch and the input is element-wise multiplied with the mask to generate the output of the dropout layer (Lee et al., 2019). The Poisson generator function outputs a Poisson spike train with rate proportional to the pixel value in the input. A random number is generated at every time step for each pixel in the input image. The random number is compared with the normalized pixel value and if the random number is less than the pixel value an output spike is generated. This results in a Poisson spike train with rate equivalent to the pixel value if averaged over a long time. The weighted sum of the input is accumulated in the membrane potential of the first convolution layer. The STDB function compares the membrane potential and the threshold of that layer to generate an output spike. The neurons that output a spike their corresponding entry in $S$ is updated with current time step (t). The last spike time is initialized with a large negative number (Algorithm 2) to denote that at the beginning the last spike happened at negative infinity time. This is repeated for all layers until the last layer. For last layer the inputs are accumulated over all time steps and passed through a softmax layer to compute the multi-class probability. The cross-entropy loss function is defined on the output of the softmax and the weights are updated by performing the temporal and spatial credit assignment according to the STDB rule. ", + "bbox": [ + 173, + 525, + 825, + 843 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "6 EXPERIMENTS ", + "text_level": 1, + "bbox": [ + 176, + 864, + 326, + 880 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "We tested the proposed training mechanism on image classification tasks from CIFAR (Krizhevsky et al., 2009) and ImageNet (Deng et al., 2009) datasets. The results are summarized in Table 1. ", + "bbox": [ + 174, + 895, + 823, + 922 + ], + "page_idx": 7 + }, + { + "type": "image", + "img_path": "images/e3e63b533127c274de9937dff4bafa08dd1a34b21cf2cf9cdff0fbbaa024595c.jpg", + "image_caption": [ + "Figure 3: Average number of spikes for each layer in a VGG16 architecture for purely converted SNN and SNN trained with hybrid technique. The converted SNN and SNN trained with hybrid technique achieve an accuracy of $8 9 . 2 0 \\%$ and $9 1 . 8 7 \\%$ , respectively, for the randomly selected 1500 samples from the test set. Both the networks were inferred for 100 time steps and $\\mathbf { \\epsilon } \\cdot \\mathbf { \\gamma } _ { \\mathbf { V } } \\mathbf { \\epsilon } )$ represents the threshold voltage for each layer obtained during the conversion process (Algorithm 1). " + ], + "image_footnote": [], + "bbox": [ + 269, + 103, + 723, + 309 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "CIFAR10: The dataset consists of labeled 60, 000 images of 10 categories divided into training (50, 000) and testing (10, 000) set. The images are of size $3 2 \\times 3 2$ with RGB channels. ", + "bbox": [ + 173, + 397, + 821, + 426 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "CIFAR100: The dataset is similar to CIFAR10 except that it has 100 categories. ", + "bbox": [ + 174, + 433, + 696, + 448 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "ImageNet: The dataset comprises of labeled high-resolution 1.2 million training images and 50, 000 validation images with 1000 categories. ", + "bbox": [ + 173, + 454, + 823, + 483 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "7 ENERGY-DELAY PRODUCT ANALYSIS OF SNNS ", + "text_level": 1, + "bbox": [ + 176, + 503, + 602, + 520 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "A single spike in an SNN consumes a constant amount of energy (Cao et al., 2015). The first order analysis of energy-delay product of an SNN is dependent on the number of spikes and the total number of time steps. Fig. 3 shows the average number of spikes in each layer when evaluated for 1500 samples from CIFAR10 testset for VGG16 architecture. The average is computed by summing all the spikes in a layer over 100 time steps and dividing by the number of neurons in that layer. For example, the average number of spikes in the $1 0 ^ { t h }$ layer is 5.8 for both the networks, which implies that over a 100 time step period each neuron in that layer spikes 5.8 times on average over all input samples. Higher spiking activity corresponds to lower energy-efficiency. The average number of spikes is compared for a converted SNN and SNN trained with conversion-and-STDB. The SNN trained with conversion-and-STDB has $1 . 5 \\times$ less number of average spikes over all layers under iso conditions (time steps, threshold voltages, inputs, etc.) and achieves higher accuracy compared to the converted SNN. The converted SNNs when simulated for larger time steps further degrade the energy-delay product with minimal increase in accuracy (Sengupta et al., 2019). ", + "bbox": [ + 173, + 536, + 825, + 717 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "8 RELATED WORK ", + "text_level": 1, + "bbox": [ + 176, + 738, + 344, + 755 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "Bohte et al. (2000) proposed a method to directly train on SNN by keeping track of the membrane potential of spiking neurons only at spike times and backpropagating the error at spike times based on only the membrane potential. This method is not suitable for networks with sparse activity due to the ‘dead neuron’ problem: no learning happens when the neurons do not spike. In our work, we need one spike for the learning to start but gradient contribution continues in later time steps as shown in Fig. 1. Zenke & Ganguli (2018) derived a surrogate gradient based method on the membrane potential of a spiking neuron at a single time step only. The error was backpropagated at only one time step and only the input at that time step contributed to the gradient. This method neglects the effect of earlier spike inputs. In our approach, the error is backpropagated for every time step and the weight update is performed on the gradients summed over all time steps. Shrestha & Orchard (2018) proposed a gradient function similar to the one proposed in this work. They used the difference between the membrane potential and the threshold to compute the gradient compared to the difference in spike timing used in this work. The membrane potential is a continuous value whereas the spike time is an integer value bounded by the number of time steps. Therefore, gradients that depend on spike time can be pre-computed and stored in a look-up table for faster computation. They evaluated their approach on shallow architectures with two convolution layer for MNIST dataset. In this work, we trained deep SNNs with multiple stacked layers for complex calssification tasks. Wu et al. (2018) performed backpropagation through time on SNN with a surrogate gradient defined on the membrane potential. The surrogate gradient was defined as piece-wise linear or exponential function of the membrane potential. The other surrogate gradients proposed in the literature are all computed on the membrane potential (Neftci et al., 2019). Lee et al. (2019) approximated the neuron output as continuous low-pass filtered spike train. They used this approximated continuous value to perform backpropagation. Most of the works in the literature on direct training of SNN or conversion based methods have been evaluated on shallow architectures for simple classification problems. In Table 2 we compare our model with the models that reported accuracy on CIFAR10 and ImageNet dataset. Wu et al. (2019) achieved convergence in 12 time steps by using a dedicated encoding layer to capture the input precision. It is beyond the scope of this work to compute the hardware and energy implications of such encoding layer. Our model performs better than all other models at far fewer number of time steps. ", + "bbox": [ + 174, + 770, + 825, + 924 + ], + "page_idx": 8 + }, + { + "type": "table", + "img_path": "images/25a870a4d8b8ed3c0cd21eb06d167b377cafd5111c85072ac6fcbad72f6f1376.jpg", + "table_caption": [ + "Table 2: Comparion of our work with other SNN models on CIFAR10 and ImageNet datasets " + ], + "table_footnote": [], + "table_body": "
ModelDatasetTrainingMethodArchitecture AccuracyTime-steps
Hunsberger&Eliasmith(2015)CIFAR10ANN-SNNConversion2Conv,2Linear82.95%6000
Caoetal.(2015)CIFAR10ANN-SNNConversion3Conv,2Linear77.43%400
Senguptaet al. (2019)CIFAR10ANN-SNNConversionVGG1691.55%2500
Lee etal.(2019)CIFAR10Spiking BPVGG990.45%100
Wu et al.(2019)CIFAR10 SurrogateGradient5Conv,2Linear90.53%12
This workCIFAR10HybridTrainingVGG1691.13%92.02%100200
Senguptaet al. (2019)ImageNetANN-SNNConversionVGG1669.96%2500
This workImageNetHybridTrainingVGG1665.19%250
", + "bbox": [ + 196, + 127, + 799, + 449 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "", + "bbox": [ + 174, + 455, + 825, + 705 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "9 CONCLUSIONS ", + "text_level": 1, + "bbox": [ + 176, + 726, + 328, + 741 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "The direct training of SNN with backpropagation is computationally expensive and slow, whereas ANN-SNN conversion suffers from high latency. To address this issue we proposed a hybrid training technique for deep SNNs. We took an SNN converted from ANN and used its weights and thresholds as initialization for spike-based backpropagation of SNN. We then performed spike-based backpropagation on this initialized network to obtain an SNN that can perform with fewer number of time steps. The number of epochs required to train SNN was also reduced by having a good initial starting point. The resultant trained SNN had higher accuracy and lower number of spikes/inference compared to purely converted SNNs at reduced number of time steps. The backpropagation through time was performed with surrogate gradient defined using neuron’s spike time that captured the temporal information and helped in reducing the number of time steps. We tested our algorithm on CIFAR and ImageNet datasets and achieved state-of-the-art performance with fewer number of time steps. ", + "bbox": [ + 174, + 757, + 825, + 924 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "ACKNOWLEDGMENTS ", + "text_level": 1, + "bbox": [ + 176, + 104, + 326, + 117 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "This work was supported in part by the National Science Foundation, in part by Vannevar Bush Faculty Fellowship, and in part by C-BRIC, one of six centers in JUMP, a Semiconductor Research Corporation (SRC) program sponsored by DARPA. ", + "bbox": [ + 176, + 127, + 823, + 170 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "REFERENCES ", + "text_level": 1, + "bbox": [ + 174, + 191, + 287, + 207 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Guillaume Bellec, Darjan Salaj, Anand Subramoney, Robert Legenstein, and Wolfgang Maass. Long short-term memory and learning-to-learn in networks of spiking neurons. In Advances in Neural Information Processing Systems, pp. 787–797, 2018. ", + "bbox": [ + 176, + 215, + 823, + 258 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Sander M Bohte, Joost N Kok, and Johannes A La Poutre. Spikeprop: backpropagation for networks ´ of spiking neurons. In ESANN, pp. 419–424, 2000. ", + "bbox": [ + 173, + 267, + 823, + 296 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Y-Lan Boureau, Jean Ponce, and Yann LeCun. A theoretical analysis of feature pooling in visual recognition. In Proceedings of the 27th international conference on machine learning (ICML-10), pp. 111–118, 2010. ", + "bbox": [ + 174, + 306, + 825, + 349 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Yongqiang Cao, Yang Chen, and Deepak Khosla. Spiking deep convolutional neural networks for energy-efficient object recognition. International Journal of Computer Vision, 113(1):54–66, 2015. ", + "bbox": [ + 174, + 359, + 825, + 401 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "J. Deng, W. Dong, R. Socher, L.-J. Li, K. Li, and L. Fei-Fei. ImageNet: A Large-Scale Hierarchical Image Database. In CVPR09, 2009. ", + "bbox": [ + 171, + 411, + 823, + 440 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Peter U Diehl, Daniel Neil, Jonathan Binas, Matthew Cook, Shih-Chii Liu, and Michael Pfeiffer. Fast-classifying, high-accuracy spiking deep networks through weight and threshold balancing. In 2015 International Joint Conference on Neural Networks (IJCNN), pp. 1–8. IEEE, 2015. ", + "bbox": [ + 174, + 450, + 821, + 494 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Peter U Diehl, Guido Zarrella, Andrew Cassidy, Bruno U Pedroni, and Emre Neftci. Conversion of artificial recurrent neural networks to spiking neural networks for low-power neuromorphic hardware. In 2016 IEEE International Conference on Rebooting Computing (ICRC), pp. 1–8. IEEE, 2016. ", + "bbox": [ + 173, + 503, + 825, + 560 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Kaiming He, Xiangyu Zhang, Shaoqing Ren, and Jian Sun. Deep residual learning for image recognition. In Proceedings of the IEEE conference on computer vision and pattern recognition, pp. 770–778, 2016. ", + "bbox": [ + 173, + 570, + 825, + 613 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Dongsung Huh and Terrence J Sejnowski. Gradient descent for spiking neural networks. In Advances in Neural Information Processing Systems, pp. 1433–1443, 2018. ", + "bbox": [ + 171, + 622, + 823, + 652 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Eric Hunsberger and Chris Eliasmith. Spiking deep networks with lif neurons. arXiv preprint arXiv:1510.08829, 2015. ", + "bbox": [ + 174, + 661, + 821, + 690 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Sergey Ioffe and Christian Szegedy. Batch normalization: Accelerating deep network training by reducing internal covariate shift. arXiv preprint arXiv:1502.03167, 2015. ", + "bbox": [ + 173, + 700, + 823, + 729 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Alex Krizhevsky, Geoffrey Hinton, et al. Learning multiple layers of features from tiny images. Technical report, Citeseer, 2009. ", + "bbox": [ + 171, + 739, + 821, + 768 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Chankyu Lee, Syed Shakib Sarwar, and Kaushik Roy. Enabling spike-based backpropagation in state-of-the-art deep neural network architectures. arXiv preprint arXiv:1903.06379, 2019. ", + "bbox": [ + 173, + 777, + 823, + 808 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Emre O Neftci, Hesham Mostafa, and Friedemann Zenke. Surrogate gradient learning in spiking neural networks. arXiv preprint arXiv:1901.09948, 2019. ", + "bbox": [ + 169, + 818, + 823, + 847 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Abhronil Sengupta, Yuting Ye, Robert Wang, Chiao Liu, and Kaushik Roy. Going deeper in spiking neural networks: $\\mathrm { V g g }$ and residual architectures. Frontiers in neuroscience, 13, 2019. ", + "bbox": [ + 169, + 856, + 823, + 885 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Sumit Bam Shrestha and Garrick Orchard. Slayer: Spike layer error reassignment in time. In Advances in Neural Information Processing Systems, pp. 1412–1421, 2018. ", + "bbox": [ + 174, + 895, + 823, + 924 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Karen Simonyan and Andrew Zisserman. Very deep convolutional networks for large-scale image recognition. arXiv preprint arXiv:1409.1556, 2014. \nSen Song, Kenneth D Miller, and Larry F Abbott. Competitive hebbian learning through spike-timing-dependent synaptic plasticity. Nature neuroscience, 3(9):919, 2000. \nNitish Srivastava, Geoffrey Hinton, Alex Krizhevsky, Ilya Sutskever, and Ruslan Salakhutdinov. Dropout: a simple way to prevent neural networks from overfitting. The journal of machine learning research, 15(1):1929–1958, 2014. \nPaul J Werbos et al. Backpropagation through time: what it does and how to do it. Proceedings of the IEEE, 78(10):1550–1560, 1990. \nYujie Wu, Lei Deng, Guoqi Li, Jun Zhu, and Luping Shi. Spatio-temporal backpropagation for training high-performance spiking neural networks. Frontiers in neuroscience, 12, 2018. \nYujie Wu, Lei Deng, Guoqi Li, Jun Zhu, Yuan Xie, and Luping Shi. Direct training for spiking neural networks: Faster, larger, better. In Proceedings of the AAAI Conference on Artificial Intelligence, volume 33, pp. 1311–1318, 2019. \nFriedemann Zenke and Surya Ganguli. Superspike: Supervised learning in multilayer spiking neural networks. Neural computation, 30(6):1514–1541, 2018. ", + "bbox": [ + 171, + 103, + 828, + 390 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "A COMPARISONS WITH OTHER SURROGATE GRADIENTS ", + "text_level": 1, + "bbox": [ + 174, + 102, + 656, + 118 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "The transfer function of the spiking neuron is a step function and its derivative is zero everywhere except at the time of spike where it is not defined. In order to perform backpropagation with spiking neuron several approximations are proposed for the gradient function (Bellec et al., 2018; Zenke & Ganguli, 2018; Shrestha & Orchard, 2018; Wu et al., 2018). These approximations are either a linear or exponential function of $\\mathrm { ~ ( ~ } u \\mathrm { ~ \\mathrm { ~ - ~ } ~ } V _ { t } \\mathrm { ) }$ , where $u$ is the membrane potential and $V _ { t }$ the threshold voltage (Fig. 4). These approximations are referred as surrogate gradient or pseudo-derivative. In this work, we proposed an approximation that is computed using the spike timing of the neuron (Equation 11). We compare our proposed approximation with the following surrogate gradients: ", + "bbox": [ + 174, + 133, + 483, + 375 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "", + "bbox": [ + 173, + 369, + 529, + 383 + ], + "page_idx": 12 + }, + { + "type": "image", + "img_path": "images/cd48833ffbcb4acb67d4884150d62d285617702c65c61e577bbdc212ea2dfd23.jpg", + "image_caption": [ + "Figure 4: Linear and Exponential approximation of the gradient of the spiking neuron (step function). " + ], + "image_footnote": [], + "bbox": [ + 500, + 148, + 820, + 285 + ], + "page_idx": 12 + }, + { + "type": "equation", + "img_path": "images/d3ffa7db831cd988b1f4bbe805411a4c16c250967ce00caf69fdc7b114865c16.jpg", + "text": "$$\n\\frac { \\partial o } { \\partial u } = \\alpha \\ : m a x \\{ 0 , 1 - | u - V _ { t } | \\}\n$$", + "text_format": "latex", + "bbox": [ + 393, + 388, + 604, + 420 + ], + "page_idx": 12 + }, + { + "type": "equation", + "img_path": "images/5e3cb13a7c82ebc99bad03106af2446876f13d041ebed34abb8d7cbfec9c4b23.jpg", + "text": "$$\n\\frac { \\partial o } { \\partial u } = \\alpha e ^ { - \\beta \\left| u - V _ { t } \\right| }\n$$", + "text_format": "latex", + "bbox": [ + 434, + 425, + 562, + 455 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "where $o$ is the binary output of the neuron, $u$ is the membrane potential, $V _ { t }$ is the threshold potential, $\\alpha$ and $\\beta$ are constants. Equation 13 and Equation 14 represent the linear and exponential approximation of the gradient, respectively. We employed these approximations in the hybrid training for a VGG9 network for CIFAR10 dataset. All the approximations (Equation 11, 13, and 14) produced similar results in terms of accuracy and number of epochs for convergence. This shows that the term $\\Delta t$ (Equation 11) is a good replacement for $| u - V _ { t } |$ (Equation 14). The behaviour of $\\Delta t$ and $| u - V _ { t } |$ is similar, i.e., it is small closer to the time of spike and increases as we move away from the spiking event. The advantage of using $\\Delta t$ is that its domain is bounded by the total number of time steps (Equation 12). Hence, all possible values of gradients can be pre-computed and stored in a table for faster access during training. This is not possible for membrane potential because it is a real value computed based on the stochastic inputs and previous state of the neuron which is not known before hand. The exact benefit in energy from the pre-computation is dependent on the overall system architecture and evaluating it is beyond the scope of this paper. ", + "bbox": [ + 173, + 458, + 825, + 638 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "B COMPARISONS OF SIMULATION TIME AND MEMORY REQUIREMENTS ", + "text_level": 1, + "bbox": [ + 169, + 102, + 785, + 118 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "The simulation time and memory requirements for ANN and SNN are very different. SNN requires much more resources to iterate over multiple time steps and store the membrane potential for each neuron. Fig. 5 shows the training and inference time and memory requirements for ANN, SNN trained with backpropagation from scratch, and SNN trained with the proposed hybrid technique. The performance was evaluated for VGG16 architecture trained for CIFAR10 dataset. SNN trained from scratch and SNN trained with hybrid conversion-and-STDB are evaluated for 100 time steps. One epoch of ANN training (inference) takes 0.57 (0.05) minutes and 1.47 (1.15) GB of GPU memory. On the other hand, one epoch of SNN training (inference) takes 78 (11.39) minutes and 9.36 (1.37) GB of GPU memory for same hardware and mini-batch size. ANN and SNN trained from scratch reached convergence after 250 epochs. The hybrid technique requires 250 epochs of ANN training and 20 epochs of spike-based backpropagation. The hybrid training technique is one order of magnitude faster than training SNN from scratch. The memory requirement for hybrid technique is same as SNN as we need to perform fine-tuning with spike-based backpropagation. ", + "bbox": [ + 173, + 133, + 825, + 314 + ], + "page_idx": 13 + }, + { + "type": "image", + "img_path": "images/392c5b09ee728a2f6923f49603f3ba52dfef46b07e93158f58385264a0bbe80e.jpg", + "image_caption": [ + "Figure 5: Training and Inference time and memory for ANN, SNN trained with backpropagation from scratch, and SNN trained with hybrid technique. All values are normalized based on ANN values. The y-axis is in log scale. The performance was evaluated on one Nvidia GeForce RTX 2080 Ti TU102 GPU with 11 GB of memory. All the networks were trained for VGG16 architecture, CIFAR10 dataset, 100 time steps, and mini-batch size of 32. ANN and SNN require 250 epochs of training from scratch, hybrid conversion-and-STDB based training requires 250 epochs of ANN training followed by 20 epochs of spike-based backpropagation. " + ], + "image_footnote": [], + "bbox": [ + 173, + 329, + 823, + 521 + ], + "page_idx": 13 + } +] \ No newline at end of file diff --git a/parse/train/B1xSperKvH/B1xSperKvH_middle.json b/parse/train/B1xSperKvH/B1xSperKvH_middle.json new file mode 100644 index 0000000000000000000000000000000000000000..c9137119008e0a4debd3bc7ed4665d15c1cd0c9c --- /dev/null +++ b/parse/train/B1xSperKvH/B1xSperKvH_middle.json @@ -0,0 +1,35586 @@ +{ + "pdf_info": [ + { + "preproc_blocks": [ + { + "type": "title", + "bbox": [ + 107, + 78, + 504, + 136 + ], + "lines": [ + { + "bbox": [ + 105, + 77, + 505, + 98 + ], + "spans": [ + { + "bbox": [ + 105, + 77, + 505, + 98 + ], + "score": 1.0, + "content": "ENABLING DEEP SPIKING NEURAL NETWORKS", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 106, + 98, + 505, + 117 + ], + "spans": [ + { + "bbox": [ + 106, + 98, + 505, + 117 + ], + "score": 1.0, + "content": "WITH HYBRID CONVERSION AND SPIKE TIMING", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 106, + 119, + 350, + 137 + ], + "spans": [ + { + "bbox": [ + 106, + 119, + 350, + 137 + ], + "score": 1.0, + "content": "DEPENDENT BACKPROPAGATION", + "type": "text" + } + ], + "index": 2 + } + ], + "index": 1 + }, + { + "type": "text", + "bbox": [ + 113, + 154, + 462, + 167 + ], + "lines": [ + { + "bbox": [ + 110, + 153, + 464, + 169 + ], + "spans": [ + { + "bbox": [ + 110, + 153, + 464, + 169 + ], + "score": 1.0, + "content": "Nitin Rathi1, Gopalakrishnan Srinivasan1, Priyadarshini Panda2 & Kaushik Roy1", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 3 + }, + { + "type": "text", + "bbox": [ + 113, + 168, + 412, + 210 + ], + "lines": [ + { + "bbox": [ + 111, + 165, + 386, + 180 + ], + "spans": [ + { + "bbox": [ + 111, + 165, + 386, + 180 + ], + "score": 1.0, + "content": "1School of Electrical and Computer Engineering, Purdue University", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 111, + 176, + 336, + 191 + ], + "spans": [ + { + "bbox": [ + 111, + 176, + 336, + 191 + ], + "score": 1.0, + "content": "2Department of Electrical Engineering, Yale University", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 112, + 189, + 414, + 203 + ], + "spans": [ + { + "bbox": [ + 112, + 189, + 414, + 203 + ], + "score": 1.0, + "content": "{rathi2, srinivg}@purdue.edu, priya.panda@yale.edu,", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 118, + 201, + 228, + 212 + ], + "spans": [ + { + "bbox": [ + 118, + 201, + 228, + 212 + ], + "score": 1.0, + "content": "kaushik@purdue.edu", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 5.5 + }, + { + "type": "title", + "bbox": [ + 278, + 240, + 333, + 252 + ], + "lines": [ + { + "bbox": [ + 276, + 240, + 335, + 253 + ], + "spans": [ + { + "bbox": [ + 276, + 240, + 335, + 253 + ], + "score": 1.0, + "content": "ABSTRACT", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 8 + }, + { + "type": "text", + "bbox": [ + 142, + 267, + 468, + 572 + ], + "lines": [ + { + "bbox": [ + 142, + 266, + 470, + 279 + ], + "spans": [ + { + "bbox": [ + 142, + 266, + 470, + 279 + ], + "score": 1.0, + "content": "Spiking Neural Networks (SNNs) operate with asynchronous discrete events (or", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 142, + 277, + 469, + 290 + ], + "spans": [ + { + "bbox": [ + 142, + 277, + 469, + 290 + ], + "score": 1.0, + "content": "spikes) which can potentially lead to higher energy-efficiency in neuromorphic", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 141, + 289, + 469, + 300 + ], + "spans": [ + { + "bbox": [ + 141, + 289, + 469, + 300 + ], + "score": 1.0, + "content": "hardware implementations. Many works have shown that an SNN for inference", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 141, + 299, + 470, + 312 + ], + "spans": [ + { + "bbox": [ + 141, + 299, + 470, + 312 + ], + "score": 1.0, + "content": "can be formed by copying the weights from a trained Artificial Neural Network", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 141, + 310, + 470, + 322 + ], + "spans": [ + { + "bbox": [ + 141, + 310, + 470, + 322 + ], + "score": 1.0, + "content": "(ANN) and setting the firing threshold for each layer as the maximum input", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 141, + 321, + 469, + 333 + ], + "spans": [ + { + "bbox": [ + 141, + 321, + 469, + 333 + ], + "score": 1.0, + "content": "received in that layer. These type of converted SNNs require a large number", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 141, + 331, + 469, + 345 + ], + "spans": [ + { + "bbox": [ + 141, + 331, + 469, + 345 + ], + "score": 1.0, + "content": "of time steps to achieve competitive accuracy which diminishes the energy", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 141, + 342, + 469, + 355 + ], + "spans": [ + { + "bbox": [ + 141, + 342, + 469, + 355 + ], + "score": 1.0, + "content": "savings. The number of time steps can be reduced by training SNNs with", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 141, + 354, + 469, + 367 + ], + "spans": [ + { + "bbox": [ + 141, + 354, + 469, + 367 + ], + "score": 1.0, + "content": "spike-based backpropagation from scratch, but that is computationally expensive", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 141, + 365, + 469, + 378 + ], + "spans": [ + { + "bbox": [ + 141, + 365, + 469, + 378 + ], + "score": 1.0, + "content": "and slow. To address these challenges, we present a computationally-efficient", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 141, + 375, + 470, + 389 + ], + "spans": [ + { + "bbox": [ + 141, + 375, + 470, + 389 + ], + "score": 1.0, + "content": "training technique for deep SNNs1. We propose a hybrid training methodology:", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 142, + 387, + 469, + 399 + ], + "spans": [ + { + "bbox": [ + 142, + 387, + 469, + 399 + ], + "score": 1.0, + "content": "1) take a converted SNN and use its weights and thresholds as an initialization", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 141, + 398, + 469, + 411 + ], + "spans": [ + { + "bbox": [ + 141, + 398, + 469, + 411 + ], + "score": 1.0, + "content": "step for spike-based backpropagation, and 2) perform incremental spike-timing", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 141, + 408, + 470, + 421 + ], + "spans": [ + { + "bbox": [ + 141, + 408, + 470, + 421 + ], + "score": 1.0, + "content": "dependent backpropagation (STDB) on this carefully initialized network to obtain", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 141, + 420, + 469, + 432 + ], + "spans": [ + { + "bbox": [ + 141, + 420, + 469, + 432 + ], + "score": 1.0, + "content": "an SNN that converges within few epochs and requires fewer time steps for", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 141, + 431, + 469, + 444 + ], + "spans": [ + { + "bbox": [ + 141, + 431, + 469, + 444 + ], + "score": 1.0, + "content": "input processing. STDB is performed with a novel surrogate gradient function", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 141, + 441, + 469, + 453 + ], + "spans": [ + { + "bbox": [ + 141, + 441, + 469, + 453 + ], + "score": 1.0, + "content": "defined using neuron’s spike time. The weight update is proportional to the", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 141, + 452, + 469, + 465 + ], + "spans": [ + { + "bbox": [ + 141, + 452, + 469, + 465 + ], + "score": 1.0, + "content": "difference in spike timing between the current time step and the most recent", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 141, + 463, + 470, + 476 + ], + "spans": [ + { + "bbox": [ + 141, + 463, + 470, + 476 + ], + "score": 1.0, + "content": "time step the neuron generated an output spike. The SNNs trained with our", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 141, + 474, + 470, + 486 + ], + "spans": [ + { + "bbox": [ + 141, + 474, + 349, + 486 + ], + "score": 1.0, + "content": "hybrid conversion-and-STDB training perform at", + "type": "text" + }, + { + "bbox": [ + 350, + 475, + 394, + 486 + ], + "score": 0.91, + "content": "1 0 \\times - 2 5 \\times", + "type": "inline_equation" + }, + { + "bbox": [ + 395, + 474, + 470, + 486 + ], + "score": 1.0, + "content": "fewer number of", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 141, + 485, + 470, + 498 + ], + "spans": [ + { + "bbox": [ + 141, + 485, + 470, + 498 + ], + "score": 1.0, + "content": "time steps and achieve similar accuracy compared to purely converted SNNs. The", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 141, + 497, + 469, + 508 + ], + "spans": [ + { + "bbox": [ + 141, + 497, + 469, + 508 + ], + "score": 1.0, + "content": "proposed training methodology converges in less than 20 epochs of spike-based", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 141, + 507, + 469, + 520 + ], + "spans": [ + { + "bbox": [ + 141, + 507, + 469, + 520 + ], + "score": 1.0, + "content": "backpropagation for most standard image classification datasets, thereby greatly", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 141, + 518, + 470, + 531 + ], + "spans": [ + { + "bbox": [ + 141, + 518, + 470, + 531 + ], + "score": 1.0, + "content": "reducing the training complexity compared to training SNNs from scratch. We", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 141, + 530, + 469, + 541 + ], + "spans": [ + { + "bbox": [ + 141, + 530, + 469, + 541 + ], + "score": 1.0, + "content": "perform experiments on CIFAR-10, CIFAR-100 and ImageNet datasets for both", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 141, + 540, + 470, + 552 + ], + "spans": [ + { + "bbox": [ + 141, + 540, + 419, + 552 + ], + "score": 1.0, + "content": "VGG and ResNet architectures. We achieve top-1 accuracy of", + "type": "text" + }, + { + "bbox": [ + 419, + 540, + 452, + 551 + ], + "score": 0.89, + "content": "6 5 . 1 9 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 452, + 540, + 470, + 552 + ], + "score": 1.0, + "content": "for", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 141, + 551, + 469, + 564 + ], + "spans": [ + { + "bbox": [ + 141, + 551, + 380, + 564 + ], + "score": 1.0, + "content": "ImageNet dataset on SNN with 250 time steps, which is", + "type": "text" + }, + { + "bbox": [ + 380, + 551, + 399, + 562 + ], + "score": 0.87, + "content": "1 0 \\times", + "type": "inline_equation" + }, + { + "bbox": [ + 400, + 551, + 469, + 564 + ], + "score": 1.0, + "content": "faster compared", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 141, + 562, + 310, + 575 + ], + "spans": [ + { + "bbox": [ + 141, + 562, + 310, + 575 + ], + "score": 1.0, + "content": "to converted SNNs with similar accuracy.", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 22.5 + }, + { + "type": "title", + "bbox": [ + 108, + 597, + 206, + 609 + ], + "lines": [ + { + "bbox": [ + 105, + 595, + 208, + 612 + ], + "spans": [ + { + "bbox": [ + 105, + 595, + 208, + 612 + ], + "score": 1.0, + "content": "1 INTRODUCTION", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 37 + }, + { + "type": "text", + "bbox": [ + 107, + 622, + 505, + 711 + ], + "lines": [ + { + "bbox": [ + 105, + 622, + 506, + 636 + ], + "spans": [ + { + "bbox": [ + 105, + 622, + 506, + 636 + ], + "score": 1.0, + "content": "In recent years, Spiking Neural Networks (SNNs) have shown promise towards enabling low-power", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 106, + 634, + 505, + 646 + ], + "spans": [ + { + "bbox": [ + 106, + 634, + 505, + 646 + ], + "score": 1.0, + "content": "machine intelligence with event-driven neuromorphic hardware. Founded on bio-plausibility, the", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 645, + 505, + 657 + ], + "spans": [ + { + "bbox": [ + 105, + 645, + 505, + 657 + ], + "score": 1.0, + "content": "neurons in an SNN compute and communicate information through discrete binary events (or", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 655, + 506, + 668 + ], + "spans": [ + { + "bbox": [ + 105, + 655, + 506, + 668 + ], + "score": 1.0, + "content": "spikes) a significant shift from the standard artificial neural networks (ANNs), which process", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 106, + 667, + 505, + 679 + ], + "spans": [ + { + "bbox": [ + 106, + 667, + 505, + 679 + ], + "score": 1.0, + "content": "data in a real-valued (or analog) manner. The binary all-or-nothing spike-based communication", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 677, + 506, + 690 + ], + "spans": [ + { + "bbox": [ + 105, + 677, + 506, + 690 + ], + "score": 1.0, + "content": "combined with sparse temporal processing precisely make SNNs a low-power alternative to", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 688, + 506, + 702 + ], + "spans": [ + { + "bbox": [ + 105, + 688, + 506, + 702 + ], + "score": 1.0, + "content": "conventional ANNs. With all its appeal for power efficiency, training SNNs still remains a", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 106, + 700, + 505, + 712 + ], + "spans": [ + { + "bbox": [ + 106, + 700, + 505, + 712 + ], + "score": 1.0, + "content": "challenge. The discontinuous and non-differentiable nature of a spiking neuron (generally, modeled", + "type": "text" + } + ], + "index": 45 + } + ], + "index": 41.5 + } + ], + "page_idx": 0, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 120, + 722, + 311, + 731 + ], + "lines": [ + { + "bbox": [ + 119, + 720, + 312, + 734 + ], + "spans": [ + { + "bbox": [ + 119, + 720, + 312, + 734 + ], + "score": 1.0, + "content": "1https://github.com/nitin-rathi/hybrid-snn-conversion", + "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, + 752, + 308, + 760 + ], + "lines": [ + { + "bbox": [ + 302, + 751, + 309, + 762 + ], + "spans": [ + { + "bbox": [ + 302, + 751, + 309, + 762 + ], + "score": 1.0, + "content": "1", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "title", + "bbox": [ + 107, + 78, + 504, + 136 + ], + "lines": [ + { + "bbox": [ + 105, + 77, + 505, + 98 + ], + "spans": [ + { + "bbox": [ + 105, + 77, + 505, + 98 + ], + "score": 1.0, + "content": "ENABLING DEEP SPIKING NEURAL NETWORKS", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 106, + 98, + 505, + 117 + ], + "spans": [ + { + "bbox": [ + 106, + 98, + 505, + 117 + ], + "score": 1.0, + "content": "WITH HYBRID CONVERSION AND SPIKE TIMING", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 106, + 119, + 350, + 137 + ], + "spans": [ + { + "bbox": [ + 106, + 119, + 350, + 137 + ], + "score": 1.0, + "content": "DEPENDENT BACKPROPAGATION", + "type": "text" + } + ], + "index": 2 + } + ], + "index": 1 + }, + { + "type": "text", + "bbox": [ + 113, + 154, + 462, + 167 + ], + "lines": [ + { + "bbox": [ + 110, + 153, + 464, + 169 + ], + "spans": [ + { + "bbox": [ + 110, + 153, + 464, + 169 + ], + "score": 1.0, + "content": "Nitin Rathi1, Gopalakrishnan Srinivasan1, Priyadarshini Panda2 & Kaushik Roy1", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 3, + "bbox_fs": [ + 110, + 153, + 464, + 169 + ] + }, + { + "type": "text", + "bbox": [ + 113, + 168, + 412, + 210 + ], + "lines": [ + { + "bbox": [ + 111, + 165, + 386, + 180 + ], + "spans": [ + { + "bbox": [ + 111, + 165, + 386, + 180 + ], + "score": 1.0, + "content": "1School of Electrical and Computer Engineering, Purdue University", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 111, + 176, + 336, + 191 + ], + "spans": [ + { + "bbox": [ + 111, + 176, + 336, + 191 + ], + "score": 1.0, + "content": "2Department of Electrical Engineering, Yale University", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 112, + 189, + 414, + 203 + ], + "spans": [ + { + "bbox": [ + 112, + 189, + 414, + 203 + ], + "score": 1.0, + "content": "{rathi2, srinivg}@purdue.edu, priya.panda@yale.edu,", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 118, + 201, + 228, + 212 + ], + "spans": [ + { + "bbox": [ + 118, + 201, + 228, + 212 + ], + "score": 1.0, + "content": "kaushik@purdue.edu", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 5.5, + "bbox_fs": [ + 111, + 165, + 414, + 212 + ] + }, + { + "type": "title", + "bbox": [ + 278, + 240, + 333, + 252 + ], + "lines": [ + { + "bbox": [ + 276, + 240, + 335, + 253 + ], + "spans": [ + { + "bbox": [ + 276, + 240, + 335, + 253 + ], + "score": 1.0, + "content": "ABSTRACT", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 8 + }, + { + "type": "text", + "bbox": [ + 142, + 267, + 468, + 572 + ], + "lines": [ + { + "bbox": [ + 142, + 266, + 470, + 279 + ], + "spans": [ + { + "bbox": [ + 142, + 266, + 470, + 279 + ], + "score": 1.0, + "content": "Spiking Neural Networks (SNNs) operate with asynchronous discrete events (or", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 142, + 277, + 469, + 290 + ], + "spans": [ + { + "bbox": [ + 142, + 277, + 469, + 290 + ], + "score": 1.0, + "content": "spikes) which can potentially lead to higher energy-efficiency in neuromorphic", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 141, + 289, + 469, + 300 + ], + "spans": [ + { + "bbox": [ + 141, + 289, + 469, + 300 + ], + "score": 1.0, + "content": "hardware implementations. Many works have shown that an SNN for inference", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 141, + 299, + 470, + 312 + ], + "spans": [ + { + "bbox": [ + 141, + 299, + 470, + 312 + ], + "score": 1.0, + "content": "can be formed by copying the weights from a trained Artificial Neural Network", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 141, + 310, + 470, + 322 + ], + "spans": [ + { + "bbox": [ + 141, + 310, + 470, + 322 + ], + "score": 1.0, + "content": "(ANN) and setting the firing threshold for each layer as the maximum input", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 141, + 321, + 469, + 333 + ], + "spans": [ + { + "bbox": [ + 141, + 321, + 469, + 333 + ], + "score": 1.0, + "content": "received in that layer. These type of converted SNNs require a large number", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 141, + 331, + 469, + 345 + ], + "spans": [ + { + "bbox": [ + 141, + 331, + 469, + 345 + ], + "score": 1.0, + "content": "of time steps to achieve competitive accuracy which diminishes the energy", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 141, + 342, + 469, + 355 + ], + "spans": [ + { + "bbox": [ + 141, + 342, + 469, + 355 + ], + "score": 1.0, + "content": "savings. The number of time steps can be reduced by training SNNs with", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 141, + 354, + 469, + 367 + ], + "spans": [ + { + "bbox": [ + 141, + 354, + 469, + 367 + ], + "score": 1.0, + "content": "spike-based backpropagation from scratch, but that is computationally expensive", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 141, + 365, + 469, + 378 + ], + "spans": [ + { + "bbox": [ + 141, + 365, + 469, + 378 + ], + "score": 1.0, + "content": "and slow. To address these challenges, we present a computationally-efficient", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 141, + 375, + 470, + 389 + ], + "spans": [ + { + "bbox": [ + 141, + 375, + 470, + 389 + ], + "score": 1.0, + "content": "training technique for deep SNNs1. We propose a hybrid training methodology:", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 142, + 387, + 469, + 399 + ], + "spans": [ + { + "bbox": [ + 142, + 387, + 469, + 399 + ], + "score": 1.0, + "content": "1) take a converted SNN and use its weights and thresholds as an initialization", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 141, + 398, + 469, + 411 + ], + "spans": [ + { + "bbox": [ + 141, + 398, + 469, + 411 + ], + "score": 1.0, + "content": "step for spike-based backpropagation, and 2) perform incremental spike-timing", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 141, + 408, + 470, + 421 + ], + "spans": [ + { + "bbox": [ + 141, + 408, + 470, + 421 + ], + "score": 1.0, + "content": "dependent backpropagation (STDB) on this carefully initialized network to obtain", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 141, + 420, + 469, + 432 + ], + "spans": [ + { + "bbox": [ + 141, + 420, + 469, + 432 + ], + "score": 1.0, + "content": "an SNN that converges within few epochs and requires fewer time steps for", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 141, + 431, + 469, + 444 + ], + "spans": [ + { + "bbox": [ + 141, + 431, + 469, + 444 + ], + "score": 1.0, + "content": "input processing. STDB is performed with a novel surrogate gradient function", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 141, + 441, + 469, + 453 + ], + "spans": [ + { + "bbox": [ + 141, + 441, + 469, + 453 + ], + "score": 1.0, + "content": "defined using neuron’s spike time. The weight update is proportional to the", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 141, + 452, + 469, + 465 + ], + "spans": [ + { + "bbox": [ + 141, + 452, + 469, + 465 + ], + "score": 1.0, + "content": "difference in spike timing between the current time step and the most recent", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 141, + 463, + 470, + 476 + ], + "spans": [ + { + "bbox": [ + 141, + 463, + 470, + 476 + ], + "score": 1.0, + "content": "time step the neuron generated an output spike. The SNNs trained with our", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 141, + 474, + 470, + 486 + ], + "spans": [ + { + "bbox": [ + 141, + 474, + 349, + 486 + ], + "score": 1.0, + "content": "hybrid conversion-and-STDB training perform at", + "type": "text" + }, + { + "bbox": [ + 350, + 475, + 394, + 486 + ], + "score": 0.91, + "content": "1 0 \\times - 2 5 \\times", + "type": "inline_equation" + }, + { + "bbox": [ + 395, + 474, + 470, + 486 + ], + "score": 1.0, + "content": "fewer number of", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 141, + 485, + 470, + 498 + ], + "spans": [ + { + "bbox": [ + 141, + 485, + 470, + 498 + ], + "score": 1.0, + "content": "time steps and achieve similar accuracy compared to purely converted SNNs. The", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 141, + 497, + 469, + 508 + ], + "spans": [ + { + "bbox": [ + 141, + 497, + 469, + 508 + ], + "score": 1.0, + "content": "proposed training methodology converges in less than 20 epochs of spike-based", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 141, + 507, + 469, + 520 + ], + "spans": [ + { + "bbox": [ + 141, + 507, + 469, + 520 + ], + "score": 1.0, + "content": "backpropagation for most standard image classification datasets, thereby greatly", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 141, + 518, + 470, + 531 + ], + "spans": [ + { + "bbox": [ + 141, + 518, + 470, + 531 + ], + "score": 1.0, + "content": "reducing the training complexity compared to training SNNs from scratch. We", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 141, + 530, + 469, + 541 + ], + "spans": [ + { + "bbox": [ + 141, + 530, + 469, + 541 + ], + "score": 1.0, + "content": "perform experiments on CIFAR-10, CIFAR-100 and ImageNet datasets for both", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 141, + 540, + 470, + 552 + ], + "spans": [ + { + "bbox": [ + 141, + 540, + 419, + 552 + ], + "score": 1.0, + "content": "VGG and ResNet architectures. We achieve top-1 accuracy of", + "type": "text" + }, + { + "bbox": [ + 419, + 540, + 452, + 551 + ], + "score": 0.89, + "content": "6 5 . 1 9 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 452, + 540, + 470, + 552 + ], + "score": 1.0, + "content": "for", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 141, + 551, + 469, + 564 + ], + "spans": [ + { + "bbox": [ + 141, + 551, + 380, + 564 + ], + "score": 1.0, + "content": "ImageNet dataset on SNN with 250 time steps, which is", + "type": "text" + }, + { + "bbox": [ + 380, + 551, + 399, + 562 + ], + "score": 0.87, + "content": "1 0 \\times", + "type": "inline_equation" + }, + { + "bbox": [ + 400, + 551, + 469, + 564 + ], + "score": 1.0, + "content": "faster compared", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 141, + 562, + 310, + 575 + ], + "spans": [ + { + "bbox": [ + 141, + 562, + 310, + 575 + ], + "score": 1.0, + "content": "to converted SNNs with similar accuracy.", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 22.5, + "bbox_fs": [ + 141, + 266, + 470, + 575 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 597, + 206, + 609 + ], + "lines": [ + { + "bbox": [ + 105, + 595, + 208, + 612 + ], + "spans": [ + { + "bbox": [ + 105, + 595, + 208, + 612 + ], + "score": 1.0, + "content": "1 INTRODUCTION", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 37 + }, + { + "type": "text", + "bbox": [ + 107, + 622, + 505, + 711 + ], + "lines": [ + { + "bbox": [ + 105, + 622, + 506, + 636 + ], + "spans": [ + { + "bbox": [ + 105, + 622, + 506, + 636 + ], + "score": 1.0, + "content": "In recent years, Spiking Neural Networks (SNNs) have shown promise towards enabling low-power", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 106, + 634, + 505, + 646 + ], + "spans": [ + { + "bbox": [ + 106, + 634, + 505, + 646 + ], + "score": 1.0, + "content": "machine intelligence with event-driven neuromorphic hardware. Founded on bio-plausibility, the", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 645, + 505, + 657 + ], + "spans": [ + { + "bbox": [ + 105, + 645, + 505, + 657 + ], + "score": 1.0, + "content": "neurons in an SNN compute and communicate information through discrete binary events (or", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 655, + 506, + 668 + ], + "spans": [ + { + "bbox": [ + 105, + 655, + 506, + 668 + ], + "score": 1.0, + "content": "spikes) a significant shift from the standard artificial neural networks (ANNs), which process", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 106, + 667, + 505, + 679 + ], + "spans": [ + { + "bbox": [ + 106, + 667, + 505, + 679 + ], + "score": 1.0, + "content": "data in a real-valued (or analog) manner. The binary all-or-nothing spike-based communication", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 677, + 506, + 690 + ], + "spans": [ + { + "bbox": [ + 105, + 677, + 506, + 690 + ], + "score": 1.0, + "content": "combined with sparse temporal processing precisely make SNNs a low-power alternative to", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 688, + 506, + 702 + ], + "spans": [ + { + "bbox": [ + 105, + 688, + 506, + 702 + ], + "score": 1.0, + "content": "conventional ANNs. With all its appeal for power efficiency, training SNNs still remains a", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 106, + 700, + 505, + 712 + ], + "spans": [ + { + "bbox": [ + 106, + 700, + 505, + 712 + ], + "score": 1.0, + "content": "challenge. The discontinuous and non-differentiable nature of a spiking neuron (generally, modeled", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 105, + 82, + 505, + 95 + ], + "spans": [ + { + "bbox": [ + 105, + 82, + 505, + 95 + ], + "score": 1.0, + "content": "as leaky-integrate-and-fire (LIF), or integrate-and-fire (IF)) poses difficulty to conduct gradient", + "type": "text", + "cross_page": true + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 93, + 506, + 107 + ], + "spans": [ + { + "bbox": [ + 105, + 93, + 506, + 107 + ], + "score": 1.0, + "content": "descent based backpropagation. Practically, SNNs still lag behind ANNs, in terms of performance", + "type": "text", + "cross_page": true + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 105, + 506, + 118 + ], + "spans": [ + { + "bbox": [ + 105, + 105, + 506, + 118 + ], + "score": 1.0, + "content": "or accuracy, in traditional learning tasks. Consequently, there has been several works over the", + "type": "text", + "cross_page": true + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 115, + 505, + 129 + ], + "spans": [ + { + "bbox": [ + 105, + 115, + 505, + 129 + ], + "score": 1.0, + "content": "past few years that propose different learning algorithms or learning rules for implementing deep", + "type": "text", + "cross_page": true + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 126, + 505, + 139 + ], + "spans": [ + { + "bbox": [ + 105, + 126, + 505, + 139 + ], + "score": 1.0, + "content": "convolutional SNNs for complex visual recognition tasks (Wu et al., 2019; Hunsberger & Eliasmith,", + "type": "text", + "cross_page": true + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 137, + 505, + 150 + ], + "spans": [ + { + "bbox": [ + 105, + 137, + 505, + 150 + ], + "score": 1.0, + "content": "2015; Cao et al., 2015). Of all the techniques, conversion from ANN-to-SNN (Diehl et al.,", + "type": "text", + "cross_page": true + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 148, + 506, + 162 + ], + "spans": [ + { + "bbox": [ + 105, + 148, + 506, + 162 + ], + "score": 1.0, + "content": "2016; 2015; Sengupta et al., 2019; Hunsberger & Eliasmith, 2015) has yielded state-of-the-art", + "type": "text", + "cross_page": true + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 159, + 506, + 172 + ], + "spans": [ + { + "bbox": [ + 105, + 159, + 506, + 172 + ], + "score": 1.0, + "content": "accuracies matching deep ANN performance for Imagenet dataset on complex architectures (such as,", + "type": "text", + "cross_page": true + } + ], + "index": 7 + }, + { + "bbox": [ + 106, + 170, + 505, + 183 + ], + "spans": [ + { + "bbox": [ + 106, + 170, + 505, + 183 + ], + "score": 1.0, + "content": "VGG (Simonyan & Zisserman, 2014) and ResNet (He et al., 2016) ). In conversion, we train an ANN", + "type": "text", + "cross_page": true + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 180, + 504, + 193 + ], + "spans": [ + { + "bbox": [ + 105, + 180, + 504, + 193 + ], + "score": 1.0, + "content": "with ReLU neurons using gradient descent and then convert the ANN to an SNN with IF neurons by", + "type": "text", + "cross_page": true + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 191, + 505, + 204 + ], + "spans": [ + { + "bbox": [ + 105, + 191, + 505, + 204 + ], + "score": 1.0, + "content": "using suitable threshold balancing (Sengupta et al., 2019). But, SNNs obtained through conversion", + "type": "text", + "cross_page": true + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 203, + 505, + 216 + ], + "spans": [ + { + "bbox": [ + 105, + 203, + 505, + 216 + ], + "score": 1.0, + "content": "incur large latency of 2000−2500 time steps (measured as total number of time steps required to", + "type": "text", + "cross_page": true + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 214, + 507, + 227 + ], + "spans": [ + { + "bbox": [ + 105, + 214, + 507, + 227 + ], + "score": 1.0, + "content": "process a given input image2). The term ‘time step’ defines an unit of time required to process a", + "type": "text", + "cross_page": true + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 225, + 504, + 237 + ], + "spans": [ + { + "bbox": [ + 105, + 225, + 504, + 237 + ], + "score": 1.0, + "content": "single input spike across all layers and represents the network latency. The large latency translates", + "type": "text", + "cross_page": true + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 235, + 506, + 250 + ], + "spans": [ + { + "bbox": [ + 105, + 235, + 506, + 250 + ], + "score": 1.0, + "content": "to higher energy consumption during inference, thereby, diminishing the efficiency improvements", + "type": "text", + "cross_page": true + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 245, + 505, + 261 + ], + "spans": [ + { + "bbox": [ + 105, + 245, + 505, + 261 + ], + "score": 1.0, + "content": "of SNNs over ANNs. To reduce the latency, spike-based backpropagation rules have been proposed", + "type": "text", + "cross_page": true + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 257, + 505, + 271 + ], + "spans": [ + { + "bbox": [ + 105, + 257, + 505, + 271 + ], + "score": 1.0, + "content": "that perform end-to-end gradient descent training on spike data. In spike-based backpropagation", + "type": "text", + "cross_page": true + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 268, + 505, + 282 + ], + "spans": [ + { + "bbox": [ + 105, + 268, + 505, + 282 + ], + "score": 1.0, + "content": "methods, the non-differentiability of the spiking neuron is handled by either approximating the", + "type": "text", + "cross_page": true + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 279, + 506, + 294 + ], + "spans": [ + { + "bbox": [ + 105, + 279, + 506, + 294 + ], + "score": 1.0, + "content": "spiking neuron model as continuous and differentiable (Huh & Sejnowski, 2018) or by defining", + "type": "text", + "cross_page": true + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 291, + 505, + 304 + ], + "spans": [ + { + "bbox": [ + 105, + 291, + 505, + 304 + ], + "score": 1.0, + "content": "a surrogate gradient as a continuous approximation of the real gradient (Wu et al., 2018; Bellec", + "type": "text", + "cross_page": true + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 302, + 504, + 315 + ], + "spans": [ + { + "bbox": [ + 105, + 302, + 476, + 315 + ], + "score": 1.0, + "content": "et al., 2018; Neftci et al., 2019). Spike-based SNN training reduces the overall latency by", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 477, + 302, + 504, + 313 + ], + "score": 0.88, + "content": "{ \\sim } 1 0 \\times", + "type": "inline_equation", + "cross_page": true + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 312, + 505, + 326 + ], + "spans": [ + { + "bbox": [ + 105, + 312, + 164, + 326 + ], + "score": 1.0, + "content": "(for instance,", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 164, + 313, + 210, + 323 + ], + "score": 0.82, + "content": "2 0 0 \\mathrm { ~ - ~ } 2 5 0", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 210, + 312, + 505, + 326 + ], + "score": 1.0, + "content": "time steps required to process an input (Lee et al., 2019)) but requires", + "type": "text", + "cross_page": true + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 324, + 505, + 337 + ], + "spans": [ + { + "bbox": [ + 105, + 324, + 505, + 337 + ], + "score": 1.0, + "content": "more training effort (in terms of total training iterations) than conversion approaches. A single", + "type": "text", + "cross_page": true + } + ], + "index": 22 + }, + { + "bbox": [ + 104, + 333, + 506, + 348 + ], + "spans": [ + { + "bbox": [ + 104, + 333, + 506, + 348 + ], + "score": 1.0, + "content": "feed-forward pass in ANN corresponds to multiple forward passes in SNN which is proportional", + "type": "text", + "cross_page": true + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 346, + 505, + 359 + ], + "spans": [ + { + "bbox": [ + 105, + 346, + 505, + 359 + ], + "score": 1.0, + "content": "to the number of time steps. In spike-based backpropagation, the backward pass requires the", + "type": "text", + "cross_page": true + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 356, + 506, + 370 + ], + "spans": [ + { + "bbox": [ + 105, + 356, + 506, + 370 + ], + "score": 1.0, + "content": "gradients to be integrated over the total number of time steps that increases the computation and", + "type": "text", + "cross_page": true + } + ], + "index": 25 + }, + { + "bbox": [ + 104, + 367, + 506, + 381 + ], + "spans": [ + { + "bbox": [ + 104, + 367, + 506, + 381 + ], + "score": 1.0, + "content": "memory complexity. The multiple-iteration training effort with exploding memory requirement (for", + "type": "text", + "cross_page": true + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 378, + 505, + 391 + ], + "spans": [ + { + "bbox": [ + 105, + 378, + 505, + 391 + ], + "score": 1.0, + "content": "backward pass computations) has limited the applicability of spike-based backpropagation methods", + "type": "text", + "cross_page": true + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 389, + 444, + 402 + ], + "spans": [ + { + "bbox": [ + 105, + 389, + 444, + 402 + ], + "score": 1.0, + "content": "to small datasets (like CIFAR10) on simple few-layered convolutional architectures.", + "type": "text", + "cross_page": true + } + ], + "index": 28 + } + ], + "index": 41.5, + "bbox_fs": [ + 105, + 622, + 506, + 712 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 107, + 82, + 505, + 401 + ], + "lines": [ + { + "bbox": [ + 105, + 82, + 505, + 95 + ], + "spans": [ + { + "bbox": [ + 105, + 82, + 505, + 95 + ], + "score": 1.0, + "content": "as leaky-integrate-and-fire (LIF), or integrate-and-fire (IF)) poses difficulty to conduct gradient", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 93, + 506, + 107 + ], + "spans": [ + { + "bbox": [ + 105, + 93, + 506, + 107 + ], + "score": 1.0, + "content": "descent based backpropagation. Practically, SNNs still lag behind ANNs, in terms of performance", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 105, + 506, + 118 + ], + "spans": [ + { + "bbox": [ + 105, + 105, + 506, + 118 + ], + "score": 1.0, + "content": "or accuracy, in traditional learning tasks. Consequently, there has been several works over the", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 115, + 505, + 129 + ], + "spans": [ + { + "bbox": [ + 105, + 115, + 505, + 129 + ], + "score": 1.0, + "content": "past few years that propose different learning algorithms or learning rules for implementing deep", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 126, + 505, + 139 + ], + "spans": [ + { + "bbox": [ + 105, + 126, + 505, + 139 + ], + "score": 1.0, + "content": "convolutional SNNs for complex visual recognition tasks (Wu et al., 2019; Hunsberger & Eliasmith,", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 137, + 505, + 150 + ], + "spans": [ + { + "bbox": [ + 105, + 137, + 505, + 150 + ], + "score": 1.0, + "content": "2015; Cao et al., 2015). Of all the techniques, conversion from ANN-to-SNN (Diehl et al.,", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 148, + 506, + 162 + ], + "spans": [ + { + "bbox": [ + 105, + 148, + 506, + 162 + ], + "score": 1.0, + "content": "2016; 2015; Sengupta et al., 2019; Hunsberger & Eliasmith, 2015) has yielded state-of-the-art", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 159, + 506, + 172 + ], + "spans": [ + { + "bbox": [ + 105, + 159, + 506, + 172 + ], + "score": 1.0, + "content": "accuracies matching deep ANN performance for Imagenet dataset on complex architectures (such as,", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 106, + 170, + 505, + 183 + ], + "spans": [ + { + "bbox": [ + 106, + 170, + 505, + 183 + ], + "score": 1.0, + "content": "VGG (Simonyan & Zisserman, 2014) and ResNet (He et al., 2016) ). In conversion, we train an ANN", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 180, + 504, + 193 + ], + "spans": [ + { + "bbox": [ + 105, + 180, + 504, + 193 + ], + "score": 1.0, + "content": "with ReLU neurons using gradient descent and then convert the ANN to an SNN with IF neurons by", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 191, + 505, + 204 + ], + "spans": [ + { + "bbox": [ + 105, + 191, + 505, + 204 + ], + "score": 1.0, + "content": "using suitable threshold balancing (Sengupta et al., 2019). But, SNNs obtained through conversion", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 203, + 505, + 216 + ], + "spans": [ + { + "bbox": [ + 105, + 203, + 505, + 216 + ], + "score": 1.0, + "content": "incur large latency of 2000−2500 time steps (measured as total number of time steps required to", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 214, + 507, + 227 + ], + "spans": [ + { + "bbox": [ + 105, + 214, + 507, + 227 + ], + "score": 1.0, + "content": "process a given input image2). The term ‘time step’ defines an unit of time required to process a", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 225, + 504, + 237 + ], + "spans": [ + { + "bbox": [ + 105, + 225, + 504, + 237 + ], + "score": 1.0, + "content": "single input spike across all layers and represents the network latency. The large latency translates", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 235, + 506, + 250 + ], + "spans": [ + { + "bbox": [ + 105, + 235, + 506, + 250 + ], + "score": 1.0, + "content": "to higher energy consumption during inference, thereby, diminishing the efficiency improvements", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 245, + 505, + 261 + ], + "spans": [ + { + "bbox": [ + 105, + 245, + 505, + 261 + ], + "score": 1.0, + "content": "of SNNs over ANNs. To reduce the latency, spike-based backpropagation rules have been proposed", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 257, + 505, + 271 + ], + "spans": [ + { + "bbox": [ + 105, + 257, + 505, + 271 + ], + "score": 1.0, + "content": "that perform end-to-end gradient descent training on spike data. In spike-based backpropagation", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 268, + 505, + 282 + ], + "spans": [ + { + "bbox": [ + 105, + 268, + 505, + 282 + ], + "score": 1.0, + "content": "methods, the non-differentiability of the spiking neuron is handled by either approximating the", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 279, + 506, + 294 + ], + "spans": [ + { + "bbox": [ + 105, + 279, + 506, + 294 + ], + "score": 1.0, + "content": "spiking neuron model as continuous and differentiable (Huh & Sejnowski, 2018) or by defining", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 291, + 505, + 304 + ], + "spans": [ + { + "bbox": [ + 105, + 291, + 505, + 304 + ], + "score": 1.0, + "content": "a surrogate gradient as a continuous approximation of the real gradient (Wu et al., 2018; Bellec", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 302, + 504, + 315 + ], + "spans": [ + { + "bbox": [ + 105, + 302, + 476, + 315 + ], + "score": 1.0, + "content": "et al., 2018; Neftci et al., 2019). Spike-based SNN training reduces the overall latency by", + "type": "text" + }, + { + "bbox": [ + 477, + 302, + 504, + 313 + ], + "score": 0.88, + "content": "{ \\sim } 1 0 \\times", + "type": "inline_equation" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 312, + 505, + 326 + ], + "spans": [ + { + "bbox": [ + 105, + 312, + 164, + 326 + ], + "score": 1.0, + "content": "(for instance,", + "type": "text" + }, + { + "bbox": [ + 164, + 313, + 210, + 323 + ], + "score": 0.82, + "content": "2 0 0 \\mathrm { ~ - ~ } 2 5 0", + "type": "inline_equation" + }, + { + "bbox": [ + 210, + 312, + 505, + 326 + ], + "score": 1.0, + "content": "time steps required to process an input (Lee et al., 2019)) but requires", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 324, + 505, + 337 + ], + "spans": [ + { + "bbox": [ + 105, + 324, + 505, + 337 + ], + "score": 1.0, + "content": "more training effort (in terms of total training iterations) than conversion approaches. A single", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 104, + 333, + 506, + 348 + ], + "spans": [ + { + "bbox": [ + 104, + 333, + 506, + 348 + ], + "score": 1.0, + "content": "feed-forward pass in ANN corresponds to multiple forward passes in SNN which is proportional", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 346, + 505, + 359 + ], + "spans": [ + { + "bbox": [ + 105, + 346, + 505, + 359 + ], + "score": 1.0, + "content": "to the number of time steps. In spike-based backpropagation, the backward pass requires the", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 356, + 506, + 370 + ], + "spans": [ + { + "bbox": [ + 105, + 356, + 506, + 370 + ], + "score": 1.0, + "content": "gradients to be integrated over the total number of time steps that increases the computation and", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 104, + 367, + 506, + 381 + ], + "spans": [ + { + "bbox": [ + 104, + 367, + 506, + 381 + ], + "score": 1.0, + "content": "memory complexity. The multiple-iteration training effort with exploding memory requirement (for", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 378, + 505, + 391 + ], + "spans": [ + { + "bbox": [ + 105, + 378, + 505, + 391 + ], + "score": 1.0, + "content": "backward pass computations) has limited the applicability of spike-based backpropagation methods", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 389, + 444, + 402 + ], + "spans": [ + { + "bbox": [ + 105, + 389, + 444, + 402 + ], + "score": 1.0, + "content": "to small datasets (like CIFAR10) on simple few-layered convolutional architectures.", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 14 + }, + { + "type": "text", + "bbox": [ + 107, + 406, + 505, + 495 + ], + "lines": [ + { + "bbox": [ + 105, + 406, + 506, + 419 + ], + "spans": [ + { + "bbox": [ + 105, + 406, + 506, + 419 + ], + "score": 1.0, + "content": "In this work, we propose a hybrid training technique which combines ANN-SNN conversion and", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 418, + 505, + 429 + ], + "spans": [ + { + "bbox": [ + 105, + 418, + 505, + 429 + ], + "score": 1.0, + "content": "spike-based backpropagation that reduces the overall latency as well as decreases the training effort", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 428, + 505, + 440 + ], + "spans": [ + { + "bbox": [ + 105, + 428, + 505, + 440 + ], + "score": 1.0, + "content": "for convergence. We use ANN-SNN conversion as an initialization step followed by spike-based", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 439, + 506, + 452 + ], + "spans": [ + { + "bbox": [ + 105, + 439, + 506, + 452 + ], + "score": 1.0, + "content": "backpropagation incremental training (that converges to optimal accuracy with few epochs due", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 450, + 505, + 463 + ], + "spans": [ + { + "bbox": [ + 105, + 450, + 505, + 463 + ], + "score": 1.0, + "content": "to the precursory initialization). Essentially, our hybrid approach of taking a converted SNN", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 461, + 506, + 474 + ], + "spans": [ + { + "bbox": [ + 105, + 461, + 506, + 474 + ], + "score": 1.0, + "content": "and incrementally training it using backpropagation yields improved energy-efficiency as well", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 472, + 506, + 485 + ], + "spans": [ + { + "bbox": [ + 105, + 472, + 506, + 485 + ], + "score": 1.0, + "content": "as higher accuracy than a model trained from scratch with only conversion or only spike-based", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 483, + 178, + 497 + ], + "spans": [ + { + "bbox": [ + 105, + 483, + 178, + 497 + ], + "score": 1.0, + "content": "backpropagation.", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 32.5 + }, + { + "type": "text", + "bbox": [ + 107, + 500, + 340, + 511 + ], + "lines": [ + { + "bbox": [ + 105, + 499, + 342, + 514 + ], + "spans": [ + { + "bbox": [ + 105, + 499, + 342, + 514 + ], + "score": 1.0, + "content": "In summary, this paper makes the following contributions:", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 37 + }, + { + "type": "text", + "bbox": [ + 131, + 522, + 505, + 701 + ], + "lines": [ + { + "bbox": [ + 133, + 523, + 505, + 534 + ], + "spans": [ + { + "bbox": [ + 133, + 523, + 505, + 534 + ], + "score": 1.0, + "content": "• We introduce a hybrid computationally-efficient training methodology for deep SNNs.", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 142, + 533, + 505, + 545 + ], + "spans": [ + { + "bbox": [ + 142, + 533, + 505, + 545 + ], + "score": 1.0, + "content": "We use the weights and firing thresholds of an SNN converted from an ANN as the", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 142, + 544, + 505, + 556 + ], + "spans": [ + { + "bbox": [ + 142, + 544, + 505, + 556 + ], + "score": 1.0, + "content": "initialization step for spike-based backpropagation. We then train this initialized network", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 141, + 554, + 505, + 568 + ], + "spans": [ + { + "bbox": [ + 141, + 554, + 505, + 568 + ], + "score": 1.0, + "content": "with spike-based backpropagation for few epochs to perform inference at a reduced latency", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 142, + 566, + 198, + 578 + ], + "spans": [ + { + "bbox": [ + 142, + 566, + 198, + 578 + ], + "score": 1.0, + "content": "or time steps.", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 139, + 583, + 505, + 596 + ], + "spans": [ + { + "bbox": [ + 139, + 583, + 505, + 596 + ], + "score": 1.0, + "content": "We propose a novel spike time-dependent backpropagation (STDB, a variant of standard", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 141, + 594, + 505, + 606 + ], + "spans": [ + { + "bbox": [ + 141, + 594, + 505, + 606 + ], + "score": 1.0, + "content": "spike-based backpropagation) that computes surrogate gradient using neuron’s spike time.", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 141, + 604, + 505, + 618 + ], + "spans": [ + { + "bbox": [ + 141, + 604, + 505, + 618 + ], + "score": 1.0, + "content": "The parameter update is triggered by the occurrence of spike and the gradient is computed", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 141, + 614, + 506, + 629 + ], + "spans": [ + { + "bbox": [ + 141, + 614, + 506, + 629 + ], + "score": 1.0, + "content": "based on the time difference between the current time step and the most recent time step", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 141, + 627, + 505, + 639 + ], + "spans": [ + { + "bbox": [ + 141, + 627, + 505, + 639 + ], + "score": 1.0, + "content": "the neuron generated an output spike. This is motivated from the Hebb’s principle which", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 141, + 638, + 505, + 651 + ], + "spans": [ + { + "bbox": [ + 141, + 638, + 505, + 651 + ], + "score": 1.0, + "content": "states that the plasticity of a synapse is dependent on the spiking activity of the neurons", + "type": "text" + } + ], + "index": 48 + }, + { + "bbox": [ + 142, + 649, + 246, + 661 + ], + "spans": [ + { + "bbox": [ + 142, + 649, + 246, + 661 + ], + "score": 1.0, + "content": "connected to the synapse.", + "type": "text" + } + ], + "index": 49 + }, + { + "bbox": [ + 139, + 665, + 506, + 679 + ], + "spans": [ + { + "bbox": [ + 139, + 665, + 506, + 679 + ], + "score": 1.0, + "content": "Our hybrid approach with the novel surrogate gradient descent allows training of large-scale", + "type": "text" + } + ], + "index": 50 + }, + { + "bbox": [ + 141, + 676, + 506, + 689 + ], + "spans": [ + { + "bbox": [ + 141, + 676, + 506, + 689 + ], + "score": 1.0, + "content": "SNNs without exploding memory required during spike-based backpropagation. We", + "type": "text" + } + ], + "index": 51 + }, + { + "bbox": [ + 141, + 687, + 506, + 700 + ], + "spans": [ + { + "bbox": [ + 141, + 687, + 506, + 700 + ], + "score": 1.0, + "content": "evaluate our hybrid approach on large SNNs (VGG, ResNet-like architectures) on", + "type": "text" + } + ], + "index": 52 + } + ], + "index": 45 + } + ], + "page_idx": 1, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 712, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 118, + 709, + 507, + 724 + ], + "spans": [ + { + "bbox": [ + 118, + 709, + 507, + 724 + ], + "score": 1.0, + "content": "2SNNs process Poisson rate-coded input spike trains, wherein, each pixel in an image is converted to a", + "type": "text" + } + ] + }, + { + "bbox": [ + 106, + 721, + 452, + 732 + ], + "spans": [ + { + "bbox": [ + 106, + 721, + 452, + 732 + ], + "score": 1.0, + "content": "Poisson-distribution based spike train with the spiking frequency proportional to the pixel value", + "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, + 763 + ], + "spans": [ + { + "bbox": [ + 301, + 750, + 310, + 763 + ], + "score": 1.0, + "content": "2", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 107, + 82, + 505, + 401 + ], + "lines": [], + "index": 14, + "bbox_fs": [ + 104, + 82, + 507, + 402 + ], + "lines_deleted": true + }, + { + "type": "text", + "bbox": [ + 107, + 406, + 505, + 495 + ], + "lines": [ + { + "bbox": [ + 105, + 406, + 506, + 419 + ], + "spans": [ + { + "bbox": [ + 105, + 406, + 506, + 419 + ], + "score": 1.0, + "content": "In this work, we propose a hybrid training technique which combines ANN-SNN conversion and", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 418, + 505, + 429 + ], + "spans": [ + { + "bbox": [ + 105, + 418, + 505, + 429 + ], + "score": 1.0, + "content": "spike-based backpropagation that reduces the overall latency as well as decreases the training effort", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 428, + 505, + 440 + ], + "spans": [ + { + "bbox": [ + 105, + 428, + 505, + 440 + ], + "score": 1.0, + "content": "for convergence. We use ANN-SNN conversion as an initialization step followed by spike-based", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 439, + 506, + 452 + ], + "spans": [ + { + "bbox": [ + 105, + 439, + 506, + 452 + ], + "score": 1.0, + "content": "backpropagation incremental training (that converges to optimal accuracy with few epochs due", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 450, + 505, + 463 + ], + "spans": [ + { + "bbox": [ + 105, + 450, + 505, + 463 + ], + "score": 1.0, + "content": "to the precursory initialization). Essentially, our hybrid approach of taking a converted SNN", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 461, + 506, + 474 + ], + "spans": [ + { + "bbox": [ + 105, + 461, + 506, + 474 + ], + "score": 1.0, + "content": "and incrementally training it using backpropagation yields improved energy-efficiency as well", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 472, + 506, + 485 + ], + "spans": [ + { + "bbox": [ + 105, + 472, + 506, + 485 + ], + "score": 1.0, + "content": "as higher accuracy than a model trained from scratch with only conversion or only spike-based", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 483, + 178, + 497 + ], + "spans": [ + { + "bbox": [ + 105, + 483, + 178, + 497 + ], + "score": 1.0, + "content": "backpropagation.", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 32.5, + "bbox_fs": [ + 105, + 406, + 506, + 497 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 500, + 340, + 511 + ], + "lines": [ + { + "bbox": [ + 105, + 499, + 342, + 514 + ], + "spans": [ + { + "bbox": [ + 105, + 499, + 342, + 514 + ], + "score": 1.0, + "content": "In summary, this paper makes the following contributions:", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 37, + "bbox_fs": [ + 105, + 499, + 342, + 514 + ] + }, + { + "type": "text", + "bbox": [ + 131, + 522, + 505, + 701 + ], + "lines": [ + { + "bbox": [ + 133, + 523, + 505, + 534 + ], + "spans": [ + { + "bbox": [ + 133, + 523, + 505, + 534 + ], + "score": 1.0, + "content": "• We introduce a hybrid computationally-efficient training methodology for deep SNNs.", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 142, + 533, + 505, + 545 + ], + "spans": [ + { + "bbox": [ + 142, + 533, + 505, + 545 + ], + "score": 1.0, + "content": "We use the weights and firing thresholds of an SNN converted from an ANN as the", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 142, + 544, + 505, + 556 + ], + "spans": [ + { + "bbox": [ + 142, + 544, + 505, + 556 + ], + "score": 1.0, + "content": "initialization step for spike-based backpropagation. We then train this initialized network", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 141, + 554, + 505, + 568 + ], + "spans": [ + { + "bbox": [ + 141, + 554, + 505, + 568 + ], + "score": 1.0, + "content": "with spike-based backpropagation for few epochs to perform inference at a reduced latency", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 142, + 566, + 198, + 578 + ], + "spans": [ + { + "bbox": [ + 142, + 566, + 198, + 578 + ], + "score": 1.0, + "content": "or time steps.", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 139, + 583, + 505, + 596 + ], + "spans": [ + { + "bbox": [ + 139, + 583, + 505, + 596 + ], + "score": 1.0, + "content": "We propose a novel spike time-dependent backpropagation (STDB, a variant of standard", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 141, + 594, + 505, + 606 + ], + "spans": [ + { + "bbox": [ + 141, + 594, + 505, + 606 + ], + "score": 1.0, + "content": "spike-based backpropagation) that computes surrogate gradient using neuron’s spike time.", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 141, + 604, + 505, + 618 + ], + "spans": [ + { + "bbox": [ + 141, + 604, + 505, + 618 + ], + "score": 1.0, + "content": "The parameter update is triggered by the occurrence of spike and the gradient is computed", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 141, + 614, + 506, + 629 + ], + "spans": [ + { + "bbox": [ + 141, + 614, + 506, + 629 + ], + "score": 1.0, + "content": "based on the time difference between the current time step and the most recent time step", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 141, + 627, + 505, + 639 + ], + "spans": [ + { + "bbox": [ + 141, + 627, + 505, + 639 + ], + "score": 1.0, + "content": "the neuron generated an output spike. This is motivated from the Hebb’s principle which", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 141, + 638, + 505, + 651 + ], + "spans": [ + { + "bbox": [ + 141, + 638, + 505, + 651 + ], + "score": 1.0, + "content": "states that the plasticity of a synapse is dependent on the spiking activity of the neurons", + "type": "text" + } + ], + "index": 48 + }, + { + "bbox": [ + 142, + 649, + 246, + 661 + ], + "spans": [ + { + "bbox": [ + 142, + 649, + 246, + 661 + ], + "score": 1.0, + "content": "connected to the synapse.", + "type": "text" + } + ], + "index": 49 + }, + { + "bbox": [ + 139, + 665, + 506, + 679 + ], + "spans": [ + { + "bbox": [ + 139, + 665, + 506, + 679 + ], + "score": 1.0, + "content": "Our hybrid approach with the novel surrogate gradient descent allows training of large-scale", + "type": "text" + } + ], + "index": 50 + }, + { + "bbox": [ + 141, + 676, + 506, + 689 + ], + "spans": [ + { + "bbox": [ + 141, + 676, + 506, + 689 + ], + "score": 1.0, + "content": "SNNs without exploding memory required during spike-based backpropagation. We", + "type": "text" + } + ], + "index": 51 + }, + { + "bbox": [ + 141, + 687, + 506, + 700 + ], + "spans": [ + { + "bbox": [ + 141, + 687, + 506, + 700 + ], + "score": 1.0, + "content": "evaluate our hybrid approach on large SNNs (VGG, ResNet-like architectures) on", + "type": "text" + } + ], + "index": 52 + } + ], + "index": 45, + "bbox_fs": [ + 133, + 523, + 506, + 700 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 142, + 82, + 504, + 105 + ], + "lines": [ + { + "bbox": [ + 142, + 82, + 505, + 95 + ], + "spans": [ + { + "bbox": [ + 142, + 82, + 505, + 95 + ], + "score": 1.0, + "content": "Imagenet, CIFAR datasets and show near iso-accuracy compared to similar ANNs and", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 141, + 92, + 348, + 109 + ], + "spans": [ + { + "bbox": [ + 141, + 92, + 348, + 109 + ], + "score": 1.0, + "content": "converted SNNs at lower compute cost and energy.", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5 + }, + { + "type": "title", + "bbox": [ + 106, + 127, + 415, + 140 + ], + "lines": [ + { + "bbox": [ + 104, + 126, + 417, + 143 + ], + "spans": [ + { + "bbox": [ + 104, + 126, + 417, + 143 + ], + "score": 1.0, + "content": "2 SPIKE TIMING DEPENDENT BACKPROPAGATION (STDB)", + "type": "text" + } + ], + "index": 2 + } + ], + "index": 2 + }, + { + "type": "text", + "bbox": [ + 107, + 156, + 297, + 234 + ], + "lines": [ + { + "bbox": [ + 105, + 155, + 297, + 169 + ], + "spans": [ + { + "bbox": [ + 105, + 155, + 297, + 169 + ], + "score": 1.0, + "content": "In this section, we describe the spiking neuron", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 167, + 298, + 180 + ], + "spans": [ + { + "bbox": [ + 105, + 167, + 298, + 180 + ], + "score": 1.0, + "content": "model, derive the equations for the proposed", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 179, + 298, + 191 + ], + "spans": [ + { + "bbox": [ + 105, + 179, + 298, + 191 + ], + "score": 1.0, + "content": "surrogate gradient based learning, present", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 189, + 298, + 201 + ], + "spans": [ + { + "bbox": [ + 105, + 189, + 298, + 201 + ], + "score": 1.0, + "content": "the weight initialization method for SNN,", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 200, + 298, + 212 + ], + "spans": [ + { + "bbox": [ + 105, + 200, + 298, + 212 + ], + "score": 1.0, + "content": "discuss the constraints applied for ANN-SNN", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 210, + 297, + 224 + ], + "spans": [ + { + "bbox": [ + 105, + 210, + 297, + 224 + ], + "score": 1.0, + "content": "conversion, and summarize the overall training", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 221, + 164, + 236 + ], + "spans": [ + { + "bbox": [ + 105, + 221, + 164, + 236 + ], + "score": 1.0, + "content": "methodology.", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 6 + }, + { + "type": "title", + "bbox": [ + 106, + 254, + 251, + 276 + ], + "lines": [ + { + "bbox": [ + 106, + 254, + 215, + 266 + ], + "spans": [ + { + "bbox": [ + 106, + 254, + 215, + 266 + ], + "score": 1.0, + "content": "2.1 LEAKY INTEGRATE", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 106, + 265, + 252, + 277 + ], + "spans": [ + { + "bbox": [ + 106, + 265, + 252, + 277 + ], + "score": 1.0, + "content": "AND FIRE (LIF) NEURON MODEL", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 10.5 + }, + { + "type": "text", + "bbox": [ + 106, + 288, + 296, + 321 + ], + "lines": [ + { + "bbox": [ + 106, + 287, + 297, + 300 + ], + "spans": [ + { + "bbox": [ + 106, + 287, + 297, + 300 + ], + "score": 1.0, + "content": "The neuron model defines the dynamics of the", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 106, + 299, + 297, + 311 + ], + "spans": [ + { + "bbox": [ + 106, + 299, + 297, + 311 + ], + "score": 1.0, + "content": "neuron’s internal state and the trigger for it to", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 310, + 278, + 322 + ], + "spans": [ + { + "bbox": [ + 105, + 310, + 278, + 322 + ], + "score": 1.0, + "content": "generate a spike. The differential equation", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 21 + }, + { + "type": "interline_equation", + "bbox": [ + 141, + 332, + 262, + 357 + ], + "lines": [ + { + "bbox": [ + 141, + 332, + 262, + 357 + ], + "spans": [ + { + "bbox": [ + 141, + 332, + 262, + 357 + ], + "score": 0.93, + "content": "\\tau \\frac { d U } { d t } = - ( U - U _ { r e s t } ) + R I", + "type": "interline_equation", + "image_path": "ca868a77e61676a2fe3969838076cc4d33f04b2cff402211675f9aed2ce13dc2.jpg" + } + ] + } + ], + "index": 23.5, + "virtual_lines": [ + { + "bbox": [ + 141, + 332, + 262, + 344.5 + ], + "spans": [], + "index": 23 + }, + { + "bbox": [ + 141, + 344.5, + 262, + 357.0 + ], + "spans": [], + "index": 24 + } + ] + }, + { + "type": "image", + "bbox": [ + 307, + 170, + 503, + 273 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 307, + 170, + 503, + 273 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 307, + 170, + 503, + 273 + ], + "spans": [ + { + "bbox": [ + 307, + 170, + 503, + 273 + ], + "score": 0.967, + "type": "image", + "image_path": "7c4a28ea13d64064dc648e47aca903dfa249118653d5d33be93a1c4056719f2e.jpg" + } + ] + } + ], + "index": 15.5, + "virtual_lines": [ + { + "bbox": [ + 307, + 170, + 503, + 182.875 + ], + "spans": [], + "index": 12 + }, + { + "bbox": [ + 307, + 182.875, + 503, + 195.75 + ], + "spans": [], + "index": 13 + }, + { + "bbox": [ + 307, + 195.75, + 503, + 208.625 + ], + "spans": [], + "index": 14 + }, + { + "bbox": [ + 307, + 208.625, + 503, + 221.5 + ], + "spans": [], + "index": 15 + }, + { + "bbox": [ + 307, + 221.5, + 503, + 234.375 + ], + "spans": [], + "index": 16 + }, + { + "bbox": [ + 307, + 234.375, + 503, + 247.25 + ], + "spans": [], + "index": 17 + }, + { + "bbox": [ + 307, + 247.25, + 503, + 260.125 + ], + "spans": [], + "index": 18 + }, + { + "bbox": [ + 307, + 260.125, + 503, + 273.0 + ], + "spans": [], + "index": 19 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 305, + 300, + 504, + 443 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 303, + 299, + 505, + 313 + ], + "spans": [ + { + "bbox": [ + 303, + 299, + 505, + 313 + ], + "score": 1.0, + "content": "Figure 1: Surrogate gradient of the spiking neuron", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 304, + 311, + 505, + 322 + ], + "spans": [ + { + "bbox": [ + 304, + 311, + 423, + 322 + ], + "score": 1.0, + "content": "activation function (Eq. 11).", + "type": "text" + }, + { + "bbox": [ + 423, + 311, + 501, + 322 + ], + "score": 0.92, + "content": "\\alpha = 0 . 3 , \\beta = 0 . 0 1", + "type": "inline_equation" + }, + { + "bbox": [ + 502, + 311, + 505, + 322 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 304, + 321, + 505, + 334 + ], + "spans": [ + { + "bbox": [ + 304, + 321, + 505, + 334 + ], + "score": 1.0, + "content": "The gradient is computed for each neuron and", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 305, + 332, + 505, + 344 + ], + "spans": [ + { + "bbox": [ + 305, + 333, + 318, + 343 + ], + "score": 0.76, + "content": "\\Delta t", + "type": "inline_equation" + }, + { + "bbox": [ + 319, + 332, + 505, + 344 + ], + "score": 1.0, + "content": "defines the time difference between current", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 304, + 343, + 505, + 355 + ], + "spans": [ + { + "bbox": [ + 304, + 343, + 505, + 355 + ], + "score": 1.0, + "content": "simulation time and the last spike time of the", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 303, + 355, + 504, + 366 + ], + "spans": [ + { + "bbox": [ + 303, + 355, + 471, + 366 + ], + "score": 1.0, + "content": "neuron. For example, if a neuron spikes at", + "type": "text" + }, + { + "bbox": [ + 471, + 355, + 504, + 365 + ], + "score": 0.89, + "content": "t _ { s } = 1 2", + "type": "inline_equation" + } + ], + "index": 39 + }, + { + "bbox": [ + 303, + 365, + 503, + 378 + ], + "spans": [ + { + "bbox": [ + 303, + 365, + 435, + 378 + ], + "score": 1.0, + "content": "its gradient will be maximum at", + "type": "text" + }, + { + "bbox": [ + 436, + 366, + 503, + 377 + ], + "score": 0.87, + "content": "t = 1 2 ( \\Delta t = 0 )", + "type": "inline_equation" + } + ], + "index": 40 + }, + { + "bbox": [ + 303, + 376, + 505, + 388 + ], + "spans": [ + { + "bbox": [ + 303, + 376, + 505, + 388 + ], + "score": 1.0, + "content": "and gradually decrease for later time steps. If the", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 303, + 388, + 505, + 399 + ], + "spans": [ + { + "bbox": [ + 303, + 388, + 418, + 399 + ], + "score": 1.0, + "content": "same neuron spikes later at", + "type": "text" + }, + { + "bbox": [ + 418, + 388, + 454, + 398 + ], + "score": 0.91, + "content": "t _ { s } = 2 4", + "type": "inline_equation" + }, + { + "bbox": [ + 454, + 388, + 505, + 399 + ], + "score": 1.0, + "content": "its previous", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 303, + 399, + 505, + 410 + ], + "spans": [ + { + "bbox": [ + 303, + 399, + 505, + 410 + ], + "score": 1.0, + "content": "spike history will be overwritten and the gradient", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 303, + 409, + 505, + 421 + ], + "spans": [ + { + "bbox": [ + 303, + 409, + 370, + 421 + ], + "score": 1.0, + "content": "computation for", + "type": "text" + }, + { + "bbox": [ + 370, + 410, + 399, + 420 + ], + "score": 0.89, + "content": "t = 2 4", + "type": "inline_equation" + }, + { + "bbox": [ + 399, + 409, + 505, + 421 + ], + "score": 1.0, + "content": "onward will only consider", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 303, + 420, + 506, + 432 + ], + "spans": [ + { + "bbox": [ + 303, + 420, + 506, + 432 + ], + "score": 1.0, + "content": "the most recent spike. This avoids the overhead of", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 303, + 430, + 464, + 444 + ], + "spans": [ + { + "bbox": [ + 303, + 430, + 464, + 444 + ], + "score": 1.0, + "content": "storing all the spike history in memory.", + "type": "text" + } + ], + "index": 46 + } + ], + "index": 40 + } + ], + "index": 27.75 + }, + { + "type": "text", + "bbox": [ + 107, + 367, + 296, + 466 + ], + "lines": [ + { + "bbox": [ + 104, + 366, + 298, + 380 + ], + "spans": [ + { + "bbox": [ + 104, + 366, + 298, + 380 + ], + "score": 1.0, + "content": "is widely used to characterize the", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 106, + 378, + 297, + 390 + ], + "spans": [ + { + "bbox": [ + 106, + 378, + 297, + 390 + ], + "score": 1.0, + "content": "leaky-integrate-and-fire (LIF) neuron model", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 106, + 389, + 297, + 401 + ], + "spans": [ + { + "bbox": [ + 106, + 389, + 138, + 401 + ], + "score": 1.0, + "content": "where,", + "type": "text" + }, + { + "bbox": [ + 138, + 390, + 148, + 399 + ], + "score": 0.8, + "content": "U", + "type": "inline_equation" + }, + { + "bbox": [ + 148, + 389, + 297, + 401 + ], + "score": 1.0, + "content": "is the internal state of the neuron", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 399, + 298, + 413 + ], + "spans": [ + { + "bbox": [ + 105, + 399, + 261, + 413 + ], + "score": 1.0, + "content": "referred as the membrane potential,", + "type": "text" + }, + { + "bbox": [ + 262, + 400, + 285, + 411 + ], + "score": 0.91, + "content": "U _ { r e s t }", + "type": "inline_equation" + }, + { + "bbox": [ + 285, + 399, + 298, + 413 + ], + "score": 1.0, + "content": "is", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 106, + 411, + 297, + 423 + ], + "spans": [ + { + "bbox": [ + 106, + 411, + 198, + 423 + ], + "score": 1.0, + "content": "the resting potential,", + "type": "text" + }, + { + "bbox": [ + 198, + 411, + 208, + 421 + ], + "score": 0.74, + "content": "R", + "type": "inline_equation" + }, + { + "bbox": [ + 208, + 411, + 230, + 423 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 230, + 412, + 237, + 421 + ], + "score": 0.76, + "content": "I", + "type": "inline_equation" + }, + { + "bbox": [ + 237, + 411, + 297, + 423 + ], + "score": 1.0, + "content": "are the input", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 106, + 422, + 297, + 434 + ], + "spans": [ + { + "bbox": [ + 106, + 422, + 297, + 434 + ], + "score": 1.0, + "content": "resistance and the current, respectively. The", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 106, + 433, + 297, + 445 + ], + "spans": [ + { + "bbox": [ + 106, + 433, + 297, + 445 + ], + "score": 1.0, + "content": "above equation is valid when the membrane", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 443, + 298, + 455 + ], + "spans": [ + { + "bbox": [ + 105, + 443, + 258, + 455 + ], + "score": 1.0, + "content": "potential is below the threshold value", + "type": "text" + }, + { + "bbox": [ + 259, + 444, + 274, + 455 + ], + "score": 0.7, + "content": "( V )", + "type": "inline_equation" + }, + { + "bbox": [ + 274, + 443, + 298, + 455 + ], + "score": 1.0, + "content": ". The", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 455, + 296, + 467 + ], + "spans": [ + { + "bbox": [ + 105, + 455, + 271, + 467 + ], + "score": 1.0, + "content": "neuron geneartes an output spike when", + "type": "text" + }, + { + "bbox": [ + 271, + 455, + 296, + 466 + ], + "score": 0.89, + "content": "U { \\geqslant } V", + "type": "inline_equation" + } + ], + "index": 33 + } + ], + "index": 29 + }, + { + "type": "text", + "bbox": [ + 107, + 466, + 506, + 510 + ], + "lines": [ + { + "bbox": [ + 106, + 466, + 506, + 478 + ], + "spans": [ + { + "bbox": [ + 106, + 466, + 123, + 478 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 124, + 466, + 133, + 476 + ], + "score": 0.81, + "content": "U", + "type": "inline_equation" + }, + { + "bbox": [ + 133, + 466, + 506, + 478 + ], + "score": 1.0, + "content": "is reduced to the reset potential. This representation is described in continuous domain and", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 106, + 477, + 505, + 489 + ], + "spans": [ + { + "bbox": [ + 106, + 477, + 505, + 489 + ], + "score": 1.0, + "content": "more suitable for biological simulations. We modify the equation to be evaluated in a discrete", + "type": "text" + } + ], + "index": 48 + }, + { + "bbox": [ + 105, + 488, + 506, + 500 + ], + "spans": [ + { + "bbox": [ + 105, + 488, + 247, + 500 + ], + "score": 1.0, + "content": "manner in the Pytorch framework (", + "type": "text" + }, + { + "bbox": [ + 247, + 488, + 263, + 498 + ], + "score": 0.28, + "content": "\\mathrm { W u }", + "type": "inline_equation" + }, + { + "bbox": [ + 263, + 488, + 506, + 500 + ], + "score": 1.0, + "content": "et al., 2018). The iterative model for a single post-neuron is", + "type": "text" + } + ], + "index": 49 + }, + { + "bbox": [ + 105, + 498, + 160, + 512 + ], + "spans": [ + { + "bbox": [ + 105, + 498, + 160, + 512 + ], + "score": 1.0, + "content": "described by", + "type": "text" + } + ], + "index": 50 + } + ], + "index": 48.5 + }, + { + "type": "interline_equation", + "bbox": [ + 236, + 517, + 375, + 545 + ], + "lines": [ + { + "bbox": [ + 236, + 517, + 375, + 545 + ], + "spans": [ + { + "bbox": [ + 236, + 517, + 375, + 545 + ], + "score": 0.94, + "content": "u _ { i } ^ { t } = \\lambda u _ { i } ^ { t - 1 } + \\sum _ { j } w _ { i j } o _ { j } ^ { t } - v o _ { i } ^ { t - 1 }", + "type": "interline_equation", + "image_path": "9a764cd6bdfda7f3e162656f136297a22e529f81902dc5bf6fb8c23bd44c34af.jpg" + } + ] + } + ], + "index": 51.5, + "virtual_lines": [ + { + "bbox": [ + 236, + 517, + 375, + 531.0 + ], + "spans": [], + "index": 51 + }, + { + "bbox": [ + 236, + 531.0, + 375, + 545.0 + ], + "spans": [], + "index": 52 + } + ] + }, + { + "type": "interline_equation", + "bbox": [ + 252, + 565, + 358, + 593 + ], + "lines": [ + { + "bbox": [ + 252, + 565, + 358, + 593 + ], + "spans": [ + { + "bbox": [ + 252, + 565, + 358, + 593 + ], + "score": 0.94, + "content": "o _ { i } ^ { t - 1 } = \\left\\{ { \\begin{array} { l l } { 1 , } & { { \\mathrm { i f ~ } } u _ { i } ^ { t - 1 } > v } \\\\ { 0 , } & { { \\mathrm { o t h e r w i s e } } } \\end{array} } \\right.", + "type": "interline_equation", + "image_path": "3137496a990b78f4f053b333d9ab38f8db4554e8676046b5890d82b65ba96d46.jpg" + } + ] + } + ], + "index": 53.5, + "virtual_lines": [ + { + "bbox": [ + 252, + 565, + 358, + 579.0 + ], + "spans": [], + "index": 53 + }, + { + "bbox": [ + 252, + 579.0, + 358, + 593.0 + ], + "spans": [], + "index": 54 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 610, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 611, + 505, + 623 + ], + "spans": [ + { + "bbox": [ + 106, + 611, + 133, + 623 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 133, + 613, + 140, + 621 + ], + "score": 0.77, + "content": "u", + "type": "inline_equation" + }, + { + "bbox": [ + 140, + 611, + 285, + 623 + ], + "score": 1.0, + "content": "is the membrane potential, subscript", + "type": "text" + }, + { + "bbox": [ + 285, + 612, + 290, + 621 + ], + "score": 0.79, + "content": "i", + "type": "inline_equation" + }, + { + "bbox": [ + 290, + 611, + 307, + 623 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 307, + 612, + 313, + 622 + ], + "score": 0.83, + "content": "j", + "type": "inline_equation" + }, + { + "bbox": [ + 313, + 611, + 505, + 623 + ], + "score": 1.0, + "content": "represent the post- and pre-neuron, respectively,", + "type": "text" + } + ], + "index": 55 + }, + { + "bbox": [ + 105, + 622, + 506, + 635 + ], + "spans": [ + { + "bbox": [ + 105, + 622, + 153, + 635 + ], + "score": 1.0, + "content": "superscript", + "type": "text" + }, + { + "bbox": [ + 153, + 623, + 158, + 632 + ], + "score": 0.75, + "content": "t", + "type": "inline_equation" + }, + { + "bbox": [ + 159, + 622, + 226, + 635 + ], + "score": 1.0, + "content": "is the time step,", + "type": "text" + }, + { + "bbox": [ + 226, + 622, + 233, + 632 + ], + "score": 0.81, + "content": "\\lambda", + "type": "inline_equation" + }, + { + "bbox": [ + 234, + 622, + 288, + 635 + ], + "score": 1.0, + "content": "is a constant", + "type": "text" + }, + { + "bbox": [ + 288, + 623, + 309, + 633 + ], + "score": 0.79, + "content": "( < 1 )", + "type": "inline_equation" + }, + { + "bbox": [ + 310, + 622, + 506, + 635 + ], + "score": 1.0, + "content": "responsible for the leak in membrane potential,", + "type": "text" + } + ], + "index": 56 + }, + { + "bbox": [ + 107, + 632, + 505, + 646 + ], + "spans": [ + { + "bbox": [ + 107, + 635, + 115, + 643 + ], + "score": 0.75, + "content": "w", + "type": "inline_equation" + }, + { + "bbox": [ + 115, + 632, + 319, + 646 + ], + "score": 1.0, + "content": "is the weight connecting the pre- and post-neuron,", + "type": "text" + }, + { + "bbox": [ + 319, + 635, + 325, + 643 + ], + "score": 0.71, + "content": "o", + "type": "inline_equation" + }, + { + "bbox": [ + 326, + 632, + 449, + 646 + ], + "score": 1.0, + "content": "is the binary output spike, and", + "type": "text" + }, + { + "bbox": [ + 449, + 635, + 456, + 643 + ], + "score": 0.71, + "content": "v", + "type": "inline_equation" + }, + { + "bbox": [ + 456, + 632, + 505, + 646 + ], + "score": 1.0, + "content": "is the firing", + "type": "text" + } + ], + "index": 57 + }, + { + "bbox": [ + 105, + 643, + 506, + 656 + ], + "spans": [ + { + "bbox": [ + 105, + 643, + 506, + 656 + ], + "score": 1.0, + "content": "threshold potential. The right hand side of Equation 2 has three terms: the first term calculates the", + "type": "text" + } + ], + "index": 58 + }, + { + "bbox": [ + 105, + 654, + 506, + 667 + ], + "spans": [ + { + "bbox": [ + 105, + 654, + 506, + 667 + ], + "score": 1.0, + "content": "leak in the membrane potential from the previous time step, the second term integrates the input", + "type": "text" + } + ], + "index": 59 + }, + { + "bbox": [ + 105, + 665, + 506, + 679 + ], + "spans": [ + { + "bbox": [ + 105, + 665, + 506, + 679 + ], + "score": 1.0, + "content": "from the previous layer and adds it to the membrane potential, and the third term which is outside", + "type": "text" + } + ], + "index": 60 + }, + { + "bbox": [ + 106, + 677, + 505, + 689 + ], + "spans": [ + { + "bbox": [ + 106, + 677, + 505, + 689 + ], + "score": 1.0, + "content": "the summation reduces the membrane potential by the threshold value if a spike is generated. This", + "type": "text" + } + ], + "index": 61 + }, + { + "bbox": [ + 105, + 687, + 505, + 700 + ], + "spans": [ + { + "bbox": [ + 105, + 687, + 371, + 700 + ], + "score": 1.0, + "content": "is known as soft reset as the membrane potential is lowered by", + "type": "text" + }, + { + "bbox": [ + 371, + 690, + 378, + 698 + ], + "score": 0.62, + "content": "v", + "type": "inline_equation" + }, + { + "bbox": [ + 379, + 687, + 505, + 700 + ], + "score": 1.0, + "content": "compared to hard reset where", + "type": "text" + } + ], + "index": 62 + }, + { + "bbox": [ + 105, + 698, + 505, + 712 + ], + "spans": [ + { + "bbox": [ + 105, + 698, + 505, + 712 + ], + "score": 1.0, + "content": "the membrane potential is reduced to the reset value. Soft reset enables the spiking neuron to carry", + "type": "text" + } + ], + "index": 63 + }, + { + "bbox": [ + 105, + 708, + 506, + 723 + ], + "spans": [ + { + "bbox": [ + 105, + 708, + 506, + 723 + ], + "score": 1.0, + "content": "forward the excess potential above the firing threshold to the following time step, thereby minimizing", + "type": "text" + } + ], + "index": 64 + }, + { + "bbox": [ + 105, + 720, + 176, + 732 + ], + "spans": [ + { + "bbox": [ + 105, + 720, + 176, + 732 + ], + "score": 1.0, + "content": "information loss.", + "type": "text" + } + ], + "index": 65 + } + ], + "index": 60 + } + ], + "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": [ + 142, + 82, + 504, + 105 + ], + "lines": [ + { + "bbox": [ + 142, + 82, + 505, + 95 + ], + "spans": [ + { + "bbox": [ + 142, + 82, + 505, + 95 + ], + "score": 1.0, + "content": "Imagenet, CIFAR datasets and show near iso-accuracy compared to similar ANNs and", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 141, + 92, + 348, + 109 + ], + "spans": [ + { + "bbox": [ + 141, + 92, + 348, + 109 + ], + "score": 1.0, + "content": "converted SNNs at lower compute cost and energy.", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5, + "bbox_fs": [ + 141, + 82, + 505, + 109 + ] + }, + { + "type": "title", + "bbox": [ + 106, + 127, + 415, + 140 + ], + "lines": [ + { + "bbox": [ + 104, + 126, + 417, + 143 + ], + "spans": [ + { + "bbox": [ + 104, + 126, + 417, + 143 + ], + "score": 1.0, + "content": "2 SPIKE TIMING DEPENDENT BACKPROPAGATION (STDB)", + "type": "text" + } + ], + "index": 2 + } + ], + "index": 2 + }, + { + "type": "text", + "bbox": [ + 107, + 156, + 297, + 234 + ], + "lines": [ + { + "bbox": [ + 105, + 155, + 297, + 169 + ], + "spans": [ + { + "bbox": [ + 105, + 155, + 297, + 169 + ], + "score": 1.0, + "content": "In this section, we describe the spiking neuron", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 167, + 298, + 180 + ], + "spans": [ + { + "bbox": [ + 105, + 167, + 298, + 180 + ], + "score": 1.0, + "content": "model, derive the equations for the proposed", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 179, + 298, + 191 + ], + "spans": [ + { + "bbox": [ + 105, + 179, + 298, + 191 + ], + "score": 1.0, + "content": "surrogate gradient based learning, present", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 189, + 298, + 201 + ], + "spans": [ + { + "bbox": [ + 105, + 189, + 298, + 201 + ], + "score": 1.0, + "content": "the weight initialization method for SNN,", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 200, + 298, + 212 + ], + "spans": [ + { + "bbox": [ + 105, + 200, + 298, + 212 + ], + "score": 1.0, + "content": "discuss the constraints applied for ANN-SNN", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 210, + 297, + 224 + ], + "spans": [ + { + "bbox": [ + 105, + 210, + 297, + 224 + ], + "score": 1.0, + "content": "conversion, and summarize the overall training", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 221, + 164, + 236 + ], + "spans": [ + { + "bbox": [ + 105, + 221, + 164, + 236 + ], + "score": 1.0, + "content": "methodology.", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 6, + "bbox_fs": [ + 105, + 155, + 298, + 236 + ] + }, + { + "type": "title", + "bbox": [ + 106, + 254, + 251, + 276 + ], + "lines": [ + { + "bbox": [ + 106, + 254, + 215, + 266 + ], + "spans": [ + { + "bbox": [ + 106, + 254, + 215, + 266 + ], + "score": 1.0, + "content": "2.1 LEAKY INTEGRATE", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 106, + 265, + 252, + 277 + ], + "spans": [ + { + "bbox": [ + 106, + 265, + 252, + 277 + ], + "score": 1.0, + "content": "AND FIRE (LIF) NEURON MODEL", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 10.5 + }, + { + "type": "text", + "bbox": [ + 106, + 288, + 296, + 321 + ], + "lines": [ + { + "bbox": [ + 106, + 287, + 297, + 300 + ], + "spans": [ + { + "bbox": [ + 106, + 287, + 297, + 300 + ], + "score": 1.0, + "content": "The neuron model defines the dynamics of the", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 106, + 299, + 297, + 311 + ], + "spans": [ + { + "bbox": [ + 106, + 299, + 297, + 311 + ], + "score": 1.0, + "content": "neuron’s internal state and the trigger for it to", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 310, + 278, + 322 + ], + "spans": [ + { + "bbox": [ + 105, + 310, + 278, + 322 + ], + "score": 1.0, + "content": "generate a spike. The differential equation", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 21, + "bbox_fs": [ + 105, + 287, + 297, + 322 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 141, + 332, + 262, + 357 + ], + "lines": [ + { + "bbox": [ + 141, + 332, + 262, + 357 + ], + "spans": [ + { + "bbox": [ + 141, + 332, + 262, + 357 + ], + "score": 0.93, + "content": "\\tau \\frac { d U } { d t } = - ( U - U _ { r e s t } ) + R I", + "type": "interline_equation", + "image_path": "ca868a77e61676a2fe3969838076cc4d33f04b2cff402211675f9aed2ce13dc2.jpg" + } + ] + } + ], + "index": 23.5, + "virtual_lines": [ + { + "bbox": [ + 141, + 332, + 262, + 344.5 + ], + "spans": [], + "index": 23 + }, + { + "bbox": [ + 141, + 344.5, + 262, + 357.0 + ], + "spans": [], + "index": 24 + } + ] + }, + { + "type": "image", + "bbox": [ + 307, + 170, + 503, + 273 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 307, + 170, + 503, + 273 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 307, + 170, + 503, + 273 + ], + "spans": [ + { + "bbox": [ + 307, + 170, + 503, + 273 + ], + "score": 0.967, + "type": "image", + "image_path": "7c4a28ea13d64064dc648e47aca903dfa249118653d5d33be93a1c4056719f2e.jpg" + } + ] + } + ], + "index": 15.5, + "virtual_lines": [ + { + "bbox": [ + 307, + 170, + 503, + 182.875 + ], + "spans": [], + "index": 12 + }, + { + "bbox": [ + 307, + 182.875, + 503, + 195.75 + ], + "spans": [], + "index": 13 + }, + { + "bbox": [ + 307, + 195.75, + 503, + 208.625 + ], + "spans": [], + "index": 14 + }, + { + "bbox": [ + 307, + 208.625, + 503, + 221.5 + ], + "spans": [], + "index": 15 + }, + { + "bbox": [ + 307, + 221.5, + 503, + 234.375 + ], + "spans": [], + "index": 16 + }, + { + "bbox": [ + 307, + 234.375, + 503, + 247.25 + ], + "spans": [], + "index": 17 + }, + { + "bbox": [ + 307, + 247.25, + 503, + 260.125 + ], + "spans": [], + "index": 18 + }, + { + "bbox": [ + 307, + 260.125, + 503, + 273.0 + ], + "spans": [], + "index": 19 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 305, + 300, + 504, + 443 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 303, + 299, + 505, + 313 + ], + "spans": [ + { + "bbox": [ + 303, + 299, + 505, + 313 + ], + "score": 1.0, + "content": "Figure 1: Surrogate gradient of the spiking neuron", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 304, + 311, + 505, + 322 + ], + "spans": [ + { + "bbox": [ + 304, + 311, + 423, + 322 + ], + "score": 1.0, + "content": "activation function (Eq. 11).", + "type": "text" + }, + { + "bbox": [ + 423, + 311, + 501, + 322 + ], + "score": 0.92, + "content": "\\alpha = 0 . 3 , \\beta = 0 . 0 1", + "type": "inline_equation" + }, + { + "bbox": [ + 502, + 311, + 505, + 322 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 304, + 321, + 505, + 334 + ], + "spans": [ + { + "bbox": [ + 304, + 321, + 505, + 334 + ], + "score": 1.0, + "content": "The gradient is computed for each neuron and", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 305, + 332, + 505, + 344 + ], + "spans": [ + { + "bbox": [ + 305, + 333, + 318, + 343 + ], + "score": 0.76, + "content": "\\Delta t", + "type": "inline_equation" + }, + { + "bbox": [ + 319, + 332, + 505, + 344 + ], + "score": 1.0, + "content": "defines the time difference between current", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 304, + 343, + 505, + 355 + ], + "spans": [ + { + "bbox": [ + 304, + 343, + 505, + 355 + ], + "score": 1.0, + "content": "simulation time and the last spike time of the", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 303, + 355, + 504, + 366 + ], + "spans": [ + { + "bbox": [ + 303, + 355, + 471, + 366 + ], + "score": 1.0, + "content": "neuron. For example, if a neuron spikes at", + "type": "text" + }, + { + "bbox": [ + 471, + 355, + 504, + 365 + ], + "score": 0.89, + "content": "t _ { s } = 1 2", + "type": "inline_equation" + } + ], + "index": 39 + }, + { + "bbox": [ + 303, + 365, + 503, + 378 + ], + "spans": [ + { + "bbox": [ + 303, + 365, + 435, + 378 + ], + "score": 1.0, + "content": "its gradient will be maximum at", + "type": "text" + }, + { + "bbox": [ + 436, + 366, + 503, + 377 + ], + "score": 0.87, + "content": "t = 1 2 ( \\Delta t = 0 )", + "type": "inline_equation" + } + ], + "index": 40 + }, + { + "bbox": [ + 303, + 376, + 505, + 388 + ], + "spans": [ + { + "bbox": [ + 303, + 376, + 505, + 388 + ], + "score": 1.0, + "content": "and gradually decrease for later time steps. If the", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 303, + 388, + 505, + 399 + ], + "spans": [ + { + "bbox": [ + 303, + 388, + 418, + 399 + ], + "score": 1.0, + "content": "same neuron spikes later at", + "type": "text" + }, + { + "bbox": [ + 418, + 388, + 454, + 398 + ], + "score": 0.91, + "content": "t _ { s } = 2 4", + "type": "inline_equation" + }, + { + "bbox": [ + 454, + 388, + 505, + 399 + ], + "score": 1.0, + "content": "its previous", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 303, + 399, + 505, + 410 + ], + "spans": [ + { + "bbox": [ + 303, + 399, + 505, + 410 + ], + "score": 1.0, + "content": "spike history will be overwritten and the gradient", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 303, + 409, + 505, + 421 + ], + "spans": [ + { + "bbox": [ + 303, + 409, + 370, + 421 + ], + "score": 1.0, + "content": "computation for", + "type": "text" + }, + { + "bbox": [ + 370, + 410, + 399, + 420 + ], + "score": 0.89, + "content": "t = 2 4", + "type": "inline_equation" + }, + { + "bbox": [ + 399, + 409, + 505, + 421 + ], + "score": 1.0, + "content": "onward will only consider", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 303, + 420, + 506, + 432 + ], + "spans": [ + { + "bbox": [ + 303, + 420, + 506, + 432 + ], + "score": 1.0, + "content": "the most recent spike. This avoids the overhead of", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 303, + 430, + 464, + 444 + ], + "spans": [ + { + "bbox": [ + 303, + 430, + 464, + 444 + ], + "score": 1.0, + "content": "storing all the spike history in memory.", + "type": "text" + } + ], + "index": 46 + } + ], + "index": 40 + } + ], + "index": 27.75 + }, + { + "type": "text", + "bbox": [ + 107, + 367, + 296, + 466 + ], + "lines": [ + { + "bbox": [ + 104, + 366, + 298, + 380 + ], + "spans": [ + { + "bbox": [ + 104, + 366, + 298, + 380 + ], + "score": 1.0, + "content": "is widely used to characterize the", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 106, + 378, + 297, + 390 + ], + "spans": [ + { + "bbox": [ + 106, + 378, + 297, + 390 + ], + "score": 1.0, + "content": "leaky-integrate-and-fire (LIF) neuron model", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 106, + 389, + 297, + 401 + ], + "spans": [ + { + "bbox": [ + 106, + 389, + 138, + 401 + ], + "score": 1.0, + "content": "where,", + "type": "text" + }, + { + "bbox": [ + 138, + 390, + 148, + 399 + ], + "score": 0.8, + "content": "U", + "type": "inline_equation" + }, + { + "bbox": [ + 148, + 389, + 297, + 401 + ], + "score": 1.0, + "content": "is the internal state of the neuron", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 399, + 298, + 413 + ], + "spans": [ + { + "bbox": [ + 105, + 399, + 261, + 413 + ], + "score": 1.0, + "content": "referred as the membrane potential,", + "type": "text" + }, + { + "bbox": [ + 262, + 400, + 285, + 411 + ], + "score": 0.91, + "content": "U _ { r e s t }", + "type": "inline_equation" + }, + { + "bbox": [ + 285, + 399, + 298, + 413 + ], + "score": 1.0, + "content": "is", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 106, + 411, + 297, + 423 + ], + "spans": [ + { + "bbox": [ + 106, + 411, + 198, + 423 + ], + "score": 1.0, + "content": "the resting potential,", + "type": "text" + }, + { + "bbox": [ + 198, + 411, + 208, + 421 + ], + "score": 0.74, + "content": "R", + "type": "inline_equation" + }, + { + "bbox": [ + 208, + 411, + 230, + 423 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 230, + 412, + 237, + 421 + ], + "score": 0.76, + "content": "I", + "type": "inline_equation" + }, + { + "bbox": [ + 237, + 411, + 297, + 423 + ], + "score": 1.0, + "content": "are the input", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 106, + 422, + 297, + 434 + ], + "spans": [ + { + "bbox": [ + 106, + 422, + 297, + 434 + ], + "score": 1.0, + "content": "resistance and the current, respectively. The", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 106, + 433, + 297, + 445 + ], + "spans": [ + { + "bbox": [ + 106, + 433, + 297, + 445 + ], + "score": 1.0, + "content": "above equation is valid when the membrane", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 443, + 298, + 455 + ], + "spans": [ + { + "bbox": [ + 105, + 443, + 258, + 455 + ], + "score": 1.0, + "content": "potential is below the threshold value", + "type": "text" + }, + { + "bbox": [ + 259, + 444, + 274, + 455 + ], + "score": 0.7, + "content": "( V )", + "type": "inline_equation" + }, + { + "bbox": [ + 274, + 443, + 298, + 455 + ], + "score": 1.0, + "content": ". The", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 455, + 296, + 467 + ], + "spans": [ + { + "bbox": [ + 105, + 455, + 271, + 467 + ], + "score": 1.0, + "content": "neuron geneartes an output spike when", + "type": "text" + }, + { + "bbox": [ + 271, + 455, + 296, + 466 + ], + "score": 0.89, + "content": "U { \\geqslant } V", + "type": "inline_equation" + } + ], + "index": 33 + } + ], + "index": 29, + "bbox_fs": [ + 104, + 366, + 298, + 467 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 466, + 506, + 510 + ], + "lines": [ + { + "bbox": [ + 106, + 466, + 506, + 478 + ], + "spans": [ + { + "bbox": [ + 106, + 466, + 123, + 478 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 124, + 466, + 133, + 476 + ], + "score": 0.81, + "content": "U", + "type": "inline_equation" + }, + { + "bbox": [ + 133, + 466, + 506, + 478 + ], + "score": 1.0, + "content": "is reduced to the reset potential. This representation is described in continuous domain and", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 106, + 477, + 505, + 489 + ], + "spans": [ + { + "bbox": [ + 106, + 477, + 505, + 489 + ], + "score": 1.0, + "content": "more suitable for biological simulations. We modify the equation to be evaluated in a discrete", + "type": "text" + } + ], + "index": 48 + }, + { + "bbox": [ + 105, + 488, + 506, + 500 + ], + "spans": [ + { + "bbox": [ + 105, + 488, + 247, + 500 + ], + "score": 1.0, + "content": "manner in the Pytorch framework (", + "type": "text" + }, + { + "bbox": [ + 247, + 488, + 263, + 498 + ], + "score": 0.28, + "content": "\\mathrm { W u }", + "type": "inline_equation" + }, + { + "bbox": [ + 263, + 488, + 506, + 500 + ], + "score": 1.0, + "content": "et al., 2018). The iterative model for a single post-neuron is", + "type": "text" + } + ], + "index": 49 + }, + { + "bbox": [ + 105, + 498, + 160, + 512 + ], + "spans": [ + { + "bbox": [ + 105, + 498, + 160, + 512 + ], + "score": 1.0, + "content": "described by", + "type": "text" + } + ], + "index": 50 + } + ], + "index": 48.5, + "bbox_fs": [ + 105, + 466, + 506, + 512 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 236, + 517, + 375, + 545 + ], + "lines": [ + { + "bbox": [ + 236, + 517, + 375, + 545 + ], + "spans": [ + { + "bbox": [ + 236, + 517, + 375, + 545 + ], + "score": 0.94, + "content": "u _ { i } ^ { t } = \\lambda u _ { i } ^ { t - 1 } + \\sum _ { j } w _ { i j } o _ { j } ^ { t } - v o _ { i } ^ { t - 1 }", + "type": "interline_equation", + "image_path": "9a764cd6bdfda7f3e162656f136297a22e529f81902dc5bf6fb8c23bd44c34af.jpg" + } + ] + } + ], + "index": 51.5, + "virtual_lines": [ + { + "bbox": [ + 236, + 517, + 375, + 531.0 + ], + "spans": [], + "index": 51 + }, + { + "bbox": [ + 236, + 531.0, + 375, + 545.0 + ], + "spans": [], + "index": 52 + } + ] + }, + { + "type": "interline_equation", + "bbox": [ + 252, + 565, + 358, + 593 + ], + "lines": [ + { + "bbox": [ + 252, + 565, + 358, + 593 + ], + "spans": [ + { + "bbox": [ + 252, + 565, + 358, + 593 + ], + "score": 0.94, + "content": "o _ { i } ^ { t - 1 } = \\left\\{ { \\begin{array} { l l } { 1 , } & { { \\mathrm { i f ~ } } u _ { i } ^ { t - 1 } > v } \\\\ { 0 , } & { { \\mathrm { o t h e r w i s e } } } \\end{array} } \\right.", + "type": "interline_equation", + "image_path": "3137496a990b78f4f053b333d9ab38f8db4554e8676046b5890d82b65ba96d46.jpg" + } + ] + } + ], + "index": 53.5, + "virtual_lines": [ + { + "bbox": [ + 252, + 565, + 358, + 579.0 + ], + "spans": [], + "index": 53 + }, + { + "bbox": [ + 252, + 579.0, + 358, + 593.0 + ], + "spans": [], + "index": 54 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 610, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 611, + 505, + 623 + ], + "spans": [ + { + "bbox": [ + 106, + 611, + 133, + 623 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 133, + 613, + 140, + 621 + ], + "score": 0.77, + "content": "u", + "type": "inline_equation" + }, + { + "bbox": [ + 140, + 611, + 285, + 623 + ], + "score": 1.0, + "content": "is the membrane potential, subscript", + "type": "text" + }, + { + "bbox": [ + 285, + 612, + 290, + 621 + ], + "score": 0.79, + "content": "i", + "type": "inline_equation" + }, + { + "bbox": [ + 290, + 611, + 307, + 623 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 307, + 612, + 313, + 622 + ], + "score": 0.83, + "content": "j", + "type": "inline_equation" + }, + { + "bbox": [ + 313, + 611, + 505, + 623 + ], + "score": 1.0, + "content": "represent the post- and pre-neuron, respectively,", + "type": "text" + } + ], + "index": 55 + }, + { + "bbox": [ + 105, + 622, + 506, + 635 + ], + "spans": [ + { + "bbox": [ + 105, + 622, + 153, + 635 + ], + "score": 1.0, + "content": "superscript", + "type": "text" + }, + { + "bbox": [ + 153, + 623, + 158, + 632 + ], + "score": 0.75, + "content": "t", + "type": "inline_equation" + }, + { + "bbox": [ + 159, + 622, + 226, + 635 + ], + "score": 1.0, + "content": "is the time step,", + "type": "text" + }, + { + "bbox": [ + 226, + 622, + 233, + 632 + ], + "score": 0.81, + "content": "\\lambda", + "type": "inline_equation" + }, + { + "bbox": [ + 234, + 622, + 288, + 635 + ], + "score": 1.0, + "content": "is a constant", + "type": "text" + }, + { + "bbox": [ + 288, + 623, + 309, + 633 + ], + "score": 0.79, + "content": "( < 1 )", + "type": "inline_equation" + }, + { + "bbox": [ + 310, + 622, + 506, + 635 + ], + "score": 1.0, + "content": "responsible for the leak in membrane potential,", + "type": "text" + } + ], + "index": 56 + }, + { + "bbox": [ + 107, + 632, + 505, + 646 + ], + "spans": [ + { + "bbox": [ + 107, + 635, + 115, + 643 + ], + "score": 0.75, + "content": "w", + "type": "inline_equation" + }, + { + "bbox": [ + 115, + 632, + 319, + 646 + ], + "score": 1.0, + "content": "is the weight connecting the pre- and post-neuron,", + "type": "text" + }, + { + "bbox": [ + 319, + 635, + 325, + 643 + ], + "score": 0.71, + "content": "o", + "type": "inline_equation" + }, + { + "bbox": [ + 326, + 632, + 449, + 646 + ], + "score": 1.0, + "content": "is the binary output spike, and", + "type": "text" + }, + { + "bbox": [ + 449, + 635, + 456, + 643 + ], + "score": 0.71, + "content": "v", + "type": "inline_equation" + }, + { + "bbox": [ + 456, + 632, + 505, + 646 + ], + "score": 1.0, + "content": "is the firing", + "type": "text" + } + ], + "index": 57 + }, + { + "bbox": [ + 105, + 643, + 506, + 656 + ], + "spans": [ + { + "bbox": [ + 105, + 643, + 506, + 656 + ], + "score": 1.0, + "content": "threshold potential. The right hand side of Equation 2 has three terms: the first term calculates the", + "type": "text" + } + ], + "index": 58 + }, + { + "bbox": [ + 105, + 654, + 506, + 667 + ], + "spans": [ + { + "bbox": [ + 105, + 654, + 506, + 667 + ], + "score": 1.0, + "content": "leak in the membrane potential from the previous time step, the second term integrates the input", + "type": "text" + } + ], + "index": 59 + }, + { + "bbox": [ + 105, + 665, + 506, + 679 + ], + "spans": [ + { + "bbox": [ + 105, + 665, + 506, + 679 + ], + "score": 1.0, + "content": "from the previous layer and adds it to the membrane potential, and the third term which is outside", + "type": "text" + } + ], + "index": 60 + }, + { + "bbox": [ + 106, + 677, + 505, + 689 + ], + "spans": [ + { + "bbox": [ + 106, + 677, + 505, + 689 + ], + "score": 1.0, + "content": "the summation reduces the membrane potential by the threshold value if a spike is generated. This", + "type": "text" + } + ], + "index": 61 + }, + { + "bbox": [ + 105, + 687, + 505, + 700 + ], + "spans": [ + { + "bbox": [ + 105, + 687, + 371, + 700 + ], + "score": 1.0, + "content": "is known as soft reset as the membrane potential is lowered by", + "type": "text" + }, + { + "bbox": [ + 371, + 690, + 378, + 698 + ], + "score": 0.62, + "content": "v", + "type": "inline_equation" + }, + { + "bbox": [ + 379, + 687, + 505, + 700 + ], + "score": 1.0, + "content": "compared to hard reset where", + "type": "text" + } + ], + "index": 62 + }, + { + "bbox": [ + 105, + 698, + 505, + 712 + ], + "spans": [ + { + "bbox": [ + 105, + 698, + 505, + 712 + ], + "score": 1.0, + "content": "the membrane potential is reduced to the reset value. Soft reset enables the spiking neuron to carry", + "type": "text" + } + ], + "index": 63 + }, + { + "bbox": [ + 105, + 708, + 506, + 723 + ], + "spans": [ + { + "bbox": [ + 105, + 708, + 506, + 723 + ], + "score": 1.0, + "content": "forward the excess potential above the firing threshold to the following time step, thereby minimizing", + "type": "text" + } + ], + "index": 64 + }, + { + "bbox": [ + 105, + 720, + 176, + 732 + ], + "spans": [ + { + "bbox": [ + 105, + 720, + 176, + 732 + ], + "score": 1.0, + "content": "information loss.", + "type": "text" + } + ], + "index": 65 + } + ], + "index": 60, + "bbox_fs": [ + 105, + 611, + 506, + 732 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "table", + "bbox": [ + 106, + 82, + 299, + 416 + ], + "blocks": [ + { + "type": "table_body", + "bbox": [ + 106, + 82, + 299, + 416 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 82, + 299, + 416 + ], + "spans": [ + { + "bbox": [ + 106, + 82, + 299, + 416 + ], + "score": 0.873, + "html": "
Algorithm 1 ANN-SNN conversion: initialization of weights and threshold voltages Input: Trained ANN model (A), SNN model (N), Input (X) // Copy ann weights to snn
for l=1 to L do |Ni.W ← A.W end // Initialize threshold voltage to O V ←[0,·…·,0]L-1 for l=1 to L-1 do c↑0 for t=1 to T do
Ot ← PoissonGenerator(X) for k=1 to l do ifk<l then // Forward (Algorithm 3) end
else // Pre-nonlinearity (A) A ← Nt(O-1) if max(A) > v then v ←max(A) end end end
", + "type": "table", + "image_path": "6f9596c24c69f972dbb7dfacdd98897f442b2b53243f85c74e46dac6e9329812.jpg" + } + ] + } + ], + "index": 12, + "virtual_lines": [ + { + "bbox": [ + 106, + 82, + 299, + 95.36 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 106, + 95.36, + 299, + 108.72 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 106, + 108.72, + 299, + 122.08 + ], + "spans": [], + "index": 2 + }, + { + "bbox": [ + 106, + 122.08, + 299, + 135.44 + ], + "spans": [], + "index": 3 + }, + { + "bbox": [ + 106, + 135.44, + 299, + 148.8 + ], + "spans": [], + "index": 4 + }, + { + "bbox": [ + 106, + 148.8, + 299, + 162.16000000000003 + ], + "spans": [], + "index": 5 + }, + { + "bbox": [ + 106, + 162.16000000000003, + 299, + 175.52000000000004 + ], + "spans": [], + "index": 6 + }, + { + "bbox": [ + 106, + 175.52000000000004, + 299, + 188.88000000000005 + ], + "spans": [], + "index": 7 + }, + { + "bbox": [ + 106, + 188.88000000000005, + 299, + 202.24000000000007 + ], + "spans": [], + "index": 8 + }, + { + "bbox": [ + 106, + 202.24000000000007, + 299, + 215.60000000000008 + ], + "spans": [], + "index": 9 + }, + { + "bbox": [ + 106, + 215.60000000000008, + 299, + 228.9600000000001 + ], + "spans": [], + "index": 10 + }, + { + "bbox": [ + 106, + 228.9600000000001, + 299, + 242.3200000000001 + ], + "spans": [], + "index": 11 + }, + { + "bbox": [ + 106, + 242.3200000000001, + 299, + 255.68000000000012 + ], + "spans": [], + "index": 12 + }, + { + "bbox": [ + 106, + 255.68000000000012, + 299, + 269.04000000000013 + ], + "spans": [], + "index": 13 + }, + { + "bbox": [ + 106, + 269.04000000000013, + 299, + 282.40000000000015 + ], + "spans": [], + "index": 14 + }, + { + "bbox": [ + 106, + 282.40000000000015, + 299, + 295.76000000000016 + ], + "spans": [], + "index": 15 + }, + { + "bbox": [ + 106, + 295.76000000000016, + 299, + 309.1200000000002 + ], + "spans": [], + "index": 16 + }, + { + "bbox": [ + 106, + 309.1200000000002, + 299, + 322.4800000000002 + ], + "spans": [], + "index": 17 + }, + { + "bbox": [ + 106, + 322.4800000000002, + 299, + 335.8400000000002 + ], + "spans": [], + "index": 18 + }, + { + "bbox": [ + 106, + 335.8400000000002, + 299, + 349.2000000000002 + ], + "spans": [], + "index": 19 + }, + { + "bbox": [ + 106, + 349.2000000000002, + 299, + 362.56000000000023 + ], + "spans": [], + "index": 20 + }, + { + "bbox": [ + 106, + 362.56000000000023, + 299, + 375.92000000000024 + ], + "spans": [], + "index": 21 + }, + { + "bbox": [ + 106, + 375.92000000000024, + 299, + 389.28000000000026 + ], + "spans": [], + "index": 22 + }, + { + "bbox": [ + 106, + 389.28000000000026, + 299, + 402.64000000000027 + ], + "spans": [], + "index": 23 + }, + { + "bbox": [ + 106, + 402.64000000000027, + 299, + 416.0000000000003 + ], + "spans": [], + "index": 24 + } + ] + } + ], + "index": 12 + }, + { + "type": "table", + "bbox": [ + 314, + 83, + 504, + 418 + ], + "blocks": [ + { + "type": "table_body", + "bbox": [ + 314, + 83, + 504, + 418 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 314, + 83, + 504, + 418 + ], + "spans": [ + { + "bbox": [ + 314, + 83, + 504, + 418 + ], + "score": 0.746, + "html": "
Algorithm 2 Initialize the neuron parameters. Membrane potential (U),last spike time(S), dropout mask (M).The initialization is performed once for everymini-batch.
Input: Input(X), network model(N) b_size=X.b_size h=X.height w=X.width for l=1 to L do
if isintance(Ni,Conv) then Ut = zeros(b_size,Ni.out,h,w) St = ones(b_size,Ni.out,h,w) * (-1000) end elseif isintance(Nt,Linear) then Ut = zeros(b_size,Ni.out) St = ones(b_size,Ni.out) *(-1000)
end else if isintance(Ni,Dropout) then // Generate the dropout map that will be fixed for all time steps Mt = Ni(ones(Ut-1.shape)) end else ifisintance(Ni,AugPool) then //Reduce the width and height after average pooling layer h=h//kernel_size w=w//kernel_size end
", + "type": "table", + "image_path": "22c871afd72e7ae17fe73eb2cf2297d3b354828a4e971daebf3388808fa59765.jpg" + } + ] + } + ], + "index": 37, + "virtual_lines": [ + { + "bbox": [ + 314, + 83, + 504, + 96.4 + ], + "spans": [], + "index": 25 + }, + { + "bbox": [ + 314, + 96.4, + 504, + 109.80000000000001 + ], + "spans": [], + "index": 26 + }, + { + "bbox": [ + 314, + 109.80000000000001, + 504, + 123.20000000000002 + ], + "spans": [], + "index": 27 + }, + { + "bbox": [ + 314, + 123.20000000000002, + 504, + 136.60000000000002 + ], + "spans": [], + "index": 28 + }, + { + "bbox": [ + 314, + 136.60000000000002, + 504, + 150.00000000000003 + ], + "spans": [], + "index": 29 + }, + { + "bbox": [ + 314, + 150.00000000000003, + 504, + 163.40000000000003 + ], + "spans": [], + "index": 30 + }, + { + "bbox": [ + 314, + 163.40000000000003, + 504, + 176.80000000000004 + ], + "spans": [], + "index": 31 + }, + { + "bbox": [ + 314, + 176.80000000000004, + 504, + 190.20000000000005 + ], + "spans": [], + "index": 32 + }, + { + "bbox": [ + 314, + 190.20000000000005, + 504, + 203.60000000000005 + ], + "spans": [], + "index": 33 + }, + { + "bbox": [ + 314, + 203.60000000000005, + 504, + 217.00000000000006 + ], + "spans": [], + "index": 34 + }, + { + "bbox": [ + 314, + 217.00000000000006, + 504, + 230.40000000000006 + ], + "spans": [], + "index": 35 + }, + { + "bbox": [ + 314, + 230.40000000000006, + 504, + 243.80000000000007 + ], + "spans": [], + "index": 36 + }, + { + "bbox": [ + 314, + 243.80000000000007, + 504, + 257.20000000000005 + ], + "spans": [], + "index": 37 + }, + { + "bbox": [ + 314, + 257.20000000000005, + 504, + 270.6 + ], + "spans": [], + "index": 38 + }, + { + "bbox": [ + 314, + 270.6, + 504, + 284.0 + ], + "spans": [], + "index": 39 + }, + { + "bbox": [ + 314, + 284.0, + 504, + 297.4 + ], + "spans": [], + "index": 40 + }, + { + "bbox": [ + 314, + 297.4, + 504, + 310.79999999999995 + ], + "spans": [], + "index": 41 + }, + { + "bbox": [ + 314, + 310.79999999999995, + 504, + 324.19999999999993 + ], + "spans": [], + "index": 42 + }, + { + "bbox": [ + 314, + 324.19999999999993, + 504, + 337.5999999999999 + ], + "spans": [], + "index": 43 + }, + { + "bbox": [ + 314, + 337.5999999999999, + 504, + 350.9999999999999 + ], + "spans": [], + "index": 44 + }, + { + "bbox": [ + 314, + 350.9999999999999, + 504, + 364.39999999999986 + ], + "spans": [], + "index": 45 + }, + { + "bbox": [ + 314, + 364.39999999999986, + 504, + 377.79999999999984 + ], + "spans": [], + "index": 46 + }, + { + "bbox": [ + 314, + 377.79999999999984, + 504, + 391.1999999999998 + ], + "spans": [], + "index": 47 + }, + { + "bbox": [ + 314, + 391.1999999999998, + 504, + 404.5999999999998 + ], + "spans": [], + "index": 48 + }, + { + "bbox": [ + 314, + 404.5999999999998, + 504, + 417.9999999999998 + ], + "spans": [], + "index": 49 + } + ] + } + ], + "index": 37 + }, + { + "type": "title", + "bbox": [ + 107, + 438, + 446, + 450 + ], + "lines": [ + { + "bbox": [ + 104, + 436, + 449, + 452 + ], + "spans": [ + { + "bbox": [ + 104, + 436, + 449, + 452 + ], + "score": 1.0, + "content": "2.2 SPIKE TIMING DEPENDENT BACKPROPAGATION (STDB) LEARNING RULE", + "type": "text" + } + ], + "index": 50 + } + ], + "index": 50 + }, + { + "type": "text", + "bbox": [ + 106, + 461, + 505, + 604 + ], + "lines": [ + { + "bbox": [ + 106, + 461, + 504, + 474 + ], + "spans": [ + { + "bbox": [ + 106, + 461, + 504, + 474 + ], + "score": 1.0, + "content": "The neuron dynamics (Equation 2) show that the neuron’s state at a particular time step recurrently", + "type": "text" + } + ], + "index": 51 + }, + { + "bbox": [ + 106, + 473, + 505, + 484 + ], + "spans": [ + { + "bbox": [ + 106, + 473, + 505, + 484 + ], + "score": 1.0, + "content": "depends on its state in previous time steps. This introduces implicit recurrent connections in the", + "type": "text" + } + ], + "index": 52 + }, + { + "bbox": [ + 105, + 482, + 506, + 496 + ], + "spans": [ + { + "bbox": [ + 105, + 482, + 506, + 496 + ], + "score": 1.0, + "content": "network (Neftci et al., 2019). Therefore, the learning rule has to perform the temporal credit", + "type": "text" + } + ], + "index": 53 + }, + { + "bbox": [ + 106, + 495, + 506, + 506 + ], + "spans": [ + { + "bbox": [ + 106, + 495, + 506, + 506 + ], + "score": 1.0, + "content": "assignment along with the spatial credit assignment. Credit assignment refers to the process of", + "type": "text" + } + ], + "index": 54 + }, + { + "bbox": [ + 106, + 506, + 505, + 518 + ], + "spans": [ + { + "bbox": [ + 106, + 506, + 505, + 518 + ], + "score": 1.0, + "content": "assigning credit or blame to the network parameters according to their contribution to the loss", + "type": "text" + } + ], + "index": 55 + }, + { + "bbox": [ + 106, + 516, + 505, + 528 + ], + "spans": [ + { + "bbox": [ + 106, + 516, + 505, + 528 + ], + "score": 1.0, + "content": "function. Spatial credit assignment identifies structural network parameters (like weights), whereas", + "type": "text" + } + ], + "index": 56 + }, + { + "bbox": [ + 105, + 527, + 505, + 539 + ], + "spans": [ + { + "bbox": [ + 105, + 527, + 505, + 539 + ], + "score": 1.0, + "content": "temporal credit assignment determines which past network activities contributed to the loss function.", + "type": "text" + } + ], + "index": 57 + }, + { + "bbox": [ + 105, + 537, + 505, + 551 + ], + "spans": [ + { + "bbox": [ + 105, + 537, + 505, + 551 + ], + "score": 1.0, + "content": "Gradient-descent learning solves both credit assignment problem: spatial credit assignment is", + "type": "text" + } + ], + "index": 58 + }, + { + "bbox": [ + 105, + 549, + 506, + 561 + ], + "spans": [ + { + "bbox": [ + 105, + 549, + 506, + 561 + ], + "score": 1.0, + "content": "performed by distributing error spatially across all layers using the chain rule of derivatives, and", + "type": "text" + } + ], + "index": 59 + }, + { + "bbox": [ + 106, + 560, + 505, + 573 + ], + "spans": [ + { + "bbox": [ + 106, + 560, + 505, + 573 + ], + "score": 1.0, + "content": "temporal credit assignment is done by unrolling the network in time and performing backpropagation", + "type": "text" + } + ], + "index": 60 + }, + { + "bbox": [ + 106, + 570, + 505, + 583 + ], + "spans": [ + { + "bbox": [ + 106, + 570, + 505, + 583 + ], + "score": 1.0, + "content": "through time (BPTT) using the same chain rule of derivatives (Werbos et al., 1990). In BPTT, the", + "type": "text" + } + ], + "index": 61 + }, + { + "bbox": [ + 105, + 581, + 505, + 594 + ], + "spans": [ + { + "bbox": [ + 105, + 581, + 505, + 594 + ], + "score": 1.0, + "content": "network is unrolled for all time steps and the final output is computed as the sum of outputs from", + "type": "text" + } + ], + "index": 62 + }, + { + "bbox": [ + 105, + 592, + 376, + 606 + ], + "spans": [ + { + "bbox": [ + 105, + 592, + 376, + 606 + ], + "score": 1.0, + "content": "each time step. The loss function is defined on the summed output.", + "type": "text" + } + ], + "index": 63 + } + ], + "index": 57 + }, + { + "type": "text", + "bbox": [ + 107, + 609, + 505, + 643 + ], + "lines": [ + { + "bbox": [ + 105, + 608, + 505, + 622 + ], + "spans": [ + { + "bbox": [ + 105, + 608, + 505, + 622 + ], + "score": 1.0, + "content": "The dynamics of the neuron in the output layer is described by Equation (4), where the leak part", + "type": "text" + } + ], + "index": 64 + }, + { + "bbox": [ + 105, + 621, + 505, + 633 + ], + "spans": [ + { + "bbox": [ + 105, + 621, + 157, + 633 + ], + "score": 1.0, + "content": "is removed", + "type": "text" + }, + { + "bbox": [ + 157, + 621, + 188, + 631 + ], + "score": 0.86, + "content": "\\lambda = 1", + "type": "inline_equation" + }, + { + "bbox": [ + 188, + 621, + 505, + 633 + ], + "score": 1.0, + "content": ") and the neuron only integrates the input without firing. This eliminates the", + "type": "text" + } + ], + "index": 65 + }, + { + "bbox": [ + 106, + 632, + 393, + 644 + ], + "spans": [ + { + "bbox": [ + 106, + 632, + 393, + 644 + ], + "score": 1.0, + "content": "difficulty of defining the loss function on spike count (Lee et al., 2019).", + "type": "text" + } + ], + "index": 66 + } + ], + "index": 65 + }, + { + "type": "interline_equation", + "bbox": [ + 258, + 654, + 353, + 682 + ], + "lines": [ + { + "bbox": [ + 258, + 654, + 353, + 682 + ], + "spans": [ + { + "bbox": [ + 258, + 654, + 353, + 682 + ], + "score": 0.95, + "content": "u _ { i } ^ { t } = u _ { i } ^ { t - 1 } + \\sum _ { j } w _ { i j } o _ { j }", + "type": "interline_equation", + "image_path": "18b0132d3bf849f9819844e04bdf32195c80f6e2bd7ab05d4d6a2fbbc255d3cd.jpg" + } + ] + } + ], + "index": 67.5, + "virtual_lines": [ + { + "bbox": [ + 258, + 654, + 353, + 668.0 + ], + "spans": [], + "index": 67 + }, + { + "bbox": [ + 258, + 668.0, + 353, + 682.0 + ], + "spans": [], + "index": 68 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 699, + 504, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 698, + 505, + 711 + ], + "spans": [ + { + "bbox": [ + 105, + 698, + 505, + 711 + ], + "score": 1.0, + "content": "The number of neurons in the output layer is the same as the number of categories in the classification", + "type": "text" + } + ], + "index": 69 + }, + { + "bbox": [ + 105, + 709, + 504, + 722 + ], + "spans": [ + { + "bbox": [ + 105, + 709, + 504, + 722 + ], + "score": 1.0, + "content": "task. The output of the network is passed through a softmax layer that outputs a probability", + "type": "text" + } + ], + "index": 70 + }, + { + "bbox": [ + 105, + 720, + 506, + 733 + ], + "spans": [ + { + "bbox": [ + 105, + 720, + 506, + 733 + ], + "score": 1.0, + "content": "distribution. The loss function is defined as the cross-entropy between the true output and the", + "type": "text" + } + ], + "index": 71 + } + ], + "index": 70 + } + ], + "page_idx": 3, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 27, + 293, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 26, + 294, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 26, + 294, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2020", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 302, + 752, + 308, + 759 + ], + "lines": [] + } + ], + "para_blocks": [ + { + "type": "table", + "bbox": [ + 106, + 82, + 299, + 416 + ], + "blocks": [ + { + "type": "table_body", + "bbox": [ + 106, + 82, + 299, + 416 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 82, + 299, + 416 + ], + "spans": [ + { + "bbox": [ + 106, + 82, + 299, + 416 + ], + "score": 0.873, + "html": "
Algorithm 1 ANN-SNN conversion: initialization of weights and threshold voltages Input: Trained ANN model (A), SNN model (N), Input (X) // Copy ann weights to snn
for l=1 to L do |Ni.W ← A.W end // Initialize threshold voltage to O V ←[0,·…·,0]L-1 for l=1 to L-1 do c↑0 for t=1 to T do
Ot ← PoissonGenerator(X) for k=1 to l do ifk<l then // Forward (Algorithm 3) end
else // Pre-nonlinearity (A) A ← Nt(O-1) if max(A) > v then v ←max(A) end end end
", + "type": "table", + "image_path": "6f9596c24c69f972dbb7dfacdd98897f442b2b53243f85c74e46dac6e9329812.jpg" + } + ] + } + ], + "index": 12, + "virtual_lines": [ + { + "bbox": [ + 106, + 82, + 299, + 95.36 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 106, + 95.36, + 299, + 108.72 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 106, + 108.72, + 299, + 122.08 + ], + "spans": [], + "index": 2 + }, + { + "bbox": [ + 106, + 122.08, + 299, + 135.44 + ], + "spans": [], + "index": 3 + }, + { + "bbox": [ + 106, + 135.44, + 299, + 148.8 + ], + "spans": [], + "index": 4 + }, + { + "bbox": [ + 106, + 148.8, + 299, + 162.16000000000003 + ], + "spans": [], + "index": 5 + }, + { + "bbox": [ + 106, + 162.16000000000003, + 299, + 175.52000000000004 + ], + "spans": [], + "index": 6 + }, + { + "bbox": [ + 106, + 175.52000000000004, + 299, + 188.88000000000005 + ], + "spans": [], + "index": 7 + }, + { + "bbox": [ + 106, + 188.88000000000005, + 299, + 202.24000000000007 + ], + "spans": [], + "index": 8 + }, + { + "bbox": [ + 106, + 202.24000000000007, + 299, + 215.60000000000008 + ], + "spans": [], + "index": 9 + }, + { + "bbox": [ + 106, + 215.60000000000008, + 299, + 228.9600000000001 + ], + "spans": [], + "index": 10 + }, + { + "bbox": [ + 106, + 228.9600000000001, + 299, + 242.3200000000001 + ], + "spans": [], + "index": 11 + }, + { + "bbox": [ + 106, + 242.3200000000001, + 299, + 255.68000000000012 + ], + "spans": [], + "index": 12 + }, + { + "bbox": [ + 106, + 255.68000000000012, + 299, + 269.04000000000013 + ], + "spans": [], + "index": 13 + }, + { + "bbox": [ + 106, + 269.04000000000013, + 299, + 282.40000000000015 + ], + "spans": [], + "index": 14 + }, + { + "bbox": [ + 106, + 282.40000000000015, + 299, + 295.76000000000016 + ], + "spans": [], + "index": 15 + }, + { + "bbox": [ + 106, + 295.76000000000016, + 299, + 309.1200000000002 + ], + "spans": [], + "index": 16 + }, + { + "bbox": [ + 106, + 309.1200000000002, + 299, + 322.4800000000002 + ], + "spans": [], + "index": 17 + }, + { + "bbox": [ + 106, + 322.4800000000002, + 299, + 335.8400000000002 + ], + "spans": [], + "index": 18 + }, + { + "bbox": [ + 106, + 335.8400000000002, + 299, + 349.2000000000002 + ], + "spans": [], + "index": 19 + }, + { + "bbox": [ + 106, + 349.2000000000002, + 299, + 362.56000000000023 + ], + "spans": [], + "index": 20 + }, + { + "bbox": [ + 106, + 362.56000000000023, + 299, + 375.92000000000024 + ], + "spans": [], + "index": 21 + }, + { + "bbox": [ + 106, + 375.92000000000024, + 299, + 389.28000000000026 + ], + "spans": [], + "index": 22 + }, + { + "bbox": [ + 106, + 389.28000000000026, + 299, + 402.64000000000027 + ], + "spans": [], + "index": 23 + }, + { + "bbox": [ + 106, + 402.64000000000027, + 299, + 416.0000000000003 + ], + "spans": [], + "index": 24 + } + ] + } + ], + "index": 12 + }, + { + "type": "table", + "bbox": [ + 314, + 83, + 504, + 418 + ], + "blocks": [ + { + "type": "table_body", + "bbox": [ + 314, + 83, + 504, + 418 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 314, + 83, + 504, + 418 + ], + "spans": [ + { + "bbox": [ + 314, + 83, + 504, + 418 + ], + "score": 0.746, + "html": "
Algorithm 2 Initialize the neuron parameters. Membrane potential (U),last spike time(S), dropout mask (M).The initialization is performed once for everymini-batch.
Input: Input(X), network model(N) b_size=X.b_size h=X.height w=X.width for l=1 to L do
if isintance(Ni,Conv) then Ut = zeros(b_size,Ni.out,h,w) St = ones(b_size,Ni.out,h,w) * (-1000) end elseif isintance(Nt,Linear) then Ut = zeros(b_size,Ni.out) St = ones(b_size,Ni.out) *(-1000)
end else if isintance(Ni,Dropout) then // Generate the dropout map that will be fixed for all time steps Mt = Ni(ones(Ut-1.shape)) end else ifisintance(Ni,AugPool) then //Reduce the width and height after average pooling layer h=h//kernel_size w=w//kernel_size end
", + "type": "table", + "image_path": "22c871afd72e7ae17fe73eb2cf2297d3b354828a4e971daebf3388808fa59765.jpg" + } + ] + } + ], + "index": 37, + "virtual_lines": [ + { + "bbox": [ + 314, + 83, + 504, + 96.4 + ], + "spans": [], + "index": 25 + }, + { + "bbox": [ + 314, + 96.4, + 504, + 109.80000000000001 + ], + "spans": [], + "index": 26 + }, + { + "bbox": [ + 314, + 109.80000000000001, + 504, + 123.20000000000002 + ], + "spans": [], + "index": 27 + }, + { + "bbox": [ + 314, + 123.20000000000002, + 504, + 136.60000000000002 + ], + "spans": [], + "index": 28 + }, + { + "bbox": [ + 314, + 136.60000000000002, + 504, + 150.00000000000003 + ], + "spans": [], + "index": 29 + }, + { + "bbox": [ + 314, + 150.00000000000003, + 504, + 163.40000000000003 + ], + "spans": [], + "index": 30 + }, + { + "bbox": [ + 314, + 163.40000000000003, + 504, + 176.80000000000004 + ], + "spans": [], + "index": 31 + }, + { + "bbox": [ + 314, + 176.80000000000004, + 504, + 190.20000000000005 + ], + "spans": [], + "index": 32 + }, + { + "bbox": [ + 314, + 190.20000000000005, + 504, + 203.60000000000005 + ], + "spans": [], + "index": 33 + }, + { + "bbox": [ + 314, + 203.60000000000005, + 504, + 217.00000000000006 + ], + "spans": [], + "index": 34 + }, + { + "bbox": [ + 314, + 217.00000000000006, + 504, + 230.40000000000006 + ], + "spans": [], + "index": 35 + }, + { + "bbox": [ + 314, + 230.40000000000006, + 504, + 243.80000000000007 + ], + "spans": [], + "index": 36 + }, + { + "bbox": [ + 314, + 243.80000000000007, + 504, + 257.20000000000005 + ], + "spans": [], + "index": 37 + }, + { + "bbox": [ + 314, + 257.20000000000005, + 504, + 270.6 + ], + "spans": [], + "index": 38 + }, + { + "bbox": [ + 314, + 270.6, + 504, + 284.0 + ], + "spans": [], + "index": 39 + }, + { + "bbox": [ + 314, + 284.0, + 504, + 297.4 + ], + "spans": [], + "index": 40 + }, + { + "bbox": [ + 314, + 297.4, + 504, + 310.79999999999995 + ], + "spans": [], + "index": 41 + }, + { + "bbox": [ + 314, + 310.79999999999995, + 504, + 324.19999999999993 + ], + "spans": [], + "index": 42 + }, + { + "bbox": [ + 314, + 324.19999999999993, + 504, + 337.5999999999999 + ], + "spans": [], + "index": 43 + }, + { + "bbox": [ + 314, + 337.5999999999999, + 504, + 350.9999999999999 + ], + "spans": [], + "index": 44 + }, + { + "bbox": [ + 314, + 350.9999999999999, + 504, + 364.39999999999986 + ], + "spans": [], + "index": 45 + }, + { + "bbox": [ + 314, + 364.39999999999986, + 504, + 377.79999999999984 + ], + "spans": [], + "index": 46 + }, + { + "bbox": [ + 314, + 377.79999999999984, + 504, + 391.1999999999998 + ], + "spans": [], + "index": 47 + }, + { + "bbox": [ + 314, + 391.1999999999998, + 504, + 404.5999999999998 + ], + "spans": [], + "index": 48 + }, + { + "bbox": [ + 314, + 404.5999999999998, + 504, + 417.9999999999998 + ], + "spans": [], + "index": 49 + } + ] + } + ], + "index": 37 + }, + { + "type": "title", + "bbox": [ + 107, + 438, + 446, + 450 + ], + "lines": [ + { + "bbox": [ + 104, + 436, + 449, + 452 + ], + "spans": [ + { + "bbox": [ + 104, + 436, + 449, + 452 + ], + "score": 1.0, + "content": "2.2 SPIKE TIMING DEPENDENT BACKPROPAGATION (STDB) LEARNING RULE", + "type": "text" + } + ], + "index": 50 + } + ], + "index": 50 + }, + { + "type": "text", + "bbox": [ + 106, + 461, + 505, + 604 + ], + "lines": [ + { + "bbox": [ + 106, + 461, + 504, + 474 + ], + "spans": [ + { + "bbox": [ + 106, + 461, + 504, + 474 + ], + "score": 1.0, + "content": "The neuron dynamics (Equation 2) show that the neuron’s state at a particular time step recurrently", + "type": "text" + } + ], + "index": 51 + }, + { + "bbox": [ + 106, + 473, + 505, + 484 + ], + "spans": [ + { + "bbox": [ + 106, + 473, + 505, + 484 + ], + "score": 1.0, + "content": "depends on its state in previous time steps. This introduces implicit recurrent connections in the", + "type": "text" + } + ], + "index": 52 + }, + { + "bbox": [ + 105, + 482, + 506, + 496 + ], + "spans": [ + { + "bbox": [ + 105, + 482, + 506, + 496 + ], + "score": 1.0, + "content": "network (Neftci et al., 2019). Therefore, the learning rule has to perform the temporal credit", + "type": "text" + } + ], + "index": 53 + }, + { + "bbox": [ + 106, + 495, + 506, + 506 + ], + "spans": [ + { + "bbox": [ + 106, + 495, + 506, + 506 + ], + "score": 1.0, + "content": "assignment along with the spatial credit assignment. Credit assignment refers to the process of", + "type": "text" + } + ], + "index": 54 + }, + { + "bbox": [ + 106, + 506, + 505, + 518 + ], + "spans": [ + { + "bbox": [ + 106, + 506, + 505, + 518 + ], + "score": 1.0, + "content": "assigning credit or blame to the network parameters according to their contribution to the loss", + "type": "text" + } + ], + "index": 55 + }, + { + "bbox": [ + 106, + 516, + 505, + 528 + ], + "spans": [ + { + "bbox": [ + 106, + 516, + 505, + 528 + ], + "score": 1.0, + "content": "function. Spatial credit assignment identifies structural network parameters (like weights), whereas", + "type": "text" + } + ], + "index": 56 + }, + { + "bbox": [ + 105, + 527, + 505, + 539 + ], + "spans": [ + { + "bbox": [ + 105, + 527, + 505, + 539 + ], + "score": 1.0, + "content": "temporal credit assignment determines which past network activities contributed to the loss function.", + "type": "text" + } + ], + "index": 57 + }, + { + "bbox": [ + 105, + 537, + 505, + 551 + ], + "spans": [ + { + "bbox": [ + 105, + 537, + 505, + 551 + ], + "score": 1.0, + "content": "Gradient-descent learning solves both credit assignment problem: spatial credit assignment is", + "type": "text" + } + ], + "index": 58 + }, + { + "bbox": [ + 105, + 549, + 506, + 561 + ], + "spans": [ + { + "bbox": [ + 105, + 549, + 506, + 561 + ], + "score": 1.0, + "content": "performed by distributing error spatially across all layers using the chain rule of derivatives, and", + "type": "text" + } + ], + "index": 59 + }, + { + "bbox": [ + 106, + 560, + 505, + 573 + ], + "spans": [ + { + "bbox": [ + 106, + 560, + 505, + 573 + ], + "score": 1.0, + "content": "temporal credit assignment is done by unrolling the network in time and performing backpropagation", + "type": "text" + } + ], + "index": 60 + }, + { + "bbox": [ + 106, + 570, + 505, + 583 + ], + "spans": [ + { + "bbox": [ + 106, + 570, + 505, + 583 + ], + "score": 1.0, + "content": "through time (BPTT) using the same chain rule of derivatives (Werbos et al., 1990). In BPTT, the", + "type": "text" + } + ], + "index": 61 + }, + { + "bbox": [ + 105, + 581, + 505, + 594 + ], + "spans": [ + { + "bbox": [ + 105, + 581, + 505, + 594 + ], + "score": 1.0, + "content": "network is unrolled for all time steps and the final output is computed as the sum of outputs from", + "type": "text" + } + ], + "index": 62 + }, + { + "bbox": [ + 105, + 592, + 376, + 606 + ], + "spans": [ + { + "bbox": [ + 105, + 592, + 376, + 606 + ], + "score": 1.0, + "content": "each time step. The loss function is defined on the summed output.", + "type": "text" + } + ], + "index": 63 + } + ], + "index": 57, + "bbox_fs": [ + 105, + 461, + 506, + 606 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 609, + 505, + 643 + ], + "lines": [ + { + "bbox": [ + 105, + 608, + 505, + 622 + ], + "spans": [ + { + "bbox": [ + 105, + 608, + 505, + 622 + ], + "score": 1.0, + "content": "The dynamics of the neuron in the output layer is described by Equation (4), where the leak part", + "type": "text" + } + ], + "index": 64 + }, + { + "bbox": [ + 105, + 621, + 505, + 633 + ], + "spans": [ + { + "bbox": [ + 105, + 621, + 157, + 633 + ], + "score": 1.0, + "content": "is removed", + "type": "text" + }, + { + "bbox": [ + 157, + 621, + 188, + 631 + ], + "score": 0.86, + "content": "\\lambda = 1", + "type": "inline_equation" + }, + { + "bbox": [ + 188, + 621, + 505, + 633 + ], + "score": 1.0, + "content": ") and the neuron only integrates the input without firing. This eliminates the", + "type": "text" + } + ], + "index": 65 + }, + { + "bbox": [ + 106, + 632, + 393, + 644 + ], + "spans": [ + { + "bbox": [ + 106, + 632, + 393, + 644 + ], + "score": 1.0, + "content": "difficulty of defining the loss function on spike count (Lee et al., 2019).", + "type": "text" + } + ], + "index": 66 + } + ], + "index": 65, + "bbox_fs": [ + 105, + 608, + 505, + 644 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 258, + 654, + 353, + 682 + ], + "lines": [ + { + "bbox": [ + 258, + 654, + 353, + 682 + ], + "spans": [ + { + "bbox": [ + 258, + 654, + 353, + 682 + ], + "score": 0.95, + "content": "u _ { i } ^ { t } = u _ { i } ^ { t - 1 } + \\sum _ { j } w _ { i j } o _ { j }", + "type": "interline_equation", + "image_path": "18b0132d3bf849f9819844e04bdf32195c80f6e2bd7ab05d4d6a2fbbc255d3cd.jpg" + } + ] + } + ], + "index": 67.5, + "virtual_lines": [ + { + "bbox": [ + 258, + 654, + 353, + 668.0 + ], + "spans": [], + "index": 67 + }, + { + "bbox": [ + 258, + 668.0, + 353, + 682.0 + ], + "spans": [], + "index": 68 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 699, + 504, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 698, + 505, + 711 + ], + "spans": [ + { + "bbox": [ + 105, + 698, + 505, + 711 + ], + "score": 1.0, + "content": "The number of neurons in the output layer is the same as the number of categories in the classification", + "type": "text" + } + ], + "index": 69 + }, + { + "bbox": [ + 105, + 709, + 504, + 722 + ], + "spans": [ + { + "bbox": [ + 105, + 709, + 504, + 722 + ], + "score": 1.0, + "content": "task. The output of the network is passed through a softmax layer that outputs a probability", + "type": "text" + } + ], + "index": 70 + }, + { + "bbox": [ + 105, + 720, + 506, + 733 + ], + "spans": [ + { + "bbox": [ + 105, + 720, + 506, + 733 + ], + "score": 1.0, + "content": "distribution. The loss function is defined as the cross-entropy between the true output and the", + "type": "text" + } + ], + "index": 71 + } + ], + "index": 70, + "bbox_fs": [ + 105, + 698, + 506, + 733 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 106, + 82, + 237, + 94 + ], + "lines": [ + { + "bbox": [ + 105, + 82, + 238, + 94 + ], + "spans": [ + { + "bbox": [ + 105, + 82, + 238, + 94 + ], + "score": 1.0, + "content": "network’s predicted distribution.", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "interline_equation", + "bbox": [ + 263, + 92, + 348, + 155 + ], + "lines": [ + { + "bbox": [ + 265, + 92, + 347, + 155 + ], + "spans": [ + { + "bbox": [ + 265, + 92, + 347, + 155 + ], + "score": 0.81, + "content": "\\begin{array} { c } { L = - \\displaystyle \\sum _ { i } y _ { i } l o g ( p _ { i } ) } \\\\ { p _ { i } = \\displaystyle \\frac { e ^ { u _ { i } ^ { T } } } { \\sum _ { k = 1 } ^ { N } e ^ { u _ { k } ^ { T } } } } \\end{array}", + "type": "interline_equation", + "image_path": "d1903200c357aa7e29b818c4bcf23d950a97ad23b168705127aa6b073928e3db.jpg" + } + ] + } + ], + "index": 1.5, + "virtual_lines": [ + { + "bbox": [ + 263, + 92, + 348, + 123.5 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 263, + 123.5, + 348, + 155.0 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 162, + 505, + 304 + ], + "lines": [ + { + "bbox": [ + 107, + 161, + 504, + 175 + ], + "spans": [ + { + "bbox": [ + 107, + 163, + 115, + 172 + ], + "score": 0.79, + "content": "L", + "type": "inline_equation" + }, + { + "bbox": [ + 115, + 161, + 201, + 175 + ], + "score": 1.0, + "content": "is the loss function,", + "type": "text" + }, + { + "bbox": [ + 202, + 165, + 209, + 174 + ], + "score": 0.8, + "content": "y", + "type": "inline_equation" + }, + { + "bbox": [ + 209, + 161, + 277, + 175 + ], + "score": 1.0, + "content": "the true output,", + "type": "text" + }, + { + "bbox": [ + 277, + 165, + 284, + 174 + ], + "score": 0.81, + "content": "p", + "type": "inline_equation" + }, + { + "bbox": [ + 285, + 161, + 348, + 175 + ], + "score": 1.0, + "content": "the prediction,", + "type": "text" + }, + { + "bbox": [ + 349, + 163, + 357, + 172 + ], + "score": 0.8, + "content": "T", + "type": "inline_equation" + }, + { + "bbox": [ + 358, + 161, + 490, + 175 + ], + "score": 1.0, + "content": "the total number of time steps,", + "type": "text" + }, + { + "bbox": [ + 491, + 162, + 504, + 172 + ], + "score": 0.86, + "content": "u ^ { T }", + "type": "inline_equation" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 172, + 505, + 185 + ], + "spans": [ + { + "bbox": [ + 105, + 172, + 505, + 185 + ], + "score": 1.0, + "content": "the accumulated membrane potential of the neuron in the output layer from all time steps, and", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 107, + 183, + 505, + 196 + ], + "spans": [ + { + "bbox": [ + 107, + 184, + 117, + 194 + ], + "score": 0.76, + "content": "N", + "type": "inline_equation" + }, + { + "bbox": [ + 117, + 183, + 505, + 196 + ], + "score": 1.0, + "content": "the number of categories in the task. For deeper networks and large number of time steps the", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 194, + 506, + 208 + ], + "spans": [ + { + "bbox": [ + 105, + 194, + 506, + 208 + ], + "score": 1.0, + "content": "truncated version of the BPTT algorithm is used to avoid memory issues. In the truncated version", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 205, + 506, + 218 + ], + "spans": [ + { + "bbox": [ + 105, + 205, + 266, + 218 + ], + "score": 1.0, + "content": "the loss is computed at some time step", + "type": "text" + }, + { + "bbox": [ + 267, + 206, + 274, + 216 + ], + "score": 0.83, + "content": "t ^ { \\prime }", + "type": "inline_equation" + }, + { + "bbox": [ + 275, + 205, + 304, + 218 + ], + "score": 1.0, + "content": "before", + "type": "text" + }, + { + "bbox": [ + 304, + 207, + 313, + 216 + ], + "score": 0.34, + "content": "\\mathrm { T }", + "type": "inline_equation" + }, + { + "bbox": [ + 313, + 205, + 473, + 218 + ], + "score": 1.0, + "content": "based on the potential accumulated till", + "type": "text" + }, + { + "bbox": [ + 473, + 206, + 481, + 216 + ], + "score": 0.83, + "content": "t ^ { \\prime }", + "type": "inline_equation" + }, + { + "bbox": [ + 481, + 205, + 506, + 218 + ], + "score": 1.0, + "content": ". The", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 106, + 218, + 505, + 229 + ], + "spans": [ + { + "bbox": [ + 106, + 218, + 505, + 229 + ], + "score": 1.0, + "content": "loss is backpropagated to all layers and the loss gradients are computed and stored. At this point,", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 106, + 228, + 505, + 240 + ], + "spans": [ + { + "bbox": [ + 106, + 228, + 505, + 240 + ], + "score": 1.0, + "content": "the history of the computational graph is cleaned to save memory. The subsequent computation of", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 104, + 237, + 506, + 253 + ], + "spans": [ + { + "bbox": [ + 104, + 237, + 241, + 253 + ], + "score": 1.0, + "content": "loss gradients at later time steps", + "type": "text" + }, + { + "bbox": [ + 241, + 239, + 296, + 251 + ], + "score": 0.91, + "content": "( 2 t ^ { \\prime } , 3 t ^ { \\prime } , . . . T )", + "type": "inline_equation" + }, + { + "bbox": [ + 296, + 237, + 469, + 253 + ], + "score": 1.0, + "content": "are summed together with the gradient at", + "type": "text" + }, + { + "bbox": [ + 469, + 239, + 477, + 249 + ], + "score": 0.84, + "content": "t ^ { \\prime }", + "type": "inline_equation" + }, + { + "bbox": [ + 478, + 237, + 506, + 253 + ], + "score": 1.0, + "content": "to get", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 106, + 250, + 505, + 263 + ], + "spans": [ + { + "bbox": [ + 106, + 250, + 351, + 263 + ], + "score": 1.0, + "content": "the final gradient. The optimizer updates the parameters at", + "type": "text" + }, + { + "bbox": [ + 351, + 250, + 360, + 260 + ], + "score": 0.79, + "content": "T", + "type": "inline_equation" + }, + { + "bbox": [ + 360, + 250, + 505, + 263 + ], + "score": 1.0, + "content": "based on the sum of the gradients.", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 260, + 505, + 274 + ], + "spans": [ + { + "bbox": [ + 105, + 260, + 505, + 274 + ], + "score": 1.0, + "content": "Gradient descent learning has the objective of minimizing the loss function. This is achieved by", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 106, + 272, + 505, + 285 + ], + "spans": [ + { + "bbox": [ + 106, + 272, + 505, + 285 + ], + "score": 1.0, + "content": "backpropagating the error and updating the parameters opposite to the direction of the derivative.", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 281, + 506, + 296 + ], + "spans": [ + { + "bbox": [ + 105, + 281, + 506, + 296 + ], + "score": 1.0, + "content": "The derivative of the loss function w.r.t. to the membrane potential of the neuron in the final layer is", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 292, + 162, + 307 + ], + "spans": [ + { + "bbox": [ + 105, + 292, + 162, + 307 + ], + "score": 1.0, + "content": "described by,", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 9 + }, + { + "type": "interline_equation", + "bbox": [ + 273, + 303, + 338, + 330 + ], + "lines": [ + { + "bbox": [ + 273, + 303, + 338, + 330 + ], + "spans": [ + { + "bbox": [ + 273, + 303, + 338, + 330 + ], + "score": 0.95, + "content": "\\frac { \\partial L } { \\partial u _ { i } ^ { T } } = p _ { i } - y _ { i }", + "type": "interline_equation", + "image_path": "2e0f69991a1b9cb28836403a655a2c8823cd03fd64bd653c010dc54ee86ae493.jpg" + } + ] + } + ], + "index": 16.5, + "virtual_lines": [ + { + "bbox": [ + 273, + 303, + 338, + 316.5 + ], + "spans": [], + "index": 16 + }, + { + "bbox": [ + 273, + 316.5, + 338, + 330.0 + ], + "spans": [], + "index": 17 + } + ] + }, + { + "type": "text", + "bbox": [ + 108, + 340, + 504, + 374 + ], + "lines": [ + { + "bbox": [ + 105, + 339, + 506, + 353 + ], + "spans": [ + { + "bbox": [ + 105, + 339, + 470, + 353 + ], + "score": 1.0, + "content": "To compute the gradient at current time step, the membrane potential at last time step", + "type": "text" + }, + { + "bbox": [ + 471, + 339, + 492, + 353 + ], + "score": 0.89, + "content": "( u _ { i } ^ { t - 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 492, + 339, + 506, + 353 + ], + "score": 1.0, + "content": "in", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 106, + 352, + 505, + 364 + ], + "spans": [ + { + "bbox": [ + 106, + 352, + 505, + 364 + ], + "score": 1.0, + "content": "Equation 4) is considered as an input quantity. Therefore, gradient descent updates the network", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 106, + 363, + 261, + 375 + ], + "spans": [ + { + "bbox": [ + 106, + 363, + 153, + 375 + ], + "score": 1.0, + "content": "parameters", + "type": "text" + }, + { + "bbox": [ + 153, + 363, + 170, + 375 + ], + "score": 0.92, + "content": "W _ { i j }", + "type": "inline_equation" + }, + { + "bbox": [ + 171, + 363, + 261, + 375 + ], + "score": 1.0, + "content": "of the output layer as,", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 19 + }, + { + "type": "interline_equation", + "bbox": [ + 259, + 379, + 352, + 394 + ], + "lines": [ + { + "bbox": [ + 259, + 379, + 352, + 394 + ], + "spans": [ + { + "bbox": [ + 259, + 379, + 352, + 394 + ], + "score": 0.77, + "content": "W _ { i j } = W _ { i j } - \\eta \\Delta W _ { i j }", + "type": "interline_equation", + "image_path": "de2cb2c4e65328e8505e5c38a4758eb0509bbcf848a9b39c9d8dc7377d3d9488.jpg" + } + ] + } + ], + "index": 21, + "virtual_lines": [ + { + "bbox": [ + 259, + 379, + 352, + 394 + ], + "spans": [], + "index": 21 + } + ] + }, + { + "type": "interline_equation", + "bbox": [ + 189, + 397, + 422, + 432 + ], + "lines": [ + { + "bbox": [ + 189, + 397, + 422, + 432 + ], + "spans": [ + { + "bbox": [ + 189, + 397, + 422, + 432 + ], + "score": 0.9, + "content": "\\Delta W _ { i j } = \\sum _ { t } { \\frac { \\partial L } { \\partial W _ { i j } ^ { t } } } = \\sum _ { t } { \\frac { \\partial L } { \\partial u _ { i } ^ { T } } } { \\frac { \\partial u _ { i } ^ { T } } { \\partial W _ { i j } ^ { t } } } = { \\frac { \\partial L } { \\partial u _ { i } ^ { T } } } \\sum _ { t } { \\frac { \\partial u _ { i } ^ { T } } { \\partial W _ { i j } ^ { t } } }", + "type": "interline_equation", + "image_path": "7787e29d0e9212acded98702dae3e92f12e9328060a0e72acc22b4c5c84411b8.jpg" + } + ] + } + ], + "index": 22.5, + "virtual_lines": [ + { + "bbox": [ + 189, + 397, + 422, + 414.5 + ], + "spans": [], + "index": 22 + }, + { + "bbox": [ + 189, + 414.5, + 422, + 432.0 + ], + "spans": [], + "index": 23 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 440, + 505, + 484 + ], + "lines": [ + { + "bbox": [ + 105, + 440, + 507, + 454 + ], + "spans": [ + { + "bbox": [ + 105, + 440, + 134, + 454 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 134, + 443, + 141, + 452 + ], + "score": 0.8, + "content": "\\eta", + "type": "inline_equation" + }, + { + "bbox": [ + 142, + 440, + 244, + 454 + ], + "score": 1.0, + "content": "is the learning rate, and", + "type": "text" + }, + { + "bbox": [ + 245, + 440, + 262, + 454 + ], + "score": 0.92, + "content": "{ W } _ { i j } ^ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 262, + 440, + 507, + 454 + ], + "score": 1.0, + "content": "represents the copy of the weight used for computation at", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 451, + 506, + 464 + ], + "spans": [ + { + "bbox": [ + 105, + 451, + 148, + 464 + ], + "score": 1.0, + "content": "time step", + "type": "text" + }, + { + "bbox": [ + 149, + 453, + 154, + 461 + ], + "score": 0.67, + "content": "t", + "type": "inline_equation" + }, + { + "bbox": [ + 154, + 451, + 506, + 464 + ], + "score": 1.0, + "content": ". In the output layer the neurons do not generate a spike, and hence, the issue of", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 462, + 506, + 475 + ], + "spans": [ + { + "bbox": [ + 105, + 462, + 506, + 475 + ], + "score": 1.0, + "content": "non-differentiability is not encountered. The update of the hidden layer parameters is described", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 473, + 122, + 487 + ], + "spans": [ + { + "bbox": [ + 105, + 473, + 122, + 487 + ], + "score": 1.0, + "content": "by,", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 25.5 + }, + { + "type": "interline_equation", + "bbox": [ + 219, + 483, + 392, + 516 + ], + "lines": [ + { + "bbox": [ + 219, + 483, + 392, + 516 + ], + "spans": [ + { + "bbox": [ + 219, + 483, + 392, + 516 + ], + "score": 0.94, + "content": "\\Delta W _ { i j } = \\sum _ { t } { \\frac { \\partial L } { \\partial W _ { i j } ^ { t } } } = \\sum _ { t } { \\frac { \\partial L } { \\partial o _ { i } ^ { t } } } { \\frac { \\partial o _ { i } ^ { t } } { \\partial u _ { i } ^ { t } } } { \\frac { \\partial u _ { i } ^ { t } } { \\partial W _ { i j } ^ { t } } }", + "type": "interline_equation", + "image_path": "0183488251c9af27b9f2519e8eeb977ce9ad20b05f29372f1069b0f983b6adb2.jpg" + } + ] + } + ], + "index": 28.5, + "virtual_lines": [ + { + "bbox": [ + 219, + 483, + 392, + 499.5 + ], + "spans": [], + "index": 28 + }, + { + "bbox": [ + 219, + 499.5, + 392, + 516.0 + ], + "spans": [], + "index": 29 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 519, + 505, + 553 + ], + "lines": [ + { + "bbox": [ + 106, + 519, + 505, + 532 + ], + "spans": [ + { + "bbox": [ + 106, + 519, + 133, + 532 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 134, + 519, + 144, + 532 + ], + "score": 0.89, + "content": "o _ { i } ^ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 144, + 519, + 414, + 532 + ], + "score": 1.0, + "content": "is the thresholding function (Equation 3) whose derivative w.r.t to", + "type": "text" + }, + { + "bbox": [ + 415, + 519, + 425, + 532 + ], + "score": 0.89, + "content": "u _ { i } ^ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 425, + 519, + 505, + 532 + ], + "score": 1.0, + "content": "is zero everywhere", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 106, + 531, + 505, + 543 + ], + "spans": [ + { + "bbox": [ + 106, + 531, + 505, + 543 + ], + "score": 1.0, + "content": "and not defined at the time of spike. The challenge of discontinuous spiking nonlinearity is resolved", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 541, + 487, + 556 + ], + "spans": [ + { + "bbox": [ + 105, + 541, + 487, + 556 + ], + "score": 1.0, + "content": "by introducing a surrogate gradient which is the continuous approximation of the real gradient.", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 31 + }, + { + "type": "interline_equation", + "bbox": [ + 273, + 558, + 338, + 586 + ], + "lines": [ + { + "bbox": [ + 273, + 558, + 338, + 586 + ], + "spans": [ + { + "bbox": [ + 273, + 558, + 338, + 586 + ], + "score": 0.95, + "content": "\\frac { \\partial o _ { i } ^ { t } } { \\partial u _ { i } ^ { t } } = \\alpha e ^ { - \\beta \\Delta t }", + "type": "interline_equation", + "image_path": "a540262c31a21913d6a2ef06f28987c7dcfbc20258c80a289155326c3e2c878d.jpg" + } + ] + } + ], + "index": 33.5, + "virtual_lines": [ + { + "bbox": [ + 273, + 558, + 338, + 572.0 + ], + "spans": [], + "index": 33 + }, + { + "bbox": [ + 273, + 572.0, + 338, + 586.0 + ], + "spans": [], + "index": 34 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 590, + 505, + 624 + ], + "lines": [ + { + "bbox": [ + 106, + 590, + 505, + 603 + ], + "spans": [ + { + "bbox": [ + 106, + 590, + 133, + 603 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 133, + 593, + 141, + 601 + ], + "score": 0.78, + "content": "\\alpha", + "type": "inline_equation" + }, + { + "bbox": [ + 141, + 590, + 159, + 603 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 159, + 591, + 167, + 603 + ], + "score": 0.85, + "content": "\\beta", + "type": "inline_equation" + }, + { + "bbox": [ + 167, + 590, + 224, + 603 + ], + "score": 1.0, + "content": "are constants,", + "type": "text" + }, + { + "bbox": [ + 225, + 591, + 237, + 601 + ], + "score": 0.86, + "content": "\\Delta t", + "type": "inline_equation" + }, + { + "bbox": [ + 238, + 590, + 445, + 603 + ], + "score": 1.0, + "content": "is the time difference between the current time step", + "type": "text" + }, + { + "bbox": [ + 445, + 592, + 456, + 602 + ], + "score": 0.65, + "content": "\\mathbf { \\rho } ( t )", + "type": "inline_equation" + }, + { + "bbox": [ + 456, + 590, + 505, + 603 + ], + "score": 1.0, + "content": "and the last", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 601, + 505, + 614 + ], + "spans": [ + { + "bbox": [ + 105, + 601, + 284, + 614 + ], + "score": 1.0, + "content": "time step the post-neuron generated a spike", + "type": "text" + }, + { + "bbox": [ + 284, + 602, + 299, + 613 + ], + "score": 0.86, + "content": "( t _ { s } )", + "type": "inline_equation" + }, + { + "bbox": [ + 299, + 601, + 505, + 614 + ], + "score": 1.0, + "content": ". It is an integer value whose range is from zero to", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 612, + 246, + 625 + ], + "spans": [ + { + "bbox": [ + 105, + 612, + 228, + 625 + ], + "score": 1.0, + "content": "the total number of time steps", + "type": "text" + }, + { + "bbox": [ + 228, + 613, + 242, + 624 + ], + "score": 0.76, + "content": "( T )", + "type": "inline_equation" + }, + { + "bbox": [ + 243, + 612, + 246, + 625 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 36 + }, + { + "type": "interline_equation", + "bbox": [ + 228, + 630, + 384, + 644 + ], + "lines": [ + { + "bbox": [ + 228, + 630, + 384, + 644 + ], + "spans": [ + { + "bbox": [ + 228, + 630, + 384, + 644 + ], + "score": 0.91, + "content": "\\Delta t = ( t - t _ { s } ) , 0 < \\Delta t < T , \\Delta t \\epsilon \\mathbb { Z }", + "type": "interline_equation", + "image_path": "31e23731d15cc1e1cfb193f5417fd0d48cc95ec82e121feca8456d06d9963885.jpg" + } + ] + } + ], + "index": 38, + "virtual_lines": [ + { + "bbox": [ + 228, + 630, + 384, + 644 + ], + "spans": [], + "index": 38 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 654, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 655, + 505, + 667 + ], + "spans": [ + { + "bbox": [ + 106, + 655, + 166, + 667 + ], + "score": 1.0, + "content": "The values of", + "type": "text" + }, + { + "bbox": [ + 167, + 657, + 174, + 665 + ], + "score": 0.77, + "content": "\\alpha", + "type": "inline_equation" + }, + { + "bbox": [ + 175, + 655, + 194, + 667 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 195, + 655, + 202, + 666 + ], + "score": 0.86, + "content": "\\beta", + "type": "inline_equation" + }, + { + "bbox": [ + 203, + 655, + 367, + 667 + ], + "score": 1.0, + "content": "are selected depending on the value of", + "type": "text" + }, + { + "bbox": [ + 368, + 655, + 376, + 665 + ], + "score": 0.81, + "content": "T", + "type": "inline_equation" + }, + { + "bbox": [ + 376, + 655, + 394, + 667 + ], + "score": 1.0, + "content": ". If", + "type": "text" + }, + { + "bbox": [ + 394, + 655, + 403, + 665 + ], + "score": 0.83, + "content": "T", + "type": "inline_equation" + }, + { + "bbox": [ + 403, + 655, + 439, + 667 + ], + "score": 1.0, + "content": "is large", + "type": "text" + }, + { + "bbox": [ + 439, + 655, + 447, + 666 + ], + "score": 0.84, + "content": "\\beta", + "type": "inline_equation" + }, + { + "bbox": [ + 447, + 655, + 505, + 667 + ], + "score": 1.0, + "content": "is lowered to", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 106, + 666, + 505, + 678 + ], + "spans": [ + { + "bbox": [ + 106, + 666, + 505, + 678 + ], + "score": 1.0, + "content": "reduce the exponential decay so a spike can contribute towards gradients for later time steps. The", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 106, + 676, + 505, + 690 + ], + "spans": [ + { + "bbox": [ + 106, + 676, + 141, + 690 + ], + "score": 1.0, + "content": "value of", + "type": "text" + }, + { + "bbox": [ + 142, + 678, + 149, + 687 + ], + "score": 0.78, + "content": "\\alpha", + "type": "inline_equation" + }, + { + "bbox": [ + 150, + 676, + 249, + 690 + ], + "score": 1.0, + "content": "is also reduced for large", + "type": "text" + }, + { + "bbox": [ + 249, + 677, + 258, + 687 + ], + "score": 0.82, + "content": "T", + "type": "inline_equation" + }, + { + "bbox": [ + 258, + 676, + 505, + 690 + ], + "score": 1.0, + "content": "because the gradient can propagate through many time steps.", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 106, + 688, + 505, + 700 + ], + "spans": [ + { + "bbox": [ + 106, + 688, + 345, + 700 + ], + "score": 1.0, + "content": "The gradient is summed at each time step and thus a large", + "type": "text" + }, + { + "bbox": [ + 345, + 690, + 353, + 698 + ], + "score": 0.77, + "content": "\\alpha", + "type": "inline_equation" + }, + { + "bbox": [ + 353, + 688, + 505, + 700 + ], + "score": 1.0, + "content": "may lead to exploding gradient. The", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 106, + 699, + 505, + 712 + ], + "spans": [ + { + "bbox": [ + 106, + 699, + 334, + 712 + ], + "score": 1.0, + "content": "surrogate gradient can be pre-computed for all values of", + "type": "text" + }, + { + "bbox": [ + 335, + 699, + 347, + 709 + ], + "score": 0.87, + "content": "\\Delta t", + "type": "inline_equation" + }, + { + "bbox": [ + 348, + 699, + 505, + 712 + ], + "score": 1.0, + "content": "and stored in a look-up table for faster", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 106, + 710, + 506, + 722 + ], + "spans": [ + { + "bbox": [ + 106, + 710, + 506, + 722 + ], + "score": 1.0, + "content": "computation. The parameter updates are triggered by the spiking activity but the error gradients are", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 106, + 721, + 505, + 733 + ], + "spans": [ + { + "bbox": [ + 106, + 721, + 505, + 733 + ], + "score": 1.0, + "content": "still non-zero for time steps following the spike time. This enables the algorithm to avoid the ‘dead", + "type": "text" + } + ], + "index": 45 + } + ], + "index": 42 + } + ], + "page_idx": 4, + "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": [ + 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, + 237, + 94 + ], + "lines": [ + { + "bbox": [ + 105, + 82, + 238, + 94 + ], + "spans": [ + { + "bbox": [ + 105, + 82, + 238, + 94 + ], + "score": 1.0, + "content": "network’s predicted distribution.", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0, + "bbox_fs": [ + 105, + 82, + 238, + 94 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 263, + 92, + 348, + 155 + ], + "lines": [ + { + "bbox": [ + 265, + 92, + 347, + 155 + ], + "spans": [ + { + "bbox": [ + 265, + 92, + 347, + 155 + ], + "score": 0.81, + "content": "\\begin{array} { c } { L = - \\displaystyle \\sum _ { i } y _ { i } l o g ( p _ { i } ) } \\\\ { p _ { i } = \\displaystyle \\frac { e ^ { u _ { i } ^ { T } } } { \\sum _ { k = 1 } ^ { N } e ^ { u _ { k } ^ { T } } } } \\end{array}", + "type": "interline_equation", + "image_path": "d1903200c357aa7e29b818c4bcf23d950a97ad23b168705127aa6b073928e3db.jpg" + } + ] + } + ], + "index": 1.5, + "virtual_lines": [ + { + "bbox": [ + 263, + 92, + 348, + 123.5 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 263, + 123.5, + 348, + 155.0 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 162, + 505, + 304 + ], + "lines": [ + { + "bbox": [ + 107, + 161, + 504, + 175 + ], + "spans": [ + { + "bbox": [ + 107, + 163, + 115, + 172 + ], + "score": 0.79, + "content": "L", + "type": "inline_equation" + }, + { + "bbox": [ + 115, + 161, + 201, + 175 + ], + "score": 1.0, + "content": "is the loss function,", + "type": "text" + }, + { + "bbox": [ + 202, + 165, + 209, + 174 + ], + "score": 0.8, + "content": "y", + "type": "inline_equation" + }, + { + "bbox": [ + 209, + 161, + 277, + 175 + ], + "score": 1.0, + "content": "the true output,", + "type": "text" + }, + { + "bbox": [ + 277, + 165, + 284, + 174 + ], + "score": 0.81, + "content": "p", + "type": "inline_equation" + }, + { + "bbox": [ + 285, + 161, + 348, + 175 + ], + "score": 1.0, + "content": "the prediction,", + "type": "text" + }, + { + "bbox": [ + 349, + 163, + 357, + 172 + ], + "score": 0.8, + "content": "T", + "type": "inline_equation" + }, + { + "bbox": [ + 358, + 161, + 490, + 175 + ], + "score": 1.0, + "content": "the total number of time steps,", + "type": "text" + }, + { + "bbox": [ + 491, + 162, + 504, + 172 + ], + "score": 0.86, + "content": "u ^ { T }", + "type": "inline_equation" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 172, + 505, + 185 + ], + "spans": [ + { + "bbox": [ + 105, + 172, + 505, + 185 + ], + "score": 1.0, + "content": "the accumulated membrane potential of the neuron in the output layer from all time steps, and", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 107, + 183, + 505, + 196 + ], + "spans": [ + { + "bbox": [ + 107, + 184, + 117, + 194 + ], + "score": 0.76, + "content": "N", + "type": "inline_equation" + }, + { + "bbox": [ + 117, + 183, + 505, + 196 + ], + "score": 1.0, + "content": "the number of categories in the task. For deeper networks and large number of time steps the", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 194, + 506, + 208 + ], + "spans": [ + { + "bbox": [ + 105, + 194, + 506, + 208 + ], + "score": 1.0, + "content": "truncated version of the BPTT algorithm is used to avoid memory issues. In the truncated version", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 205, + 506, + 218 + ], + "spans": [ + { + "bbox": [ + 105, + 205, + 266, + 218 + ], + "score": 1.0, + "content": "the loss is computed at some time step", + "type": "text" + }, + { + "bbox": [ + 267, + 206, + 274, + 216 + ], + "score": 0.83, + "content": "t ^ { \\prime }", + "type": "inline_equation" + }, + { + "bbox": [ + 275, + 205, + 304, + 218 + ], + "score": 1.0, + "content": "before", + "type": "text" + }, + { + "bbox": [ + 304, + 207, + 313, + 216 + ], + "score": 0.34, + "content": "\\mathrm { T }", + "type": "inline_equation" + }, + { + "bbox": [ + 313, + 205, + 473, + 218 + ], + "score": 1.0, + "content": "based on the potential accumulated till", + "type": "text" + }, + { + "bbox": [ + 473, + 206, + 481, + 216 + ], + "score": 0.83, + "content": "t ^ { \\prime }", + "type": "inline_equation" + }, + { + "bbox": [ + 481, + 205, + 506, + 218 + ], + "score": 1.0, + "content": ". The", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 106, + 218, + 505, + 229 + ], + "spans": [ + { + "bbox": [ + 106, + 218, + 505, + 229 + ], + "score": 1.0, + "content": "loss is backpropagated to all layers and the loss gradients are computed and stored. At this point,", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 106, + 228, + 505, + 240 + ], + "spans": [ + { + "bbox": [ + 106, + 228, + 505, + 240 + ], + "score": 1.0, + "content": "the history of the computational graph is cleaned to save memory. The subsequent computation of", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 104, + 237, + 506, + 253 + ], + "spans": [ + { + "bbox": [ + 104, + 237, + 241, + 253 + ], + "score": 1.0, + "content": "loss gradients at later time steps", + "type": "text" + }, + { + "bbox": [ + 241, + 239, + 296, + 251 + ], + "score": 0.91, + "content": "( 2 t ^ { \\prime } , 3 t ^ { \\prime } , . . . T )", + "type": "inline_equation" + }, + { + "bbox": [ + 296, + 237, + 469, + 253 + ], + "score": 1.0, + "content": "are summed together with the gradient at", + "type": "text" + }, + { + "bbox": [ + 469, + 239, + 477, + 249 + ], + "score": 0.84, + "content": "t ^ { \\prime }", + "type": "inline_equation" + }, + { + "bbox": [ + 478, + 237, + 506, + 253 + ], + "score": 1.0, + "content": "to get", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 106, + 250, + 505, + 263 + ], + "spans": [ + { + "bbox": [ + 106, + 250, + 351, + 263 + ], + "score": 1.0, + "content": "the final gradient. The optimizer updates the parameters at", + "type": "text" + }, + { + "bbox": [ + 351, + 250, + 360, + 260 + ], + "score": 0.79, + "content": "T", + "type": "inline_equation" + }, + { + "bbox": [ + 360, + 250, + 505, + 263 + ], + "score": 1.0, + "content": "based on the sum of the gradients.", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 260, + 505, + 274 + ], + "spans": [ + { + "bbox": [ + 105, + 260, + 505, + 274 + ], + "score": 1.0, + "content": "Gradient descent learning has the objective of minimizing the loss function. This is achieved by", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 106, + 272, + 505, + 285 + ], + "spans": [ + { + "bbox": [ + 106, + 272, + 505, + 285 + ], + "score": 1.0, + "content": "backpropagating the error and updating the parameters opposite to the direction of the derivative.", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 281, + 506, + 296 + ], + "spans": [ + { + "bbox": [ + 105, + 281, + 506, + 296 + ], + "score": 1.0, + "content": "The derivative of the loss function w.r.t. to the membrane potential of the neuron in the final layer is", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 292, + 162, + 307 + ], + "spans": [ + { + "bbox": [ + 105, + 292, + 162, + 307 + ], + "score": 1.0, + "content": "described by,", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 9, + "bbox_fs": [ + 104, + 161, + 506, + 307 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 273, + 303, + 338, + 330 + ], + "lines": [ + { + "bbox": [ + 273, + 303, + 338, + 330 + ], + "spans": [ + { + "bbox": [ + 273, + 303, + 338, + 330 + ], + "score": 0.95, + "content": "\\frac { \\partial L } { \\partial u _ { i } ^ { T } } = p _ { i } - y _ { i }", + "type": "interline_equation", + "image_path": "2e0f69991a1b9cb28836403a655a2c8823cd03fd64bd653c010dc54ee86ae493.jpg" + } + ] + } + ], + "index": 16.5, + "virtual_lines": [ + { + "bbox": [ + 273, + 303, + 338, + 316.5 + ], + "spans": [], + "index": 16 + }, + { + "bbox": [ + 273, + 316.5, + 338, + 330.0 + ], + "spans": [], + "index": 17 + } + ] + }, + { + "type": "text", + "bbox": [ + 108, + 340, + 504, + 374 + ], + "lines": [ + { + "bbox": [ + 105, + 339, + 506, + 353 + ], + "spans": [ + { + "bbox": [ + 105, + 339, + 470, + 353 + ], + "score": 1.0, + "content": "To compute the gradient at current time step, the membrane potential at last time step", + "type": "text" + }, + { + "bbox": [ + 471, + 339, + 492, + 353 + ], + "score": 0.89, + "content": "( u _ { i } ^ { t - 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 492, + 339, + 506, + 353 + ], + "score": 1.0, + "content": "in", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 106, + 352, + 505, + 364 + ], + "spans": [ + { + "bbox": [ + 106, + 352, + 505, + 364 + ], + "score": 1.0, + "content": "Equation 4) is considered as an input quantity. Therefore, gradient descent updates the network", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 106, + 363, + 261, + 375 + ], + "spans": [ + { + "bbox": [ + 106, + 363, + 153, + 375 + ], + "score": 1.0, + "content": "parameters", + "type": "text" + }, + { + "bbox": [ + 153, + 363, + 170, + 375 + ], + "score": 0.92, + "content": "W _ { i j }", + "type": "inline_equation" + }, + { + "bbox": [ + 171, + 363, + 261, + 375 + ], + "score": 1.0, + "content": "of the output layer as,", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 19, + "bbox_fs": [ + 105, + 339, + 506, + 375 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 259, + 379, + 352, + 394 + ], + "lines": [ + { + "bbox": [ + 259, + 379, + 352, + 394 + ], + "spans": [ + { + "bbox": [ + 259, + 379, + 352, + 394 + ], + "score": 0.77, + "content": "W _ { i j } = W _ { i j } - \\eta \\Delta W _ { i j }", + "type": "interline_equation", + "image_path": "de2cb2c4e65328e8505e5c38a4758eb0509bbcf848a9b39c9d8dc7377d3d9488.jpg" + } + ] + } + ], + "index": 21, + "virtual_lines": [ + { + "bbox": [ + 259, + 379, + 352, + 394 + ], + "spans": [], + "index": 21 + } + ] + }, + { + "type": "interline_equation", + "bbox": [ + 189, + 397, + 422, + 432 + ], + "lines": [ + { + "bbox": [ + 189, + 397, + 422, + 432 + ], + "spans": [ + { + "bbox": [ + 189, + 397, + 422, + 432 + ], + "score": 0.9, + "content": "\\Delta W _ { i j } = \\sum _ { t } { \\frac { \\partial L } { \\partial W _ { i j } ^ { t } } } = \\sum _ { t } { \\frac { \\partial L } { \\partial u _ { i } ^ { T } } } { \\frac { \\partial u _ { i } ^ { T } } { \\partial W _ { i j } ^ { t } } } = { \\frac { \\partial L } { \\partial u _ { i } ^ { T } } } \\sum _ { t } { \\frac { \\partial u _ { i } ^ { T } } { \\partial W _ { i j } ^ { t } } }", + "type": "interline_equation", + "image_path": "7787e29d0e9212acded98702dae3e92f12e9328060a0e72acc22b4c5c84411b8.jpg" + } + ] + } + ], + "index": 22.5, + "virtual_lines": [ + { + "bbox": [ + 189, + 397, + 422, + 414.5 + ], + "spans": [], + "index": 22 + }, + { + "bbox": [ + 189, + 414.5, + 422, + 432.0 + ], + "spans": [], + "index": 23 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 440, + 505, + 484 + ], + "lines": [ + { + "bbox": [ + 105, + 440, + 507, + 454 + ], + "spans": [ + { + "bbox": [ + 105, + 440, + 134, + 454 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 134, + 443, + 141, + 452 + ], + "score": 0.8, + "content": "\\eta", + "type": "inline_equation" + }, + { + "bbox": [ + 142, + 440, + 244, + 454 + ], + "score": 1.0, + "content": "is the learning rate, and", + "type": "text" + }, + { + "bbox": [ + 245, + 440, + 262, + 454 + ], + "score": 0.92, + "content": "{ W } _ { i j } ^ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 262, + 440, + 507, + 454 + ], + "score": 1.0, + "content": "represents the copy of the weight used for computation at", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 451, + 506, + 464 + ], + "spans": [ + { + "bbox": [ + 105, + 451, + 148, + 464 + ], + "score": 1.0, + "content": "time step", + "type": "text" + }, + { + "bbox": [ + 149, + 453, + 154, + 461 + ], + "score": 0.67, + "content": "t", + "type": "inline_equation" + }, + { + "bbox": [ + 154, + 451, + 506, + 464 + ], + "score": 1.0, + "content": ". In the output layer the neurons do not generate a spike, and hence, the issue of", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 462, + 506, + 475 + ], + "spans": [ + { + "bbox": [ + 105, + 462, + 506, + 475 + ], + "score": 1.0, + "content": "non-differentiability is not encountered. The update of the hidden layer parameters is described", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 473, + 122, + 487 + ], + "spans": [ + { + "bbox": [ + 105, + 473, + 122, + 487 + ], + "score": 1.0, + "content": "by,", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 25.5, + "bbox_fs": [ + 105, + 440, + 507, + 487 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 219, + 483, + 392, + 516 + ], + "lines": [ + { + "bbox": [ + 219, + 483, + 392, + 516 + ], + "spans": [ + { + "bbox": [ + 219, + 483, + 392, + 516 + ], + "score": 0.94, + "content": "\\Delta W _ { i j } = \\sum _ { t } { \\frac { \\partial L } { \\partial W _ { i j } ^ { t } } } = \\sum _ { t } { \\frac { \\partial L } { \\partial o _ { i } ^ { t } } } { \\frac { \\partial o _ { i } ^ { t } } { \\partial u _ { i } ^ { t } } } { \\frac { \\partial u _ { i } ^ { t } } { \\partial W _ { i j } ^ { t } } }", + "type": "interline_equation", + "image_path": "0183488251c9af27b9f2519e8eeb977ce9ad20b05f29372f1069b0f983b6adb2.jpg" + } + ] + } + ], + "index": 28.5, + "virtual_lines": [ + { + "bbox": [ + 219, + 483, + 392, + 499.5 + ], + "spans": [], + "index": 28 + }, + { + "bbox": [ + 219, + 499.5, + 392, + 516.0 + ], + "spans": [], + "index": 29 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 519, + 505, + 553 + ], + "lines": [ + { + "bbox": [ + 106, + 519, + 505, + 532 + ], + "spans": [ + { + "bbox": [ + 106, + 519, + 133, + 532 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 134, + 519, + 144, + 532 + ], + "score": 0.89, + "content": "o _ { i } ^ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 144, + 519, + 414, + 532 + ], + "score": 1.0, + "content": "is the thresholding function (Equation 3) whose derivative w.r.t to", + "type": "text" + }, + { + "bbox": [ + 415, + 519, + 425, + 532 + ], + "score": 0.89, + "content": "u _ { i } ^ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 425, + 519, + 505, + 532 + ], + "score": 1.0, + "content": "is zero everywhere", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 106, + 531, + 505, + 543 + ], + "spans": [ + { + "bbox": [ + 106, + 531, + 505, + 543 + ], + "score": 1.0, + "content": "and not defined at the time of spike. The challenge of discontinuous spiking nonlinearity is resolved", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 541, + 487, + 556 + ], + "spans": [ + { + "bbox": [ + 105, + 541, + 487, + 556 + ], + "score": 1.0, + "content": "by introducing a surrogate gradient which is the continuous approximation of the real gradient.", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 31, + "bbox_fs": [ + 105, + 519, + 505, + 556 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 273, + 558, + 338, + 586 + ], + "lines": [ + { + "bbox": [ + 273, + 558, + 338, + 586 + ], + "spans": [ + { + "bbox": [ + 273, + 558, + 338, + 586 + ], + "score": 0.95, + "content": "\\frac { \\partial o _ { i } ^ { t } } { \\partial u _ { i } ^ { t } } = \\alpha e ^ { - \\beta \\Delta t }", + "type": "interline_equation", + "image_path": "a540262c31a21913d6a2ef06f28987c7dcfbc20258c80a289155326c3e2c878d.jpg" + } + ] + } + ], + "index": 33.5, + "virtual_lines": [ + { + "bbox": [ + 273, + 558, + 338, + 572.0 + ], + "spans": [], + "index": 33 + }, + { + "bbox": [ + 273, + 572.0, + 338, + 586.0 + ], + "spans": [], + "index": 34 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 590, + 505, + 624 + ], + "lines": [ + { + "bbox": [ + 106, + 590, + 505, + 603 + ], + "spans": [ + { + "bbox": [ + 106, + 590, + 133, + 603 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 133, + 593, + 141, + 601 + ], + "score": 0.78, + "content": "\\alpha", + "type": "inline_equation" + }, + { + "bbox": [ + 141, + 590, + 159, + 603 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 159, + 591, + 167, + 603 + ], + "score": 0.85, + "content": "\\beta", + "type": "inline_equation" + }, + { + "bbox": [ + 167, + 590, + 224, + 603 + ], + "score": 1.0, + "content": "are constants,", + "type": "text" + }, + { + "bbox": [ + 225, + 591, + 237, + 601 + ], + "score": 0.86, + "content": "\\Delta t", + "type": "inline_equation" + }, + { + "bbox": [ + 238, + 590, + 445, + 603 + ], + "score": 1.0, + "content": "is the time difference between the current time step", + "type": "text" + }, + { + "bbox": [ + 445, + 592, + 456, + 602 + ], + "score": 0.65, + "content": "\\mathbf { \\rho } ( t )", + "type": "inline_equation" + }, + { + "bbox": [ + 456, + 590, + 505, + 603 + ], + "score": 1.0, + "content": "and the last", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 601, + 505, + 614 + ], + "spans": [ + { + "bbox": [ + 105, + 601, + 284, + 614 + ], + "score": 1.0, + "content": "time step the post-neuron generated a spike", + "type": "text" + }, + { + "bbox": [ + 284, + 602, + 299, + 613 + ], + "score": 0.86, + "content": "( t _ { s } )", + "type": "inline_equation" + }, + { + "bbox": [ + 299, + 601, + 505, + 614 + ], + "score": 1.0, + "content": ". It is an integer value whose range is from zero to", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 612, + 246, + 625 + ], + "spans": [ + { + "bbox": [ + 105, + 612, + 228, + 625 + ], + "score": 1.0, + "content": "the total number of time steps", + "type": "text" + }, + { + "bbox": [ + 228, + 613, + 242, + 624 + ], + "score": 0.76, + "content": "( T )", + "type": "inline_equation" + }, + { + "bbox": [ + 243, + 612, + 246, + 625 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 36, + "bbox_fs": [ + 105, + 590, + 505, + 625 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 228, + 630, + 384, + 644 + ], + "lines": [ + { + "bbox": [ + 228, + 630, + 384, + 644 + ], + "spans": [ + { + "bbox": [ + 228, + 630, + 384, + 644 + ], + "score": 0.91, + "content": "\\Delta t = ( t - t _ { s } ) , 0 < \\Delta t < T , \\Delta t \\epsilon \\mathbb { Z }", + "type": "interline_equation", + "image_path": "31e23731d15cc1e1cfb193f5417fd0d48cc95ec82e121feca8456d06d9963885.jpg" + } + ] + } + ], + "index": 38, + "virtual_lines": [ + { + "bbox": [ + 228, + 630, + 384, + 644 + ], + "spans": [], + "index": 38 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 654, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 655, + 505, + 667 + ], + "spans": [ + { + "bbox": [ + 106, + 655, + 166, + 667 + ], + "score": 1.0, + "content": "The values of", + "type": "text" + }, + { + "bbox": [ + 167, + 657, + 174, + 665 + ], + "score": 0.77, + "content": "\\alpha", + "type": "inline_equation" + }, + { + "bbox": [ + 175, + 655, + 194, + 667 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 195, + 655, + 202, + 666 + ], + "score": 0.86, + "content": "\\beta", + "type": "inline_equation" + }, + { + "bbox": [ + 203, + 655, + 367, + 667 + ], + "score": 1.0, + "content": "are selected depending on the value of", + "type": "text" + }, + { + "bbox": [ + 368, + 655, + 376, + 665 + ], + "score": 0.81, + "content": "T", + "type": "inline_equation" + }, + { + "bbox": [ + 376, + 655, + 394, + 667 + ], + "score": 1.0, + "content": ". If", + "type": "text" + }, + { + "bbox": [ + 394, + 655, + 403, + 665 + ], + "score": 0.83, + "content": "T", + "type": "inline_equation" + }, + { + "bbox": [ + 403, + 655, + 439, + 667 + ], + "score": 1.0, + "content": "is large", + "type": "text" + }, + { + "bbox": [ + 439, + 655, + 447, + 666 + ], + "score": 0.84, + "content": "\\beta", + "type": "inline_equation" + }, + { + "bbox": [ + 447, + 655, + 505, + 667 + ], + "score": 1.0, + "content": "is lowered to", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 106, + 666, + 505, + 678 + ], + "spans": [ + { + "bbox": [ + 106, + 666, + 505, + 678 + ], + "score": 1.0, + "content": "reduce the exponential decay so a spike can contribute towards gradients for later time steps. The", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 106, + 676, + 505, + 690 + ], + "spans": [ + { + "bbox": [ + 106, + 676, + 141, + 690 + ], + "score": 1.0, + "content": "value of", + "type": "text" + }, + { + "bbox": [ + 142, + 678, + 149, + 687 + ], + "score": 0.78, + "content": "\\alpha", + "type": "inline_equation" + }, + { + "bbox": [ + 150, + 676, + 249, + 690 + ], + "score": 1.0, + "content": "is also reduced for large", + "type": "text" + }, + { + "bbox": [ + 249, + 677, + 258, + 687 + ], + "score": 0.82, + "content": "T", + "type": "inline_equation" + }, + { + "bbox": [ + 258, + 676, + 505, + 690 + ], + "score": 1.0, + "content": "because the gradient can propagate through many time steps.", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 106, + 688, + 505, + 700 + ], + "spans": [ + { + "bbox": [ + 106, + 688, + 345, + 700 + ], + "score": 1.0, + "content": "The gradient is summed at each time step and thus a large", + "type": "text" + }, + { + "bbox": [ + 345, + 690, + 353, + 698 + ], + "score": 0.77, + "content": "\\alpha", + "type": "inline_equation" + }, + { + "bbox": [ + 353, + 688, + 505, + 700 + ], + "score": 1.0, + "content": "may lead to exploding gradient. The", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 106, + 699, + 505, + 712 + ], + "spans": [ + { + "bbox": [ + 106, + 699, + 334, + 712 + ], + "score": 1.0, + "content": "surrogate gradient can be pre-computed for all values of", + "type": "text" + }, + { + "bbox": [ + 335, + 699, + 347, + 709 + ], + "score": 0.87, + "content": "\\Delta t", + "type": "inline_equation" + }, + { + "bbox": [ + 348, + 699, + 505, + 712 + ], + "score": 1.0, + "content": "and stored in a look-up table for faster", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 106, + 710, + 506, + 722 + ], + "spans": [ + { + "bbox": [ + 106, + 710, + 506, + 722 + ], + "score": 1.0, + "content": "computation. The parameter updates are triggered by the spiking activity but the error gradients are", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 106, + 721, + 505, + 733 + ], + "spans": [ + { + "bbox": [ + 106, + 721, + 505, + 733 + ], + "score": 1.0, + "content": "still non-zero for time steps following the spike time. This enables the algorithm to avoid the ‘dead", + "type": "text" + } + ], + "index": 45 + } + ], + "index": 42, + "bbox_fs": [ + 106, + 655, + 506, + 733 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 106, + 81, + 504, + 105 + ], + "lines": [ + { + "bbox": [ + 106, + 82, + 505, + 95 + ], + "spans": [ + { + "bbox": [ + 106, + 82, + 505, + 95 + ], + "score": 1.0, + "content": "Algorithm 3 Training an SNN with surrogate gradient computed with spike timing. The network is", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 92, + 426, + 106 + ], + "spans": [ + { + "bbox": [ + 105, + 92, + 160, + 106 + ], + "score": 1.0, + "content": "composed of", + "type": "text" + }, + { + "bbox": [ + 160, + 94, + 168, + 103 + ], + "score": 0.69, + "content": "L", + "type": "inline_equation" + }, + { + "bbox": [ + 169, + 92, + 426, + 106 + ], + "score": 1.0, + "content": "layers. The training proceeds with mini-batch size (batch size)", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5 + }, + { + "type": "text", + "bbox": [ + 108, + 106, + 502, + 483 + ], + "lines": [ + { + "bbox": [ + 106, + 105, + 504, + 119 + ], + "spans": [ + { + "bbox": [ + 106, + 105, + 217, + 119 + ], + "score": 1.0, + "content": "Input: Mini-batch of input", + "type": "text" + }, + { + "bbox": [ + 217, + 107, + 233, + 118 + ], + "score": 0.71, + "content": "( X )", + "type": "inline_equation" + }, + { + "bbox": [ + 233, + 105, + 264, + 119 + ], + "score": 1.0, + "content": "- target", + "type": "text" + }, + { + "bbox": [ + 264, + 107, + 279, + 118 + ], + "score": 0.72, + "content": "( Y )", + "type": "inline_equation" + }, + { + "bbox": [ + 279, + 105, + 365, + 119 + ], + "score": 1.0, + "content": "pairs, network model", + "type": "text" + }, + { + "bbox": [ + 366, + 107, + 381, + 118 + ], + "score": 0.52, + "content": "( N )", + "type": "inline_equation" + }, + { + "bbox": [ + 382, + 105, + 446, + 119 + ], + "score": 1.0, + "content": ", initial weights", + "type": "text" + }, + { + "bbox": [ + 446, + 107, + 461, + 118 + ], + "score": 0.51, + "content": "( W )", + "type": "inline_equation" + }, + { + "bbox": [ + 462, + 105, + 504, + 119 + ], + "score": 1.0, + "content": ", threshold", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 136, + 117, + 184, + 129 + ], + "spans": [ + { + "bbox": [ + 136, + 117, + 169, + 129 + ], + "score": 1.0, + "content": "voltage", + "type": "text" + }, + { + "bbox": [ + 169, + 118, + 184, + 128 + ], + "score": 0.53, + "content": "( V )", + "type": "inline_equation" + } + ], + "index": 3 + }, + { + "bbox": [ + 107, + 127, + 362, + 141 + ], + "spans": [ + { + "bbox": [ + 107, + 129, + 159, + 140 + ], + "score": 0.45, + "content": "U , S , M = I", + "type": "inline_equation" + }, + { + "bbox": [ + 159, + 127, + 281, + 141 + ], + "score": 1.0, + "content": "nitializeNeuronP arameter", + "type": "text" + }, + { + "bbox": [ + 281, + 128, + 303, + 141 + ], + "score": 0.63, + "content": "s ( X )", + "type": "inline_equation" + }, + { + "bbox": [ + 303, + 127, + 362, + 141 + ], + "score": 1.0, + "content": "[Algorithm 2]", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 109, + 138, + 206, + 153 + ], + "spans": [ + { + "bbox": [ + 109, + 138, + 206, + 153 + ], + "score": 1.0, + "content": "// Forward propagation", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 110, + 149, + 176, + 163 + ], + "spans": [ + { + "bbox": [ + 110, + 149, + 126, + 163 + ], + "score": 1.0, + "content": "for", + "type": "text" + }, + { + "bbox": [ + 126, + 151, + 142, + 160 + ], + "score": 0.85, + "content": "t { = } I", + "type": "inline_equation" + }, + { + "bbox": [ + 142, + 149, + 154, + 163 + ], + "score": 1.0, + "content": "to", + "type": "text" + }, + { + "bbox": [ + 154, + 151, + 162, + 160 + ], + "score": 0.56, + "content": "T", + "type": "inline_equation" + }, + { + "bbox": [ + 162, + 149, + 176, + 163 + ], + "score": 1.0, + "content": "do", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 120, + 162, + 248, + 173 + ], + "spans": [ + { + "bbox": [ + 120, + 162, + 248, + 173 + ], + "score": 0.35, + "content": "O _ { 0 } ^ { t } = P o i s s o n G e n e r a t o r ( X )", + "type": "inline_equation" + } + ], + "index": 7 + }, + { + "bbox": [ + 126, + 172, + 199, + 183 + ], + "spans": [ + { + "bbox": [ + 126, + 172, + 141, + 183 + ], + "score": 1.0, + "content": "for", + "type": "text" + }, + { + "bbox": [ + 141, + 173, + 158, + 183 + ], + "score": 0.66, + "content": "l { = } l", + "type": "inline_equation" + }, + { + "bbox": [ + 158, + 172, + 199, + 183 + ], + "score": 1.0, + "content": "to L-1 do", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 136, + 183, + 299, + 195 + ], + "spans": [ + { + "bbox": [ + 136, + 183, + 183, + 195 + ], + "score": 1.0, + "content": "if isintanc", + "type": "text" + }, + { + "bbox": [ + 183, + 183, + 276, + 195 + ], + "score": 0.51, + "content": "e ( N _ { l } , [ C o n v , L i n e a r ] )", + "type": "inline_equation" + }, + { + "bbox": [ + 276, + 183, + 299, + 195 + ], + "score": 1.0, + "content": "then", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 150, + 192, + 459, + 207 + ], + "spans": [ + { + "bbox": [ + 150, + 192, + 331, + 207 + ], + "score": 1.0, + "content": "// accumulate the output of previous layer in", + "type": "text" + }, + { + "bbox": [ + 331, + 194, + 340, + 204 + ], + "score": 0.81, + "content": "U", + "type": "inline_equation" + }, + { + "bbox": [ + 340, + 192, + 459, + 207 + ], + "score": 1.0, + "content": ", soft reset when spike occurs", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 157, + 201, + 311, + 219 + ], + "spans": [ + { + "bbox": [ + 157, + 204, + 309, + 217 + ], + "score": 0.87, + "content": "\\begin{array} { r } { U _ { l } ^ { t } = \\lambda U _ { l } ^ { t - 1 } + W _ { l } \\dot { O } _ { l - 1 } ^ { t } - V _ { l } * O _ { l } ^ { t - 1 } } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 309, + 201, + 311, + 219 + ], + "score": 0.53, + "content": "?", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 156, + 214, + 329, + 227 + ], + "spans": [ + { + "bbox": [ + 156, + 214, + 245, + 227 + ], + "score": 1.0, + "content": "// generate the output", + "type": "text" + }, + { + "bbox": [ + 245, + 217, + 265, + 226 + ], + "score": 0.76, + "content": "( + 1 )", + "type": "inline_equation" + }, + { + "bbox": [ + 265, + 214, + 275, + 227 + ], + "score": 1.0, + "content": "if", + "type": "text" + }, + { + "bbox": [ + 275, + 217, + 284, + 225 + ], + "score": 0.76, + "content": "U", + "type": "inline_equation" + }, + { + "bbox": [ + 284, + 214, + 319, + 227 + ], + "score": 1.0, + "content": "exceeds", + "type": "text" + }, + { + "bbox": [ + 319, + 216, + 329, + 225 + ], + "score": 0.72, + "content": "V", + "type": "inline_equation" + } + ], + "index": 12 + }, + { + "bbox": [ + 158, + 226, + 254, + 239 + ], + "spans": [ + { + "bbox": [ + 158, + 226, + 254, + 239 + ], + "score": 0.78, + "content": "\\hat { O _ { l } ^ { t } } = S T D B ( U _ { l } ^ { t } , V _ { l } , t )", + "type": "inline_equation" + } + ], + "index": 13 + }, + { + "bbox": [ + 157, + 236, + 339, + 249 + ], + "spans": [ + { + "bbox": [ + 157, + 239, + 165, + 247 + ], + "score": 0.28, + "content": "/ /", + "type": "inline_equation" + }, + { + "bbox": [ + 165, + 236, + 339, + 249 + ], + "score": 1.0, + "content": "store the latest spike times for each neuron", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 158, + 246, + 233, + 263 + ], + "spans": [ + { + "bbox": [ + 158, + 248, + 230, + 261 + ], + "score": 0.53, + "content": "S _ { l } ^ { t } [ O _ { l } ^ { t } = = 1 ] = t", + "type": "inline_equation", + "image_path": "1da6d52e9a9ff13a3b1d7277facb12ea1a7e27a6352f84e0009fd0a63b198fb7.jpg" + }, + { + "bbox": [ + 230, + 246, + 233, + 263 + ], + "score": 0.0, + "content": "", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 135, + 259, + 156, + 271 + ], + "spans": [ + { + "bbox": [ + 135, + 259, + 156, + 271 + ], + "score": 1.0, + "content": "end", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 136, + 268, + 291, + 284 + ], + "spans": [ + { + "bbox": [ + 136, + 268, + 205, + 284 + ], + "score": 1.0, + "content": "else if isintance", + "type": "text" + }, + { + "bbox": [ + 205, + 271, + 267, + 282 + ], + "score": 0.35, + "content": "{ \\mathrm { : } } ( N _ { l } , A v g P o o l )", + "type": "inline_equation" + }, + { + "bbox": [ + 267, + 268, + 291, + 284 + ], + "score": 1.0, + "content": "then", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 150, + 279, + 218, + 297 + ], + "spans": [ + { + "bbox": [ + 150, + 279, + 152, + 297 + ], + "score": 0.0, + "content": "", + "type": "text" + }, + { + "bbox": [ + 153, + 282, + 218, + 295 + ], + "score": 0.62, + "content": "O _ { l } ^ { t } = N _ { l } ( O _ { l - 1 } ^ { t } )", + "type": "inline_equation" + } + ], + "index": 18 + }, + { + "bbox": [ + 135, + 294, + 156, + 305 + ], + "spans": [ + { + "bbox": [ + 135, + 294, + 156, + 305 + ], + "score": 1.0, + "content": "end", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 136, + 304, + 289, + 317 + ], + "spans": [ + { + "bbox": [ + 136, + 304, + 205, + 317 + ], + "score": 1.0, + "content": "else if isintance", + "type": "text" + }, + { + "bbox": [ + 205, + 305, + 266, + 317 + ], + "score": 0.26, + "content": "( N _ { l } , D r o p o u t )", + "type": "inline_equation" + }, + { + "bbox": [ + 266, + 304, + 289, + 317 + ], + "score": 1.0, + "content": "then", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 142, + 316, + 221, + 330 + ], + "spans": [ + { + "bbox": [ + 142, + 320, + 150, + 327 + ], + "score": 0.0, + "content": "", + "type": "text" + }, + { + "bbox": [ + 152, + 316, + 221, + 330 + ], + "score": 0.73, + "content": "O _ { l } ^ { t } = O _ { l - 1 } ^ { t } * M _ { l }", + "type": "inline_equation" + } + ], + "index": 21 + }, + { + "bbox": [ + 135, + 327, + 156, + 340 + ], + "spans": [ + { + "bbox": [ + 135, + 327, + 156, + 340 + ], + "score": 1.0, + "content": "end", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 120, + 340, + 141, + 352 + ], + "spans": [ + { + "bbox": [ + 120, + 340, + 141, + 352 + ], + "score": 1.0, + "content": "end", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 121, + 352, + 228, + 367 + ], + "spans": [ + { + "bbox": [ + 121, + 352, + 228, + 367 + ], + "score": 0.75, + "content": "U _ { L } ^ { t } = \\lambda U _ { L } ^ { t - 1 } + W _ { L } O _ { L - 1 } ^ { t }", + "type": "inline_equation", + "image_path": "c68f2701421784ea1a05b642bd7d4b245f12edc05f52c2cc5bb29cbcafe15c28.jpg" + } + ], + "index": 24 + }, + { + "bbox": [ + 106, + 366, + 125, + 378 + ], + "spans": [ + { + "bbox": [ + 106, + 366, + 125, + 378 + ], + "score": 1.0, + "content": "end", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 376, + 208, + 389 + ], + "spans": [ + { + "bbox": [ + 105, + 376, + 208, + 389 + ], + "score": 1.0, + "content": "// Backward Propagation", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 110, + 383, + 370, + 404 + ], + "spans": [ + { + "bbox": [ + 110, + 383, + 151, + 404 + ], + "score": 1.0, + "content": "Compute", + "type": "text" + }, + { + "bbox": [ + 151, + 387, + 169, + 402 + ], + "score": 0.92, + "content": "\\frac { \\partial L } { \\partial U _ { L } }", + "type": "inline_equation" + }, + { + "bbox": [ + 169, + 383, + 370, + 404 + ], + "score": 1.0, + "content": "from the cross-entropy loss function using BPTT", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 110, + 401, + 176, + 412 + ], + "spans": [ + { + "bbox": [ + 110, + 401, + 126, + 412 + ], + "score": 1.0, + "content": "for", + "type": "text" + }, + { + "bbox": [ + 126, + 402, + 144, + 411 + ], + "score": 0.86, + "content": "t { = } T", + "type": "inline_equation" + }, + { + "bbox": [ + 144, + 401, + 155, + 412 + ], + "score": 1.0, + "content": "to", + "type": "text" + }, + { + "bbox": [ + 156, + 402, + 162, + 411 + ], + "score": 0.51, + "content": "^ { l }", + "type": "inline_equation" + }, + { + "bbox": [ + 162, + 401, + 176, + 412 + ], + "score": 1.0, + "content": "do", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 120, + 411, + 195, + 423 + ], + "spans": [ + { + "bbox": [ + 120, + 411, + 136, + 423 + ], + "score": 1.0, + "content": "for", + "type": "text" + }, + { + "bbox": [ + 137, + 412, + 161, + 423 + ], + "score": 0.8, + "content": "\\scriptstyle { l = L - I }", + "type": "inline_equation" + }, + { + "bbox": [ + 162, + 411, + 195, + 423 + ], + "score": 1.0, + "content": "to 1 do", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 135, + 421, + 367, + 442 + ], + "spans": [ + { + "bbox": [ + 135, + 421, + 177, + 442 + ], + "score": 1.0, + "content": "Compute", + "type": "text" + }, + { + "bbox": [ + 177, + 423, + 194, + 439 + ], + "score": 0.9, + "content": "\\frac { \\partial L } { \\partial O _ { l } ^ { t } }", + "type": "inline_equation" + }, + { + "bbox": [ + 194, + 421, + 241, + 442 + ], + "score": 1.0, + "content": "based on if", + "type": "text" + }, + { + "bbox": [ + 242, + 425, + 254, + 435 + ], + "score": 0.88, + "content": "N _ { l }", + "type": "inline_equation" + }, + { + "bbox": [ + 254, + 421, + 367, + 442 + ], + "score": 1.0, + "content": "is linear, conv, pooling, etc.", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 142, + 438, + 277, + 458 + ], + "spans": [ + { + "bbox": [ + 142, + 438, + 277, + 458 + ], + "score": 0.83, + "content": "\\begin{array} { r } { \\frac { \\partial L } { \\partial U _ { l } ^ { t } } = \\frac { \\partial L } { \\partial O _ { l } ^ { t } } \\frac { \\partial O _ { l } ^ { t } } { \\partial U _ { l } ^ { t } } = \\frac { \\partial L } { \\partial O _ { l } ^ { t } } \\ast \\alpha e ^ { - \\beta S _ { l } ^ { t } } } \\end{array}", + "type": "inline_equation", + "image_path": "9096b33ab96c5a7325046c984f680b3abe1f434314488ed4c79a63055518350c.jpg" + } + ], + "index": 31 + }, + { + "bbox": [ + 119, + 456, + 140, + 468 + ], + "spans": [ + { + "bbox": [ + 119, + 456, + 140, + 468 + ], + "score": 1.0, + "content": "end", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 104, + 468, + 126, + 480 + ], + "spans": [ + { + "bbox": [ + 104, + 468, + 126, + 480 + ], + "score": 1.0, + "content": "end", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 17.5 + }, + { + "type": "text", + "bbox": [ + 106, + 511, + 505, + 577 + ], + "lines": [ + { + "bbox": [ + 105, + 511, + 505, + 523 + ], + "spans": [ + { + "bbox": [ + 105, + 511, + 505, + 523 + ], + "score": 1.0, + "content": "neuron’ problem, where no learning happens when there is no spike. Fig. 1 shows the activation", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 522, + 506, + 534 + ], + "spans": [ + { + "bbox": [ + 105, + 522, + 234, + 534 + ], + "score": 1.0, + "content": "gradient for different values of", + "type": "text" + }, + { + "bbox": [ + 234, + 523, + 247, + 532 + ], + "score": 0.83, + "content": "\\Delta t", + "type": "inline_equation" + }, + { + "bbox": [ + 247, + 522, + 506, + 534 + ], + "score": 1.0, + "content": ", the gradient decreases exponentially for neurons that have not", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 533, + 505, + 546 + ], + "spans": [ + { + "bbox": [ + 105, + 533, + 505, + 546 + ], + "score": 1.0, + "content": "been active for a long time. In Hebbian models of biological learning, the parameter update is", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 106, + 545, + 505, + 556 + ], + "spans": [ + { + "bbox": [ + 106, + 545, + 505, + 556 + ], + "score": 1.0, + "content": "activity dependent. This is experimentally observed in spike-timing-dependent plasticity (STDP)", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 104, + 554, + 506, + 569 + ], + "spans": [ + { + "bbox": [ + 104, + 554, + 506, + 569 + ], + "score": 1.0, + "content": "learning rule which modulates the weights for pair of neurons that spike within a time window (Song", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 566, + 159, + 578 + ], + "spans": [ + { + "bbox": [ + 105, + 566, + 159, + 578 + ], + "score": 1.0, + "content": "et al., 2000).", + "type": "text" + } + ], + "index": 39 + } + ], + "index": 36.5 + }, + { + "type": "title", + "bbox": [ + 108, + 601, + 283, + 614 + ], + "lines": [ + { + "bbox": [ + 104, + 599, + 285, + 616 + ], + "spans": [ + { + "bbox": [ + 104, + 599, + 285, + 616 + ], + "score": 1.0, + "content": "3 SNN WEIGHT INITIALIZATION", + "type": "text" + } + ], + "index": 40 + } + ], + "index": 40 + }, + { + "type": "text", + "bbox": [ + 106, + 630, + 505, + 730 + ], + "lines": [ + { + "bbox": [ + 106, + 631, + 505, + 642 + ], + "spans": [ + { + "bbox": [ + 106, + 631, + 505, + 642 + ], + "score": 1.0, + "content": "A prevalent method of constructing SNNs for inference is ANN-SNN conversion (Diehl et al., 2015;", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 106, + 642, + 505, + 654 + ], + "spans": [ + { + "bbox": [ + 106, + 642, + 505, + 654 + ], + "score": 1.0, + "content": "Sengupta et al., 2019). Since the network is trained with analog activations it does not suffer from the", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 653, + 506, + 666 + ], + "spans": [ + { + "bbox": [ + 105, + 653, + 506, + 666 + ], + "score": 1.0, + "content": "non-differentiablity issue and can leverage the training techniques of ANNs. The conversion process", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 663, + 506, + 676 + ], + "spans": [ + { + "bbox": [ + 105, + 663, + 360, + 676 + ], + "score": 1.0, + "content": "has a major drawback: it suffers from long inference latency (", + "type": "text" + }, + { + "bbox": [ + 360, + 664, + 389, + 674 + ], + "score": 0.83, + "content": "\\mathrm { \\sim 2 5 0 0 }", + "type": "inline_equation" + }, + { + "bbox": [ + 390, + 663, + 506, + 676 + ], + "score": 1.0, + "content": "time steps) as mentioned in", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 106, + 675, + 506, + 688 + ], + "spans": [ + { + "bbox": [ + 106, + 675, + 506, + 688 + ], + "score": 1.0, + "content": "Section 1. As there is no provision to optimize the parameters after conversion based on spiking", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 106, + 686, + 505, + 698 + ], + "spans": [ + { + "bbox": [ + 106, + 686, + 505, + 698 + ], + "score": 1.0, + "content": "activity, the network can not leverage the temporal information of the spikes. In this work, we", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 105, + 697, + 505, + 709 + ], + "spans": [ + { + "bbox": [ + 105, + 697, + 505, + 709 + ], + "score": 1.0, + "content": "propose to use the conversion process as an initialization technique for STDB. The converted weights", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 106, + 707, + 505, + 720 + ], + "spans": [ + { + "bbox": [ + 106, + 707, + 505, + 720 + ], + "score": 1.0, + "content": "and thresholds serve as a good initialization for the optimizer and the STDB learning rule is applied", + "type": "text" + } + ], + "index": 48 + }, + { + "bbox": [ + 106, + 719, + 278, + 731 + ], + "spans": [ + { + "bbox": [ + 106, + 719, + 278, + 731 + ], + "score": 1.0, + "content": "for temporal and spatial credit assignment.", + "type": "text" + } + ], + "index": 49 + } + ], + "index": 45 + } + ], + "page_idx": 5, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 108, + 27, + 293, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 26, + 294, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 26, + 294, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2020", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 302, + 752, + 308, + 760 + ], + "lines": [ + { + "bbox": [ + 302, + 751, + 309, + 762 + ], + "spans": [ + { + "bbox": [ + 302, + 751, + 309, + 762 + ], + "score": 1.0, + "content": "6", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 106, + 81, + 504, + 105 + ], + "lines": [ + { + "bbox": [ + 106, + 82, + 505, + 95 + ], + "spans": [ + { + "bbox": [ + 106, + 82, + 505, + 95 + ], + "score": 1.0, + "content": "Algorithm 3 Training an SNN with surrogate gradient computed with spike timing. The network is", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 92, + 426, + 106 + ], + "spans": [ + { + "bbox": [ + 105, + 92, + 160, + 106 + ], + "score": 1.0, + "content": "composed of", + "type": "text" + }, + { + "bbox": [ + 160, + 94, + 168, + 103 + ], + "score": 0.69, + "content": "L", + "type": "inline_equation" + }, + { + "bbox": [ + 169, + 92, + 426, + 106 + ], + "score": 1.0, + "content": "layers. The training proceeds with mini-batch size (batch size)", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5, + "bbox_fs": [ + 105, + 82, + 505, + 106 + ] + }, + { + "type": "list", + "bbox": [ + 108, + 106, + 502, + 483 + ], + "lines": [ + { + "bbox": [ + 106, + 105, + 504, + 119 + ], + "spans": [ + { + "bbox": [ + 106, + 105, + 217, + 119 + ], + "score": 1.0, + "content": "Input: Mini-batch of input", + "type": "text" + }, + { + "bbox": [ + 217, + 107, + 233, + 118 + ], + "score": 0.71, + "content": "( X )", + "type": "inline_equation" + }, + { + "bbox": [ + 233, + 105, + 264, + 119 + ], + "score": 1.0, + "content": "- target", + "type": "text" + }, + { + "bbox": [ + 264, + 107, + 279, + 118 + ], + "score": 0.72, + "content": "( Y )", + "type": "inline_equation" + }, + { + "bbox": [ + 279, + 105, + 365, + 119 + ], + "score": 1.0, + "content": "pairs, network model", + "type": "text" + }, + { + "bbox": [ + 366, + 107, + 381, + 118 + ], + "score": 0.52, + "content": "( N )", + "type": "inline_equation" + }, + { + "bbox": [ + 382, + 105, + 446, + 119 + ], + "score": 1.0, + "content": ", initial weights", + "type": "text" + }, + { + "bbox": [ + 446, + 107, + 461, + 118 + ], + "score": 0.51, + "content": "( W )", + "type": "inline_equation" + }, + { + "bbox": [ + 462, + 105, + 504, + 119 + ], + "score": 1.0, + "content": ", threshold", + "type": "text" + } + ], + "index": 2, + "is_list_start_line": true + }, + { + "bbox": [ + 136, + 117, + 184, + 129 + ], + "spans": [ + { + "bbox": [ + 136, + 117, + 169, + 129 + ], + "score": 1.0, + "content": "voltage", + "type": "text" + }, + { + "bbox": [ + 169, + 118, + 184, + 128 + ], + "score": 0.53, + "content": "( V )", + "type": "inline_equation" + } + ], + "index": 3, + "is_list_end_line": true + }, + { + "bbox": [ + 107, + 127, + 362, + 141 + ], + "spans": [ + { + "bbox": [ + 107, + 129, + 159, + 140 + ], + "score": 0.45, + "content": "U , S , M = I", + "type": "inline_equation" + }, + { + "bbox": [ + 159, + 127, + 281, + 141 + ], + "score": 1.0, + "content": "nitializeNeuronP arameter", + "type": "text" + }, + { + "bbox": [ + 281, + 128, + 303, + 141 + ], + "score": 0.63, + "content": "s ( X )", + "type": "inline_equation" + }, + { + "bbox": [ + 303, + 127, + 362, + 141 + ], + "score": 1.0, + "content": "[Algorithm 2]", + "type": "text" + } + ], + "index": 4, + "is_list_start_line": true, + "is_list_end_line": true + }, + { + "bbox": [ + 109, + 138, + 206, + 153 + ], + "spans": [ + { + "bbox": [ + 109, + 138, + 206, + 153 + ], + "score": 1.0, + "content": "// Forward propagation", + "type": "text" + } + ], + "index": 5, + "is_list_start_line": true, + "is_list_end_line": true + }, + { + "bbox": [ + 110, + 149, + 176, + 163 + ], + "spans": [ + { + "bbox": [ + 110, + 149, + 126, + 163 + ], + "score": 1.0, + "content": "for", + "type": "text" + }, + { + "bbox": [ + 126, + 151, + 142, + 160 + ], + "score": 0.85, + "content": "t { = } I", + "type": "inline_equation" + }, + { + "bbox": [ + 142, + 149, + 154, + 163 + ], + "score": 1.0, + "content": "to", + "type": "text" + }, + { + "bbox": [ + 154, + 151, + 162, + 160 + ], + "score": 0.56, + "content": "T", + "type": "inline_equation" + }, + { + "bbox": [ + 162, + 149, + 176, + 163 + ], + "score": 1.0, + "content": "do", + "type": "text" + } + ], + "index": 6, + "is_list_start_line": true, + "is_list_end_line": true + }, + { + "bbox": [ + 120, + 162, + 248, + 173 + ], + "spans": [ + { + "bbox": [ + 120, + 162, + 248, + 173 + ], + "score": 0.35, + "content": "O _ { 0 } ^ { t } = P o i s s o n G e n e r a t o r ( X )", + "type": "inline_equation" + } + ], + "index": 7, + "is_list_end_line": true + }, + { + "bbox": [ + 126, + 172, + 199, + 183 + ], + "spans": [ + { + "bbox": [ + 126, + 172, + 141, + 183 + ], + "score": 1.0, + "content": "for", + "type": "text" + }, + { + "bbox": [ + 141, + 173, + 158, + 183 + ], + "score": 0.66, + "content": "l { = } l", + "type": "inline_equation" + }, + { + "bbox": [ + 158, + 172, + 199, + 183 + ], + "score": 1.0, + "content": "to L-1 do", + "type": "text" + } + ], + "index": 8, + "is_list_end_line": true + }, + { + "bbox": [ + 136, + 183, + 299, + 195 + ], + "spans": [ + { + "bbox": [ + 136, + 183, + 183, + 195 + ], + "score": 1.0, + "content": "if isintanc", + "type": "text" + }, + { + "bbox": [ + 183, + 183, + 276, + 195 + ], + "score": 0.51, + "content": "e ( N _ { l } , [ C o n v , L i n e a r ] )", + "type": "inline_equation" + }, + { + "bbox": [ + 276, + 183, + 299, + 195 + ], + "score": 1.0, + "content": "then", + "type": "text" + } + ], + "index": 9, + "is_list_end_line": true + }, + { + "bbox": [ + 150, + 192, + 459, + 207 + ], + "spans": [ + { + "bbox": [ + 150, + 192, + 331, + 207 + ], + "score": 1.0, + "content": "// accumulate the output of previous layer in", + "type": "text" + }, + { + "bbox": [ + 331, + 194, + 340, + 204 + ], + "score": 0.81, + "content": "U", + "type": "inline_equation" + }, + { + "bbox": [ + 340, + 192, + 459, + 207 + ], + "score": 1.0, + "content": ", soft reset when spike occurs", + "type": "text" + } + ], + "index": 10, + "is_list_end_line": true + }, + { + "bbox": [ + 157, + 201, + 311, + 219 + ], + "spans": [ + { + "bbox": [ + 157, + 204, + 309, + 217 + ], + "score": 0.87, + "content": "\\begin{array} { r } { U _ { l } ^ { t } = \\lambda U _ { l } ^ { t - 1 } + W _ { l } \\dot { O } _ { l - 1 } ^ { t } - V _ { l } * O _ { l } ^ { t - 1 } } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 309, + 201, + 311, + 219 + ], + "score": 0.53, + "content": "?", + "type": "text" + } + ], + "index": 11, + "is_list_end_line": true + }, + { + "bbox": [ + 156, + 214, + 329, + 227 + ], + "spans": [ + { + "bbox": [ + 156, + 214, + 245, + 227 + ], + "score": 1.0, + "content": "// generate the output", + "type": "text" + }, + { + "bbox": [ + 245, + 217, + 265, + 226 + ], + "score": 0.76, + "content": "( + 1 )", + "type": "inline_equation" + }, + { + "bbox": [ + 265, + 214, + 275, + 227 + ], + "score": 1.0, + "content": "if", + "type": "text" + }, + { + "bbox": [ + 275, + 217, + 284, + 225 + ], + "score": 0.76, + "content": "U", + "type": "inline_equation" + }, + { + "bbox": [ + 284, + 214, + 319, + 227 + ], + "score": 1.0, + "content": "exceeds", + "type": "text" + }, + { + "bbox": [ + 319, + 216, + 329, + 225 + ], + "score": 0.72, + "content": "V", + "type": "inline_equation" + } + ], + "index": 12, + "is_list_end_line": true + }, + { + "bbox": [ + 158, + 226, + 254, + 239 + ], + "spans": [ + { + "bbox": [ + 158, + 226, + 254, + 239 + ], + "score": 0.78, + "content": "\\hat { O _ { l } ^ { t } } = S T D B ( U _ { l } ^ { t } , V _ { l } , t )", + "type": "inline_equation" + } + ], + "index": 13, + "is_list_end_line": true + }, + { + "bbox": [ + 157, + 236, + 339, + 249 + ], + "spans": [ + { + "bbox": [ + 157, + 239, + 165, + 247 + ], + "score": 0.28, + "content": "/ /", + "type": "inline_equation" + }, + { + "bbox": [ + 165, + 236, + 339, + 249 + ], + "score": 1.0, + "content": "store the latest spike times for each neuron", + "type": "text" + } + ], + "index": 14, + "is_list_end_line": true + }, + { + "bbox": [ + 158, + 246, + 233, + 263 + ], + "spans": [ + { + "bbox": [ + 158, + 248, + 230, + 261 + ], + "score": 0.53, + "content": "S _ { l } ^ { t } [ O _ { l } ^ { t } = = 1 ] = t", + "type": "inline_equation", + "image_path": "1da6d52e9a9ff13a3b1d7277facb12ea1a7e27a6352f84e0009fd0a63b198fb7.jpg" + }, + { + "bbox": [ + 230, + 246, + 233, + 263 + ], + "score": 0.0, + "content": "", + "type": "text" + } + ], + "index": 15, + "is_list_end_line": true + }, + { + "bbox": [ + 135, + 259, + 156, + 271 + ], + "spans": [ + { + "bbox": [ + 135, + 259, + 156, + 271 + ], + "score": 1.0, + "content": "end", + "type": "text" + } + ], + "index": 16, + "is_list_end_line": true + }, + { + "bbox": [ + 136, + 268, + 291, + 284 + ], + "spans": [ + { + "bbox": [ + 136, + 268, + 205, + 284 + ], + "score": 1.0, + "content": "else if isintance", + "type": "text" + }, + { + "bbox": [ + 205, + 271, + 267, + 282 + ], + "score": 0.35, + "content": "{ \\mathrm { : } } ( N _ { l } , A v g P o o l )", + "type": "inline_equation" + }, + { + "bbox": [ + 267, + 268, + 291, + 284 + ], + "score": 1.0, + "content": "then", + "type": "text" + } + ], + "index": 17, + "is_list_end_line": true + }, + { + "bbox": [ + 150, + 279, + 218, + 297 + ], + "spans": [ + { + "bbox": [ + 150, + 279, + 152, + 297 + ], + "score": 0.0, + "content": "", + "type": "text" + }, + { + "bbox": [ + 153, + 282, + 218, + 295 + ], + "score": 0.62, + "content": "O _ { l } ^ { t } = N _ { l } ( O _ { l - 1 } ^ { t } )", + "type": "inline_equation" + } + ], + "index": 18, + "is_list_end_line": true + }, + { + "bbox": [ + 135, + 294, + 156, + 305 + ], + "spans": [ + { + "bbox": [ + 135, + 294, + 156, + 305 + ], + "score": 1.0, + "content": "end", + "type": "text" + } + ], + "index": 19, + "is_list_end_line": true + }, + { + "bbox": [ + 136, + 304, + 289, + 317 + ], + "spans": [ + { + "bbox": [ + 136, + 304, + 205, + 317 + ], + "score": 1.0, + "content": "else if isintance", + "type": "text" + }, + { + "bbox": [ + 205, + 305, + 266, + 317 + ], + "score": 0.26, + "content": "( N _ { l } , D r o p o u t )", + "type": "inline_equation" + }, + { + "bbox": [ + 266, + 304, + 289, + 317 + ], + "score": 1.0, + "content": "then", + "type": "text" + } + ], + "index": 20, + "is_list_end_line": true + }, + { + "bbox": [ + 142, + 316, + 221, + 330 + ], + "spans": [ + { + "bbox": [ + 142, + 320, + 150, + 327 + ], + "score": 0.0, + "content": "", + "type": "text" + }, + { + "bbox": [ + 152, + 316, + 221, + 330 + ], + "score": 0.73, + "content": "O _ { l } ^ { t } = O _ { l - 1 } ^ { t } * M _ { l }", + "type": "inline_equation" + } + ], + "index": 21, + "is_list_end_line": true + }, + { + "bbox": [ + 135, + 327, + 156, + 340 + ], + "spans": [ + { + "bbox": [ + 135, + 327, + 156, + 340 + ], + "score": 1.0, + "content": "end", + "type": "text" + } + ], + "index": 22, + "is_list_end_line": true + }, + { + "bbox": [ + 120, + 340, + 141, + 352 + ], + "spans": [ + { + "bbox": [ + 120, + 340, + 141, + 352 + ], + "score": 1.0, + "content": "end", + "type": "text" + } + ], + "index": 23, + "is_list_end_line": true + }, + { + "bbox": [ + 121, + 352, + 228, + 367 + ], + "spans": [ + { + "bbox": [ + 121, + 352, + 228, + 367 + ], + "score": 0.75, + "content": "U _ { L } ^ { t } = \\lambda U _ { L } ^ { t - 1 } + W _ { L } O _ { L - 1 } ^ { t }", + "type": "inline_equation", + "image_path": "c68f2701421784ea1a05b642bd7d4b245f12edc05f52c2cc5bb29cbcafe15c28.jpg" + } + ], + "index": 24, + "is_list_end_line": true + }, + { + "bbox": [ + 106, + 366, + 125, + 378 + ], + "spans": [ + { + "bbox": [ + 106, + 366, + 125, + 378 + ], + "score": 1.0, + "content": "end", + "type": "text" + } + ], + "index": 25, + "is_list_start_line": true, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 376, + 208, + 389 + ], + "spans": [ + { + "bbox": [ + 105, + 376, + 208, + 389 + ], + "score": 1.0, + "content": "// Backward Propagation", + "type": "text" + } + ], + "index": 26, + "is_list_start_line": true, + "is_list_end_line": true + }, + { + "bbox": [ + 110, + 383, + 370, + 404 + ], + "spans": [ + { + "bbox": [ + 110, + 383, + 151, + 404 + ], + "score": 1.0, + "content": "Compute", + "type": "text" + }, + { + "bbox": [ + 151, + 387, + 169, + 402 + ], + "score": 0.92, + "content": "\\frac { \\partial L } { \\partial U _ { L } }", + "type": "inline_equation" + }, + { + "bbox": [ + 169, + 383, + 370, + 404 + ], + "score": 1.0, + "content": "from the cross-entropy loss function using BPTT", + "type": "text" + } + ], + "index": 27, + "is_list_start_line": true, + "is_list_end_line": true + }, + { + "bbox": [ + 110, + 401, + 176, + 412 + ], + "spans": [ + { + "bbox": [ + 110, + 401, + 126, + 412 + ], + "score": 1.0, + "content": "for", + "type": "text" + }, + { + "bbox": [ + 126, + 402, + 144, + 411 + ], + "score": 0.86, + "content": "t { = } T", + "type": "inline_equation" + }, + { + "bbox": [ + 144, + 401, + 155, + 412 + ], + "score": 1.0, + "content": "to", + "type": "text" + }, + { + "bbox": [ + 156, + 402, + 162, + 411 + ], + "score": 0.51, + "content": "^ { l }", + "type": "inline_equation" + }, + { + "bbox": [ + 162, + 401, + 176, + 412 + ], + "score": 1.0, + "content": "do", + "type": "text" + } + ], + "index": 28, + "is_list_start_line": true, + "is_list_end_line": true + }, + { + "bbox": [ + 120, + 411, + 195, + 423 + ], + "spans": [ + { + "bbox": [ + 120, + 411, + 136, + 423 + ], + "score": 1.0, + "content": "for", + "type": "text" + }, + { + "bbox": [ + 137, + 412, + 161, + 423 + ], + "score": 0.8, + "content": "\\scriptstyle { l = L - I }", + "type": "inline_equation" + }, + { + "bbox": [ + 162, + 411, + 195, + 423 + ], + "score": 1.0, + "content": "to 1 do", + "type": "text" + } + ], + "index": 29, + "is_list_end_line": true + }, + { + "bbox": [ + 135, + 421, + 367, + 442 + ], + "spans": [ + { + "bbox": [ + 135, + 421, + 177, + 442 + ], + "score": 1.0, + "content": "Compute", + "type": "text" + }, + { + "bbox": [ + 177, + 423, + 194, + 439 + ], + "score": 0.9, + "content": "\\frac { \\partial L } { \\partial O _ { l } ^ { t } }", + "type": "inline_equation" + }, + { + "bbox": [ + 194, + 421, + 241, + 442 + ], + "score": 1.0, + "content": "based on if", + "type": "text" + }, + { + "bbox": [ + 242, + 425, + 254, + 435 + ], + "score": 0.88, + "content": "N _ { l }", + "type": "inline_equation" + }, + { + "bbox": [ + 254, + 421, + 367, + 442 + ], + "score": 1.0, + "content": "is linear, conv, pooling, etc.", + "type": "text" + } + ], + "index": 30, + "is_list_end_line": true + }, + { + "bbox": [ + 142, + 438, + 277, + 458 + ], + "spans": [ + { + "bbox": [ + 142, + 438, + 277, + 458 + ], + "score": 0.83, + "content": "\\begin{array} { r } { \\frac { \\partial L } { \\partial U _ { l } ^ { t } } = \\frac { \\partial L } { \\partial O _ { l } ^ { t } } \\frac { \\partial O _ { l } ^ { t } } { \\partial U _ { l } ^ { t } } = \\frac { \\partial L } { \\partial O _ { l } ^ { t } } \\ast \\alpha e ^ { - \\beta S _ { l } ^ { t } } } \\end{array}", + "type": "inline_equation", + "image_path": "9096b33ab96c5a7325046c984f680b3abe1f434314488ed4c79a63055518350c.jpg" + } + ], + "index": 31, + "is_list_end_line": true + }, + { + "bbox": [ + 119, + 456, + 140, + 468 + ], + "spans": [ + { + "bbox": [ + 119, + 456, + 140, + 468 + ], + "score": 1.0, + "content": "end", + "type": "text" + } + ], + "index": 32, + "is_list_end_line": true + }, + { + "bbox": [ + 104, + 468, + 126, + 480 + ], + "spans": [ + { + "bbox": [ + 104, + 468, + 126, + 480 + ], + "score": 1.0, + "content": "end", + "type": "text" + } + ], + "index": 33, + "is_list_start_line": true, + "is_list_end_line": true + } + ], + "index": 17.5, + "bbox_fs": [ + 104, + 105, + 504, + 480 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 511, + 505, + 577 + ], + "lines": [ + { + "bbox": [ + 105, + 511, + 505, + 523 + ], + "spans": [ + { + "bbox": [ + 105, + 511, + 505, + 523 + ], + "score": 1.0, + "content": "neuron’ problem, where no learning happens when there is no spike. Fig. 1 shows the activation", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 522, + 506, + 534 + ], + "spans": [ + { + "bbox": [ + 105, + 522, + 234, + 534 + ], + "score": 1.0, + "content": "gradient for different values of", + "type": "text" + }, + { + "bbox": [ + 234, + 523, + 247, + 532 + ], + "score": 0.83, + "content": "\\Delta t", + "type": "inline_equation" + }, + { + "bbox": [ + 247, + 522, + 506, + 534 + ], + "score": 1.0, + "content": ", the gradient decreases exponentially for neurons that have not", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 533, + 505, + 546 + ], + "spans": [ + { + "bbox": [ + 105, + 533, + 505, + 546 + ], + "score": 1.0, + "content": "been active for a long time. In Hebbian models of biological learning, the parameter update is", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 106, + 545, + 505, + 556 + ], + "spans": [ + { + "bbox": [ + 106, + 545, + 505, + 556 + ], + "score": 1.0, + "content": "activity dependent. This is experimentally observed in spike-timing-dependent plasticity (STDP)", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 104, + 554, + 506, + 569 + ], + "spans": [ + { + "bbox": [ + 104, + 554, + 506, + 569 + ], + "score": 1.0, + "content": "learning rule which modulates the weights for pair of neurons that spike within a time window (Song", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 566, + 159, + 578 + ], + "spans": [ + { + "bbox": [ + 105, + 566, + 159, + 578 + ], + "score": 1.0, + "content": "et al., 2000).", + "type": "text" + } + ], + "index": 39 + } + ], + "index": 36.5, + "bbox_fs": [ + 104, + 511, + 506, + 578 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 601, + 283, + 614 + ], + "lines": [ + { + "bbox": [ + 104, + 599, + 285, + 616 + ], + "spans": [ + { + "bbox": [ + 104, + 599, + 285, + 616 + ], + "score": 1.0, + "content": "3 SNN WEIGHT INITIALIZATION", + "type": "text" + } + ], + "index": 40 + } + ], + "index": 40 + }, + { + "type": "text", + "bbox": [ + 106, + 630, + 505, + 730 + ], + "lines": [ + { + "bbox": [ + 106, + 631, + 505, + 642 + ], + "spans": [ + { + "bbox": [ + 106, + 631, + 505, + 642 + ], + "score": 1.0, + "content": "A prevalent method of constructing SNNs for inference is ANN-SNN conversion (Diehl et al., 2015;", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 106, + 642, + 505, + 654 + ], + "spans": [ + { + "bbox": [ + 106, + 642, + 505, + 654 + ], + "score": 1.0, + "content": "Sengupta et al., 2019). Since the network is trained with analog activations it does not suffer from the", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 653, + 506, + 666 + ], + "spans": [ + { + "bbox": [ + 105, + 653, + 506, + 666 + ], + "score": 1.0, + "content": "non-differentiablity issue and can leverage the training techniques of ANNs. The conversion process", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 663, + 506, + 676 + ], + "spans": [ + { + "bbox": [ + 105, + 663, + 360, + 676 + ], + "score": 1.0, + "content": "has a major drawback: it suffers from long inference latency (", + "type": "text" + }, + { + "bbox": [ + 360, + 664, + 389, + 674 + ], + "score": 0.83, + "content": "\\mathrm { \\sim 2 5 0 0 }", + "type": "inline_equation" + }, + { + "bbox": [ + 390, + 663, + 506, + 676 + ], + "score": 1.0, + "content": "time steps) as mentioned in", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 106, + 675, + 506, + 688 + ], + "spans": [ + { + "bbox": [ + 106, + 675, + 506, + 688 + ], + "score": 1.0, + "content": "Section 1. As there is no provision to optimize the parameters after conversion based on spiking", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 106, + 686, + 505, + 698 + ], + "spans": [ + { + "bbox": [ + 106, + 686, + 505, + 698 + ], + "score": 1.0, + "content": "activity, the network can not leverage the temporal information of the spikes. In this work, we", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 105, + 697, + 505, + 709 + ], + "spans": [ + { + "bbox": [ + 105, + 697, + 505, + 709 + ], + "score": 1.0, + "content": "propose to use the conversion process as an initialization technique for STDB. The converted weights", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 106, + 707, + 505, + 720 + ], + "spans": [ + { + "bbox": [ + 106, + 707, + 505, + 720 + ], + "score": 1.0, + "content": "and thresholds serve as a good initialization for the optimizer and the STDB learning rule is applied", + "type": "text" + } + ], + "index": 48 + }, + { + "bbox": [ + 106, + 719, + 278, + 731 + ], + "spans": [ + { + "bbox": [ + 106, + 719, + 278, + 731 + ], + "score": 1.0, + "content": "for temporal and spatial credit assignment.", + "type": "text" + } + ], + "index": 49 + } + ], + "index": 45, + "bbox_fs": [ + 105, + 631, + 506, + 731 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 107, + 82, + 505, + 170 + ], + "lines": [ + { + "bbox": [ + 106, + 83, + 505, + 95 + ], + "spans": [ + { + "bbox": [ + 106, + 83, + 505, + 95 + ], + "score": 1.0, + "content": "Algorithm 1 explains the ANN-SNN conversion process. The threshold voltages in SNN needs to", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 94, + 505, + 106 + ], + "spans": [ + { + "bbox": [ + 105, + 94, + 505, + 106 + ], + "score": 1.0, + "content": "be adjusted based on the ANN weights. Sengupta et al. (2019) showed two ways to achieve this:", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 106, + 105, + 505, + 117 + ], + "spans": [ + { + "bbox": [ + 106, + 105, + 505, + 117 + ], + "score": 1.0, + "content": "weight-normalization and threshold-balancing. In weight-normalization the weights are scaled by", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 116, + 505, + 128 + ], + "spans": [ + { + "bbox": [ + 105, + 116, + 505, + 128 + ], + "score": 1.0, + "content": "a normalization factor and threshold is set to 1, whereas in threshold-balancing the weights are", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 127, + 506, + 138 + ], + "spans": [ + { + "bbox": [ + 105, + 127, + 506, + 138 + ], + "score": 1.0, + "content": "unchanged and the threshold is set to the normalization factor. Both have a similar effect and either", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 137, + 505, + 149 + ], + "spans": [ + { + "bbox": [ + 105, + 137, + 505, + 149 + ], + "score": 1.0, + "content": "can be used to set the threshold. We employ the threshold-balancing method and the normalization", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 149, + 505, + 160 + ], + "spans": [ + { + "bbox": [ + 105, + 149, + 505, + 160 + ], + "score": 1.0, + "content": "factor is calculated as the maximum output of the corresponding convolution/linear layer in SNN.", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 158, + 397, + 173 + ], + "spans": [ + { + "bbox": [ + 105, + 158, + 397, + 173 + ], + "score": 1.0, + "content": "The maximum is calculated over a mini-batch of input for all time steps.", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 3.5 + }, + { + "type": "text", + "bbox": [ + 108, + 176, + 356, + 396 + ], + "lines": [ + { + "bbox": [ + 106, + 176, + 357, + 188 + ], + "spans": [ + { + "bbox": [ + 106, + 176, + 357, + 188 + ], + "score": 1.0, + "content": "There are several constraints imposed on training the ANN", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 106, + 187, + 357, + 199 + ], + "spans": [ + { + "bbox": [ + 106, + 187, + 357, + 199 + ], + "score": 1.0, + "content": "for the conversion process (Sengupta et al., 2019; Diehl et al.,", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 106, + 198, + 357, + 209 + ], + "spans": [ + { + "bbox": [ + 106, + 198, + 357, + 209 + ], + "score": 1.0, + "content": "2015). The neurons are trained without the bias term because", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 106, + 209, + 357, + 221 + ], + "spans": [ + { + "bbox": [ + 106, + 209, + 357, + 221 + ], + "score": 1.0, + "content": "the bias term in SNN has an indirect effect on the threshold", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 219, + 357, + 233 + ], + "spans": [ + { + "bbox": [ + 105, + 219, + 357, + 233 + ], + "score": 1.0, + "content": "voltage which increases the difficulty of threshold balancing", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 106, + 230, + 357, + 243 + ], + "spans": [ + { + "bbox": [ + 106, + 230, + 357, + 243 + ], + "score": 1.0, + "content": "and the process becomes more prone to conversion loss. The", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 106, + 242, + 357, + 253 + ], + "spans": [ + { + "bbox": [ + 106, + 242, + 357, + 253 + ], + "score": 1.0, + "content": "absence of bias term eliminates the use of Batch Normalization", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 106, + 253, + 357, + 265 + ], + "spans": [ + { + "bbox": [ + 106, + 253, + 357, + 265 + ], + "score": 1.0, + "content": "(Ioffe & Szegedy, 2015) as a regularizer in ANN since it biases", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 264, + 357, + 276 + ], + "spans": [ + { + "bbox": [ + 105, + 264, + 357, + 276 + ], + "score": 1.0, + "content": "the input of each layer to have zero mean. As an alternative,", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 275, + 357, + 287 + ], + "spans": [ + { + "bbox": [ + 105, + 275, + 357, + 287 + ], + "score": 1.0, + "content": "Dropout (Srivastava et al., 2014) is used as a regularizer", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 285, + 358, + 298 + ], + "spans": [ + { + "bbox": [ + 105, + 285, + 358, + 298 + ], + "score": 1.0, + "content": "for both ANN and SNN training. The implementation of", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 296, + 357, + 309 + ], + "spans": [ + { + "bbox": [ + 105, + 296, + 357, + 309 + ], + "score": 1.0, + "content": "Dropout in SNN is further discussed in Section 5. The pooling", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 106, + 308, + 357, + 319 + ], + "spans": [ + { + "bbox": [ + 106, + 308, + 357, + 319 + ], + "score": 1.0, + "content": "operation is widely used in ANN to reduce the convolution", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 318, + 357, + 332 + ], + "spans": [ + { + "bbox": [ + 105, + 318, + 357, + 332 + ], + "score": 1.0, + "content": "map size. There are two popular variants: max pooling", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 106, + 330, + 357, + 342 + ], + "spans": [ + { + "bbox": [ + 106, + 330, + 357, + 342 + ], + "score": 1.0, + "content": "and average pooling (Boureau et al., 2010). Max (Average)", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 341, + 357, + 352 + ], + "spans": [ + { + "bbox": [ + 105, + 341, + 357, + 352 + ], + "score": 1.0, + "content": "pooling outputs the maximum (average) value in the kernel", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 351, + 357, + 363 + ], + "spans": [ + { + "bbox": [ + 105, + 351, + 357, + 363 + ], + "score": 1.0, + "content": "space of the neuron’s activations. In SNN, the activations are", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 362, + 357, + 375 + ], + "spans": [ + { + "bbox": [ + 105, + 362, + 357, + 375 + ], + "score": 1.0, + "content": "binary and performing max pooling will result in significant", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 106, + 373, + 357, + 386 + ], + "spans": [ + { + "bbox": [ + 106, + 373, + 357, + 386 + ], + "score": 1.0, + "content": "information loss for the next layer, so we adopt the average", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 384, + 318, + 397 + ], + "spans": [ + { + "bbox": [ + 105, + 384, + 318, + 397 + ], + "score": 1.0, + "content": "pooling for both ANN and SNN (Diehl et al., 2015).", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 17.5 + }, + { + "type": "title", + "bbox": [ + 108, + 415, + 269, + 428 + ], + "lines": [ + { + "bbox": [ + 105, + 414, + 272, + 429 + ], + "spans": [ + { + "bbox": [ + 105, + 414, + 272, + 429 + ], + "score": 1.0, + "content": "4 NETWORK ARCHITECTURES", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 29 + }, + { + "type": "image", + "bbox": [ + 365, + 189, + 505, + 421 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 365, + 189, + 505, + 421 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 365, + 189, + 505, + 421 + ], + "spans": [ + { + "bbox": [ + 365, + 189, + 505, + 421 + ], + "score": 0.966, + "type": "image", + "image_path": "31821489c1dc4301bde516e227360d788e26a0deac85ccef825dbbbadc225416.jpg" + } + ] + } + ], + "index": 28, + "virtual_lines": [ + { + "bbox": [ + 365, + 189, + 505, + 421 + ], + "spans": [], + "index": 28 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 364, + 443, + 504, + 464 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 363, + 443, + 505, + 454 + ], + "spans": [ + { + "bbox": [ + 363, + 443, + 505, + 454 + ], + "score": 1.0, + "content": "Figure 2: Residual architecture for", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 363, + 453, + 388, + 465 + ], + "spans": [ + { + "bbox": [ + 363, + 453, + 388, + 465 + ], + "score": 1.0, + "content": "SNN", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 34.5 + } + ], + "index": 31.25 + }, + { + "type": "text", + "bbox": [ + 107, + 442, + 356, + 486 + ], + "lines": [ + { + "bbox": [ + 105, + 442, + 357, + 453 + ], + "spans": [ + { + "bbox": [ + 105, + 442, + 357, + 453 + ], + "score": 1.0, + "content": "In this section, we describe the changes made to the VGG", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 452, + 357, + 465 + ], + "spans": [ + { + "bbox": [ + 105, + 452, + 357, + 465 + ], + "score": 1.0, + "content": "(Simonyan & Zisserman, 2014) and residual architecture (He", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 464, + 357, + 477 + ], + "spans": [ + { + "bbox": [ + 105, + 464, + 357, + 477 + ], + "score": 1.0, + "content": "et al., 2016) for hybrid learning and discuss the process of", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 106, + 475, + 304, + 487 + ], + "spans": [ + { + "bbox": [ + 106, + 475, + 304, + 487 + ], + "score": 1.0, + "content": "threshold computation for both the architectures.", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 31.5 + }, + { + "type": "title", + "bbox": [ + 108, + 503, + 225, + 514 + ], + "lines": [ + { + "bbox": [ + 105, + 502, + 227, + 516 + ], + "spans": [ + { + "bbox": [ + 105, + 502, + 227, + 516 + ], + "score": 1.0, + "content": "4.1 VGG ARCHITECTURE", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 36 + }, + { + "type": "text", + "bbox": [ + 107, + 525, + 505, + 591 + ], + "lines": [ + { + "bbox": [ + 106, + 525, + 505, + 538 + ], + "spans": [ + { + "bbox": [ + 106, + 525, + 505, + 538 + ], + "score": 1.0, + "content": "The threshold balancing is performed for all layers except the input and output layer in a VGG", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 536, + 506, + 549 + ], + "spans": [ + { + "bbox": [ + 105, + 536, + 506, + 549 + ], + "score": 1.0, + "content": "architecture. For every hidden convolution/linear layer the maximum input3 to the neuron is", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 547, + 505, + 559 + ], + "spans": [ + { + "bbox": [ + 105, + 547, + 505, + 559 + ], + "score": 1.0, + "content": "computed over all time steps and set as threshold for that layer. The threshold assignment is", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 106, + 559, + 505, + 570 + ], + "spans": [ + { + "bbox": [ + 106, + 559, + 505, + 570 + ], + "score": 1.0, + "content": "done sequentially as described in Algorithm 1. The threshold computation for all layers can not", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 106, + 569, + 505, + 581 + ], + "spans": [ + { + "bbox": [ + 106, + 569, + 505, + 581 + ], + "score": 1.0, + "content": "be performed in parallel (in one forward pass) because in the forward method (Algorithm 3) we", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 580, + 424, + 592 + ], + "spans": [ + { + "bbox": [ + 105, + 580, + 424, + 592 + ], + "score": 1.0, + "content": "need the threshold at each time step to decide if the neuron should spike or not.", + "type": "text" + } + ], + "index": 42 + } + ], + "index": 39.5 + }, + { + "type": "title", + "bbox": [ + 108, + 608, + 246, + 619 + ], + "lines": [ + { + "bbox": [ + 106, + 608, + 248, + 620 + ], + "spans": [ + { + "bbox": [ + 106, + 608, + 248, + 620 + ], + "score": 1.0, + "content": "4.2 RESIDUAL ARCHITECTURE", + "type": "text" + } + ], + "index": 43 + } + ], + "index": 43 + }, + { + "type": "text", + "bbox": [ + 107, + 630, + 505, + 707 + ], + "lines": [ + { + "bbox": [ + 105, + 629, + 505, + 642 + ], + "spans": [ + { + "bbox": [ + 105, + 629, + 505, + 642 + ], + "score": 1.0, + "content": "Residual architectures introduce shortcut connections between layers that are not next to each", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 640, + 505, + 654 + ], + "spans": [ + { + "bbox": [ + 105, + 640, + 505, + 654 + ], + "score": 1.0, + "content": "other. In order to minimize the ANN-SNN conversion loss various considerations were made by", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 105, + 652, + 505, + 664 + ], + "spans": [ + { + "bbox": [ + 105, + 652, + 505, + 664 + ], + "score": 1.0, + "content": "Sengupta et al. (2019). The original residual architecture proposed by He et al. (2016) uses an", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 105, + 662, + 506, + 676 + ], + "spans": [ + { + "bbox": [ + 105, + 662, + 283, + 676 + ], + "score": 1.0, + "content": "initial convolution layer with wide kernel", + "type": "text" + }, + { + "bbox": [ + 283, + 663, + 303, + 674 + ], + "score": 0.85, + "content": "( 7 \\times 7", + "type": "inline_equation" + }, + { + "bbox": [ + 304, + 662, + 506, + 676 + ], + "score": 1.0, + "content": ", stride 2). For conversion, this is replaced by a", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 105, + 673, + 505, + 687 + ], + "spans": [ + { + "bbox": [ + 105, + 673, + 390, + 687 + ], + "score": 1.0, + "content": "pre-processing block consisting of a series of three convolution layer", + "type": "text" + }, + { + "bbox": [ + 390, + 674, + 410, + 685 + ], + "score": 0.84, + "content": "( 3 \\times 3", + "type": "inline_equation" + }, + { + "bbox": [ + 411, + 673, + 505, + 687 + ], + "score": 1.0, + "content": ", stride 1) with dropout", + "type": "text" + } + ], + "index": 48 + }, + { + "bbox": [ + 105, + 685, + 505, + 698 + ], + "spans": [ + { + "bbox": [ + 105, + 685, + 505, + 698 + ], + "score": 1.0, + "content": "layer in between (Fig. 2). The threshold balancing mechanism is applied to only these three layers", + "type": "text" + } + ], + "index": 49 + }, + { + "bbox": [ + 105, + 696, + 322, + 708 + ], + "spans": [ + { + "bbox": [ + 105, + 696, + 322, + 708 + ], + "score": 1.0, + "content": "and the layers in the basic block have unity threshold.", + "type": "text" + } + ], + "index": 50 + } + ], + "index": 47 + } + ], + "page_idx": 6, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 118, + 721, + 397, + 732 + ], + "lines": [ + { + "bbox": [ + 118, + 717, + 397, + 736 + ], + "spans": [ + { + "bbox": [ + 118, + 717, + 358, + 736 + ], + "score": 1.0, + "content": "3input to a neuron is the weighted sum of spkies from pre-neurons", + "type": "text" + }, + { + "bbox": [ + 359, + 721, + 397, + 734 + ], + "score": 0.91, + "content": "\\sum _ { j } w _ { i j } o _ { j }", + "type": "inline_equation" + } + ] + } + ] + }, + { + "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": [ + 303, + 751, + 309, + 759 + ], + "lines": [ + { + "bbox": [ + 302, + 750, + 309, + 762 + ], + "spans": [ + { + "bbox": [ + 302, + 750, + 309, + 762 + ], + "score": 1.0, + "content": "7", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 107, + 82, + 505, + 170 + ], + "lines": [ + { + "bbox": [ + 106, + 83, + 505, + 95 + ], + "spans": [ + { + "bbox": [ + 106, + 83, + 505, + 95 + ], + "score": 1.0, + "content": "Algorithm 1 explains the ANN-SNN conversion process. The threshold voltages in SNN needs to", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 94, + 505, + 106 + ], + "spans": [ + { + "bbox": [ + 105, + 94, + 505, + 106 + ], + "score": 1.0, + "content": "be adjusted based on the ANN weights. Sengupta et al. (2019) showed two ways to achieve this:", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 106, + 105, + 505, + 117 + ], + "spans": [ + { + "bbox": [ + 106, + 105, + 505, + 117 + ], + "score": 1.0, + "content": "weight-normalization and threshold-balancing. In weight-normalization the weights are scaled by", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 116, + 505, + 128 + ], + "spans": [ + { + "bbox": [ + 105, + 116, + 505, + 128 + ], + "score": 1.0, + "content": "a normalization factor and threshold is set to 1, whereas in threshold-balancing the weights are", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 127, + 506, + 138 + ], + "spans": [ + { + "bbox": [ + 105, + 127, + 506, + 138 + ], + "score": 1.0, + "content": "unchanged and the threshold is set to the normalization factor. Both have a similar effect and either", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 137, + 505, + 149 + ], + "spans": [ + { + "bbox": [ + 105, + 137, + 505, + 149 + ], + "score": 1.0, + "content": "can be used to set the threshold. We employ the threshold-balancing method and the normalization", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 149, + 505, + 160 + ], + "spans": [ + { + "bbox": [ + 105, + 149, + 505, + 160 + ], + "score": 1.0, + "content": "factor is calculated as the maximum output of the corresponding convolution/linear layer in SNN.", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 158, + 397, + 173 + ], + "spans": [ + { + "bbox": [ + 105, + 158, + 397, + 173 + ], + "score": 1.0, + "content": "The maximum is calculated over a mini-batch of input for all time steps.", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 3.5, + "bbox_fs": [ + 105, + 83, + 506, + 173 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 176, + 356, + 396 + ], + "lines": [ + { + "bbox": [ + 106, + 176, + 357, + 188 + ], + "spans": [ + { + "bbox": [ + 106, + 176, + 357, + 188 + ], + "score": 1.0, + "content": "There are several constraints imposed on training the ANN", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 106, + 187, + 357, + 199 + ], + "spans": [ + { + "bbox": [ + 106, + 187, + 357, + 199 + ], + "score": 1.0, + "content": "for the conversion process (Sengupta et al., 2019; Diehl et al.,", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 106, + 198, + 357, + 209 + ], + "spans": [ + { + "bbox": [ + 106, + 198, + 357, + 209 + ], + "score": 1.0, + "content": "2015). The neurons are trained without the bias term because", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 106, + 209, + 357, + 221 + ], + "spans": [ + { + "bbox": [ + 106, + 209, + 357, + 221 + ], + "score": 1.0, + "content": "the bias term in SNN has an indirect effect on the threshold", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 219, + 357, + 233 + ], + "spans": [ + { + "bbox": [ + 105, + 219, + 357, + 233 + ], + "score": 1.0, + "content": "voltage which increases the difficulty of threshold balancing", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 106, + 230, + 357, + 243 + ], + "spans": [ + { + "bbox": [ + 106, + 230, + 357, + 243 + ], + "score": 1.0, + "content": "and the process becomes more prone to conversion loss. The", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 106, + 242, + 357, + 253 + ], + "spans": [ + { + "bbox": [ + 106, + 242, + 357, + 253 + ], + "score": 1.0, + "content": "absence of bias term eliminates the use of Batch Normalization", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 106, + 253, + 357, + 265 + ], + "spans": [ + { + "bbox": [ + 106, + 253, + 357, + 265 + ], + "score": 1.0, + "content": "(Ioffe & Szegedy, 2015) as a regularizer in ANN since it biases", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 264, + 357, + 276 + ], + "spans": [ + { + "bbox": [ + 105, + 264, + 357, + 276 + ], + "score": 1.0, + "content": "the input of each layer to have zero mean. As an alternative,", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 275, + 357, + 287 + ], + "spans": [ + { + "bbox": [ + 105, + 275, + 357, + 287 + ], + "score": 1.0, + "content": "Dropout (Srivastava et al., 2014) is used as a regularizer", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 285, + 358, + 298 + ], + "spans": [ + { + "bbox": [ + 105, + 285, + 358, + 298 + ], + "score": 1.0, + "content": "for both ANN and SNN training. The implementation of", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 296, + 357, + 309 + ], + "spans": [ + { + "bbox": [ + 105, + 296, + 357, + 309 + ], + "score": 1.0, + "content": "Dropout in SNN is further discussed in Section 5. The pooling", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 106, + 308, + 357, + 319 + ], + "spans": [ + { + "bbox": [ + 106, + 308, + 357, + 319 + ], + "score": 1.0, + "content": "operation is widely used in ANN to reduce the convolution", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 318, + 357, + 332 + ], + "spans": [ + { + "bbox": [ + 105, + 318, + 357, + 332 + ], + "score": 1.0, + "content": "map size. There are two popular variants: max pooling", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 106, + 330, + 357, + 342 + ], + "spans": [ + { + "bbox": [ + 106, + 330, + 357, + 342 + ], + "score": 1.0, + "content": "and average pooling (Boureau et al., 2010). Max (Average)", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 341, + 357, + 352 + ], + "spans": [ + { + "bbox": [ + 105, + 341, + 357, + 352 + ], + "score": 1.0, + "content": "pooling outputs the maximum (average) value in the kernel", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 351, + 357, + 363 + ], + "spans": [ + { + "bbox": [ + 105, + 351, + 357, + 363 + ], + "score": 1.0, + "content": "space of the neuron’s activations. In SNN, the activations are", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 362, + 357, + 375 + ], + "spans": [ + { + "bbox": [ + 105, + 362, + 357, + 375 + ], + "score": 1.0, + "content": "binary and performing max pooling will result in significant", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 106, + 373, + 357, + 386 + ], + "spans": [ + { + "bbox": [ + 106, + 373, + 357, + 386 + ], + "score": 1.0, + "content": "information loss for the next layer, so we adopt the average", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 384, + 318, + 397 + ], + "spans": [ + { + "bbox": [ + 105, + 384, + 318, + 397 + ], + "score": 1.0, + "content": "pooling for both ANN and SNN (Diehl et al., 2015).", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 17.5, + "bbox_fs": [ + 105, + 176, + 358, + 397 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 415, + 269, + 428 + ], + "lines": [ + { + "bbox": [ + 105, + 414, + 272, + 429 + ], + "spans": [ + { + "bbox": [ + 105, + 414, + 272, + 429 + ], + "score": 1.0, + "content": "4 NETWORK ARCHITECTURES", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 29 + }, + { + "type": "image", + "bbox": [ + 365, + 189, + 505, + 421 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 365, + 189, + 505, + 421 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 365, + 189, + 505, + 421 + ], + "spans": [ + { + "bbox": [ + 365, + 189, + 505, + 421 + ], + "score": 0.966, + "type": "image", + "image_path": "31821489c1dc4301bde516e227360d788e26a0deac85ccef825dbbbadc225416.jpg" + } + ] + } + ], + "index": 28, + "virtual_lines": [ + { + "bbox": [ + 365, + 189, + 505, + 421 + ], + "spans": [], + "index": 28 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 364, + 443, + 504, + 464 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 363, + 443, + 505, + 454 + ], + "spans": [ + { + "bbox": [ + 363, + 443, + 505, + 454 + ], + "score": 1.0, + "content": "Figure 2: Residual architecture for", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 363, + 453, + 388, + 465 + ], + "spans": [ + { + "bbox": [ + 363, + 453, + 388, + 465 + ], + "score": 1.0, + "content": "SNN", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 34.5 + } + ], + "index": 31.25 + }, + { + "type": "text", + "bbox": [ + 107, + 442, + 356, + 486 + ], + "lines": [ + { + "bbox": [ + 105, + 442, + 357, + 453 + ], + "spans": [ + { + "bbox": [ + 105, + 442, + 357, + 453 + ], + "score": 1.0, + "content": "In this section, we describe the changes made to the VGG", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 452, + 357, + 465 + ], + "spans": [ + { + "bbox": [ + 105, + 452, + 357, + 465 + ], + "score": 1.0, + "content": "(Simonyan & Zisserman, 2014) and residual architecture (He", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 464, + 357, + 477 + ], + "spans": [ + { + "bbox": [ + 105, + 464, + 357, + 477 + ], + "score": 1.0, + "content": "et al., 2016) for hybrid learning and discuss the process of", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 106, + 475, + 304, + 487 + ], + "spans": [ + { + "bbox": [ + 106, + 475, + 304, + 487 + ], + "score": 1.0, + "content": "threshold computation for both the architectures.", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 31.5, + "bbox_fs": [ + 105, + 442, + 357, + 487 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 503, + 225, + 514 + ], + "lines": [ + { + "bbox": [ + 105, + 502, + 227, + 516 + ], + "spans": [ + { + "bbox": [ + 105, + 502, + 227, + 516 + ], + "score": 1.0, + "content": "4.1 VGG ARCHITECTURE", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 36 + }, + { + "type": "text", + "bbox": [ + 107, + 525, + 505, + 591 + ], + "lines": [ + { + "bbox": [ + 106, + 525, + 505, + 538 + ], + "spans": [ + { + "bbox": [ + 106, + 525, + 505, + 538 + ], + "score": 1.0, + "content": "The threshold balancing is performed for all layers except the input and output layer in a VGG", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 536, + 506, + 549 + ], + "spans": [ + { + "bbox": [ + 105, + 536, + 506, + 549 + ], + "score": 1.0, + "content": "architecture. For every hidden convolution/linear layer the maximum input3 to the neuron is", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 547, + 505, + 559 + ], + "spans": [ + { + "bbox": [ + 105, + 547, + 505, + 559 + ], + "score": 1.0, + "content": "computed over all time steps and set as threshold for that layer. The threshold assignment is", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 106, + 559, + 505, + 570 + ], + "spans": [ + { + "bbox": [ + 106, + 559, + 505, + 570 + ], + "score": 1.0, + "content": "done sequentially as described in Algorithm 1. The threshold computation for all layers can not", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 106, + 569, + 505, + 581 + ], + "spans": [ + { + "bbox": [ + 106, + 569, + 505, + 581 + ], + "score": 1.0, + "content": "be performed in parallel (in one forward pass) because in the forward method (Algorithm 3) we", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 580, + 424, + 592 + ], + "spans": [ + { + "bbox": [ + 105, + 580, + 424, + 592 + ], + "score": 1.0, + "content": "need the threshold at each time step to decide if the neuron should spike or not.", + "type": "text" + } + ], + "index": 42 + } + ], + "index": 39.5, + "bbox_fs": [ + 105, + 525, + 506, + 592 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 608, + 246, + 619 + ], + "lines": [ + { + "bbox": [ + 106, + 608, + 248, + 620 + ], + "spans": [ + { + "bbox": [ + 106, + 608, + 248, + 620 + ], + "score": 1.0, + "content": "4.2 RESIDUAL ARCHITECTURE", + "type": "text" + } + ], + "index": 43 + } + ], + "index": 43 + }, + { + "type": "text", + "bbox": [ + 107, + 630, + 505, + 707 + ], + "lines": [ + { + "bbox": [ + 105, + 629, + 505, + 642 + ], + "spans": [ + { + "bbox": [ + 105, + 629, + 505, + 642 + ], + "score": 1.0, + "content": "Residual architectures introduce shortcut connections between layers that are not next to each", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 640, + 505, + 654 + ], + "spans": [ + { + "bbox": [ + 105, + 640, + 505, + 654 + ], + "score": 1.0, + "content": "other. In order to minimize the ANN-SNN conversion loss various considerations were made by", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 105, + 652, + 505, + 664 + ], + "spans": [ + { + "bbox": [ + 105, + 652, + 505, + 664 + ], + "score": 1.0, + "content": "Sengupta et al. (2019). The original residual architecture proposed by He et al. (2016) uses an", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 105, + 662, + 506, + 676 + ], + "spans": [ + { + "bbox": [ + 105, + 662, + 283, + 676 + ], + "score": 1.0, + "content": "initial convolution layer with wide kernel", + "type": "text" + }, + { + "bbox": [ + 283, + 663, + 303, + 674 + ], + "score": 0.85, + "content": "( 7 \\times 7", + "type": "inline_equation" + }, + { + "bbox": [ + 304, + 662, + 506, + 676 + ], + "score": 1.0, + "content": ", stride 2). For conversion, this is replaced by a", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 105, + 673, + 505, + 687 + ], + "spans": [ + { + "bbox": [ + 105, + 673, + 390, + 687 + ], + "score": 1.0, + "content": "pre-processing block consisting of a series of three convolution layer", + "type": "text" + }, + { + "bbox": [ + 390, + 674, + 410, + 685 + ], + "score": 0.84, + "content": "( 3 \\times 3", + "type": "inline_equation" + }, + { + "bbox": [ + 411, + 673, + 505, + 687 + ], + "score": 1.0, + "content": ", stride 1) with dropout", + "type": "text" + } + ], + "index": 48 + }, + { + "bbox": [ + 105, + 685, + 505, + 698 + ], + "spans": [ + { + "bbox": [ + 105, + 685, + 505, + 698 + ], + "score": 1.0, + "content": "layer in between (Fig. 2). The threshold balancing mechanism is applied to only these three layers", + "type": "text" + } + ], + "index": 49 + }, + { + "bbox": [ + 105, + 696, + 322, + 708 + ], + "spans": [ + { + "bbox": [ + 105, + 696, + 322, + 708 + ], + "score": 1.0, + "content": "and the layers in the basic block have unity threshold.", + "type": "text" + } + ], + "index": 50 + } + ], + "index": 47, + "bbox_fs": [ + 105, + 629, + 506, + 708 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "table", + "bbox": [ + 106, + 160, + 505, + 387 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 106, + 88, + 505, + 155 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 89, + 505, + 102 + ], + "spans": [ + { + "bbox": [ + 106, + 89, + 505, + 102 + ], + "score": 1.0, + "content": "Table 1: Classification results (Top-1) for CIFAR10, CIFAR100 and ImageNet data sets. Column-1", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 99, + 505, + 113 + ], + "spans": [ + { + "bbox": [ + 105, + 99, + 505, + 113 + ], + "score": 1.0, + "content": "shows the network architecture. Column-2 shows the ANN accuracy when trained under the", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 111, + 505, + 124 + ], + "spans": [ + { + "bbox": [ + 105, + 111, + 432, + 124 + ], + "score": 1.0, + "content": "constraints as described in Section 3. Column-3 shows the SNN accuracy for", + "type": "text" + }, + { + "bbox": [ + 432, + 111, + 479, + 122 + ], + "score": 0.9, + "content": "T \\ : = \\ : 2 5 0 0", + "type": "inline_equation" + }, + { + "bbox": [ + 479, + 111, + 505, + 124 + ], + "score": 1.0, + "content": "when", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 122, + 505, + 135 + ], + "spans": [ + { + "bbox": [ + 105, + 122, + 505, + 135 + ], + "score": 1.0, + "content": "converted from a ANN with threshold balancing. Column-4 shows the performance of the same", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 104, + 132, + 506, + 147 + ], + "spans": [ + { + "bbox": [ + 104, + 132, + 506, + 147 + ], + "score": 1.0, + "content": "converted SNN with lower time steps and adjusted thresholds. Column-5 shows the performance", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 144, + 397, + 157 + ], + "spans": [ + { + "bbox": [ + 105, + 144, + 397, + 157 + ], + "score": 1.0, + "content": "after training the Column-4 network with STDB for less than 20 epochs.", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 2.5 + }, + { + "type": "table_body", + "bbox": [ + 106, + 160, + 505, + 387 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 160, + 505, + 387 + ], + "spans": [ + { + "bbox": [ + 106, + 160, + 505, + 387 + ], + "score": 0.978, + "html": "
ArchitectureANNANN-SNNConversion(T = 2500)ANN-SNNConversion (reduced time steps)Hybrid Training(ANN-SNN Conversion+ STDB)
CIFAR10
VGG587.88%87.64%84.56% (T = 75)86.91% (T = 75)
VGG991.45%90.98%87.31% (T = 100)90.54% (T = 100)
VGG1692.81%92.48%90.2% (T = 100)91.13% (T = 100)
ResNet891.35%91.12%89.5% (T = 200)91.35% (T = 200)
ResNet2093.15%92.94%91.12% (T = 250)92.22% (T = 250)
CIFAR100
VGG1171.21%70.94%65.52% (T = 125)67.87% (T = 125)
ImageNet
ResNet3470.2%65.1%56.87% (T = 250)61.48% (T = 250)
VGG1669.35%68.12%62.73% (T= 250)65.19% (T = 250)
", + "type": "table", + "image_path": "4d6960da6d2ab1ef250ec4c809150250b2409864fcbf88a1f373de46cc253a99.jpg" + } + ] + } + ], + "index": 7, + "virtual_lines": [ + { + "bbox": [ + 106, + 160, + 505, + 235.66666666666669 + ], + "spans": [], + "index": 6 + }, + { + "bbox": [ + 106, + 235.66666666666669, + 505, + 311.33333333333337 + ], + "spans": [], + "index": 7 + }, + { + "bbox": [ + 106, + 311.33333333333337, + 505, + 387.00000000000006 + ], + "spans": [], + "index": 8 + } + ] + } + ], + "index": 4.75 + }, + { + "type": "title", + "bbox": [ + 107, + 391, + 299, + 404 + ], + "lines": [ + { + "bbox": [ + 104, + 389, + 301, + 407 + ], + "spans": [ + { + "bbox": [ + 104, + 389, + 301, + 407 + ], + "score": 1.0, + "content": "5 OVERALL TRAINING ALGORITHM", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 9 + }, + { + "type": "text", + "bbox": [ + 106, + 416, + 505, + 668 + ], + "lines": [ + { + "bbox": [ + 106, + 416, + 505, + 429 + ], + "spans": [ + { + "bbox": [ + 106, + 416, + 505, + 429 + ], + "score": 1.0, + "content": "Algorithm 1 defines the process to initialize the parameters (weights, thresholds) of SNN based on", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 427, + 504, + 439 + ], + "spans": [ + { + "bbox": [ + 105, + 427, + 504, + 439 + ], + "score": 1.0, + "content": "ANN-SNN conversion. Algorithm 2 and 3 show the mechanism of training the SNN with STDB.", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 438, + 505, + 450 + ], + "spans": [ + { + "bbox": [ + 105, + 438, + 505, + 450 + ], + "score": 1.0, + "content": "Algorithm 2 initializes the neuron parameters for every mini-batch, whereas Algorithm 3 performs", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 104, + 448, + 505, + 462 + ], + "spans": [ + { + "bbox": [ + 104, + 448, + 505, + 462 + ], + "score": 1.0, + "content": "the forward and backward propagation and computes the credit assignment. The threshold voltage", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 459, + 505, + 473 + ], + "spans": [ + { + "bbox": [ + 105, + 459, + 505, + 473 + ], + "score": 1.0, + "content": "for all neurons in a layer is same and is not altered in the training process. For each dropout layer we", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 104, + 470, + 506, + 485 + ], + "spans": [ + { + "bbox": [ + 104, + 470, + 177, + 485 + ], + "score": 1.0, + "content": "initialize a mask", + "type": "text" + }, + { + "bbox": [ + 177, + 471, + 194, + 482 + ], + "score": 0.59, + "content": "( M )", + "type": "inline_equation" + }, + { + "bbox": [ + 194, + 470, + 506, + 485 + ], + "score": 1.0, + "content": "for every mini-batch of inputs. The function of dropout is to randomly drop", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 482, + 505, + 495 + ], + "spans": [ + { + "bbox": [ + 105, + 482, + 505, + 495 + ], + "score": 1.0, + "content": "a certain number of inputs in order to avoid overfitting. In case of SNN, inputs are represented as", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 104, + 492, + 506, + 507 + ], + "spans": [ + { + "bbox": [ + 104, + 492, + 506, + 507 + ], + "score": 1.0, + "content": "a spike train and we want to keep the dropout units same for the entire duration of the input. Thus,", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 504, + 506, + 516 + ], + "spans": [ + { + "bbox": [ + 105, + 504, + 171, + 516 + ], + "score": 1.0, + "content": "a random mask", + "type": "text" + }, + { + "bbox": [ + 171, + 504, + 189, + 515 + ], + "score": 0.66, + "content": "( M )", + "type": "inline_equation" + }, + { + "bbox": [ + 189, + 504, + 506, + 516 + ], + "score": 1.0, + "content": "is initialized (Algorithm 2) for every mini-batch and the input is element-wise", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 514, + 506, + 528 + ], + "spans": [ + { + "bbox": [ + 105, + 514, + 506, + 528 + ], + "score": 1.0, + "content": "multiplied with the mask to generate the output of the dropout layer (Lee et al., 2019). The Poisson", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 525, + 505, + 538 + ], + "spans": [ + { + "bbox": [ + 105, + 525, + 505, + 538 + ], + "score": 1.0, + "content": "generator function outputs a Poisson spike train with rate proportional to the pixel value in the input.", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 106, + 537, + 505, + 549 + ], + "spans": [ + { + "bbox": [ + 106, + 537, + 505, + 549 + ], + "score": 1.0, + "content": "A random number is generated at every time step for each pixel in the input image. The random", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 548, + 505, + 560 + ], + "spans": [ + { + "bbox": [ + 105, + 548, + 505, + 560 + ], + "score": 1.0, + "content": "number is compared with the normalized pixel value and if the random number is less than the", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 106, + 559, + 506, + 572 + ], + "spans": [ + { + "bbox": [ + 106, + 559, + 506, + 572 + ], + "score": 1.0, + "content": "pixel value an output spike is generated. This results in a Poisson spike train with rate equivalent", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 570, + 505, + 582 + ], + "spans": [ + { + "bbox": [ + 105, + 570, + 505, + 582 + ], + "score": 1.0, + "content": "to the pixel value if averaged over a long time. The weighted sum of the input is accumulated in", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 580, + 505, + 593 + ], + "spans": [ + { + "bbox": [ + 105, + 580, + 505, + 593 + ], + "score": 1.0, + "content": "the membrane potential of the first convolution layer. The STDB function compares the membrane", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 591, + 506, + 605 + ], + "spans": [ + { + "bbox": [ + 105, + 591, + 506, + 605 + ], + "score": 1.0, + "content": "potential and the threshold of that layer to generate an output spike. The neurons that output a spike", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 602, + 505, + 615 + ], + "spans": [ + { + "bbox": [ + 105, + 602, + 219, + 615 + ], + "score": 1.0, + "content": "their corresponding entry in", + "type": "text" + }, + { + "bbox": [ + 219, + 603, + 227, + 612 + ], + "score": 0.77, + "content": "S", + "type": "inline_equation" + }, + { + "bbox": [ + 228, + 602, + 505, + 615 + ], + "score": 1.0, + "content": "is updated with current time step (t). The last spike time is initialized", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 106, + 614, + 505, + 627 + ], + "spans": [ + { + "bbox": [ + 106, + 614, + 505, + 627 + ], + "score": 1.0, + "content": "with a large negative number (Algorithm 2) to denote that at the beginning the last spike happened", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 625, + 505, + 637 + ], + "spans": [ + { + "bbox": [ + 105, + 625, + 505, + 637 + ], + "score": 1.0, + "content": "at negative infinity time. This is repeated for all layers until the last layer. For last layer the inputs", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 636, + 505, + 647 + ], + "spans": [ + { + "bbox": [ + 105, + 636, + 505, + 647 + ], + "score": 1.0, + "content": "are accumulated over all time steps and passed through a softmax layer to compute the multi-class", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 646, + 505, + 659 + ], + "spans": [ + { + "bbox": [ + 105, + 646, + 505, + 659 + ], + "score": 1.0, + "content": "probability. The cross-entropy loss function is defined on the output of the softmax and the weights", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 658, + 501, + 669 + ], + "spans": [ + { + "bbox": [ + 105, + 658, + 501, + 669 + ], + "score": 1.0, + "content": "are updated by performing the temporal and spatial credit assignment according to the STDB rule.", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 21 + }, + { + "type": "title", + "bbox": [ + 108, + 685, + 200, + 697 + ], + "lines": [ + { + "bbox": [ + 105, + 683, + 202, + 699 + ], + "spans": [ + { + "bbox": [ + 105, + 683, + 202, + 699 + ], + "score": 1.0, + "content": "6 EXPERIMENTS", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 33 + }, + { + "type": "text", + "bbox": [ + 107, + 709, + 504, + 731 + ], + "lines": [ + { + "bbox": [ + 105, + 708, + 505, + 723 + ], + "spans": [ + { + "bbox": [ + 105, + 708, + 505, + 723 + ], + "score": 1.0, + "content": "We tested the proposed training mechanism on image classification tasks from CIFAR (Krizhevsky", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 721, + 505, + 732 + ], + "spans": [ + { + "bbox": [ + 105, + 721, + 505, + 732 + ], + "score": 1.0, + "content": "et al., 2009) and ImageNet (Deng et al., 2009) datasets. The results are summarized in Table 1.", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 34.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 2020", + "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": [ + 106, + 160, + 505, + 387 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 106, + 88, + 505, + 155 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 89, + 505, + 102 + ], + "spans": [ + { + "bbox": [ + 106, + 89, + 505, + 102 + ], + "score": 1.0, + "content": "Table 1: Classification results (Top-1) for CIFAR10, CIFAR100 and ImageNet data sets. Column-1", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 99, + 505, + 113 + ], + "spans": [ + { + "bbox": [ + 105, + 99, + 505, + 113 + ], + "score": 1.0, + "content": "shows the network architecture. Column-2 shows the ANN accuracy when trained under the", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 111, + 505, + 124 + ], + "spans": [ + { + "bbox": [ + 105, + 111, + 432, + 124 + ], + "score": 1.0, + "content": "constraints as described in Section 3. Column-3 shows the SNN accuracy for", + "type": "text" + }, + { + "bbox": [ + 432, + 111, + 479, + 122 + ], + "score": 0.9, + "content": "T \\ : = \\ : 2 5 0 0", + "type": "inline_equation" + }, + { + "bbox": [ + 479, + 111, + 505, + 124 + ], + "score": 1.0, + "content": "when", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 122, + 505, + 135 + ], + "spans": [ + { + "bbox": [ + 105, + 122, + 505, + 135 + ], + "score": 1.0, + "content": "converted from a ANN with threshold balancing. Column-4 shows the performance of the same", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 104, + 132, + 506, + 147 + ], + "spans": [ + { + "bbox": [ + 104, + 132, + 506, + 147 + ], + "score": 1.0, + "content": "converted SNN with lower time steps and adjusted thresholds. Column-5 shows the performance", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 144, + 397, + 157 + ], + "spans": [ + { + "bbox": [ + 105, + 144, + 397, + 157 + ], + "score": 1.0, + "content": "after training the Column-4 network with STDB for less than 20 epochs.", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 2.5 + }, + { + "type": "table_body", + "bbox": [ + 106, + 160, + 505, + 387 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 160, + 505, + 387 + ], + "spans": [ + { + "bbox": [ + 106, + 160, + 505, + 387 + ], + "score": 0.978, + "html": "
ArchitectureANNANN-SNNConversion(T = 2500)ANN-SNNConversion (reduced time steps)Hybrid Training(ANN-SNN Conversion+ STDB)
CIFAR10
VGG587.88%87.64%84.56% (T = 75)86.91% (T = 75)
VGG991.45%90.98%87.31% (T = 100)90.54% (T = 100)
VGG1692.81%92.48%90.2% (T = 100)91.13% (T = 100)
ResNet891.35%91.12%89.5% (T = 200)91.35% (T = 200)
ResNet2093.15%92.94%91.12% (T = 250)92.22% (T = 250)
CIFAR100
VGG1171.21%70.94%65.52% (T = 125)67.87% (T = 125)
ImageNet
ResNet3470.2%65.1%56.87% (T = 250)61.48% (T = 250)
VGG1669.35%68.12%62.73% (T= 250)65.19% (T = 250)
", + "type": "table", + "image_path": "4d6960da6d2ab1ef250ec4c809150250b2409864fcbf88a1f373de46cc253a99.jpg" + } + ] + } + ], + "index": 7, + "virtual_lines": [ + { + "bbox": [ + 106, + 160, + 505, + 235.66666666666669 + ], + "spans": [], + "index": 6 + }, + { + "bbox": [ + 106, + 235.66666666666669, + 505, + 311.33333333333337 + ], + "spans": [], + "index": 7 + }, + { + "bbox": [ + 106, + 311.33333333333337, + 505, + 387.00000000000006 + ], + "spans": [], + "index": 8 + } + ] + } + ], + "index": 4.75 + }, + { + "type": "title", + "bbox": [ + 107, + 391, + 299, + 404 + ], + "lines": [ + { + "bbox": [ + 104, + 389, + 301, + 407 + ], + "spans": [ + { + "bbox": [ + 104, + 389, + 301, + 407 + ], + "score": 1.0, + "content": "5 OVERALL TRAINING ALGORITHM", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 9 + }, + { + "type": "text", + "bbox": [ + 106, + 416, + 505, + 668 + ], + "lines": [ + { + "bbox": [ + 106, + 416, + 505, + 429 + ], + "spans": [ + { + "bbox": [ + 106, + 416, + 505, + 429 + ], + "score": 1.0, + "content": "Algorithm 1 defines the process to initialize the parameters (weights, thresholds) of SNN based on", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 427, + 504, + 439 + ], + "spans": [ + { + "bbox": [ + 105, + 427, + 504, + 439 + ], + "score": 1.0, + "content": "ANN-SNN conversion. Algorithm 2 and 3 show the mechanism of training the SNN with STDB.", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 438, + 505, + 450 + ], + "spans": [ + { + "bbox": [ + 105, + 438, + 505, + 450 + ], + "score": 1.0, + "content": "Algorithm 2 initializes the neuron parameters for every mini-batch, whereas Algorithm 3 performs", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 104, + 448, + 505, + 462 + ], + "spans": [ + { + "bbox": [ + 104, + 448, + 505, + 462 + ], + "score": 1.0, + "content": "the forward and backward propagation and computes the credit assignment. The threshold voltage", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 459, + 505, + 473 + ], + "spans": [ + { + "bbox": [ + 105, + 459, + 505, + 473 + ], + "score": 1.0, + "content": "for all neurons in a layer is same and is not altered in the training process. For each dropout layer we", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 104, + 470, + 506, + 485 + ], + "spans": [ + { + "bbox": [ + 104, + 470, + 177, + 485 + ], + "score": 1.0, + "content": "initialize a mask", + "type": "text" + }, + { + "bbox": [ + 177, + 471, + 194, + 482 + ], + "score": 0.59, + "content": "( M )", + "type": "inline_equation" + }, + { + "bbox": [ + 194, + 470, + 506, + 485 + ], + "score": 1.0, + "content": "for every mini-batch of inputs. The function of dropout is to randomly drop", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 482, + 505, + 495 + ], + "spans": [ + { + "bbox": [ + 105, + 482, + 505, + 495 + ], + "score": 1.0, + "content": "a certain number of inputs in order to avoid overfitting. In case of SNN, inputs are represented as", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 104, + 492, + 506, + 507 + ], + "spans": [ + { + "bbox": [ + 104, + 492, + 506, + 507 + ], + "score": 1.0, + "content": "a spike train and we want to keep the dropout units same for the entire duration of the input. Thus,", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 504, + 506, + 516 + ], + "spans": [ + { + "bbox": [ + 105, + 504, + 171, + 516 + ], + "score": 1.0, + "content": "a random mask", + "type": "text" + }, + { + "bbox": [ + 171, + 504, + 189, + 515 + ], + "score": 0.66, + "content": "( M )", + "type": "inline_equation" + }, + { + "bbox": [ + 189, + 504, + 506, + 516 + ], + "score": 1.0, + "content": "is initialized (Algorithm 2) for every mini-batch and the input is element-wise", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 514, + 506, + 528 + ], + "spans": [ + { + "bbox": [ + 105, + 514, + 506, + 528 + ], + "score": 1.0, + "content": "multiplied with the mask to generate the output of the dropout layer (Lee et al., 2019). The Poisson", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 525, + 505, + 538 + ], + "spans": [ + { + "bbox": [ + 105, + 525, + 505, + 538 + ], + "score": 1.0, + "content": "generator function outputs a Poisson spike train with rate proportional to the pixel value in the input.", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 106, + 537, + 505, + 549 + ], + "spans": [ + { + "bbox": [ + 106, + 537, + 505, + 549 + ], + "score": 1.0, + "content": "A random number is generated at every time step for each pixel in the input image. The random", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 548, + 505, + 560 + ], + "spans": [ + { + "bbox": [ + 105, + 548, + 505, + 560 + ], + "score": 1.0, + "content": "number is compared with the normalized pixel value and if the random number is less than the", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 106, + 559, + 506, + 572 + ], + "spans": [ + { + "bbox": [ + 106, + 559, + 506, + 572 + ], + "score": 1.0, + "content": "pixel value an output spike is generated. This results in a Poisson spike train with rate equivalent", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 570, + 505, + 582 + ], + "spans": [ + { + "bbox": [ + 105, + 570, + 505, + 582 + ], + "score": 1.0, + "content": "to the pixel value if averaged over a long time. The weighted sum of the input is accumulated in", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 580, + 505, + 593 + ], + "spans": [ + { + "bbox": [ + 105, + 580, + 505, + 593 + ], + "score": 1.0, + "content": "the membrane potential of the first convolution layer. The STDB function compares the membrane", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 591, + 506, + 605 + ], + "spans": [ + { + "bbox": [ + 105, + 591, + 506, + 605 + ], + "score": 1.0, + "content": "potential and the threshold of that layer to generate an output spike. The neurons that output a spike", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 602, + 505, + 615 + ], + "spans": [ + { + "bbox": [ + 105, + 602, + 219, + 615 + ], + "score": 1.0, + "content": "their corresponding entry in", + "type": "text" + }, + { + "bbox": [ + 219, + 603, + 227, + 612 + ], + "score": 0.77, + "content": "S", + "type": "inline_equation" + }, + { + "bbox": [ + 228, + 602, + 505, + 615 + ], + "score": 1.0, + "content": "is updated with current time step (t). The last spike time is initialized", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 106, + 614, + 505, + 627 + ], + "spans": [ + { + "bbox": [ + 106, + 614, + 505, + 627 + ], + "score": 1.0, + "content": "with a large negative number (Algorithm 2) to denote that at the beginning the last spike happened", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 625, + 505, + 637 + ], + "spans": [ + { + "bbox": [ + 105, + 625, + 505, + 637 + ], + "score": 1.0, + "content": "at negative infinity time. This is repeated for all layers until the last layer. For last layer the inputs", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 636, + 505, + 647 + ], + "spans": [ + { + "bbox": [ + 105, + 636, + 505, + 647 + ], + "score": 1.0, + "content": "are accumulated over all time steps and passed through a softmax layer to compute the multi-class", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 646, + 505, + 659 + ], + "spans": [ + { + "bbox": [ + 105, + 646, + 505, + 659 + ], + "score": 1.0, + "content": "probability. The cross-entropy loss function is defined on the output of the softmax and the weights", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 658, + 501, + 669 + ], + "spans": [ + { + "bbox": [ + 105, + 658, + 501, + 669 + ], + "score": 1.0, + "content": "are updated by performing the temporal and spatial credit assignment according to the STDB rule.", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 21, + "bbox_fs": [ + 104, + 416, + 506, + 669 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 685, + 200, + 697 + ], + "lines": [ + { + "bbox": [ + 105, + 683, + 202, + 699 + ], + "spans": [ + { + "bbox": [ + 105, + 683, + 202, + 699 + ], + "score": 1.0, + "content": "6 EXPERIMENTS", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 33 + }, + { + "type": "text", + "bbox": [ + 107, + 709, + 504, + 731 + ], + "lines": [ + { + "bbox": [ + 105, + 708, + 505, + 723 + ], + "spans": [ + { + "bbox": [ + 105, + 708, + 505, + 723 + ], + "score": 1.0, + "content": "We tested the proposed training mechanism on image classification tasks from CIFAR (Krizhevsky", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 721, + 505, + 732 + ], + "spans": [ + { + "bbox": [ + 105, + 721, + 505, + 732 + ], + "score": 1.0, + "content": "et al., 2009) and ImageNet (Deng et al., 2009) datasets. The results are summarized in Table 1.", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 34.5, + "bbox_fs": [ + 105, + 708, + 505, + 732 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "image", + "bbox": [ + 165, + 82, + 443, + 245 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 165, + 82, + 443, + 245 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 165, + 82, + 443, + 245 + ], + "spans": [ + { + "bbox": [ + 165, + 82, + 443, + 245 + ], + "score": 0.974, + "type": "image", + "image_path": "e3e63b533127c274de9937dff4bafa08dd1a34b21cf2cf9cdff0fbbaa024595c.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 165, + 82, + 443, + 136.33333333333334 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 165, + 136.33333333333334, + 443, + 190.66666666666669 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 165, + 190.66666666666669, + 443, + 245.00000000000003 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 249, + 505, + 304 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 248, + 505, + 260 + ], + "spans": [ + { + "bbox": [ + 106, + 248, + 505, + 260 + ], + "score": 1.0, + "content": "Figure 3: Average number of spikes for each layer in a VGG16 architecture for purely converted", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 106, + 260, + 505, + 272 + ], + "spans": [ + { + "bbox": [ + 106, + 260, + 505, + 272 + ], + "score": 1.0, + "content": "SNN and SNN trained with hybrid technique. The converted SNN and SNN trained with hybrid", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 270, + 505, + 283 + ], + "spans": [ + { + "bbox": [ + 105, + 270, + 240, + 283 + ], + "score": 1.0, + "content": "technique achieve an accuracy of", + "type": "text" + }, + { + "bbox": [ + 241, + 271, + 273, + 281 + ], + "score": 0.89, + "content": "8 9 . 2 0 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 273, + 270, + 290, + 283 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 291, + 271, + 322, + 281 + ], + "score": 0.88, + "content": "9 1 . 8 7 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 323, + 270, + 505, + 283 + ], + "score": 1.0, + "content": ", respectively, for the randomly selected 1500", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 106, + 282, + 506, + 295 + ], + "spans": [ + { + "bbox": [ + 106, + 282, + 434, + 295 + ], + "score": 1.0, + "content": "samples from the test set. Both the networks were inferred for 100 time steps and", + "type": "text" + }, + { + "bbox": [ + 434, + 282, + 446, + 292 + ], + "score": 0.41, + "content": "\\mathbf { \\epsilon } \\cdot \\mathbf { \\gamma } _ { \\mathbf { V } } \\mathbf { \\epsilon } )", + "type": "inline_equation" + }, + { + "bbox": [ + 446, + 282, + 506, + 295 + ], + "score": 1.0, + "content": "represents the", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 106, + 293, + 453, + 305 + ], + "spans": [ + { + "bbox": [ + 106, + 293, + 453, + 305 + ], + "score": 1.0, + "content": "threshold voltage for each layer obtained during the conversion process (Algorithm 1).", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 5 + } + ], + "index": 3.0 + }, + { + "type": "text", + "bbox": [ + 106, + 315, + 503, + 338 + ], + "lines": [ + { + "bbox": [ + 106, + 314, + 505, + 329 + ], + "spans": [ + { + "bbox": [ + 106, + 314, + 505, + 329 + ], + "score": 1.0, + "content": "CIFAR10: The dataset consists of labeled 60, 000 images of 10 categories divided into training", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 106, + 326, + 451, + 339 + ], + "spans": [ + { + "bbox": [ + 106, + 326, + 338, + 339 + ], + "score": 1.0, + "content": "(50, 000) and testing (10, 000) set. The images are of size", + "type": "text" + }, + { + "bbox": [ + 338, + 327, + 367, + 337 + ], + "score": 0.89, + "content": "3 2 \\times 3 2", + "type": "inline_equation" + }, + { + "bbox": [ + 368, + 326, + 451, + 339 + ], + "score": 1.0, + "content": "with RGB channels.", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 8.5 + }, + { + "type": "text", + "bbox": [ + 107, + 343, + 426, + 355 + ], + "lines": [ + { + "bbox": [ + 105, + 341, + 428, + 357 + ], + "spans": [ + { + "bbox": [ + 105, + 341, + 428, + 357 + ], + "score": 1.0, + "content": "CIFAR100: The dataset is similar to CIFAR10 except that it has 100 categories.", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 10 + }, + { + "type": "text", + "bbox": [ + 106, + 360, + 504, + 383 + ], + "lines": [ + { + "bbox": [ + 106, + 360, + 505, + 373 + ], + "spans": [ + { + "bbox": [ + 106, + 360, + 505, + 373 + ], + "score": 1.0, + "content": "ImageNet: The dataset comprises of labeled high-resolution 1.2 million training images and 50, 000", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 106, + 371, + 267, + 384 + ], + "spans": [ + { + "bbox": [ + 106, + 371, + 267, + 384 + ], + "score": 1.0, + "content": "validation images with 1000 categories.", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 11.5 + }, + { + "type": "title", + "bbox": [ + 108, + 399, + 369, + 412 + ], + "lines": [ + { + "bbox": [ + 105, + 398, + 370, + 414 + ], + "spans": [ + { + "bbox": [ + 105, + 398, + 370, + 414 + ], + "score": 1.0, + "content": "7 ENERGY-DELAY PRODUCT ANALYSIS OF SNNS", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 13 + }, + { + "type": "text", + "bbox": [ + 106, + 425, + 505, + 568 + ], + "lines": [ + { + "bbox": [ + 106, + 425, + 505, + 439 + ], + "spans": [ + { + "bbox": [ + 106, + 425, + 505, + 439 + ], + "score": 1.0, + "content": "A single spike in an SNN consumes a constant amount of energy (Cao et al., 2015). The first order", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 436, + 505, + 449 + ], + "spans": [ + { + "bbox": [ + 105, + 436, + 505, + 449 + ], + "score": 1.0, + "content": "analysis of energy-delay product of an SNN is dependent on the number of spikes and the total", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 447, + 506, + 461 + ], + "spans": [ + { + "bbox": [ + 105, + 447, + 506, + 461 + ], + "score": 1.0, + "content": "number of time steps. Fig. 3 shows the average number of spikes in each layer when evaluated for", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 456, + 506, + 473 + ], + "spans": [ + { + "bbox": [ + 105, + 456, + 506, + 473 + ], + "score": 1.0, + "content": "1500 samples from CIFAR10 testset for VGG16 architecture. The average is computed by summing", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 106, + 469, + 506, + 482 + ], + "spans": [ + { + "bbox": [ + 106, + 469, + 506, + 482 + ], + "score": 1.0, + "content": "all the spikes in a layer over 100 time steps and dividing by the number of neurons in that layer. For", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 479, + 506, + 493 + ], + "spans": [ + { + "bbox": [ + 105, + 479, + 289, + 493 + ], + "score": 1.0, + "content": "example, the average number of spikes in the", + "type": "text" + }, + { + "bbox": [ + 289, + 479, + 308, + 491 + ], + "score": 0.9, + "content": "1 0 ^ { t h }", + "type": "inline_equation" + }, + { + "bbox": [ + 308, + 479, + 506, + 493 + ], + "score": 1.0, + "content": "layer is 5.8 for both the networks, which implies", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 106, + 491, + 506, + 504 + ], + "spans": [ + { + "bbox": [ + 106, + 491, + 506, + 504 + ], + "score": 1.0, + "content": "that over a 100 time step period each neuron in that layer spikes 5.8 times on average over all input", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 501, + 506, + 515 + ], + "spans": [ + { + "bbox": [ + 105, + 501, + 506, + 515 + ], + "score": 1.0, + "content": "samples. Higher spiking activity corresponds to lower energy-efficiency. The average number of", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 513, + 505, + 525 + ], + "spans": [ + { + "bbox": [ + 105, + 513, + 505, + 525 + ], + "score": 1.0, + "content": "spikes is compared for a converted SNN and SNN trained with conversion-and-STDB. The SNN", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 104, + 523, + 506, + 538 + ], + "spans": [ + { + "bbox": [ + 104, + 523, + 264, + 538 + ], + "score": 1.0, + "content": "trained with conversion-and-STDB has", + "type": "text" + }, + { + "bbox": [ + 264, + 524, + 286, + 535 + ], + "score": 0.87, + "content": "1 . 5 \\times", + "type": "inline_equation" + }, + { + "bbox": [ + 286, + 523, + 506, + 538 + ], + "score": 1.0, + "content": "less number of average spikes over all layers under iso", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 534, + 505, + 548 + ], + "spans": [ + { + "bbox": [ + 105, + 534, + 505, + 548 + ], + "score": 1.0, + "content": "conditions (time steps, threshold voltages, inputs, etc.) and achieves higher accuracy compared to", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 106, + 546, + 505, + 558 + ], + "spans": [ + { + "bbox": [ + 106, + 546, + 505, + 558 + ], + "score": 1.0, + "content": "the converted SNN. The converted SNNs when simulated for larger time steps further degrade the", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 106, + 557, + 428, + 570 + ], + "spans": [ + { + "bbox": [ + 106, + 557, + 428, + 570 + ], + "score": 1.0, + "content": "energy-delay product with minimal increase in accuracy (Sengupta et al., 2019).", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 20 + }, + { + "type": "title", + "bbox": [ + 108, + 585, + 211, + 598 + ], + "lines": [ + { + "bbox": [ + 105, + 584, + 213, + 600 + ], + "spans": [ + { + "bbox": [ + 105, + 584, + 213, + 600 + ], + "score": 1.0, + "content": "8 RELATED WORK", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 27 + }, + { + "type": "text", + "bbox": [ + 107, + 610, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 610, + 505, + 623 + ], + "spans": [ + { + "bbox": [ + 105, + 610, + 505, + 623 + ], + "score": 1.0, + "content": "Bohte et al. (2000) proposed a method to directly train on SNN by keeping track of the membrane", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 622, + 505, + 635 + ], + "spans": [ + { + "bbox": [ + 105, + 622, + 505, + 635 + ], + "score": 1.0, + "content": "potential of spiking neurons only at spike times and backpropagating the error at spike times based", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 633, + 504, + 646 + ], + "spans": [ + { + "bbox": [ + 105, + 633, + 504, + 646 + ], + "score": 1.0, + "content": "on only the membrane potential. This method is not suitable for networks with sparse activity due", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 644, + 505, + 657 + ], + "spans": [ + { + "bbox": [ + 105, + 644, + 505, + 657 + ], + "score": 1.0, + "content": "to the ‘dead neuron’ problem: no learning happens when the neurons do not spike. In our work,", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 654, + 506, + 668 + ], + "spans": [ + { + "bbox": [ + 105, + 654, + 506, + 668 + ], + "score": 1.0, + "content": "we need one spike for the learning to start but gradient contribution continues in later time steps", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 666, + 506, + 678 + ], + "spans": [ + { + "bbox": [ + 105, + 666, + 506, + 678 + ], + "score": 1.0, + "content": "as shown in Fig. 1. Zenke & Ganguli (2018) derived a surrogate gradient based method on the", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 677, + 506, + 689 + ], + "spans": [ + { + "bbox": [ + 105, + 677, + 506, + 689 + ], + "score": 1.0, + "content": "membrane potential of a spiking neuron at a single time step only. The error was backpropagated", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 688, + 505, + 700 + ], + "spans": [ + { + "bbox": [ + 105, + 688, + 505, + 700 + ], + "score": 1.0, + "content": "at only one time step and only the input at that time step contributed to the gradient. This method", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 698, + 505, + 712 + ], + "spans": [ + { + "bbox": [ + 105, + 698, + 505, + 712 + ], + "score": 1.0, + "content": "neglects the effect of earlier spike inputs. In our approach, the error is backpropagated for every", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 710, + 506, + 722 + ], + "spans": [ + { + "bbox": [ + 105, + 710, + 506, + 722 + ], + "score": 1.0, + "content": "time step and the weight update is performed on the gradients summed over all time steps. Shrestha", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 721, + 505, + 733 + ], + "spans": [ + { + "bbox": [ + 105, + 721, + 505, + 733 + ], + "score": 1.0, + "content": "& Orchard (2018) proposed a gradient function similar to the one proposed in this work. They", + "type": "text" + } + ], + "index": 38 + } + ], + "index": 33 + } + ], + "page_idx": 8, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 27, + 293, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 26, + 294, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 26, + 294, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2020", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 302, + 751, + 308, + 759 + ], + "lines": [ + { + "bbox": [ + 302, + 751, + 309, + 762 + ], + "spans": [ + { + "bbox": [ + 302, + 751, + 309, + 762 + ], + "score": 1.0, + "content": "9", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "image", + "bbox": [ + 165, + 82, + 443, + 245 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 165, + 82, + 443, + 245 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 165, + 82, + 443, + 245 + ], + "spans": [ + { + "bbox": [ + 165, + 82, + 443, + 245 + ], + "score": 0.974, + "type": "image", + "image_path": "e3e63b533127c274de9937dff4bafa08dd1a34b21cf2cf9cdff0fbbaa024595c.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 165, + 82, + 443, + 136.33333333333334 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 165, + 136.33333333333334, + 443, + 190.66666666666669 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 165, + 190.66666666666669, + 443, + 245.00000000000003 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 249, + 505, + 304 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 248, + 505, + 260 + ], + "spans": [ + { + "bbox": [ + 106, + 248, + 505, + 260 + ], + "score": 1.0, + "content": "Figure 3: Average number of spikes for each layer in a VGG16 architecture for purely converted", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 106, + 260, + 505, + 272 + ], + "spans": [ + { + "bbox": [ + 106, + 260, + 505, + 272 + ], + "score": 1.0, + "content": "SNN and SNN trained with hybrid technique. The converted SNN and SNN trained with hybrid", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 270, + 505, + 283 + ], + "spans": [ + { + "bbox": [ + 105, + 270, + 240, + 283 + ], + "score": 1.0, + "content": "technique achieve an accuracy of", + "type": "text" + }, + { + "bbox": [ + 241, + 271, + 273, + 281 + ], + "score": 0.89, + "content": "8 9 . 2 0 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 273, + 270, + 290, + 283 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 291, + 271, + 322, + 281 + ], + "score": 0.88, + "content": "9 1 . 8 7 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 323, + 270, + 505, + 283 + ], + "score": 1.0, + "content": ", respectively, for the randomly selected 1500", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 106, + 282, + 506, + 295 + ], + "spans": [ + { + "bbox": [ + 106, + 282, + 434, + 295 + ], + "score": 1.0, + "content": "samples from the test set. Both the networks were inferred for 100 time steps and", + "type": "text" + }, + { + "bbox": [ + 434, + 282, + 446, + 292 + ], + "score": 0.41, + "content": "\\mathbf { \\epsilon } \\cdot \\mathbf { \\gamma } _ { \\mathbf { V } } \\mathbf { \\epsilon } )", + "type": "inline_equation" + }, + { + "bbox": [ + 446, + 282, + 506, + 295 + ], + "score": 1.0, + "content": "represents the", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 106, + 293, + 453, + 305 + ], + "spans": [ + { + "bbox": [ + 106, + 293, + 453, + 305 + ], + "score": 1.0, + "content": "threshold voltage for each layer obtained during the conversion process (Algorithm 1).", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 5 + } + ], + "index": 3.0 + }, + { + "type": "text", + "bbox": [ + 106, + 315, + 503, + 338 + ], + "lines": [ + { + "bbox": [ + 106, + 314, + 505, + 329 + ], + "spans": [ + { + "bbox": [ + 106, + 314, + 505, + 329 + ], + "score": 1.0, + "content": "CIFAR10: The dataset consists of labeled 60, 000 images of 10 categories divided into training", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 106, + 326, + 451, + 339 + ], + "spans": [ + { + "bbox": [ + 106, + 326, + 338, + 339 + ], + "score": 1.0, + "content": "(50, 000) and testing (10, 000) set. The images are of size", + "type": "text" + }, + { + "bbox": [ + 338, + 327, + 367, + 337 + ], + "score": 0.89, + "content": "3 2 \\times 3 2", + "type": "inline_equation" + }, + { + "bbox": [ + 368, + 326, + 451, + 339 + ], + "score": 1.0, + "content": "with RGB channels.", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 8.5, + "bbox_fs": [ + 106, + 314, + 505, + 339 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 343, + 426, + 355 + ], + "lines": [ + { + "bbox": [ + 105, + 341, + 428, + 357 + ], + "spans": [ + { + "bbox": [ + 105, + 341, + 428, + 357 + ], + "score": 1.0, + "content": "CIFAR100: The dataset is similar to CIFAR10 except that it has 100 categories.", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 10, + "bbox_fs": [ + 105, + 341, + 428, + 357 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 360, + 504, + 383 + ], + "lines": [ + { + "bbox": [ + 106, + 360, + 505, + 373 + ], + "spans": [ + { + "bbox": [ + 106, + 360, + 505, + 373 + ], + "score": 1.0, + "content": "ImageNet: The dataset comprises of labeled high-resolution 1.2 million training images and 50, 000", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 106, + 371, + 267, + 384 + ], + "spans": [ + { + "bbox": [ + 106, + 371, + 267, + 384 + ], + "score": 1.0, + "content": "validation images with 1000 categories.", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 11.5, + "bbox_fs": [ + 106, + 360, + 505, + 384 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 399, + 369, + 412 + ], + "lines": [ + { + "bbox": [ + 105, + 398, + 370, + 414 + ], + "spans": [ + { + "bbox": [ + 105, + 398, + 370, + 414 + ], + "score": 1.0, + "content": "7 ENERGY-DELAY PRODUCT ANALYSIS OF SNNS", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 13 + }, + { + "type": "text", + "bbox": [ + 106, + 425, + 505, + 568 + ], + "lines": [ + { + "bbox": [ + 106, + 425, + 505, + 439 + ], + "spans": [ + { + "bbox": [ + 106, + 425, + 505, + 439 + ], + "score": 1.0, + "content": "A single spike in an SNN consumes a constant amount of energy (Cao et al., 2015). The first order", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 436, + 505, + 449 + ], + "spans": [ + { + "bbox": [ + 105, + 436, + 505, + 449 + ], + "score": 1.0, + "content": "analysis of energy-delay product of an SNN is dependent on the number of spikes and the total", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 447, + 506, + 461 + ], + "spans": [ + { + "bbox": [ + 105, + 447, + 506, + 461 + ], + "score": 1.0, + "content": "number of time steps. Fig. 3 shows the average number of spikes in each layer when evaluated for", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 456, + 506, + 473 + ], + "spans": [ + { + "bbox": [ + 105, + 456, + 506, + 473 + ], + "score": 1.0, + "content": "1500 samples from CIFAR10 testset for VGG16 architecture. The average is computed by summing", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 106, + 469, + 506, + 482 + ], + "spans": [ + { + "bbox": [ + 106, + 469, + 506, + 482 + ], + "score": 1.0, + "content": "all the spikes in a layer over 100 time steps and dividing by the number of neurons in that layer. For", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 479, + 506, + 493 + ], + "spans": [ + { + "bbox": [ + 105, + 479, + 289, + 493 + ], + "score": 1.0, + "content": "example, the average number of spikes in the", + "type": "text" + }, + { + "bbox": [ + 289, + 479, + 308, + 491 + ], + "score": 0.9, + "content": "1 0 ^ { t h }", + "type": "inline_equation" + }, + { + "bbox": [ + 308, + 479, + 506, + 493 + ], + "score": 1.0, + "content": "layer is 5.8 for both the networks, which implies", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 106, + 491, + 506, + 504 + ], + "spans": [ + { + "bbox": [ + 106, + 491, + 506, + 504 + ], + "score": 1.0, + "content": "that over a 100 time step period each neuron in that layer spikes 5.8 times on average over all input", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 501, + 506, + 515 + ], + "spans": [ + { + "bbox": [ + 105, + 501, + 506, + 515 + ], + "score": 1.0, + "content": "samples. Higher spiking activity corresponds to lower energy-efficiency. The average number of", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 513, + 505, + 525 + ], + "spans": [ + { + "bbox": [ + 105, + 513, + 505, + 525 + ], + "score": 1.0, + "content": "spikes is compared for a converted SNN and SNN trained with conversion-and-STDB. The SNN", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 104, + 523, + 506, + 538 + ], + "spans": [ + { + "bbox": [ + 104, + 523, + 264, + 538 + ], + "score": 1.0, + "content": "trained with conversion-and-STDB has", + "type": "text" + }, + { + "bbox": [ + 264, + 524, + 286, + 535 + ], + "score": 0.87, + "content": "1 . 5 \\times", + "type": "inline_equation" + }, + { + "bbox": [ + 286, + 523, + 506, + 538 + ], + "score": 1.0, + "content": "less number of average spikes over all layers under iso", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 534, + 505, + 548 + ], + "spans": [ + { + "bbox": [ + 105, + 534, + 505, + 548 + ], + "score": 1.0, + "content": "conditions (time steps, threshold voltages, inputs, etc.) and achieves higher accuracy compared to", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 106, + 546, + 505, + 558 + ], + "spans": [ + { + "bbox": [ + 106, + 546, + 505, + 558 + ], + "score": 1.0, + "content": "the converted SNN. The converted SNNs when simulated for larger time steps further degrade the", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 106, + 557, + 428, + 570 + ], + "spans": [ + { + "bbox": [ + 106, + 557, + 428, + 570 + ], + "score": 1.0, + "content": "energy-delay product with minimal increase in accuracy (Sengupta et al., 2019).", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 20, + "bbox_fs": [ + 104, + 425, + 506, + 570 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 585, + 211, + 598 + ], + "lines": [ + { + "bbox": [ + 105, + 584, + 213, + 600 + ], + "spans": [ + { + "bbox": [ + 105, + 584, + 213, + 600 + ], + "score": 1.0, + "content": "8 RELATED WORK", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 27 + }, + { + "type": "text", + "bbox": [ + 107, + 610, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 610, + 505, + 623 + ], + "spans": [ + { + "bbox": [ + 105, + 610, + 505, + 623 + ], + "score": 1.0, + "content": "Bohte et al. (2000) proposed a method to directly train on SNN by keeping track of the membrane", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 622, + 505, + 635 + ], + "spans": [ + { + "bbox": [ + 105, + 622, + 505, + 635 + ], + "score": 1.0, + "content": "potential of spiking neurons only at spike times and backpropagating the error at spike times based", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 633, + 504, + 646 + ], + "spans": [ + { + "bbox": [ + 105, + 633, + 504, + 646 + ], + "score": 1.0, + "content": "on only the membrane potential. This method is not suitable for networks with sparse activity due", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 644, + 505, + 657 + ], + "spans": [ + { + "bbox": [ + 105, + 644, + 505, + 657 + ], + "score": 1.0, + "content": "to the ‘dead neuron’ problem: no learning happens when the neurons do not spike. In our work,", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 654, + 506, + 668 + ], + "spans": [ + { + "bbox": [ + 105, + 654, + 506, + 668 + ], + "score": 1.0, + "content": "we need one spike for the learning to start but gradient contribution continues in later time steps", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 666, + 506, + 678 + ], + "spans": [ + { + "bbox": [ + 105, + 666, + 506, + 678 + ], + "score": 1.0, + "content": "as shown in Fig. 1. Zenke & Ganguli (2018) derived a surrogate gradient based method on the", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 677, + 506, + 689 + ], + "spans": [ + { + "bbox": [ + 105, + 677, + 506, + 689 + ], + "score": 1.0, + "content": "membrane potential of a spiking neuron at a single time step only. The error was backpropagated", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 688, + 505, + 700 + ], + "spans": [ + { + "bbox": [ + 105, + 688, + 505, + 700 + ], + "score": 1.0, + "content": "at only one time step and only the input at that time step contributed to the gradient. This method", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 698, + 505, + 712 + ], + "spans": [ + { + "bbox": [ + 105, + 698, + 505, + 712 + ], + "score": 1.0, + "content": "neglects the effect of earlier spike inputs. In our approach, the error is backpropagated for every", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 710, + 506, + 722 + ], + "spans": [ + { + "bbox": [ + 105, + 710, + 506, + 722 + ], + "score": 1.0, + "content": "time step and the weight update is performed on the gradients summed over all time steps. Shrestha", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 721, + 505, + 733 + ], + "spans": [ + { + "bbox": [ + 105, + 721, + 505, + 733 + ], + "score": 1.0, + "content": "& Orchard (2018) proposed a gradient function similar to the one proposed in this work. They", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 361, + 505, + 374 + ], + "spans": [ + { + "bbox": [ + 105, + 361, + 505, + 374 + ], + "score": 1.0, + "content": "used the difference between the membrane potential and the threshold to compute the gradient", + "type": "text", + "cross_page": true + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 372, + 505, + 385 + ], + "spans": [ + { + "bbox": [ + 105, + 372, + 505, + 385 + ], + "score": 1.0, + "content": "compared to the difference in spike timing used in this work. The membrane potential is a continuous", + "type": "text", + "cross_page": true + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 382, + 506, + 397 + ], + "spans": [ + { + "bbox": [ + 105, + 382, + 506, + 397 + ], + "score": 1.0, + "content": "value whereas the spike time is an integer value bounded by the number of time steps. Therefore,", + "type": "text", + "cross_page": true + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 394, + 506, + 407 + ], + "spans": [ + { + "bbox": [ + 105, + 394, + 506, + 407 + ], + "score": 1.0, + "content": "gradients that depend on spike time can be pre-computed and stored in a look-up table for faster", + "type": "text", + "cross_page": true + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 405, + 506, + 418 + ], + "spans": [ + { + "bbox": [ + 105, + 405, + 506, + 418 + ], + "score": 1.0, + "content": "computation. They evaluated their approach on shallow architectures with two convolution layer for", + "type": "text", + "cross_page": true + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 415, + 506, + 429 + ], + "spans": [ + { + "bbox": [ + 105, + 415, + 506, + 429 + ], + "score": 1.0, + "content": "MNIST dataset. In this work, we trained deep SNNs with multiple stacked layers for complex", + "type": "text", + "cross_page": true + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 426, + 506, + 440 + ], + "spans": [ + { + "bbox": [ + 105, + 426, + 506, + 440 + ], + "score": 1.0, + "content": "calssification tasks. Wu et al. (2018) performed backpropagation through time on SNN with a", + "type": "text", + "cross_page": true + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 438, + 506, + 450 + ], + "spans": [ + { + "bbox": [ + 105, + 438, + 506, + 450 + ], + "score": 1.0, + "content": "surrogate gradient defined on the membrane potential. The surrogate gradient was defined as", + "type": "text", + "cross_page": true + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 449, + 506, + 462 + ], + "spans": [ + { + "bbox": [ + 105, + 449, + 506, + 462 + ], + "score": 1.0, + "content": "piece-wise linear or exponential function of the membrane potential. The other surrogate gradients", + "type": "text", + "cross_page": true + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 460, + 505, + 472 + ], + "spans": [ + { + "bbox": [ + 105, + 460, + 505, + 472 + ], + "score": 1.0, + "content": "proposed in the literature are all computed on the membrane potential (Neftci et al., 2019). Lee et al.", + "type": "text", + "cross_page": true + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 471, + 505, + 484 + ], + "spans": [ + { + "bbox": [ + 105, + 471, + 505, + 484 + ], + "score": 1.0, + "content": "(2019) approximated the neuron output as continuous low-pass filtered spike train. They used this", + "type": "text", + "cross_page": true + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 482, + 506, + 495 + ], + "spans": [ + { + "bbox": [ + 105, + 482, + 506, + 495 + ], + "score": 1.0, + "content": "approximated continuous value to perform backpropagation. Most of the works in the literature on", + "type": "text", + "cross_page": true + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 493, + 506, + 506 + ], + "spans": [ + { + "bbox": [ + 105, + 493, + 506, + 506 + ], + "score": 1.0, + "content": "direct training of SNN or conversion based methods have been evaluated on shallow architectures", + "type": "text", + "cross_page": true + } + ], + "index": 16 + }, + { + "bbox": [ + 106, + 504, + 505, + 515 + ], + "spans": [ + { + "bbox": [ + 106, + 504, + 505, + 515 + ], + "score": 1.0, + "content": "for simple classification problems. In Table 2 we compare our model with the models that reported", + "type": "text", + "cross_page": true + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 515, + 506, + 527 + ], + "spans": [ + { + "bbox": [ + 105, + 515, + 506, + 527 + ], + "score": 1.0, + "content": "accuracy on CIFAR10 and ImageNet dataset. Wu et al. (2019) achieved convergence in 12 time", + "type": "text", + "cross_page": true + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 525, + 506, + 539 + ], + "spans": [ + { + "bbox": [ + 105, + 525, + 506, + 539 + ], + "score": 1.0, + "content": "steps by using a dedicated encoding layer to capture the input precision. It is beyond the scope", + "type": "text", + "cross_page": true + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 536, + 506, + 549 + ], + "spans": [ + { + "bbox": [ + 105, + 536, + 506, + 549 + ], + "score": 1.0, + "content": "of this work to compute the hardware and energy implications of such encoding layer. Our model", + "type": "text", + "cross_page": true + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 548, + 394, + 561 + ], + "spans": [ + { + "bbox": [ + 105, + 548, + 394, + 561 + ], + "score": 1.0, + "content": "performs better than all other models at far fewer number of time steps.", + "type": "text", + "cross_page": true + } + ], + "index": 21 + } + ], + "index": 33, + "bbox_fs": [ + 105, + 610, + 506, + 733 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "table", + "bbox": [ + 120, + 101, + 489, + 356 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 116, + 89, + 492, + 100 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 118, + 88, + 493, + 102 + ], + "spans": [ + { + "bbox": [ + 118, + 88, + 493, + 102 + ], + "score": 1.0, + "content": "Table 2: Comparion of our work with other SNN models on CIFAR10 and ImageNet datasets", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "table_body", + "bbox": [ + 120, + 101, + 489, + 356 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 120, + 101, + 489, + 356 + ], + "spans": [ + { + "bbox": [ + 120, + 101, + 489, + 356 + ], + "score": 0.986, + "html": "
ModelDatasetTrainingMethodArchitecture AccuracyTime-steps
Hunsberger&Eliasmith(2015)CIFAR10ANN-SNNConversion2Conv,2Linear82.95%6000
Caoetal.(2015)CIFAR10ANN-SNNConversion3Conv,2Linear77.43%400
Senguptaet al. (2019)CIFAR10ANN-SNNConversionVGG1691.55%2500
Lee etal.(2019)CIFAR10Spiking BPVGG990.45%100
Wu et al.(2019)CIFAR10 SurrogateGradient5Conv,2Linear90.53%12
This workCIFAR10HybridTrainingVGG1691.13%92.02%100200
Senguptaet al. (2019)ImageNetANN-SNNConversionVGG1669.96%2500
This workImageNetHybridTrainingVGG1665.19%250
", + "type": "table", + "image_path": "25a870a4d8b8ed3c0cd21eb06d167b377cafd5111c85072ac6fcbad72f6f1376.jpg" + } + ] + } + ], + "index": 2, + "virtual_lines": [ + { + "bbox": [ + 120, + 101, + 489, + 186.0 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 120, + 186.0, + 489, + 271.0 + ], + "spans": [], + "index": 2 + }, + { + "bbox": [ + 120, + 271.0, + 489, + 356.0 + ], + "spans": [], + "index": 3 + } + ] + } + ], + "index": 1.0 + }, + { + "type": "text", + "bbox": [ + 107, + 361, + 505, + 559 + ], + "lines": [ + { + "bbox": [ + 105, + 361, + 505, + 374 + ], + "spans": [ + { + "bbox": [ + 105, + 361, + 505, + 374 + ], + "score": 1.0, + "content": "used the difference between the membrane potential and the threshold to compute the gradient", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 372, + 505, + 385 + ], + "spans": [ + { + "bbox": [ + 105, + 372, + 505, + 385 + ], + "score": 1.0, + "content": "compared to the difference in spike timing used in this work. The membrane potential is a continuous", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 382, + 506, + 397 + ], + "spans": [ + { + "bbox": [ + 105, + 382, + 506, + 397 + ], + "score": 1.0, + "content": "value whereas the spike time is an integer value bounded by the number of time steps. Therefore,", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 394, + 506, + 407 + ], + "spans": [ + { + "bbox": [ + 105, + 394, + 506, + 407 + ], + "score": 1.0, + "content": "gradients that depend on spike time can be pre-computed and stored in a look-up table for faster", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 405, + 506, + 418 + ], + "spans": [ + { + "bbox": [ + 105, + 405, + 506, + 418 + ], + "score": 1.0, + "content": "computation. They evaluated their approach on shallow architectures with two convolution layer for", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 415, + 506, + 429 + ], + "spans": [ + { + "bbox": [ + 105, + 415, + 506, + 429 + ], + "score": 1.0, + "content": "MNIST dataset. In this work, we trained deep SNNs with multiple stacked layers for complex", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 426, + 506, + 440 + ], + "spans": [ + { + "bbox": [ + 105, + 426, + 506, + 440 + ], + "score": 1.0, + "content": "calssification tasks. Wu et al. (2018) performed backpropagation through time on SNN with a", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 438, + 506, + 450 + ], + "spans": [ + { + "bbox": [ + 105, + 438, + 506, + 450 + ], + "score": 1.0, + "content": "surrogate gradient defined on the membrane potential. The surrogate gradient was defined as", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 449, + 506, + 462 + ], + "spans": [ + { + "bbox": [ + 105, + 449, + 506, + 462 + ], + "score": 1.0, + "content": "piece-wise linear or exponential function of the membrane potential. The other surrogate gradients", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 460, + 505, + 472 + ], + "spans": [ + { + "bbox": [ + 105, + 460, + 505, + 472 + ], + "score": 1.0, + "content": "proposed in the literature are all computed on the membrane potential (Neftci et al., 2019). Lee et al.", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 471, + 505, + 484 + ], + "spans": [ + { + "bbox": [ + 105, + 471, + 505, + 484 + ], + "score": 1.0, + "content": "(2019) approximated the neuron output as continuous low-pass filtered spike train. They used this", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 482, + 506, + 495 + ], + "spans": [ + { + "bbox": [ + 105, + 482, + 506, + 495 + ], + "score": 1.0, + "content": "approximated continuous value to perform backpropagation. Most of the works in the literature on", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 493, + 506, + 506 + ], + "spans": [ + { + "bbox": [ + 105, + 493, + 506, + 506 + ], + "score": 1.0, + "content": "direct training of SNN or conversion based methods have been evaluated on shallow architectures", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 106, + 504, + 505, + 515 + ], + "spans": [ + { + "bbox": [ + 106, + 504, + 505, + 515 + ], + "score": 1.0, + "content": "for simple classification problems. In Table 2 we compare our model with the models that reported", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 515, + 506, + 527 + ], + "spans": [ + { + "bbox": [ + 105, + 515, + 506, + 527 + ], + "score": 1.0, + "content": "accuracy on CIFAR10 and ImageNet dataset. Wu et al. (2019) achieved convergence in 12 time", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 525, + 506, + 539 + ], + "spans": [ + { + "bbox": [ + 105, + 525, + 506, + 539 + ], + "score": 1.0, + "content": "steps by using a dedicated encoding layer to capture the input precision. It is beyond the scope", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 536, + 506, + 549 + ], + "spans": [ + { + "bbox": [ + 105, + 536, + 506, + 549 + ], + "score": 1.0, + "content": "of this work to compute the hardware and energy implications of such encoding layer. Our model", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 548, + 394, + 561 + ], + "spans": [ + { + "bbox": [ + 105, + 548, + 394, + 561 + ], + "score": 1.0, + "content": "performs better than all other models at far fewer number of time steps.", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 12.5 + }, + { + "type": "title", + "bbox": [ + 108, + 575, + 201, + 587 + ], + "lines": [ + { + "bbox": [ + 104, + 573, + 203, + 591 + ], + "spans": [ + { + "bbox": [ + 104, + 573, + 203, + 591 + ], + "score": 1.0, + "content": "9 CONCLUSIONS", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 22 + }, + { + "type": "text", + "bbox": [ + 107, + 600, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 600, + 505, + 613 + ], + "spans": [ + { + "bbox": [ + 106, + 600, + 505, + 613 + ], + "score": 1.0, + "content": "The direct training of SNN with backpropagation is computationally expensive and slow, whereas", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 610, + 505, + 624 + ], + "spans": [ + { + "bbox": [ + 105, + 610, + 505, + 624 + ], + "score": 1.0, + "content": "ANN-SNN conversion suffers from high latency. To address this issue we proposed a hybrid", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 622, + 505, + 634 + ], + "spans": [ + { + "bbox": [ + 105, + 622, + 505, + 634 + ], + "score": 1.0, + "content": "training technique for deep SNNs. We took an SNN converted from ANN and used its weights and", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 633, + 505, + 645 + ], + "spans": [ + { + "bbox": [ + 105, + 633, + 505, + 645 + ], + "score": 1.0, + "content": "thresholds as initialization for spike-based backpropagation of SNN. We then performed spike-based", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 644, + 505, + 656 + ], + "spans": [ + { + "bbox": [ + 105, + 644, + 505, + 656 + ], + "score": 1.0, + "content": "backpropagation on this initialized network to obtain an SNN that can perform with fewer number", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 655, + 505, + 667 + ], + "spans": [ + { + "bbox": [ + 105, + 655, + 505, + 667 + ], + "score": 1.0, + "content": "of time steps. The number of epochs required to train SNN was also reduced by having a good initial", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 666, + 506, + 679 + ], + "spans": [ + { + "bbox": [ + 105, + 666, + 506, + 679 + ], + "score": 1.0, + "content": "starting point. The resultant trained SNN had higher accuracy and lower number of spikes/inference", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 677, + 505, + 690 + ], + "spans": [ + { + "bbox": [ + 105, + 677, + 505, + 690 + ], + "score": 1.0, + "content": "compared to purely converted SNNs at reduced number of time steps. The backpropagation through", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 687, + 505, + 701 + ], + "spans": [ + { + "bbox": [ + 105, + 687, + 505, + 701 + ], + "score": 1.0, + "content": "time was performed with surrogate gradient defined using neuron’s spike time that captured the", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 698, + 506, + 712 + ], + "spans": [ + { + "bbox": [ + 105, + 698, + 506, + 712 + ], + "score": 1.0, + "content": "temporal information and helped in reducing the number of time steps. We tested our algorithm on", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 710, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 105, + 710, + 505, + 722 + ], + "score": 1.0, + "content": "CIFAR and ImageNet datasets and achieved state-of-the-art performance with fewer number of time", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 721, + 132, + 734 + ], + "spans": [ + { + "bbox": [ + 105, + 721, + 132, + 734 + ], + "score": 1.0, + "content": "steps.", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 28.5 + } + ], + "page_idx": 9, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 108, + 27, + 293, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 26, + 294, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 26, + 294, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2020", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 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": "table", + "bbox": [ + 120, + 101, + 489, + 356 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 116, + 89, + 492, + 100 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 118, + 88, + 493, + 102 + ], + "spans": [ + { + "bbox": [ + 118, + 88, + 493, + 102 + ], + "score": 1.0, + "content": "Table 2: Comparion of our work with other SNN models on CIFAR10 and ImageNet datasets", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "table_body", + "bbox": [ + 120, + 101, + 489, + 356 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 120, + 101, + 489, + 356 + ], + "spans": [ + { + "bbox": [ + 120, + 101, + 489, + 356 + ], + "score": 0.986, + "html": "
ModelDatasetTrainingMethodArchitecture AccuracyTime-steps
Hunsberger&Eliasmith(2015)CIFAR10ANN-SNNConversion2Conv,2Linear82.95%6000
Caoetal.(2015)CIFAR10ANN-SNNConversion3Conv,2Linear77.43%400
Senguptaet al. (2019)CIFAR10ANN-SNNConversionVGG1691.55%2500
Lee etal.(2019)CIFAR10Spiking BPVGG990.45%100
Wu et al.(2019)CIFAR10 SurrogateGradient5Conv,2Linear90.53%12
This workCIFAR10HybridTrainingVGG1691.13%92.02%100200
Senguptaet al. (2019)ImageNetANN-SNNConversionVGG1669.96%2500
This workImageNetHybridTrainingVGG1665.19%250
", + "type": "table", + "image_path": "25a870a4d8b8ed3c0cd21eb06d167b377cafd5111c85072ac6fcbad72f6f1376.jpg" + } + ] + } + ], + "index": 2, + "virtual_lines": [ + { + "bbox": [ + 120, + 101, + 489, + 186.0 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 120, + 186.0, + 489, + 271.0 + ], + "spans": [], + "index": 2 + }, + { + "bbox": [ + 120, + 271.0, + 489, + 356.0 + ], + "spans": [], + "index": 3 + } + ] + } + ], + "index": 1.0 + }, + { + "type": "text", + "bbox": [ + 107, + 361, + 505, + 559 + ], + "lines": [], + "index": 12.5, + "bbox_fs": [ + 105, + 361, + 506, + 561 + ], + "lines_deleted": true + }, + { + "type": "title", + "bbox": [ + 108, + 575, + 201, + 587 + ], + "lines": [ + { + "bbox": [ + 104, + 573, + 203, + 591 + ], + "spans": [ + { + "bbox": [ + 104, + 573, + 203, + 591 + ], + "score": 1.0, + "content": "9 CONCLUSIONS", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 22 + }, + { + "type": "text", + "bbox": [ + 107, + 600, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 600, + 505, + 613 + ], + "spans": [ + { + "bbox": [ + 106, + 600, + 505, + 613 + ], + "score": 1.0, + "content": "The direct training of SNN with backpropagation is computationally expensive and slow, whereas", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 610, + 505, + 624 + ], + "spans": [ + { + "bbox": [ + 105, + 610, + 505, + 624 + ], + "score": 1.0, + "content": "ANN-SNN conversion suffers from high latency. To address this issue we proposed a hybrid", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 622, + 505, + 634 + ], + "spans": [ + { + "bbox": [ + 105, + 622, + 505, + 634 + ], + "score": 1.0, + "content": "training technique for deep SNNs. We took an SNN converted from ANN and used its weights and", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 633, + 505, + 645 + ], + "spans": [ + { + "bbox": [ + 105, + 633, + 505, + 645 + ], + "score": 1.0, + "content": "thresholds as initialization for spike-based backpropagation of SNN. We then performed spike-based", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 644, + 505, + 656 + ], + "spans": [ + { + "bbox": [ + 105, + 644, + 505, + 656 + ], + "score": 1.0, + "content": "backpropagation on this initialized network to obtain an SNN that can perform with fewer number", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 655, + 505, + 667 + ], + "spans": [ + { + "bbox": [ + 105, + 655, + 505, + 667 + ], + "score": 1.0, + "content": "of time steps. The number of epochs required to train SNN was also reduced by having a good initial", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 666, + 506, + 679 + ], + "spans": [ + { + "bbox": [ + 105, + 666, + 506, + 679 + ], + "score": 1.0, + "content": "starting point. The resultant trained SNN had higher accuracy and lower number of spikes/inference", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 677, + 505, + 690 + ], + "spans": [ + { + "bbox": [ + 105, + 677, + 505, + 690 + ], + "score": 1.0, + "content": "compared to purely converted SNNs at reduced number of time steps. The backpropagation through", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 687, + 505, + 701 + ], + "spans": [ + { + "bbox": [ + 105, + 687, + 505, + 701 + ], + "score": 1.0, + "content": "time was performed with surrogate gradient defined using neuron’s spike time that captured the", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 698, + 506, + 712 + ], + "spans": [ + { + "bbox": [ + 105, + 698, + 506, + 712 + ], + "score": 1.0, + "content": "temporal information and helped in reducing the number of time steps. We tested our algorithm on", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 710, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 105, + 710, + 505, + 722 + ], + "score": 1.0, + "content": "CIFAR and ImageNet datasets and achieved state-of-the-art performance with fewer number of time", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 721, + 132, + 734 + ], + "spans": [ + { + "bbox": [ + 105, + 721, + 132, + 734 + ], + "score": 1.0, + "content": "steps.", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 28.5, + "bbox_fs": [ + 105, + 600, + 506, + 734 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "title", + "bbox": [ + 108, + 83, + 200, + 93 + ], + "lines": [ + { + "bbox": [ + 107, + 83, + 200, + 94 + ], + "spans": [ + { + "bbox": [ + 107, + 83, + 200, + 94 + ], + "score": 1.0, + "content": "ACKNOWLEDGMENTS", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "text", + "bbox": [ + 108, + 101, + 504, + 135 + ], + "lines": [ + { + "bbox": [ + 106, + 102, + 504, + 114 + ], + "spans": [ + { + "bbox": [ + 106, + 102, + 504, + 114 + ], + "score": 1.0, + "content": "This work was supported in part by the National Science Foundation, in part by Vannevar Bush", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 106, + 112, + 506, + 126 + ], + "spans": [ + { + "bbox": [ + 106, + 112, + 506, + 126 + ], + "score": 1.0, + "content": "Faculty Fellowship, and in part by C-BRIC, one of six centers in JUMP, a Semiconductor Research", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 106, + 124, + 314, + 137 + ], + "spans": [ + { + "bbox": [ + 106, + 124, + 314, + 137 + ], + "score": 1.0, + "content": "Corporation (SRC) program sponsored by DARPA.", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 2 + }, + { + "type": "title", + "bbox": [ + 107, + 152, + 176, + 164 + ], + "lines": [ + { + "bbox": [ + 106, + 153, + 176, + 165 + ], + "spans": [ + { + "bbox": [ + 106, + 153, + 176, + 165 + ], + "score": 1.0, + "content": "REFERENCES", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 4 + }, + { + "type": "text", + "bbox": [ + 108, + 171, + 504, + 205 + ], + "lines": [ + { + "bbox": [ + 105, + 170, + 506, + 185 + ], + "spans": [ + { + "bbox": [ + 105, + 170, + 506, + 185 + ], + "score": 1.0, + "content": "Guillaume Bellec, Darjan Salaj, Anand Subramoney, Robert Legenstein, and Wolfgang Maass. Long", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 115, + 182, + 506, + 195 + ], + "spans": [ + { + "bbox": [ + 115, + 182, + 506, + 195 + ], + "score": 1.0, + "content": "short-term memory and learning-to-learn in networks of spiking neurons. In Advances in Neural", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 116, + 192, + 329, + 205 + ], + "spans": [ + { + "bbox": [ + 116, + 192, + 329, + 205 + ], + "score": 1.0, + "content": "Information Processing Systems, pp. 787–797, 2018.", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 6 + }, + { + "type": "text", + "bbox": [ + 106, + 212, + 504, + 235 + ], + "lines": [ + { + "bbox": [ + 106, + 212, + 505, + 225 + ], + "spans": [ + { + "bbox": [ + 106, + 212, + 505, + 225 + ], + "score": 1.0, + "content": "Sander M Bohte, Joost N Kok, and Johannes A La Poutre. Spikeprop: backpropagation for networks ´", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 116, + 223, + 322, + 236 + ], + "spans": [ + { + "bbox": [ + 116, + 223, + 322, + 236 + ], + "score": 1.0, + "content": "of spiking neurons. In ESANN, pp. 419–424, 2000.", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 8.5 + }, + { + "type": "text", + "bbox": [ + 107, + 243, + 505, + 277 + ], + "lines": [ + { + "bbox": [ + 106, + 243, + 505, + 256 + ], + "spans": [ + { + "bbox": [ + 106, + 243, + 505, + 256 + ], + "score": 1.0, + "content": "Y-Lan Boureau, Jean Ponce, and Yann LeCun. A theoretical analysis of feature pooling in visual", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 114, + 254, + 505, + 268 + ], + "spans": [ + { + "bbox": [ + 114, + 254, + 505, + 268 + ], + "score": 1.0, + "content": "recognition. In Proceedings of the 27th international conference on machine learning (ICML-10),", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 115, + 266, + 196, + 277 + ], + "spans": [ + { + "bbox": [ + 115, + 266, + 196, + 277 + ], + "score": 1.0, + "content": "pp. 111–118, 2010.", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 11 + }, + { + "type": "text", + "bbox": [ + 107, + 285, + 505, + 318 + ], + "lines": [ + { + "bbox": [ + 107, + 286, + 505, + 298 + ], + "spans": [ + { + "bbox": [ + 107, + 286, + 505, + 298 + ], + "score": 1.0, + "content": "Yongqiang Cao, Yang Chen, and Deepak Khosla. Spiking deep convolutional neural networks for", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 115, + 297, + 505, + 308 + ], + "spans": [ + { + "bbox": [ + 115, + 297, + 505, + 308 + ], + "score": 1.0, + "content": "energy-efficient object recognition. International Journal of Computer Vision, 113(1):54–66,", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 115, + 306, + 144, + 320 + ], + "spans": [ + { + "bbox": [ + 115, + 306, + 144, + 320 + ], + "score": 1.0, + "content": "2015.", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 14 + }, + { + "type": "text", + "bbox": [ + 105, + 326, + 504, + 349 + ], + "lines": [ + { + "bbox": [ + 105, + 326, + 505, + 340 + ], + "spans": [ + { + "bbox": [ + 105, + 326, + 505, + 340 + ], + "score": 1.0, + "content": "J. Deng, W. Dong, R. Socher, L.-J. Li, K. Li, and L. Fei-Fei. ImageNet: A Large-Scale Hierarchical", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 115, + 338, + 262, + 349 + ], + "spans": [ + { + "bbox": [ + 115, + 338, + 262, + 349 + ], + "score": 1.0, + "content": "Image Database. In CVPR09, 2009.", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 16.5 + }, + { + "type": "text", + "bbox": [ + 107, + 357, + 503, + 392 + ], + "lines": [ + { + "bbox": [ + 105, + 357, + 505, + 370 + ], + "spans": [ + { + "bbox": [ + 105, + 357, + 505, + 370 + ], + "score": 1.0, + "content": "Peter U Diehl, Daniel Neil, Jonathan Binas, Matthew Cook, Shih-Chii Liu, and Michael Pfeiffer.", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 115, + 369, + 505, + 382 + ], + "spans": [ + { + "bbox": [ + 115, + 369, + 505, + 382 + ], + "score": 1.0, + "content": "Fast-classifying, high-accuracy spiking deep networks through weight and threshold balancing.", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 115, + 379, + 483, + 392 + ], + "spans": [ + { + "bbox": [ + 115, + 379, + 483, + 392 + ], + "score": 1.0, + "content": "In 2015 International Joint Conference on Neural Networks (IJCNN), pp. 1–8. IEEE, 2015.", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 19 + }, + { + "type": "text", + "bbox": [ + 106, + 399, + 505, + 444 + ], + "lines": [ + { + "bbox": [ + 105, + 400, + 505, + 412 + ], + "spans": [ + { + "bbox": [ + 105, + 400, + 505, + 412 + ], + "score": 1.0, + "content": "Peter U Diehl, Guido Zarrella, Andrew Cassidy, Bruno U Pedroni, and Emre Neftci. Conversion", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 116, + 411, + 505, + 423 + ], + "spans": [ + { + "bbox": [ + 116, + 411, + 505, + 423 + ], + "score": 1.0, + "content": "of artificial recurrent neural networks to spiking neural networks for low-power neuromorphic", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 114, + 421, + 506, + 435 + ], + "spans": [ + { + "bbox": [ + 114, + 421, + 506, + 435 + ], + "score": 1.0, + "content": "hardware. In 2016 IEEE International Conference on Rebooting Computing (ICRC), pp. 1–8.", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 116, + 433, + 168, + 444 + ], + "spans": [ + { + "bbox": [ + 116, + 433, + 168, + 444 + ], + "score": 1.0, + "content": "IEEE, 2016.", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 22.5 + }, + { + "type": "text", + "bbox": [ + 106, + 452, + 505, + 486 + ], + "lines": [ + { + "bbox": [ + 105, + 451, + 505, + 467 + ], + "spans": [ + { + "bbox": [ + 105, + 451, + 505, + 467 + ], + "score": 1.0, + "content": "Kaiming He, Xiangyu Zhang, Shaoqing Ren, and Jian Sun. Deep residual learning for image", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 115, + 463, + 505, + 476 + ], + "spans": [ + { + "bbox": [ + 115, + 463, + 505, + 476 + ], + "score": 1.0, + "content": "recognition. In Proceedings of the IEEE conference on computer vision and pattern recognition,", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 115, + 474, + 197, + 486 + ], + "spans": [ + { + "bbox": [ + 115, + 474, + 197, + 486 + ], + "score": 1.0, + "content": "pp. 770–778, 2016.", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 26 + }, + { + "type": "text", + "bbox": [ + 105, + 493, + 504, + 517 + ], + "lines": [ + { + "bbox": [ + 106, + 493, + 505, + 506 + ], + "spans": [ + { + "bbox": [ + 106, + 493, + 505, + 506 + ], + "score": 1.0, + "content": "Dongsung Huh and Terrence J Sejnowski. Gradient descent for spiking neural networks. In", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 115, + 505, + 420, + 517 + ], + "spans": [ + { + "bbox": [ + 115, + 505, + 420, + 517 + ], + "score": 1.0, + "content": "Advances in Neural Information Processing Systems, pp. 1433–1443, 2018.", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 28.5 + }, + { + "type": "text", + "bbox": [ + 107, + 524, + 503, + 547 + ], + "lines": [ + { + "bbox": [ + 105, + 523, + 505, + 538 + ], + "spans": [ + { + "bbox": [ + 105, + 523, + 505, + 538 + ], + "score": 1.0, + "content": "Eric Hunsberger and Chris Eliasmith. Spiking deep networks with lif neurons. arXiv preprint", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 115, + 536, + 220, + 547 + ], + "spans": [ + { + "bbox": [ + 115, + 536, + 220, + 547 + ], + "score": 1.0, + "content": "arXiv:1510.08829, 2015.", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 30.5 + }, + { + "type": "text", + "bbox": [ + 106, + 555, + 504, + 578 + ], + "lines": [ + { + "bbox": [ + 105, + 554, + 505, + 569 + ], + "spans": [ + { + "bbox": [ + 105, + 554, + 505, + 569 + ], + "score": 1.0, + "content": "Sergey Ioffe and Christian Szegedy. Batch normalization: Accelerating deep network training by", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 115, + 566, + 411, + 578 + ], + "spans": [ + { + "bbox": [ + 115, + 566, + 411, + 578 + ], + "score": 1.0, + "content": "reducing internal covariate shift. arXiv preprint arXiv:1502.03167, 2015.", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 32.5 + }, + { + "type": "text", + "bbox": [ + 105, + 586, + 503, + 609 + ], + "lines": [ + { + "bbox": [ + 105, + 585, + 505, + 600 + ], + "spans": [ + { + "bbox": [ + 105, + 585, + 505, + 600 + ], + "score": 1.0, + "content": "Alex Krizhevsky, Geoffrey Hinton, et al. Learning multiple layers of features from tiny images.", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 116, + 597, + 249, + 610 + ], + "spans": [ + { + "bbox": [ + 116, + 597, + 249, + 610 + ], + "score": 1.0, + "content": "Technical report, Citeseer, 2009.", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 34.5 + }, + { + "type": "text", + "bbox": [ + 106, + 616, + 504, + 640 + ], + "lines": [ + { + "bbox": [ + 106, + 617, + 505, + 630 + ], + "spans": [ + { + "bbox": [ + 106, + 617, + 505, + 630 + ], + "score": 1.0, + "content": "Chankyu Lee, Syed Shakib Sarwar, and Kaushik Roy. Enabling spike-based backpropagation in", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 115, + 628, + 481, + 640 + ], + "spans": [ + { + "bbox": [ + 115, + 628, + 481, + 640 + ], + "score": 1.0, + "content": "state-of-the-art deep neural network architectures. arXiv preprint arXiv:1903.06379, 2019.", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 36.5 + }, + { + "type": "text", + "bbox": [ + 104, + 648, + 504, + 671 + ], + "lines": [ + { + "bbox": [ + 105, + 646, + 506, + 662 + ], + "spans": [ + { + "bbox": [ + 105, + 646, + 506, + 662 + ], + "score": 1.0, + "content": "Emre O Neftci, Hesham Mostafa, and Friedemann Zenke. Surrogate gradient learning in spiking", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 115, + 659, + 349, + 671 + ], + "spans": [ + { + "bbox": [ + 115, + 659, + 349, + 671 + ], + "score": 1.0, + "content": "neural networks. arXiv preprint arXiv:1901.09948, 2019.", + "type": "text" + } + ], + "index": 39 + } + ], + "index": 38.5 + }, + { + "type": "text", + "bbox": [ + 104, + 678, + 504, + 701 + ], + "lines": [ + { + "bbox": [ + 105, + 677, + 505, + 692 + ], + "spans": [ + { + "bbox": [ + 105, + 677, + 505, + 692 + ], + "score": 1.0, + "content": "Abhronil Sengupta, Yuting Ye, Robert Wang, Chiao Liu, and Kaushik Roy. Going deeper in spiking", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 115, + 690, + 460, + 702 + ], + "spans": [ + { + "bbox": [ + 115, + 690, + 186, + 702 + ], + "score": 1.0, + "content": "neural networks:", + "type": "text" + }, + { + "bbox": [ + 186, + 690, + 205, + 702 + ], + "score": 0.4, + "content": "\\mathrm { V g g }", + "type": "inline_equation" + }, + { + "bbox": [ + 205, + 690, + 460, + 702 + ], + "score": 1.0, + "content": "and residual architectures. Frontiers in neuroscience, 13, 2019.", + "type": "text" + } + ], + "index": 41 + } + ], + "index": 40.5 + }, + { + "type": "text", + "bbox": [ + 107, + 709, + 504, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 709, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 106, + 709, + 505, + 722 + ], + "score": 1.0, + "content": "Sumit Bam Shrestha and Garrick Orchard. Slayer: Spike layer error reassignment in time. In", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 115, + 720, + 420, + 732 + ], + "spans": [ + { + "bbox": [ + 115, + 720, + 420, + 732 + ], + "score": 1.0, + "content": "Advances in Neural Information Processing Systems, pp. 1412–1421, 2018.", + "type": "text" + } + ], + "index": 43 + } + ], + "index": 42.5 + } + ], + "page_idx": 10, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 108, + 27, + 293, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 26, + 294, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 26, + 294, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 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": [ + 108, + 83, + 200, + 93 + ], + "lines": [ + { + "bbox": [ + 107, + 83, + 200, + 94 + ], + "spans": [ + { + "bbox": [ + 107, + 83, + 200, + 94 + ], + "score": 1.0, + "content": "ACKNOWLEDGMENTS", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "text", + "bbox": [ + 108, + 101, + 504, + 135 + ], + "lines": [ + { + "bbox": [ + 106, + 102, + 504, + 114 + ], + "spans": [ + { + "bbox": [ + 106, + 102, + 504, + 114 + ], + "score": 1.0, + "content": "This work was supported in part by the National Science Foundation, in part by Vannevar Bush", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 106, + 112, + 506, + 126 + ], + "spans": [ + { + "bbox": [ + 106, + 112, + 506, + 126 + ], + "score": 1.0, + "content": "Faculty Fellowship, and in part by C-BRIC, one of six centers in JUMP, a Semiconductor Research", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 106, + 124, + 314, + 137 + ], + "spans": [ + { + "bbox": [ + 106, + 124, + 314, + 137 + ], + "score": 1.0, + "content": "Corporation (SRC) program sponsored by DARPA.", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 2, + "bbox_fs": [ + 106, + 102, + 506, + 137 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 152, + 176, + 164 + ], + "lines": [ + { + "bbox": [ + 106, + 153, + 176, + 165 + ], + "spans": [ + { + "bbox": [ + 106, + 153, + 176, + 165 + ], + "score": 1.0, + "content": "REFERENCES", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 4 + }, + { + "type": "text", + "bbox": [ + 108, + 171, + 504, + 205 + ], + "lines": [ + { + "bbox": [ + 105, + 170, + 506, + 185 + ], + "spans": [ + { + "bbox": [ + 105, + 170, + 506, + 185 + ], + "score": 1.0, + "content": "Guillaume Bellec, Darjan Salaj, Anand Subramoney, Robert Legenstein, and Wolfgang Maass. Long", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 115, + 182, + 506, + 195 + ], + "spans": [ + { + "bbox": [ + 115, + 182, + 506, + 195 + ], + "score": 1.0, + "content": "short-term memory and learning-to-learn in networks of spiking neurons. In Advances in Neural", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 116, + 192, + 329, + 205 + ], + "spans": [ + { + "bbox": [ + 116, + 192, + 329, + 205 + ], + "score": 1.0, + "content": "Information Processing Systems, pp. 787–797, 2018.", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 6, + "bbox_fs": [ + 105, + 170, + 506, + 205 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 212, + 504, + 235 + ], + "lines": [ + { + "bbox": [ + 106, + 212, + 505, + 225 + ], + "spans": [ + { + "bbox": [ + 106, + 212, + 505, + 225 + ], + "score": 1.0, + "content": "Sander M Bohte, Joost N Kok, and Johannes A La Poutre. Spikeprop: backpropagation for networks ´", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 116, + 223, + 322, + 236 + ], + "spans": [ + { + "bbox": [ + 116, + 223, + 322, + 236 + ], + "score": 1.0, + "content": "of spiking neurons. In ESANN, pp. 419–424, 2000.", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 8.5, + "bbox_fs": [ + 106, + 212, + 505, + 236 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 243, + 505, + 277 + ], + "lines": [ + { + "bbox": [ + 106, + 243, + 505, + 256 + ], + "spans": [ + { + "bbox": [ + 106, + 243, + 505, + 256 + ], + "score": 1.0, + "content": "Y-Lan Boureau, Jean Ponce, and Yann LeCun. A theoretical analysis of feature pooling in visual", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 114, + 254, + 505, + 268 + ], + "spans": [ + { + "bbox": [ + 114, + 254, + 505, + 268 + ], + "score": 1.0, + "content": "recognition. In Proceedings of the 27th international conference on machine learning (ICML-10),", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 115, + 266, + 196, + 277 + ], + "spans": [ + { + "bbox": [ + 115, + 266, + 196, + 277 + ], + "score": 1.0, + "content": "pp. 111–118, 2010.", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 11, + "bbox_fs": [ + 106, + 243, + 505, + 277 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 285, + 505, + 318 + ], + "lines": [ + { + "bbox": [ + 107, + 286, + 505, + 298 + ], + "spans": [ + { + "bbox": [ + 107, + 286, + 505, + 298 + ], + "score": 1.0, + "content": "Yongqiang Cao, Yang Chen, and Deepak Khosla. Spiking deep convolutional neural networks for", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 115, + 297, + 505, + 308 + ], + "spans": [ + { + "bbox": [ + 115, + 297, + 505, + 308 + ], + "score": 1.0, + "content": "energy-efficient object recognition. International Journal of Computer Vision, 113(1):54–66,", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 115, + 306, + 144, + 320 + ], + "spans": [ + { + "bbox": [ + 115, + 306, + 144, + 320 + ], + "score": 1.0, + "content": "2015.", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 14, + "bbox_fs": [ + 107, + 286, + 505, + 320 + ] + }, + { + "type": "text", + "bbox": [ + 105, + 326, + 504, + 349 + ], + "lines": [ + { + "bbox": [ + 105, + 326, + 505, + 340 + ], + "spans": [ + { + "bbox": [ + 105, + 326, + 505, + 340 + ], + "score": 1.0, + "content": "J. Deng, W. Dong, R. Socher, L.-J. Li, K. Li, and L. Fei-Fei. ImageNet: A Large-Scale Hierarchical", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 115, + 338, + 262, + 349 + ], + "spans": [ + { + "bbox": [ + 115, + 338, + 262, + 349 + ], + "score": 1.0, + "content": "Image Database. In CVPR09, 2009.", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 16.5, + "bbox_fs": [ + 105, + 326, + 505, + 349 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 357, + 503, + 392 + ], + "lines": [ + { + "bbox": [ + 105, + 357, + 505, + 370 + ], + "spans": [ + { + "bbox": [ + 105, + 357, + 505, + 370 + ], + "score": 1.0, + "content": "Peter U Diehl, Daniel Neil, Jonathan Binas, Matthew Cook, Shih-Chii Liu, and Michael Pfeiffer.", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 115, + 369, + 505, + 382 + ], + "spans": [ + { + "bbox": [ + 115, + 369, + 505, + 382 + ], + "score": 1.0, + "content": "Fast-classifying, high-accuracy spiking deep networks through weight and threshold balancing.", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 115, + 379, + 483, + 392 + ], + "spans": [ + { + "bbox": [ + 115, + 379, + 483, + 392 + ], + "score": 1.0, + "content": "In 2015 International Joint Conference on Neural Networks (IJCNN), pp. 1–8. IEEE, 2015.", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 19, + "bbox_fs": [ + 105, + 357, + 505, + 392 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 399, + 505, + 444 + ], + "lines": [ + { + "bbox": [ + 105, + 400, + 505, + 412 + ], + "spans": [ + { + "bbox": [ + 105, + 400, + 505, + 412 + ], + "score": 1.0, + "content": "Peter U Diehl, Guido Zarrella, Andrew Cassidy, Bruno U Pedroni, and Emre Neftci. Conversion", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 116, + 411, + 505, + 423 + ], + "spans": [ + { + "bbox": [ + 116, + 411, + 505, + 423 + ], + "score": 1.0, + "content": "of artificial recurrent neural networks to spiking neural networks for low-power neuromorphic", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 114, + 421, + 506, + 435 + ], + "spans": [ + { + "bbox": [ + 114, + 421, + 506, + 435 + ], + "score": 1.0, + "content": "hardware. In 2016 IEEE International Conference on Rebooting Computing (ICRC), pp. 1–8.", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 116, + 433, + 168, + 444 + ], + "spans": [ + { + "bbox": [ + 116, + 433, + 168, + 444 + ], + "score": 1.0, + "content": "IEEE, 2016.", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 22.5, + "bbox_fs": [ + 105, + 400, + 506, + 444 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 452, + 505, + 486 + ], + "lines": [ + { + "bbox": [ + 105, + 451, + 505, + 467 + ], + "spans": [ + { + "bbox": [ + 105, + 451, + 505, + 467 + ], + "score": 1.0, + "content": "Kaiming He, Xiangyu Zhang, Shaoqing Ren, and Jian Sun. Deep residual learning for image", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 115, + 463, + 505, + 476 + ], + "spans": [ + { + "bbox": [ + 115, + 463, + 505, + 476 + ], + "score": 1.0, + "content": "recognition. In Proceedings of the IEEE conference on computer vision and pattern recognition,", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 115, + 474, + 197, + 486 + ], + "spans": [ + { + "bbox": [ + 115, + 474, + 197, + 486 + ], + "score": 1.0, + "content": "pp. 770–778, 2016.", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 26, + "bbox_fs": [ + 105, + 451, + 505, + 486 + ] + }, + { + "type": "text", + "bbox": [ + 105, + 493, + 504, + 517 + ], + "lines": [ + { + "bbox": [ + 106, + 493, + 505, + 506 + ], + "spans": [ + { + "bbox": [ + 106, + 493, + 505, + 506 + ], + "score": 1.0, + "content": "Dongsung Huh and Terrence J Sejnowski. Gradient descent for spiking neural networks. In", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 115, + 505, + 420, + 517 + ], + "spans": [ + { + "bbox": [ + 115, + 505, + 420, + 517 + ], + "score": 1.0, + "content": "Advances in Neural Information Processing Systems, pp. 1433–1443, 2018.", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 28.5, + "bbox_fs": [ + 106, + 493, + 505, + 517 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 524, + 503, + 547 + ], + "lines": [ + { + "bbox": [ + 105, + 523, + 505, + 538 + ], + "spans": [ + { + "bbox": [ + 105, + 523, + 505, + 538 + ], + "score": 1.0, + "content": "Eric Hunsberger and Chris Eliasmith. Spiking deep networks with lif neurons. arXiv preprint", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 115, + 536, + 220, + 547 + ], + "spans": [ + { + "bbox": [ + 115, + 536, + 220, + 547 + ], + "score": 1.0, + "content": "arXiv:1510.08829, 2015.", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 30.5, + "bbox_fs": [ + 105, + 523, + 505, + 547 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 555, + 504, + 578 + ], + "lines": [ + { + "bbox": [ + 105, + 554, + 505, + 569 + ], + "spans": [ + { + "bbox": [ + 105, + 554, + 505, + 569 + ], + "score": 1.0, + "content": "Sergey Ioffe and Christian Szegedy. Batch normalization: Accelerating deep network training by", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 115, + 566, + 411, + 578 + ], + "spans": [ + { + "bbox": [ + 115, + 566, + 411, + 578 + ], + "score": 1.0, + "content": "reducing internal covariate shift. arXiv preprint arXiv:1502.03167, 2015.", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 32.5, + "bbox_fs": [ + 105, + 554, + 505, + 578 + ] + }, + { + "type": "text", + "bbox": [ + 105, + 586, + 503, + 609 + ], + "lines": [ + { + "bbox": [ + 105, + 585, + 505, + 600 + ], + "spans": [ + { + "bbox": [ + 105, + 585, + 505, + 600 + ], + "score": 1.0, + "content": "Alex Krizhevsky, Geoffrey Hinton, et al. Learning multiple layers of features from tiny images.", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 116, + 597, + 249, + 610 + ], + "spans": [ + { + "bbox": [ + 116, + 597, + 249, + 610 + ], + "score": 1.0, + "content": "Technical report, Citeseer, 2009.", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 34.5, + "bbox_fs": [ + 105, + 585, + 505, + 610 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 616, + 504, + 640 + ], + "lines": [ + { + "bbox": [ + 106, + 617, + 505, + 630 + ], + "spans": [ + { + "bbox": [ + 106, + 617, + 505, + 630 + ], + "score": 1.0, + "content": "Chankyu Lee, Syed Shakib Sarwar, and Kaushik Roy. Enabling spike-based backpropagation in", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 115, + 628, + 481, + 640 + ], + "spans": [ + { + "bbox": [ + 115, + 628, + 481, + 640 + ], + "score": 1.0, + "content": "state-of-the-art deep neural network architectures. arXiv preprint arXiv:1903.06379, 2019.", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 36.5, + "bbox_fs": [ + 106, + 617, + 505, + 640 + ] + }, + { + "type": "text", + "bbox": [ + 104, + 648, + 504, + 671 + ], + "lines": [ + { + "bbox": [ + 105, + 646, + 506, + 662 + ], + "spans": [ + { + "bbox": [ + 105, + 646, + 506, + 662 + ], + "score": 1.0, + "content": "Emre O Neftci, Hesham Mostafa, and Friedemann Zenke. Surrogate gradient learning in spiking", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 115, + 659, + 349, + 671 + ], + "spans": [ + { + "bbox": [ + 115, + 659, + 349, + 671 + ], + "score": 1.0, + "content": "neural networks. arXiv preprint arXiv:1901.09948, 2019.", + "type": "text" + } + ], + "index": 39 + } + ], + "index": 38.5, + "bbox_fs": [ + 105, + 646, + 506, + 671 + ] + }, + { + "type": "text", + "bbox": [ + 104, + 678, + 504, + 701 + ], + "lines": [ + { + "bbox": [ + 105, + 677, + 505, + 692 + ], + "spans": [ + { + "bbox": [ + 105, + 677, + 505, + 692 + ], + "score": 1.0, + "content": "Abhronil Sengupta, Yuting Ye, Robert Wang, Chiao Liu, and Kaushik Roy. Going deeper in spiking", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 115, + 690, + 460, + 702 + ], + "spans": [ + { + "bbox": [ + 115, + 690, + 186, + 702 + ], + "score": 1.0, + "content": "neural networks:", + "type": "text" + }, + { + "bbox": [ + 186, + 690, + 205, + 702 + ], + "score": 0.4, + "content": "\\mathrm { V g g }", + "type": "inline_equation" + }, + { + "bbox": [ + 205, + 690, + 460, + 702 + ], + "score": 1.0, + "content": "and residual architectures. Frontiers in neuroscience, 13, 2019.", + "type": "text" + } + ], + "index": 41 + } + ], + "index": 40.5, + "bbox_fs": [ + 105, + 677, + 505, + 702 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 709, + 504, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 709, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 106, + 709, + 505, + 722 + ], + "score": 1.0, + "content": "Sumit Bam Shrestha and Garrick Orchard. Slayer: Spike layer error reassignment in time. In", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 115, + 720, + 420, + 732 + ], + "spans": [ + { + "bbox": [ + 115, + 720, + 420, + 732 + ], + "score": 1.0, + "content": "Advances in Neural Information Processing Systems, pp. 1412–1421, 2018.", + "type": "text" + } + ], + "index": 43 + } + ], + "index": 42.5, + "bbox_fs": [ + 106, + 709, + 505, + 732 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 105, + 82, + 507, + 309 + ], + "lines": [ + { + "bbox": [ + 105, + 81, + 505, + 97 + ], + "spans": [ + { + "bbox": [ + 105, + 81, + 505, + 97 + ], + "score": 1.0, + "content": "Karen Simonyan and Andrew Zisserman. Very deep convolutional networks for large-scale image", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 115, + 94, + 325, + 106 + ], + "spans": [ + { + "bbox": [ + 115, + 94, + 325, + 106 + ], + "score": 1.0, + "content": "recognition. arXiv preprint arXiv:1409.1556, 2014.", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 112, + 505, + 126 + ], + "spans": [ + { + "bbox": [ + 105, + 112, + 505, + 126 + ], + "score": 1.0, + "content": "Sen Song, Kenneth D Miller, and Larry F Abbott. Competitive hebbian learning through", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 116, + 123, + 442, + 136 + ], + "spans": [ + { + "bbox": [ + 116, + 123, + 442, + 136 + ], + "score": 1.0, + "content": "spike-timing-dependent synaptic plasticity. Nature neuroscience, 3(9):919, 2000.", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 142, + 505, + 156 + ], + "spans": [ + { + "bbox": [ + 105, + 142, + 505, + 156 + ], + "score": 1.0, + "content": "Nitish Srivastava, Geoffrey Hinton, Alex Krizhevsky, Ilya Sutskever, and Ruslan Salakhutdinov.", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 115, + 153, + 505, + 167 + ], + "spans": [ + { + "bbox": [ + 115, + 153, + 505, + 167 + ], + "score": 1.0, + "content": "Dropout: a simple way to prevent neural networks from overfitting. The journal of machine", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 116, + 165, + 291, + 177 + ], + "spans": [ + { + "bbox": [ + 116, + 165, + 291, + 177 + ], + "score": 1.0, + "content": "learning research, 15(1):1929–1958, 2014.", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 104, + 182, + 506, + 197 + ], + "spans": [ + { + "bbox": [ + 104, + 182, + 506, + 197 + ], + "score": 1.0, + "content": "Paul J Werbos et al. Backpropagation through time: what it does and how to do it. Proceedings of", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 116, + 195, + 261, + 207 + ], + "spans": [ + { + "bbox": [ + 116, + 195, + 261, + 207 + ], + "score": 1.0, + "content": "the IEEE, 78(10):1550–1560, 1990.", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 106, + 212, + 505, + 226 + ], + "spans": [ + { + "bbox": [ + 106, + 212, + 505, + 226 + ], + "score": 1.0, + "content": "Yujie Wu, Lei Deng, Guoqi Li, Jun Zhu, and Luping Shi. Spatio-temporal backpropagation for", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 115, + 225, + 472, + 237 + ], + "spans": [ + { + "bbox": [ + 115, + 225, + 472, + 237 + ], + "score": 1.0, + "content": "training high-performance spiking neural networks. Frontiers in neuroscience, 12, 2018.", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 242, + 505, + 257 + ], + "spans": [ + { + "bbox": [ + 105, + 242, + 505, + 257 + ], + "score": 1.0, + "content": "Yujie Wu, Lei Deng, Guoqi Li, Jun Zhu, Yuan Xie, and Luping Shi. Direct training for spiking neural", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 115, + 253, + 505, + 268 + ], + "spans": [ + { + "bbox": [ + 115, + 253, + 505, + 268 + ], + "score": 1.0, + "content": "networks: Faster, larger, better. In Proceedings of the AAAI Conference on Artificial Intelligence,", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 116, + 265, + 253, + 278 + ], + "spans": [ + { + "bbox": [ + 116, + 265, + 253, + 278 + ], + "score": 1.0, + "content": "volume 33, pp. 1311–1318, 2019.", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 106, + 284, + 505, + 297 + ], + "spans": [ + { + "bbox": [ + 106, + 284, + 505, + 297 + ], + "score": 1.0, + "content": "Friedemann Zenke and Surya Ganguli. Superspike: Supervised learning in multilayer spiking neural", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 115, + 295, + 343, + 307 + ], + "spans": [ + { + "bbox": [ + 115, + 295, + 343, + 307 + ], + "score": 1.0, + "content": "networks. Neural computation, 30(6):1514–1541, 2018.", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 7.5 + } + ], + "page_idx": 11, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 108, + 27, + 294, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 26, + 293, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 26, + 293, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2020", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 300, + 751, + 311, + 760 + ], + "lines": [ + { + "bbox": [ + 299, + 750, + 313, + 764 + ], + "spans": [ + { + "bbox": [ + 299, + 750, + 313, + 764 + ], + "score": 1.0, + "content": "12", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "list", + "bbox": [ + 105, + 82, + 507, + 309 + ], + "lines": [ + { + "bbox": [ + 105, + 81, + 505, + 97 + ], + "spans": [ + { + "bbox": [ + 105, + 81, + 505, + 97 + ], + "score": 1.0, + "content": "Karen Simonyan and Andrew Zisserman. Very deep convolutional networks for large-scale image", + "type": "text" + } + ], + "index": 0, + "is_list_start_line": true + }, + { + "bbox": [ + 115, + 94, + 325, + 106 + ], + "spans": [ + { + "bbox": [ + 115, + 94, + 325, + 106 + ], + "score": 1.0, + "content": "recognition. arXiv preprint arXiv:1409.1556, 2014.", + "type": "text" + } + ], + "index": 1, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 112, + 505, + 126 + ], + "spans": [ + { + "bbox": [ + 105, + 112, + 505, + 126 + ], + "score": 1.0, + "content": "Sen Song, Kenneth D Miller, and Larry F Abbott. Competitive hebbian learning through", + "type": "text" + } + ], + "index": 2, + "is_list_start_line": true + }, + { + "bbox": [ + 116, + 123, + 442, + 136 + ], + "spans": [ + { + "bbox": [ + 116, + 123, + 442, + 136 + ], + "score": 1.0, + "content": "spike-timing-dependent synaptic plasticity. Nature neuroscience, 3(9):919, 2000.", + "type": "text" + } + ], + "index": 3, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 142, + 505, + 156 + ], + "spans": [ + { + "bbox": [ + 105, + 142, + 505, + 156 + ], + "score": 1.0, + "content": "Nitish Srivastava, Geoffrey Hinton, Alex Krizhevsky, Ilya Sutskever, and Ruslan Salakhutdinov.", + "type": "text" + } + ], + "index": 4, + "is_list_start_line": true + }, + { + "bbox": [ + 115, + 153, + 505, + 167 + ], + "spans": [ + { + "bbox": [ + 115, + 153, + 505, + 167 + ], + "score": 1.0, + "content": "Dropout: a simple way to prevent neural networks from overfitting. The journal of machine", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 116, + 165, + 291, + 177 + ], + "spans": [ + { + "bbox": [ + 116, + 165, + 291, + 177 + ], + "score": 1.0, + "content": "learning research, 15(1):1929–1958, 2014.", + "type": "text" + } + ], + "index": 6, + "is_list_end_line": true + }, + { + "bbox": [ + 104, + 182, + 506, + 197 + ], + "spans": [ + { + "bbox": [ + 104, + 182, + 506, + 197 + ], + "score": 1.0, + "content": "Paul J Werbos et al. Backpropagation through time: what it does and how to do it. Proceedings of", + "type": "text" + } + ], + "index": 7, + "is_list_start_line": true + }, + { + "bbox": [ + 116, + 195, + 261, + 207 + ], + "spans": [ + { + "bbox": [ + 116, + 195, + 261, + 207 + ], + "score": 1.0, + "content": "the IEEE, 78(10):1550–1560, 1990.", + "type": "text" + } + ], + "index": 8, + "is_list_end_line": true + }, + { + "bbox": [ + 106, + 212, + 505, + 226 + ], + "spans": [ + { + "bbox": [ + 106, + 212, + 505, + 226 + ], + "score": 1.0, + "content": "Yujie Wu, Lei Deng, Guoqi Li, Jun Zhu, and Luping Shi. Spatio-temporal backpropagation for", + "type": "text" + } + ], + "index": 9, + "is_list_start_line": true + }, + { + "bbox": [ + 115, + 225, + 472, + 237 + ], + "spans": [ + { + "bbox": [ + 115, + 225, + 472, + 237 + ], + "score": 1.0, + "content": "training high-performance spiking neural networks. Frontiers in neuroscience, 12, 2018.", + "type": "text" + } + ], + "index": 10, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 242, + 505, + 257 + ], + "spans": [ + { + "bbox": [ + 105, + 242, + 505, + 257 + ], + "score": 1.0, + "content": "Yujie Wu, Lei Deng, Guoqi Li, Jun Zhu, Yuan Xie, and Luping Shi. Direct training for spiking neural", + "type": "text" + } + ], + "index": 11, + "is_list_start_line": true + }, + { + "bbox": [ + 115, + 253, + 505, + 268 + ], + "spans": [ + { + "bbox": [ + 115, + 253, + 505, + 268 + ], + "score": 1.0, + "content": "networks: Faster, larger, better. In Proceedings of the AAAI Conference on Artificial Intelligence,", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 116, + 265, + 253, + 278 + ], + "spans": [ + { + "bbox": [ + 116, + 265, + 253, + 278 + ], + "score": 1.0, + "content": "volume 33, pp. 1311–1318, 2019.", + "type": "text" + } + ], + "index": 13, + "is_list_end_line": true + }, + { + "bbox": [ + 106, + 284, + 505, + 297 + ], + "spans": [ + { + "bbox": [ + 106, + 284, + 505, + 297 + ], + "score": 1.0, + "content": "Friedemann Zenke and Surya Ganguli. Superspike: Supervised learning in multilayer spiking neural", + "type": "text" + } + ], + "index": 14, + "is_list_start_line": true + }, + { + "bbox": [ + 115, + 295, + 343, + 307 + ], + "spans": [ + { + "bbox": [ + 115, + 295, + 343, + 307 + ], + "score": 1.0, + "content": "networks. Neural computation, 30(6):1514–1541, 2018.", + "type": "text" + } + ], + "index": 15, + "is_list_end_line": true + } + ], + "index": 7.5, + "bbox_fs": [ + 104, + 81, + 506, + 307 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "title", + "bbox": [ + 107, + 81, + 402, + 94 + ], + "lines": [ + { + "bbox": [ + 105, + 80, + 403, + 96 + ], + "spans": [ + { + "bbox": [ + 105, + 80, + 403, + 96 + ], + "score": 1.0, + "content": "A COMPARISONS WITH OTHER SURROGATE GRADIENTS", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "text", + "bbox": [ + 107, + 106, + 296, + 297 + ], + "lines": [ + { + "bbox": [ + 106, + 105, + 297, + 118 + ], + "spans": [ + { + "bbox": [ + 106, + 105, + 297, + 118 + ], + "score": 1.0, + "content": "The transfer function of the spiking neuron", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 106, + 117, + 297, + 129 + ], + "spans": [ + { + "bbox": [ + 106, + 117, + 297, + 129 + ], + "score": 1.0, + "content": "is a step function and its derivative is zero", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 128, + 297, + 140 + ], + "spans": [ + { + "bbox": [ + 105, + 128, + 297, + 140 + ], + "score": 1.0, + "content": "everywhere except at the time of spike where", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 138, + 297, + 151 + ], + "spans": [ + { + "bbox": [ + 105, + 138, + 297, + 151 + ], + "score": 1.0, + "content": "it is not defined. In order to perform", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 150, + 297, + 162 + ], + "spans": [ + { + "bbox": [ + 105, + 150, + 297, + 162 + ], + "score": 1.0, + "content": "backpropagation with spiking neuron several", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 161, + 298, + 173 + ], + "spans": [ + { + "bbox": [ + 105, + 161, + 298, + 173 + ], + "score": 1.0, + "content": "approximations are proposed for the gradient", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 171, + 298, + 184 + ], + "spans": [ + { + "bbox": [ + 105, + 171, + 298, + 184 + ], + "score": 1.0, + "content": "function (Bellec et al., 2018; Zenke &", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 106, + 182, + 297, + 195 + ], + "spans": [ + { + "bbox": [ + 106, + 182, + 297, + 195 + ], + "score": 1.0, + "content": "Ganguli, 2018; Shrestha & Orchard, 2018;", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 192, + 298, + 207 + ], + "spans": [ + { + "bbox": [ + 105, + 192, + 298, + 207 + ], + "score": 1.0, + "content": "Wu et al., 2018). These approximations", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 106, + 204, + 297, + 217 + ], + "spans": [ + { + "bbox": [ + 106, + 204, + 297, + 217 + ], + "score": 1.0, + "content": "are either a linear or exponential function", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 215, + 297, + 228 + ], + "spans": [ + { + "bbox": [ + 105, + 215, + 122, + 228 + ], + "score": 1.0, + "content": "of", + "type": "text" + }, + { + "bbox": [ + 122, + 216, + 165, + 227 + ], + "score": 0.9, + "content": "\\mathrm { ~ ( ~ } u \\mathrm { ~ \\mathrm { ~ - ~ } ~ } V _ { t } \\mathrm { ) }", + "type": "inline_equation" + }, + { + "bbox": [ + 165, + 215, + 206, + 228 + ], + "score": 1.0, + "content": ", where", + "type": "text" + }, + { + "bbox": [ + 206, + 218, + 214, + 226 + ], + "score": 0.63, + "content": "u", + "type": "inline_equation" + }, + { + "bbox": [ + 214, + 215, + 297, + 228 + ], + "score": 1.0, + "content": "is the membrane", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 226, + 297, + 240 + ], + "spans": [ + { + "bbox": [ + 105, + 226, + 166, + 240 + ], + "score": 1.0, + "content": "potential and", + "type": "text" + }, + { + "bbox": [ + 166, + 227, + 177, + 238 + ], + "score": 0.84, + "content": "V _ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 178, + 226, + 297, + 240 + ], + "score": 1.0, + "content": "the threshold voltage (Fig.", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 104, + 236, + 298, + 251 + ], + "spans": [ + { + "bbox": [ + 104, + 236, + 298, + 251 + ], + "score": 1.0, + "content": "4). These approximations are referred as", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 249, + 297, + 261 + ], + "spans": [ + { + "bbox": [ + 105, + 249, + 297, + 261 + ], + "score": 1.0, + "content": "surrogate gradient or pseudo-derivative. In this", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 259, + 297, + 271 + ], + "spans": [ + { + "bbox": [ + 105, + 259, + 297, + 271 + ], + "score": 1.0, + "content": "work, we proposed an approximation that is", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 106, + 271, + 297, + 283 + ], + "spans": [ + { + "bbox": [ + 106, + 271, + 297, + 283 + ], + "score": 1.0, + "content": "computed using the spike timing of the neuron", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 106, + 281, + 297, + 294 + ], + "spans": [ + { + "bbox": [ + 106, + 281, + 297, + 294 + ], + "score": 1.0, + "content": "(Equation 11). We compare our proposed", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 9 + }, + { + "type": "text", + "bbox": [ + 106, + 293, + 324, + 304 + ], + "lines": [ + { + "bbox": [ + 105, + 291, + 325, + 306 + ], + "spans": [ + { + "bbox": [ + 105, + 291, + 325, + 306 + ], + "score": 1.0, + "content": "approximation with the following surrogate gradients:", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 18 + }, + { + "type": "image", + "bbox": [ + 306, + 118, + 502, + 226 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 306, + 118, + 502, + 226 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 306, + 118, + 502, + 226 + ], + "spans": [ + { + "bbox": [ + 306, + 118, + 502, + 226 + ], + "score": 0.968, + "type": "image", + "image_path": "cd48833ffbcb4acb67d4884150d62d285617702c65c61e577bbdc212ea2dfd23.jpg" + } + ] + } + ], + "index": 22.5, + "virtual_lines": [ + { + "bbox": [ + 306, + 118, + 502, + 131.5 + ], + "spans": [], + "index": 19 + }, + { + "bbox": [ + 306, + 131.5, + 502, + 145.0 + ], + "spans": [], + "index": 20 + }, + { + "bbox": [ + 306, + 145.0, + 502, + 158.5 + ], + "spans": [], + "index": 21 + }, + { + "bbox": [ + 306, + 158.5, + 502, + 172.0 + ], + "spans": [], + "index": 22 + }, + { + "bbox": [ + 306, + 172.0, + 502, + 185.5 + ], + "spans": [], + "index": 23 + }, + { + "bbox": [ + 306, + 185.5, + 502, + 199.0 + ], + "spans": [], + "index": 24 + }, + { + "bbox": [ + 306, + 199.0, + 502, + 212.5 + ], + "spans": [], + "index": 25 + }, + { + "bbox": [ + 306, + 212.5, + 502, + 226.0 + ], + "spans": [], + "index": 26 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 304, + 237, + 505, + 270 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 303, + 236, + 505, + 249 + ], + "spans": [ + { + "bbox": [ + 303, + 236, + 505, + 249 + ], + "score": 1.0, + "content": "Figure 4: Linear and Exponential approximation", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 303, + 246, + 505, + 262 + ], + "spans": [ + { + "bbox": [ + 303, + 246, + 505, + 262 + ], + "score": 1.0, + "content": "of the gradient of the spiking neuron (step", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 303, + 258, + 347, + 272 + ], + "spans": [ + { + "bbox": [ + 303, + 258, + 347, + 272 + ], + "score": 1.0, + "content": "function).", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 28 + } + ], + "index": 25.25 + }, + { + "type": "interline_equation", + "bbox": [ + 241, + 308, + 370, + 333 + ], + "lines": [ + { + "bbox": [ + 241, + 308, + 370, + 333 + ], + "spans": [ + { + "bbox": [ + 241, + 308, + 370, + 333 + ], + "score": 0.9, + "content": "\\frac { \\partial o } { \\partial u } = \\alpha \\ : m a x \\{ 0 , 1 - | u - V _ { t } | \\}", + "type": "interline_equation", + "image_path": "d3ffa7db831cd988b1f4bbe805411a4c16c250967ce00caf69fdc7b114865c16.jpg" + } + ] + } + ], + "index": 30, + "virtual_lines": [ + { + "bbox": [ + 241, + 308, + 370, + 333 + ], + "spans": [], + "index": 30 + } + ] + }, + { + "type": "interline_equation", + "bbox": [ + 266, + 337, + 344, + 361 + ], + "lines": [ + { + "bbox": [ + 266, + 337, + 344, + 361 + ], + "spans": [ + { + "bbox": [ + 266, + 337, + 344, + 361 + ], + "score": 0.92, + "content": "\\frac { \\partial o } { \\partial u } = \\alpha e ^ { - \\beta \\left| u - V _ { t } \\right| }", + "type": "interline_equation", + "image_path": "5e3cb13a7c82ebc99bad03106af2446876f13d041ebed34abb8d7cbfec9c4b23.jpg" + } + ] + } + ], + "index": 31, + "virtual_lines": [ + { + "bbox": [ + 266, + 337, + 344, + 361 + ], + "spans": [], + "index": 31 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 363, + 505, + 506 + ], + "lines": [ + { + "bbox": [ + 106, + 363, + 505, + 376 + ], + "spans": [ + { + "bbox": [ + 106, + 363, + 135, + 376 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 135, + 366, + 142, + 373 + ], + "score": 0.7, + "content": "o", + "type": "inline_equation" + }, + { + "bbox": [ + 142, + 363, + 297, + 376 + ], + "score": 1.0, + "content": "is the binary output of the neuron,", + "type": "text" + }, + { + "bbox": [ + 297, + 366, + 304, + 373 + ], + "score": 0.77, + "content": "u", + "type": "inline_equation" + }, + { + "bbox": [ + 305, + 363, + 424, + 376 + ], + "score": 1.0, + "content": "is the membrane potential,", + "type": "text" + }, + { + "bbox": [ + 424, + 363, + 434, + 374 + ], + "score": 0.87, + "content": "V _ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 435, + 363, + 505, + 376 + ], + "score": 1.0, + "content": "is the threshold", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 374, + 505, + 387 + ], + "spans": [ + { + "bbox": [ + 105, + 374, + 146, + 387 + ], + "score": 1.0, + "content": "potential,", + "type": "text" + }, + { + "bbox": [ + 147, + 376, + 154, + 385 + ], + "score": 0.75, + "content": "\\alpha", + "type": "inline_equation" + }, + { + "bbox": [ + 155, + 374, + 173, + 387 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 173, + 375, + 180, + 386 + ], + "score": 0.84, + "content": "\\beta", + "type": "inline_equation" + }, + { + "bbox": [ + 181, + 374, + 505, + 387 + ], + "score": 1.0, + "content": "are constants. Equation 13 and Equation 14 represent the linear and exponential", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 385, + 505, + 398 + ], + "spans": [ + { + "bbox": [ + 105, + 385, + 505, + 398 + ], + "score": 1.0, + "content": "approximation of the gradient, respectively. We employed these approximations in the hybrid", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 396, + 506, + 409 + ], + "spans": [ + { + "bbox": [ + 105, + 396, + 506, + 409 + ], + "score": 1.0, + "content": "training for a VGG9 network for CIFAR10 dataset. All the approximations (Equation 11, 13, and", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 106, + 407, + 506, + 420 + ], + "spans": [ + { + "bbox": [ + 106, + 407, + 506, + 420 + ], + "score": 1.0, + "content": "14) produced similar results in terms of accuracy and number of epochs for convergence. This shows", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 106, + 417, + 505, + 430 + ], + "spans": [ + { + "bbox": [ + 106, + 417, + 160, + 430 + ], + "score": 1.0, + "content": "that the term", + "type": "text" + }, + { + "bbox": [ + 160, + 419, + 173, + 428 + ], + "score": 0.81, + "content": "\\Delta t", + "type": "inline_equation" + }, + { + "bbox": [ + 173, + 417, + 337, + 430 + ], + "score": 1.0, + "content": "(Equation 11) is a good replacement for", + "type": "text" + }, + { + "bbox": [ + 337, + 419, + 371, + 430 + ], + "score": 0.92, + "content": "| u - V _ { t } |", + "type": "inline_equation" + }, + { + "bbox": [ + 371, + 417, + 505, + 430 + ], + "score": 1.0, + "content": "(Equation 14). The behaviour of", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 107, + 428, + 505, + 442 + ], + "spans": [ + { + "bbox": [ + 107, + 430, + 120, + 439 + ], + "score": 0.79, + "content": "\\Delta t", + "type": "inline_equation" + }, + { + "bbox": [ + 120, + 428, + 138, + 442 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 138, + 430, + 171, + 441 + ], + "score": 0.9, + "content": "| u - V _ { t } |", + "type": "inline_equation" + }, + { + "bbox": [ + 171, + 428, + 505, + 442 + ], + "score": 1.0, + "content": "is similar, i.e., it is small closer to the time of spike and increases as we move away", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 106, + 439, + 505, + 453 + ], + "spans": [ + { + "bbox": [ + 106, + 439, + 296, + 453 + ], + "score": 1.0, + "content": "from the spiking event. The advantage of using", + "type": "text" + }, + { + "bbox": [ + 296, + 441, + 309, + 450 + ], + "score": 0.84, + "content": "\\Delta t", + "type": "inline_equation" + }, + { + "bbox": [ + 309, + 439, + 505, + 453 + ], + "score": 1.0, + "content": "is that its domain is bounded by the total number", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 451, + 506, + 464 + ], + "spans": [ + { + "bbox": [ + 105, + 451, + 506, + 464 + ], + "score": 1.0, + "content": "of time steps (Equation 12). Hence, all possible values of gradients can be pre-computed and stored", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 462, + 506, + 475 + ], + "spans": [ + { + "bbox": [ + 105, + 462, + 506, + 475 + ], + "score": 1.0, + "content": "in a table for faster access during training. This is not possible for membrane potential because it", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 474, + 505, + 485 + ], + "spans": [ + { + "bbox": [ + 105, + 474, + 505, + 485 + ], + "score": 1.0, + "content": "is a real value computed based on the stochastic inputs and previous state of the neuron which is", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 484, + 505, + 497 + ], + "spans": [ + { + "bbox": [ + 105, + 484, + 505, + 497 + ], + "score": 1.0, + "content": "not known before hand. The exact benefit in energy from the pre-computation is dependent on the", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 494, + 419, + 508 + ], + "spans": [ + { + "bbox": [ + 105, + 494, + 419, + 508 + ], + "score": 1.0, + "content": "overall system architecture and evaluating it is beyond the scope of this paper.", + "type": "text" + } + ], + "index": 44 + } + ], + "index": 38 + } + ], + "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, + 312, + 764 + ], + "spans": [ + { + "bbox": [ + 299, + 750, + 312, + 764 + ], + "score": 1.0, + "content": "13", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "title", + "bbox": [ + 107, + 81, + 402, + 94 + ], + "lines": [ + { + "bbox": [ + 105, + 80, + 403, + 96 + ], + "spans": [ + { + "bbox": [ + 105, + 80, + 403, + 96 + ], + "score": 1.0, + "content": "A COMPARISONS WITH OTHER SURROGATE GRADIENTS", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "text", + "bbox": [ + 107, + 106, + 296, + 297 + ], + "lines": [ + { + "bbox": [ + 106, + 105, + 297, + 118 + ], + "spans": [ + { + "bbox": [ + 106, + 105, + 297, + 118 + ], + "score": 1.0, + "content": "The transfer function of the spiking neuron", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 106, + 117, + 297, + 129 + ], + "spans": [ + { + "bbox": [ + 106, + 117, + 297, + 129 + ], + "score": 1.0, + "content": "is a step function and its derivative is zero", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 128, + 297, + 140 + ], + "spans": [ + { + "bbox": [ + 105, + 128, + 297, + 140 + ], + "score": 1.0, + "content": "everywhere except at the time of spike where", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 138, + 297, + 151 + ], + "spans": [ + { + "bbox": [ + 105, + 138, + 297, + 151 + ], + "score": 1.0, + "content": "it is not defined. In order to perform", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 150, + 297, + 162 + ], + "spans": [ + { + "bbox": [ + 105, + 150, + 297, + 162 + ], + "score": 1.0, + "content": "backpropagation with spiking neuron several", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 161, + 298, + 173 + ], + "spans": [ + { + "bbox": [ + 105, + 161, + 298, + 173 + ], + "score": 1.0, + "content": "approximations are proposed for the gradient", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 171, + 298, + 184 + ], + "spans": [ + { + "bbox": [ + 105, + 171, + 298, + 184 + ], + "score": 1.0, + "content": "function (Bellec et al., 2018; Zenke &", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 106, + 182, + 297, + 195 + ], + "spans": [ + { + "bbox": [ + 106, + 182, + 297, + 195 + ], + "score": 1.0, + "content": "Ganguli, 2018; Shrestha & Orchard, 2018;", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 192, + 298, + 207 + ], + "spans": [ + { + "bbox": [ + 105, + 192, + 298, + 207 + ], + "score": 1.0, + "content": "Wu et al., 2018). These approximations", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 106, + 204, + 297, + 217 + ], + "spans": [ + { + "bbox": [ + 106, + 204, + 297, + 217 + ], + "score": 1.0, + "content": "are either a linear or exponential function", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 215, + 297, + 228 + ], + "spans": [ + { + "bbox": [ + 105, + 215, + 122, + 228 + ], + "score": 1.0, + "content": "of", + "type": "text" + }, + { + "bbox": [ + 122, + 216, + 165, + 227 + ], + "score": 0.9, + "content": "\\mathrm { ~ ( ~ } u \\mathrm { ~ \\mathrm { ~ - ~ } ~ } V _ { t } \\mathrm { ) }", + "type": "inline_equation" + }, + { + "bbox": [ + 165, + 215, + 206, + 228 + ], + "score": 1.0, + "content": ", where", + "type": "text" + }, + { + "bbox": [ + 206, + 218, + 214, + 226 + ], + "score": 0.63, + "content": "u", + "type": "inline_equation" + }, + { + "bbox": [ + 214, + 215, + 297, + 228 + ], + "score": 1.0, + "content": "is the membrane", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 226, + 297, + 240 + ], + "spans": [ + { + "bbox": [ + 105, + 226, + 166, + 240 + ], + "score": 1.0, + "content": "potential and", + "type": "text" + }, + { + "bbox": [ + 166, + 227, + 177, + 238 + ], + "score": 0.84, + "content": "V _ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 178, + 226, + 297, + 240 + ], + "score": 1.0, + "content": "the threshold voltage (Fig.", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 104, + 236, + 298, + 251 + ], + "spans": [ + { + "bbox": [ + 104, + 236, + 298, + 251 + ], + "score": 1.0, + "content": "4). These approximations are referred as", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 249, + 297, + 261 + ], + "spans": [ + { + "bbox": [ + 105, + 249, + 297, + 261 + ], + "score": 1.0, + "content": "surrogate gradient or pseudo-derivative. In this", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 259, + 297, + 271 + ], + "spans": [ + { + "bbox": [ + 105, + 259, + 297, + 271 + ], + "score": 1.0, + "content": "work, we proposed an approximation that is", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 106, + 271, + 297, + 283 + ], + "spans": [ + { + "bbox": [ + 106, + 271, + 297, + 283 + ], + "score": 1.0, + "content": "computed using the spike timing of the neuron", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 106, + 281, + 297, + 294 + ], + "spans": [ + { + "bbox": [ + 106, + 281, + 297, + 294 + ], + "score": 1.0, + "content": "(Equation 11). We compare our proposed", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 291, + 325, + 306 + ], + "spans": [ + { + "bbox": [ + 105, + 291, + 325, + 306 + ], + "score": 1.0, + "content": "approximation with the following surrogate gradients:", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 9, + "bbox_fs": [ + 104, + 105, + 298, + 294 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 293, + 324, + 304 + ], + "lines": [], + "index": 18, + "bbox_fs": [ + 105, + 291, + 325, + 306 + ], + "lines_deleted": true + }, + { + "type": "image", + "bbox": [ + 306, + 118, + 502, + 226 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 306, + 118, + 502, + 226 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 306, + 118, + 502, + 226 + ], + "spans": [ + { + "bbox": [ + 306, + 118, + 502, + 226 + ], + "score": 0.968, + "type": "image", + "image_path": "cd48833ffbcb4acb67d4884150d62d285617702c65c61e577bbdc212ea2dfd23.jpg" + } + ] + } + ], + "index": 22.5, + "virtual_lines": [ + { + "bbox": [ + 306, + 118, + 502, + 131.5 + ], + "spans": [], + "index": 19 + }, + { + "bbox": [ + 306, + 131.5, + 502, + 145.0 + ], + "spans": [], + "index": 20 + }, + { + "bbox": [ + 306, + 145.0, + 502, + 158.5 + ], + "spans": [], + "index": 21 + }, + { + "bbox": [ + 306, + 158.5, + 502, + 172.0 + ], + "spans": [], + "index": 22 + }, + { + "bbox": [ + 306, + 172.0, + 502, + 185.5 + ], + "spans": [], + "index": 23 + }, + { + "bbox": [ + 306, + 185.5, + 502, + 199.0 + ], + "spans": [], + "index": 24 + }, + { + "bbox": [ + 306, + 199.0, + 502, + 212.5 + ], + "spans": [], + "index": 25 + }, + { + "bbox": [ + 306, + 212.5, + 502, + 226.0 + ], + "spans": [], + "index": 26 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 304, + 237, + 505, + 270 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 303, + 236, + 505, + 249 + ], + "spans": [ + { + "bbox": [ + 303, + 236, + 505, + 249 + ], + "score": 1.0, + "content": "Figure 4: Linear and Exponential approximation", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 303, + 246, + 505, + 262 + ], + "spans": [ + { + "bbox": [ + 303, + 246, + 505, + 262 + ], + "score": 1.0, + "content": "of the gradient of the spiking neuron (step", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 303, + 258, + 347, + 272 + ], + "spans": [ + { + "bbox": [ + 303, + 258, + 347, + 272 + ], + "score": 1.0, + "content": "function).", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 28 + } + ], + "index": 25.25 + }, + { + "type": "interline_equation", + "bbox": [ + 241, + 308, + 370, + 333 + ], + "lines": [ + { + "bbox": [ + 241, + 308, + 370, + 333 + ], + "spans": [ + { + "bbox": [ + 241, + 308, + 370, + 333 + ], + "score": 0.9, + "content": "\\frac { \\partial o } { \\partial u } = \\alpha \\ : m a x \\{ 0 , 1 - | u - V _ { t } | \\}", + "type": "interline_equation", + "image_path": "d3ffa7db831cd988b1f4bbe805411a4c16c250967ce00caf69fdc7b114865c16.jpg" + } + ] + } + ], + "index": 30, + "virtual_lines": [ + { + "bbox": [ + 241, + 308, + 370, + 333 + ], + "spans": [], + "index": 30 + } + ] + }, + { + "type": "interline_equation", + "bbox": [ + 266, + 337, + 344, + 361 + ], + "lines": [ + { + "bbox": [ + 266, + 337, + 344, + 361 + ], + "spans": [ + { + "bbox": [ + 266, + 337, + 344, + 361 + ], + "score": 0.92, + "content": "\\frac { \\partial o } { \\partial u } = \\alpha e ^ { - \\beta \\left| u - V _ { t } \\right| }", + "type": "interline_equation", + "image_path": "5e3cb13a7c82ebc99bad03106af2446876f13d041ebed34abb8d7cbfec9c4b23.jpg" + } + ] + } + ], + "index": 31, + "virtual_lines": [ + { + "bbox": [ + 266, + 337, + 344, + 361 + ], + "spans": [], + "index": 31 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 363, + 505, + 506 + ], + "lines": [ + { + "bbox": [ + 106, + 363, + 505, + 376 + ], + "spans": [ + { + "bbox": [ + 106, + 363, + 135, + 376 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 135, + 366, + 142, + 373 + ], + "score": 0.7, + "content": "o", + "type": "inline_equation" + }, + { + "bbox": [ + 142, + 363, + 297, + 376 + ], + "score": 1.0, + "content": "is the binary output of the neuron,", + "type": "text" + }, + { + "bbox": [ + 297, + 366, + 304, + 373 + ], + "score": 0.77, + "content": "u", + "type": "inline_equation" + }, + { + "bbox": [ + 305, + 363, + 424, + 376 + ], + "score": 1.0, + "content": "is the membrane potential,", + "type": "text" + }, + { + "bbox": [ + 424, + 363, + 434, + 374 + ], + "score": 0.87, + "content": "V _ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 435, + 363, + 505, + 376 + ], + "score": 1.0, + "content": "is the threshold", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 374, + 505, + 387 + ], + "spans": [ + { + "bbox": [ + 105, + 374, + 146, + 387 + ], + "score": 1.0, + "content": "potential,", + "type": "text" + }, + { + "bbox": [ + 147, + 376, + 154, + 385 + ], + "score": 0.75, + "content": "\\alpha", + "type": "inline_equation" + }, + { + "bbox": [ + 155, + 374, + 173, + 387 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 173, + 375, + 180, + 386 + ], + "score": 0.84, + "content": "\\beta", + "type": "inline_equation" + }, + { + "bbox": [ + 181, + 374, + 505, + 387 + ], + "score": 1.0, + "content": "are constants. Equation 13 and Equation 14 represent the linear and exponential", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 385, + 505, + 398 + ], + "spans": [ + { + "bbox": [ + 105, + 385, + 505, + 398 + ], + "score": 1.0, + "content": "approximation of the gradient, respectively. We employed these approximations in the hybrid", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 396, + 506, + 409 + ], + "spans": [ + { + "bbox": [ + 105, + 396, + 506, + 409 + ], + "score": 1.0, + "content": "training for a VGG9 network for CIFAR10 dataset. All the approximations (Equation 11, 13, and", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 106, + 407, + 506, + 420 + ], + "spans": [ + { + "bbox": [ + 106, + 407, + 506, + 420 + ], + "score": 1.0, + "content": "14) produced similar results in terms of accuracy and number of epochs for convergence. This shows", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 106, + 417, + 505, + 430 + ], + "spans": [ + { + "bbox": [ + 106, + 417, + 160, + 430 + ], + "score": 1.0, + "content": "that the term", + "type": "text" + }, + { + "bbox": [ + 160, + 419, + 173, + 428 + ], + "score": 0.81, + "content": "\\Delta t", + "type": "inline_equation" + }, + { + "bbox": [ + 173, + 417, + 337, + 430 + ], + "score": 1.0, + "content": "(Equation 11) is a good replacement for", + "type": "text" + }, + { + "bbox": [ + 337, + 419, + 371, + 430 + ], + "score": 0.92, + "content": "| u - V _ { t } |", + "type": "inline_equation" + }, + { + "bbox": [ + 371, + 417, + 505, + 430 + ], + "score": 1.0, + "content": "(Equation 14). The behaviour of", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 107, + 428, + 505, + 442 + ], + "spans": [ + { + "bbox": [ + 107, + 430, + 120, + 439 + ], + "score": 0.79, + "content": "\\Delta t", + "type": "inline_equation" + }, + { + "bbox": [ + 120, + 428, + 138, + 442 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 138, + 430, + 171, + 441 + ], + "score": 0.9, + "content": "| u - V _ { t } |", + "type": "inline_equation" + }, + { + "bbox": [ + 171, + 428, + 505, + 442 + ], + "score": 1.0, + "content": "is similar, i.e., it is small closer to the time of spike and increases as we move away", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 106, + 439, + 505, + 453 + ], + "spans": [ + { + "bbox": [ + 106, + 439, + 296, + 453 + ], + "score": 1.0, + "content": "from the spiking event. The advantage of using", + "type": "text" + }, + { + "bbox": [ + 296, + 441, + 309, + 450 + ], + "score": 0.84, + "content": "\\Delta t", + "type": "inline_equation" + }, + { + "bbox": [ + 309, + 439, + 505, + 453 + ], + "score": 1.0, + "content": "is that its domain is bounded by the total number", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 451, + 506, + 464 + ], + "spans": [ + { + "bbox": [ + 105, + 451, + 506, + 464 + ], + "score": 1.0, + "content": "of time steps (Equation 12). Hence, all possible values of gradients can be pre-computed and stored", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 462, + 506, + 475 + ], + "spans": [ + { + "bbox": [ + 105, + 462, + 506, + 475 + ], + "score": 1.0, + "content": "in a table for faster access during training. This is not possible for membrane potential because it", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 474, + 505, + 485 + ], + "spans": [ + { + "bbox": [ + 105, + 474, + 505, + 485 + ], + "score": 1.0, + "content": "is a real value computed based on the stochastic inputs and previous state of the neuron which is", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 484, + 505, + 497 + ], + "spans": [ + { + "bbox": [ + 105, + 484, + 505, + 497 + ], + "score": 1.0, + "content": "not known before hand. The exact benefit in energy from the pre-computation is dependent on the", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 494, + 419, + 508 + ], + "spans": [ + { + "bbox": [ + 105, + 494, + 419, + 508 + ], + "score": 1.0, + "content": "overall system architecture and evaluating it is beyond the scope of this paper.", + "type": "text" + } + ], + "index": 44 + } + ], + "index": 38, + "bbox_fs": [ + 105, + 363, + 506, + 508 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "title", + "bbox": [ + 104, + 81, + 481, + 94 + ], + "lines": [ + { + "bbox": [ + 103, + 79, + 483, + 97 + ], + "spans": [ + { + "bbox": [ + 103, + 79, + 483, + 97 + ], + "score": 1.0, + "content": "B COMPARISONS OF SIMULATION TIME AND MEMORY REQUIREMENTS", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "text", + "bbox": [ + 106, + 106, + 505, + 249 + ], + "lines": [ + { + "bbox": [ + 106, + 106, + 505, + 119 + ], + "spans": [ + { + "bbox": [ + 106, + 106, + 505, + 119 + ], + "score": 1.0, + "content": "The simulation time and memory requirements for ANN and SNN are very different. SNN requires", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 106, + 118, + 505, + 129 + ], + "spans": [ + { + "bbox": [ + 106, + 118, + 505, + 129 + ], + "score": 1.0, + "content": "much more resources to iterate over multiple time steps and store the membrane potential for each", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 127, + 505, + 141 + ], + "spans": [ + { + "bbox": [ + 105, + 127, + 505, + 141 + ], + "score": 1.0, + "content": "neuron. Fig. 5 shows the training and inference time and memory requirements for ANN, SNN", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 138, + 505, + 152 + ], + "spans": [ + { + "bbox": [ + 105, + 138, + 505, + 152 + ], + "score": 1.0, + "content": "trained with backpropagation from scratch, and SNN trained with the proposed hybrid technique.", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 106, + 150, + 505, + 162 + ], + "spans": [ + { + "bbox": [ + 106, + 150, + 505, + 162 + ], + "score": 1.0, + "content": "The performance was evaluated for VGG16 architecture trained for CIFAR10 dataset. SNN trained", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 160, + 505, + 174 + ], + "spans": [ + { + "bbox": [ + 105, + 160, + 505, + 174 + ], + "score": 1.0, + "content": "from scratch and SNN trained with hybrid conversion-and-STDB are evaluated for 100 time steps.", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 172, + 505, + 184 + ], + "spans": [ + { + "bbox": [ + 105, + 172, + 505, + 184 + ], + "score": 1.0, + "content": "One epoch of ANN training (inference) takes 0.57 (0.05) minutes and 1.47 (1.15) GB of GPU", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 183, + 506, + 196 + ], + "spans": [ + { + "bbox": [ + 105, + 183, + 506, + 196 + ], + "score": 1.0, + "content": "memory. On the other hand, one epoch of SNN training (inference) takes 78 (11.39) minutes and", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 193, + 506, + 207 + ], + "spans": [ + { + "bbox": [ + 105, + 193, + 506, + 207 + ], + "score": 1.0, + "content": "9.36 (1.37) GB of GPU memory for same hardware and mini-batch size. ANN and SNN trained", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 205, + 506, + 218 + ], + "spans": [ + { + "bbox": [ + 105, + 205, + 506, + 218 + ], + "score": 1.0, + "content": "from scratch reached convergence after 250 epochs. The hybrid technique requires 250 epochs of", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 215, + 505, + 229 + ], + "spans": [ + { + "bbox": [ + 105, + 215, + 505, + 229 + ], + "score": 1.0, + "content": "ANN training and 20 epochs of spike-based backpropagation. The hybrid training technique is one", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 226, + 506, + 241 + ], + "spans": [ + { + "bbox": [ + 105, + 226, + 506, + 241 + ], + "score": 1.0, + "content": "order of magnitude faster than training SNN from scratch. The memory requirement for hybrid", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 106, + 238, + 491, + 250 + ], + "spans": [ + { + "bbox": [ + 106, + 238, + 491, + 250 + ], + "score": 1.0, + "content": "technique is same as SNN as we need to perform fine-tuning with spike-based backpropagation.", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 7 + }, + { + "type": "image", + "bbox": [ + 106, + 261, + 504, + 413 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 106, + 261, + 504, + 413 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 261, + 504, + 413 + ], + "spans": [ + { + "bbox": [ + 106, + 261, + 504, + 413 + ], + "score": 0.967, + "type": "image", + "image_path": "392c5b09ee728a2f6923f49603f3ba52dfef46b07e93158f58385264a0bbe80e.jpg" + } + ] + } + ], + "index": 15, + "virtual_lines": [ + { + "bbox": [ + 106, + 261, + 504, + 311.6666666666667 + ], + "spans": [], + "index": 14 + }, + { + "bbox": [ + 106, + 311.6666666666667, + 504, + 362.33333333333337 + ], + "spans": [], + "index": 15 + }, + { + "bbox": [ + 106, + 362.33333333333337, + 504, + 413.00000000000006 + ], + "spans": [], + "index": 16 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 435, + 505, + 513 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 436, + 505, + 448 + ], + "spans": [ + { + "bbox": [ + 106, + 436, + 505, + 448 + ], + "score": 1.0, + "content": "Figure 5: Training and Inference time and memory for ANN, SNN trained with backpropagation", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 447, + 506, + 459 + ], + "spans": [ + { + "bbox": [ + 105, + 447, + 506, + 459 + ], + "score": 1.0, + "content": "from scratch, and SNN trained with hybrid technique. All values are normalized based on ANN", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 458, + 506, + 470 + ], + "spans": [ + { + "bbox": [ + 105, + 458, + 506, + 470 + ], + "score": 1.0, + "content": "values. The y-axis is in log scale. The performance was evaluated on one Nvidia GeForce RTX", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 468, + 505, + 481 + ], + "spans": [ + { + "bbox": [ + 105, + 468, + 505, + 481 + ], + "score": 1.0, + "content": "2080 Ti TU102 GPU with 11 GB of memory. All the networks were trained for VGG16 architecture,", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 106, + 480, + 505, + 491 + ], + "spans": [ + { + "bbox": [ + 106, + 480, + 505, + 491 + ], + "score": 1.0, + "content": "CIFAR10 dataset, 100 time steps, and mini-batch size of 32. ANN and SNN require 250 epochs of", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 490, + 506, + 504 + ], + "spans": [ + { + "bbox": [ + 105, + 490, + 506, + 504 + ], + "score": 1.0, + "content": "training from scratch, hybrid conversion-and-STDB based training requires 250 epochs of ANN", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 106, + 502, + 363, + 514 + ], + "spans": [ + { + "bbox": [ + 106, + 502, + 363, + 514 + ], + "score": 1.0, + "content": "training followed by 20 epochs of spike-based backpropagation.", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 20 + } + ], + "index": 17.5 + } + ], + "page_idx": 13, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 27, + 293, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 26, + 294, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 26, + 294, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2020", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 300, + 751, + 311, + 760 + ], + "lines": [ + { + "bbox": [ + 299, + 750, + 313, + 763 + ], + "spans": [ + { + "bbox": [ + 299, + 750, + 313, + 763 + ], + "score": 1.0, + "content": "14", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "title", + "bbox": [ + 104, + 81, + 481, + 94 + ], + "lines": [ + { + "bbox": [ + 103, + 79, + 483, + 97 + ], + "spans": [ + { + "bbox": [ + 103, + 79, + 483, + 97 + ], + "score": 1.0, + "content": "B COMPARISONS OF SIMULATION TIME AND MEMORY REQUIREMENTS", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "text", + "bbox": [ + 106, + 106, + 505, + 249 + ], + "lines": [ + { + "bbox": [ + 106, + 106, + 505, + 119 + ], + "spans": [ + { + "bbox": [ + 106, + 106, + 505, + 119 + ], + "score": 1.0, + "content": "The simulation time and memory requirements for ANN and SNN are very different. SNN requires", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 106, + 118, + 505, + 129 + ], + "spans": [ + { + "bbox": [ + 106, + 118, + 505, + 129 + ], + "score": 1.0, + "content": "much more resources to iterate over multiple time steps and store the membrane potential for each", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 127, + 505, + 141 + ], + "spans": [ + { + "bbox": [ + 105, + 127, + 505, + 141 + ], + "score": 1.0, + "content": "neuron. Fig. 5 shows the training and inference time and memory requirements for ANN, SNN", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 138, + 505, + 152 + ], + "spans": [ + { + "bbox": [ + 105, + 138, + 505, + 152 + ], + "score": 1.0, + "content": "trained with backpropagation from scratch, and SNN trained with the proposed hybrid technique.", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 106, + 150, + 505, + 162 + ], + "spans": [ + { + "bbox": [ + 106, + 150, + 505, + 162 + ], + "score": 1.0, + "content": "The performance was evaluated for VGG16 architecture trained for CIFAR10 dataset. SNN trained", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 160, + 505, + 174 + ], + "spans": [ + { + "bbox": [ + 105, + 160, + 505, + 174 + ], + "score": 1.0, + "content": "from scratch and SNN trained with hybrid conversion-and-STDB are evaluated for 100 time steps.", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 172, + 505, + 184 + ], + "spans": [ + { + "bbox": [ + 105, + 172, + 505, + 184 + ], + "score": 1.0, + "content": "One epoch of ANN training (inference) takes 0.57 (0.05) minutes and 1.47 (1.15) GB of GPU", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 183, + 506, + 196 + ], + "spans": [ + { + "bbox": [ + 105, + 183, + 506, + 196 + ], + "score": 1.0, + "content": "memory. On the other hand, one epoch of SNN training (inference) takes 78 (11.39) minutes and", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 193, + 506, + 207 + ], + "spans": [ + { + "bbox": [ + 105, + 193, + 506, + 207 + ], + "score": 1.0, + "content": "9.36 (1.37) GB of GPU memory for same hardware and mini-batch size. ANN and SNN trained", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 205, + 506, + 218 + ], + "spans": [ + { + "bbox": [ + 105, + 205, + 506, + 218 + ], + "score": 1.0, + "content": "from scratch reached convergence after 250 epochs. The hybrid technique requires 250 epochs of", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 215, + 505, + 229 + ], + "spans": [ + { + "bbox": [ + 105, + 215, + 505, + 229 + ], + "score": 1.0, + "content": "ANN training and 20 epochs of spike-based backpropagation. The hybrid training technique is one", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 226, + 506, + 241 + ], + "spans": [ + { + "bbox": [ + 105, + 226, + 506, + 241 + ], + "score": 1.0, + "content": "order of magnitude faster than training SNN from scratch. The memory requirement for hybrid", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 106, + 238, + 491, + 250 + ], + "spans": [ + { + "bbox": [ + 106, + 238, + 491, + 250 + ], + "score": 1.0, + "content": "technique is same as SNN as we need to perform fine-tuning with spike-based backpropagation.", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 7, + "bbox_fs": [ + 105, + 106, + 506, + 250 + ] + }, + { + "type": "image", + "bbox": [ + 106, + 261, + 504, + 413 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 106, + 261, + 504, + 413 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 261, + 504, + 413 + ], + "spans": [ + { + "bbox": [ + 106, + 261, + 504, + 413 + ], + "score": 0.967, + "type": "image", + "image_path": "392c5b09ee728a2f6923f49603f3ba52dfef46b07e93158f58385264a0bbe80e.jpg" + } + ] + } + ], + "index": 15, + "virtual_lines": [ + { + "bbox": [ + 106, + 261, + 504, + 311.6666666666667 + ], + "spans": [], + "index": 14 + }, + { + "bbox": [ + 106, + 311.6666666666667, + 504, + 362.33333333333337 + ], + "spans": [], + "index": 15 + }, + { + "bbox": [ + 106, + 362.33333333333337, + 504, + 413.00000000000006 + ], + "spans": [], + "index": 16 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 435, + 505, + 513 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 436, + 505, + 448 + ], + "spans": [ + { + "bbox": [ + 106, + 436, + 505, + 448 + ], + "score": 1.0, + "content": "Figure 5: Training and Inference time and memory for ANN, SNN trained with backpropagation", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 447, + 506, + 459 + ], + "spans": [ + { + "bbox": [ + 105, + 447, + 506, + 459 + ], + "score": 1.0, + "content": "from scratch, and SNN trained with hybrid technique. All values are normalized based on ANN", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 458, + 506, + 470 + ], + "spans": [ + { + "bbox": [ + 105, + 458, + 506, + 470 + ], + "score": 1.0, + "content": "values. The y-axis is in log scale. The performance was evaluated on one Nvidia GeForce RTX", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 468, + 505, + 481 + ], + "spans": [ + { + "bbox": [ + 105, + 468, + 505, + 481 + ], + "score": 1.0, + "content": "2080 Ti TU102 GPU with 11 GB of memory. All the networks were trained for VGG16 architecture,", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 106, + 480, + 505, + 491 + ], + "spans": [ + { + "bbox": [ + 106, + 480, + 505, + 491 + ], + "score": 1.0, + "content": "CIFAR10 dataset, 100 time steps, and mini-batch size of 32. ANN and SNN require 250 epochs of", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 490, + 506, + 504 + ], + "spans": [ + { + "bbox": [ + 105, + 490, + 506, + 504 + ], + "score": 1.0, + "content": "training from scratch, hybrid conversion-and-STDB based training requires 250 epochs of ANN", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 106, + 502, + 363, + 514 + ], + "spans": [ + { + "bbox": [ + 106, + 502, + 363, + 514 + ], + "score": 1.0, + "content": "training followed by 20 epochs of spike-based backpropagation.", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 20 + } + ], + "index": 17.5 + } + ] + } + ], + "_backend": "pipeline", + "_version_name": "2.2.2" +} \ No newline at end of file diff --git a/parse/train/B1xSperKvH/B1xSperKvH_model.json b/parse/train/B1xSperKvH/B1xSperKvH_model.json new file mode 100644 index 0000000000000000000000000000000000000000..8c8de8a27ca84aabf792674aa5f61cf588c31c94 --- /dev/null +++ b/parse/train/B1xSperKvH/B1xSperKvH_model.json @@ -0,0 +1,18656 @@ +[ + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 299, + 1729, + 1403, + 1729, + 1403, + 1975, + 299, + 1975 + ], + "score": 0.975 + }, + { + "category_id": 0, + "poly": [ + 298, + 218, + 1402, + 218, + 1402, + 380, + 298, + 380 + ], + "score": 0.962 + }, + { + "category_id": 2, + "poly": [ + 335, + 2006, + 865, + 2006, + 865, + 2033, + 335, + 2033 + ], + "score": 0.914 + }, + { + "category_id": 1, + "poly": [ + 397, + 743, + 1301, + 743, + 1301, + 1591, + 397, + 1591 + ], + "score": 0.913 + }, + { + "category_id": 0, + "poly": [ + 302, + 1659, + 573, + 1659, + 573, + 1693, + 302, + 1693 + ], + "score": 0.888 + }, + { + "category_id": 0, + "poly": [ + 773, + 669, + 926, + 669, + 926, + 702, + 773, + 702 + ], + "score": 0.883 + }, + { + "category_id": 2, + "poly": [ + 299, + 76, + 817, + 76, + 817, + 104, + 299, + 104 + ], + "score": 0.878 + }, + { + "category_id": 1, + "poly": [ + 315, + 429, + 1284, + 429, + 1284, + 464, + 315, + 464 + ], + "score": 0.83 + }, + { + "category_id": 1, + "poly": [ + 315, + 467, + 1147, + 467, + 1147, + 586, + 315, + 586 + ], + "score": 0.715 + }, + { + "category_id": 2, + "poly": [ + 841, + 2089, + 857, + 2089, + 857, + 2112, + 841, + 2112 + ], + "score": 0.707 + }, + { + "category_id": 13, + "poly": [ + 973, + 1320, + 1097, + 1320, + 1097, + 1350, + 973, + 1350 + ], + "score": 0.91, + "latex": "1 0 \\times - 2 5 \\times" + }, + { + "category_id": 13, + "poly": [ + 1165, + 1501, + 1256, + 1501, + 1256, + 1532, + 1165, + 1532 + ], + "score": 0.89, + "latex": "6 5 . 1 9 \\%" + }, + { + "category_id": 13, + "poly": [ + 1058, + 1533, + 1111, + 1533, + 1111, + 1562, + 1058, + 1562 + ], + "score": 0.87, + "latex": "1 0 \\times" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 214.0, + 1403.0, + 214.0, + 1403.0, + 273.0, + 294.0, + 273.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 274.0, + 1403.0, + 274.0, + 1403.0, + 326.0, + 296.0, + 326.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 332.0, + 974.0, + 332.0, + 974.0, + 382.0, + 296.0, + 382.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 333.0, + 2001.0, + 869.0, + 2001.0, + 869.0, + 2039.0, + 333.0, + 2039.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1655.0, + 579.0, + 1655.0, + 579.0, + 1701.0, + 294.0, + 1701.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 769.0, + 668.0, + 932.0, + 668.0, + 932.0, + 705.0, + 769.0, + 705.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, + 2088.0, + 861.0, + 2088.0, + 861.0, + 2118.0, + 840.0, + 2118.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1728.0, + 1407.0, + 1728.0, + 1407.0, + 1767.0, + 293.0, + 1767.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1762.0, + 1404.0, + 1762.0, + 1404.0, + 1796.0, + 295.0, + 1796.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1793.0, + 1405.0, + 1793.0, + 1405.0, + 1827.0, + 294.0, + 1827.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1821.0, + 1407.0, + 1821.0, + 1407.0, + 1858.0, + 294.0, + 1858.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1853.0, + 1404.0, + 1853.0, + 1404.0, + 1887.0, + 295.0, + 1887.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1882.0, + 1407.0, + 1882.0, + 1407.0, + 1919.0, + 294.0, + 1919.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1913.0, + 1408.0, + 1913.0, + 1408.0, + 1951.0, + 293.0, + 1951.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1945.0, + 1404.0, + 1945.0, + 1404.0, + 1978.0, + 295.0, + 1978.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 396.0, + 741.0, + 1306.0, + 741.0, + 1306.0, + 777.0, + 396.0, + 777.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 395.0, + 771.0, + 1305.0, + 771.0, + 1305.0, + 807.0, + 395.0, + 807.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 803.0, + 1305.0, + 803.0, + 1305.0, + 836.0, + 394.0, + 836.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 833.0, + 1306.0, + 833.0, + 1306.0, + 869.0, + 393.0, + 869.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 862.0, + 1306.0, + 862.0, + 1306.0, + 897.0, + 394.0, + 897.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 894.0, + 1305.0, + 894.0, + 1305.0, + 927.0, + 394.0, + 927.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 922.0, + 1304.0, + 922.0, + 1304.0, + 961.0, + 393.0, + 961.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 952.0, + 1304.0, + 952.0, + 1304.0, + 988.0, + 393.0, + 988.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 984.0, + 1305.0, + 984.0, + 1305.0, + 1021.0, + 393.0, + 1021.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 1014.0, + 1305.0, + 1014.0, + 1305.0, + 1050.0, + 394.0, + 1050.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 392.0, + 1042.0, + 1306.0, + 1042.0, + 1306.0, + 1083.0, + 392.0, + 1083.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 396.0, + 1076.0, + 1305.0, + 1076.0, + 1305.0, + 1109.0, + 396.0, + 1109.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 392.0, + 1106.0, + 1305.0, + 1106.0, + 1305.0, + 1144.0, + 392.0, + 1144.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 1136.0, + 1306.0, + 1136.0, + 1306.0, + 1172.0, + 394.0, + 1172.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 1168.0, + 1305.0, + 1168.0, + 1305.0, + 1201.0, + 394.0, + 1201.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 1198.0, + 1305.0, + 1198.0, + 1305.0, + 1234.0, + 393.0, + 1234.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 1227.0, + 1303.0, + 1227.0, + 1303.0, + 1260.0, + 394.0, + 1260.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 1258.0, + 1305.0, + 1258.0, + 1305.0, + 1293.0, + 394.0, + 1293.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 392.0, + 1288.0, + 1306.0, + 1288.0, + 1306.0, + 1324.0, + 392.0, + 1324.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 1319.0, + 972.0, + 1319.0, + 972.0, + 1352.0, + 393.0, + 1352.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1098.0, + 1319.0, + 1306.0, + 1319.0, + 1306.0, + 1352.0, + 1098.0, + 1352.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 1349.0, + 1306.0, + 1349.0, + 1306.0, + 1384.0, + 393.0, + 1384.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 1381.0, + 1305.0, + 1381.0, + 1305.0, + 1413.0, + 393.0, + 1413.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 1410.0, + 1305.0, + 1410.0, + 1305.0, + 1446.0, + 393.0, + 1446.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 392.0, + 1440.0, + 1307.0, + 1440.0, + 1307.0, + 1475.0, + 392.0, + 1475.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 1473.0, + 1305.0, + 1473.0, + 1305.0, + 1504.0, + 393.0, + 1504.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 1500.0, + 1164.0, + 1500.0, + 1164.0, + 1536.0, + 393.0, + 1536.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1257.0, + 1500.0, + 1306.0, + 1500.0, + 1306.0, + 1536.0, + 1257.0, + 1536.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 1532.0, + 1057.0, + 1532.0, + 1057.0, + 1568.0, + 394.0, + 1568.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1112.0, + 1532.0, + 1305.0, + 1532.0, + 1305.0, + 1568.0, + 1112.0, + 1568.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 1563.0, + 863.0, + 1563.0, + 863.0, + 1598.0, + 394.0, + 1598.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 308.0, + 426.0, + 1289.0, + 426.0, + 1289.0, + 471.0, + 308.0, + 471.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 311.0, + 459.0, + 1073.0, + 459.0, + 1073.0, + 501.0, + 311.0, + 501.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 310.0, + 491.0, + 935.0, + 491.0, + 935.0, + 531.0, + 310.0, + 531.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 312.0, + 525.0, + 1150.0, + 525.0, + 1150.0, + 564.0, + 312.0, + 564.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 328.0, + 559.0, + 636.0, + 559.0, + 636.0, + 590.0, + 328.0, + 590.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 0, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 298, + 229, + 1404, + 229, + 1404, + 1114, + 298, + 1114 + ], + "score": 0.982 + }, + { + "category_id": 1, + "poly": [ + 298, + 1129, + 1403, + 1129, + 1403, + 1375, + 298, + 1375 + ], + "score": 0.972 + }, + { + "category_id": 2, + "poly": [ + 299, + 1978, + 1405, + 1978, + 1405, + 2035, + 299, + 2035 + ], + "score": 0.935 + }, + { + "category_id": 1, + "poly": [ + 298, + 1390, + 946, + 1390, + 946, + 1422, + 298, + 1422 + ], + "score": 0.916 + }, + { + "category_id": 2, + "poly": [ + 300, + 76, + 816, + 76, + 816, + 104, + 300, + 104 + ], + "score": 0.886 + }, + { + "category_id": 2, + "poly": [ + 841, + 2088, + 859, + 2088, + 859, + 2112, + 841, + 2112 + ], + "score": 0.74 + }, + { + "category_id": 1, + "poly": [ + 366, + 1450, + 1404, + 1450, + 1404, + 1948, + 366, + 1948 + ], + "score": 0.632 + }, + { + "category_id": 13, + "poly": [ + 1325, + 840, + 1402, + 840, + 1402, + 870, + 1325, + 870 + ], + "score": 0.88, + "latex": "{ \\sim } 1 0 \\times" + }, + { + "category_id": 13, + "poly": [ + 458, + 870, + 584, + 870, + 584, + 899, + 458, + 899 + ], + "score": 0.82, + "latex": "2 0 0 \\mathrm { ~ - ~ } 2 5 0" + }, + { + "category_id": 15, + "poly": [ + 328.0, + 1971.0, + 1409.0, + 1971.0, + 1409.0, + 2013.0, + 328.0, + 2013.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 2005.0, + 1257.0, + 2005.0, + 1257.0, + 2036.0, + 295.0, + 2036.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 73.0, + 817.0, + 73.0, + 817.0, + 108.0, + 296.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 838.0, + 2085.0, + 862.0, + 2085.0, + 862.0, + 2120.0, + 838.0, + 2120.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 230.0, + 1405.0, + 230.0, + 1405.0, + 266.0, + 294.0, + 266.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 260.0, + 1406.0, + 260.0, + 1406.0, + 298.0, + 293.0, + 298.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 292.0, + 1406.0, + 292.0, + 1406.0, + 328.0, + 293.0, + 328.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 320.0, + 1404.0, + 320.0, + 1404.0, + 360.0, + 293.0, + 360.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 352.0, + 1405.0, + 352.0, + 1405.0, + 388.0, + 293.0, + 388.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 382.0, + 1405.0, + 382.0, + 1405.0, + 419.0, + 293.0, + 419.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 412.0, + 1406.0, + 412.0, + 1406.0, + 450.0, + 293.0, + 450.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 443.0, + 1406.0, + 443.0, + 1406.0, + 479.0, + 294.0, + 479.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 474.0, + 1404.0, + 474.0, + 1404.0, + 510.0, + 296.0, + 510.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 502.0, + 1402.0, + 502.0, + 1402.0, + 538.0, + 294.0, + 538.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 533.0, + 1404.0, + 533.0, + 1404.0, + 569.0, + 294.0, + 569.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 565.0, + 1405.0, + 565.0, + 1405.0, + 601.0, + 294.0, + 601.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 595.0, + 1409.0, + 595.0, + 1409.0, + 633.0, + 292.0, + 633.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 625.0, + 1402.0, + 625.0, + 1402.0, + 661.0, + 294.0, + 661.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 654.0, + 1406.0, + 654.0, + 1406.0, + 696.0, + 292.0, + 696.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 683.0, + 1405.0, + 683.0, + 1405.0, + 725.0, + 293.0, + 725.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 716.0, + 1405.0, + 716.0, + 1405.0, + 755.0, + 293.0, + 755.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 746.0, + 1404.0, + 746.0, + 1404.0, + 786.0, + 293.0, + 786.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 775.0, + 1408.0, + 775.0, + 1408.0, + 819.0, + 292.0, + 819.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 809.0, + 1405.0, + 809.0, + 1405.0, + 845.0, + 292.0, + 845.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 840.0, + 1324.0, + 840.0, + 1324.0, + 875.0, + 293.0, + 875.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 868.0, + 457.0, + 868.0, + 457.0, + 906.0, + 293.0, + 906.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 585.0, + 868.0, + 1405.0, + 868.0, + 1405.0, + 906.0, + 585.0, + 906.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 901.0, + 1404.0, + 901.0, + 1404.0, + 937.0, + 293.0, + 937.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 927.0, + 1406.0, + 927.0, + 1406.0, + 968.0, + 291.0, + 968.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 963.0, + 1405.0, + 963.0, + 1405.0, + 999.0, + 293.0, + 999.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 990.0, + 1406.0, + 990.0, + 1406.0, + 1028.0, + 292.0, + 1028.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1022.0, + 1406.0, + 1022.0, + 1406.0, + 1060.0, + 291.0, + 1060.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1052.0, + 1405.0, + 1052.0, + 1405.0, + 1088.0, + 294.0, + 1088.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1081.0, + 1234.0, + 1081.0, + 1234.0, + 1118.0, + 292.0, + 1118.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1128.0, + 1407.0, + 1128.0, + 1407.0, + 1165.0, + 293.0, + 1165.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1162.0, + 1405.0, + 1162.0, + 1405.0, + 1193.0, + 293.0, + 1193.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1191.0, + 1405.0, + 1191.0, + 1405.0, + 1224.0, + 294.0, + 1224.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1221.0, + 1407.0, + 1221.0, + 1407.0, + 1257.0, + 292.0, + 1257.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1251.0, + 1405.0, + 1251.0, + 1405.0, + 1288.0, + 293.0, + 1288.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1282.0, + 1407.0, + 1282.0, + 1407.0, + 1319.0, + 293.0, + 1319.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1312.0, + 1407.0, + 1312.0, + 1407.0, + 1349.0, + 293.0, + 1349.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1342.0, + 495.0, + 1342.0, + 495.0, + 1381.0, + 293.0, + 1381.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1387.0, + 951.0, + 1387.0, + 951.0, + 1430.0, + 294.0, + 1430.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 372.0, + 1453.0, + 1404.0, + 1453.0, + 1404.0, + 1485.0, + 372.0, + 1485.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 395.0, + 1482.0, + 1405.0, + 1482.0, + 1405.0, + 1514.0, + 395.0, + 1514.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 395.0, + 1513.0, + 1405.0, + 1513.0, + 1405.0, + 1546.0, + 395.0, + 1546.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 1540.0, + 1403.0, + 1540.0, + 1403.0, + 1580.0, + 394.0, + 1580.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 395.0, + 1574.0, + 551.0, + 1574.0, + 551.0, + 1607.0, + 395.0, + 1607.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 387.0, + 1620.0, + 1404.0, + 1620.0, + 1404.0, + 1656.0, + 387.0, + 1656.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 1652.0, + 1404.0, + 1652.0, + 1404.0, + 1685.0, + 394.0, + 1685.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 1680.0, + 1405.0, + 1680.0, + 1405.0, + 1718.0, + 394.0, + 1718.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 392.0, + 1707.0, + 1407.0, + 1707.0, + 1407.0, + 1749.0, + 392.0, + 1749.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 1742.0, + 1404.0, + 1742.0, + 1404.0, + 1775.0, + 394.0, + 1775.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 1773.0, + 1405.0, + 1773.0, + 1405.0, + 1809.0, + 393.0, + 1809.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 395.0, + 1805.0, + 686.0, + 1805.0, + 686.0, + 1838.0, + 395.0, + 1838.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 387.0, + 1848.0, + 1407.0, + 1848.0, + 1407.0, + 1887.0, + 387.0, + 1887.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 1880.0, + 1407.0, + 1880.0, + 1407.0, + 1916.0, + 394.0, + 1916.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 1910.0, + 1407.0, + 1910.0, + 1407.0, + 1945.0, + 393.0, + 1945.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 1, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 297, + 1696, + 1405, + 1696, + 1405, + 2034, + 297, + 2034 + ], + "score": 0.982 + }, + { + "category_id": 1, + "poly": [ + 298, + 435, + 825, + 435, + 825, + 651, + 298, + 651 + ], + "score": 0.98 + }, + { + "category_id": 1, + "poly": [ + 298, + 1021, + 823, + 1021, + 823, + 1296, + 298, + 1296 + ], + "score": 0.976 + }, + { + "category_id": 1, + "poly": [ + 299, + 1296, + 1406, + 1296, + 1406, + 1418, + 299, + 1418 + ], + "score": 0.967 + }, + { + "category_id": 3, + "poly": [ + 854, + 473, + 1398, + 473, + 1398, + 761, + 854, + 761 + ], + "score": 0.967 + }, + { + "category_id": 8, + "poly": [ + 660, + 1438, + 1038, + 1438, + 1038, + 1512, + 660, + 1512 + ], + "score": 0.951 + }, + { + "category_id": 1, + "poly": [ + 396, + 229, + 1402, + 229, + 1402, + 294, + 396, + 294 + ], + "score": 0.949 + }, + { + "category_id": 8, + "poly": [ + 701, + 1570, + 995, + 1570, + 995, + 1649, + 701, + 1649 + ], + "score": 0.944 + }, + { + "category_id": 8, + "poly": [ + 397, + 925, + 727, + 925, + 727, + 993, + 397, + 993 + ], + "score": 0.939 + }, + { + "category_id": 4, + "poly": [ + 848, + 834, + 1402, + 834, + 1402, + 1231, + 848, + 1231 + ], + "score": 0.916 + }, + { + "category_id": 0, + "poly": [ + 297, + 707, + 698, + 707, + 698, + 769, + 297, + 769 + ], + "score": 0.915 + }, + { + "category_id": 1, + "poly": [ + 297, + 801, + 823, + 801, + 823, + 894, + 297, + 894 + ], + "score": 0.908 + }, + { + "category_id": 0, + "poly": [ + 297, + 355, + 1155, + 355, + 1155, + 391, + 297, + 391 + ], + "score": 0.902 + }, + { + "category_id": 2, + "poly": [ + 299, + 75, + 816, + 75, + 816, + 105, + 299, + 105 + ], + "score": 0.894 + }, + { + "category_id": 9, + "poly": [ + 1366, + 1595, + 1400, + 1595, + 1400, + 1625, + 1366, + 1625 + ], + "score": 0.888 + }, + { + "category_id": 9, + "poly": [ + 1366, + 1450, + 1400, + 1450, + 1400, + 1480, + 1366, + 1480 + ], + "score": 0.879 + }, + { + "category_id": 9, + "poly": [ + 789, + 946, + 822, + 946, + 822, + 977, + 789, + 977 + ], + "score": 0.876 + }, + { + "category_id": 2, + "poly": [ + 841, + 2088, + 858, + 2088, + 858, + 2112, + 841, + 2112 + ], + "score": 0.646 + }, + { + "category_id": 2, + "poly": [ + 841, + 2088, + 859, + 2088, + 859, + 2112, + 841, + 2112 + ], + "score": 0.369 + }, + { + "category_id": 0, + "poly": [ + 301, + 708, + 599, + 708, + 599, + 736, + 301, + 736 + ], + "score": 0.095 + }, + { + "category_id": 14, + "poly": [ + 701, + 1570, + 996, + 1570, + 996, + 1649, + 701, + 1649 + ], + "score": 0.94, + "latex": "o _ { i } ^ { t - 1 } = \\left\\{ { \\begin{array} { l l } { 1 , } & { { \\mathrm { i f ~ } } u _ { i } ^ { t - 1 } > v } \\\\ { 0 , } & { { \\mathrm { o t h e r w i s e } } } \\end{array} } \\right." + }, + { + "category_id": 14, + "poly": [ + 658, + 1438, + 1042, + 1438, + 1042, + 1515, + 658, + 1515 + ], + "score": 0.94, + "latex": "u _ { i } ^ { t } = \\lambda u _ { i } ^ { t - 1 } + \\sum _ { j } w _ { i j } o _ { j } ^ { t } - v o _ { i } ^ { t - 1 }" + }, + { + "category_id": 14, + "poly": [ + 394, + 924, + 729, + 924, + 729, + 994, + 394, + 994 + ], + "score": 0.93, + "latex": "\\tau \\frac { d U } { d t } = - ( U - U _ { r e s t } ) + R I" + }, + { + "category_id": 13, + "poly": [ + 1177, + 865, + 1394, + 865, + 1394, + 897, + 1177, + 897 + ], + "score": 0.92, + "latex": "\\alpha = 0 . 3 , \\beta = 0 . 0 1" + }, + { + "category_id": 13, + "poly": [ + 1163, + 1079, + 1262, + 1079, + 1262, + 1108, + 1163, + 1108 + ], + "score": 0.91, + "latex": "t _ { s } = 2 4" + }, + { + "category_id": 13, + "poly": [ + 728, + 1113, + 792, + 1113, + 792, + 1144, + 728, + 1144 + ], + "score": 0.91, + "latex": "U _ { r e s t }" + }, + { + "category_id": 13, + "poly": [ + 1030, + 1139, + 1109, + 1139, + 1109, + 1167, + 1030, + 1167 + ], + "score": 0.89, + "latex": "t = 2 4" + }, + { + "category_id": 13, + "poly": [ + 754, + 1266, + 823, + 1266, + 823, + 1296, + 754, + 1296 + ], + "score": 0.89, + "latex": "U { \\geqslant } V" + }, + { + "category_id": 13, + "poly": [ + 1311, + 987, + 1402, + 987, + 1402, + 1016, + 1311, + 1016 + ], + "score": 0.89, + "latex": "t _ { s } = 1 2" + }, + { + "category_id": 13, + "poly": [ + 1212, + 1017, + 1399, + 1017, + 1399, + 1049, + 1212, + 1049 + ], + "score": 0.87, + "latex": "t = 1 2 ( \\Delta t = 0 )" + }, + { + "category_id": 13, + "poly": [ + 854, + 1701, + 870, + 1701, + 870, + 1730, + 854, + 1730 + ], + "score": 0.83, + "latex": "j" + }, + { + "category_id": 13, + "poly": [ + 629, + 1730, + 649, + 1730, + 649, + 1756, + 629, + 1756 + ], + "score": 0.81, + "latex": "\\lambda" + }, + { + "category_id": 13, + "poly": [ + 345, + 1296, + 371, + 1296, + 371, + 1324, + 345, + 1324 + ], + "score": 0.81, + "latex": "U" + }, + { + "category_id": 13, + "poly": [ + 386, + 1084, + 412, + 1084, + 412, + 1110, + 386, + 1110 + ], + "score": 0.8, + "latex": "U" + }, + { + "category_id": 13, + "poly": [ + 801, + 1731, + 861, + 1731, + 861, + 1760, + 801, + 1760 + ], + "score": 0.79, + "latex": "( < 1 )" + }, + { + "category_id": 13, + "poly": [ + 793, + 1701, + 806, + 1701, + 806, + 1726, + 793, + 1726 + ], + "score": 0.79, + "latex": "i" + }, + { + "category_id": 13, + "poly": [ + 371, + 1705, + 390, + 1705, + 390, + 1726, + 371, + 1726 + ], + "score": 0.77, + "latex": "u" + }, + { + "category_id": 13, + "poly": [ + 640, + 1145, + 660, + 1145, + 660, + 1171, + 640, + 1171 + ], + "score": 0.76, + "latex": "I" + }, + { + "category_id": 13, + "poly": [ + 848, + 926, + 886, + 926, + 886, + 954, + 848, + 954 + ], + "score": 0.76, + "latex": "\\Delta t" + }, + { + "category_id": 13, + "poly": [ + 298, + 1764, + 321, + 1764, + 321, + 1787, + 298, + 1787 + ], + "score": 0.75, + "latex": "w" + }, + { + "category_id": 13, + "poly": [ + 426, + 1731, + 441, + 1731, + 441, + 1756, + 426, + 1756 + ], + "score": 0.75, + "latex": "t" + }, + { + "category_id": 13, + "poly": [ + 552, + 1144, + 578, + 1144, + 578, + 1172, + 552, + 1172 + ], + "score": 0.74, + "latex": "R" + }, + { + "category_id": 13, + "poly": [ + 1249, + 1765, + 1267, + 1765, + 1267, + 1787, + 1249, + 1787 + ], + "score": 0.71, + "latex": "v" + }, + { + "category_id": 13, + "poly": [ + 888, + 1766, + 905, + 1766, + 905, + 1787, + 888, + 1787 + ], + "score": 0.71, + "latex": "o" + }, + { + "category_id": 13, + "poly": [ + 720, + 1235, + 762, + 1235, + 762, + 1265, + 720, + 1265 + ], + "score": 0.7, + "latex": "( V )" + }, + { + "category_id": 13, + "poly": [ + 1032, + 1917, + 1052, + 1917, + 1052, + 1940, + 1032, + 1940 + ], + "score": 0.62, + "latex": "v" + }, + { + "category_id": 13, + "poly": [ + 688, + 1358, + 731, + 1358, + 731, + 1385, + 688, + 1385 + ], + "score": 0.28, + "latex": "\\mathrm { W u }" + }, + { + "category_id": 15, + "poly": [ + 913.0, + 472.0, + 943.0, + 472.0, + 943.0, + 499.0, + 913.0, + 499.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 938.0, + 483.0, + 950.0, + 483.0, + 950.0, + 495.0, + 938.0, + 495.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 906.0, + 503.0, + 941.0, + 503.0, + 941.0, + 525.0, + 906.0, + 525.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 906.0, + 532.0, + 942.0, + 532.0, + 942.0, + 554.0, + 906.0, + 554.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 905.0, + 559.0, + 942.0, + 559.0, + 942.0, + 585.0, + 905.0, + 585.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 851.0, + 562.0, + 902.0, + 562.0, + 902.0, + 608.0, + 851.0, + 608.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 905.0, + 588.0, + 942.0, + 588.0, + 942.0, + 613.0, + 905.0, + 613.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 851.0, + 591.0, + 903.0, + 591.0, + 903.0, + 639.0, + 851.0, + 639.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 912.0, + 617.0, + 942.0, + 617.0, + 942.0, + 641.0, + 912.0, + 641.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 906.0, + 647.0, + 942.0, + 647.0, + 942.0, + 670.0, + 906.0, + 670.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 906.0, + 677.0, + 942.0, + 677.0, + 942.0, + 699.0, + 906.0, + 699.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 905.0, + 705.0, + 942.0, + 705.0, + 942.0, + 727.0, + 905.0, + 727.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 929.0, + 718.0, + 948.0, + 718.0, + 948.0, + 737.0, + 929.0, + 737.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 984.0, + 717.0, + 1007.0, + 717.0, + 1007.0, + 738.0, + 984.0, + 738.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1037.0, + 715.0, + 1065.0, + 715.0, + 1065.0, + 739.0, + 1037.0, + 739.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1095.0, + 715.0, + 1121.0, + 715.0, + 1121.0, + 738.0, + 1095.0, + 738.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1151.0, + 715.0, + 1177.0, + 715.0, + 1177.0, + 738.0, + 1151.0, + 738.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1208.0, + 715.0, + 1234.0, + 715.0, + 1234.0, + 738.0, + 1208.0, + 738.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1264.0, + 715.0, + 1291.0, + 715.0, + 1291.0, + 739.0, + 1264.0, + 739.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1320.0, + 715.0, + 1347.0, + 715.0, + 1347.0, + 739.0, + 1320.0, + 739.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1377.0, + 715.0, + 1404.0, + 715.0, + 1404.0, + 739.0, + 1377.0, + 739.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1066.0, + 728.0, + 1282.0, + 728.0, + 1282.0, + 764.0, + 1066.0, + 764.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 844.0, + 833.0, + 1405.0, + 833.0, + 1405.0, + 870.0, + 844.0, + 870.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 845.0, + 864.0, + 1176.0, + 864.0, + 1176.0, + 897.0, + 845.0, + 897.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1395.0, + 864.0, + 1403.0, + 864.0, + 1403.0, + 897.0, + 1395.0, + 897.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 845.0, + 893.0, + 1405.0, + 893.0, + 1405.0, + 928.0, + 845.0, + 928.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 887.0, + 924.0, + 1404.0, + 924.0, + 1404.0, + 957.0, + 887.0, + 957.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 845.0, + 955.0, + 1405.0, + 955.0, + 1405.0, + 988.0, + 845.0, + 988.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 843.0, + 987.0, + 1310.0, + 987.0, + 1310.0, + 1018.0, + 843.0, + 1018.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1403.0, + 987.0, + 1406.0, + 987.0, + 1406.0, + 1018.0, + 1403.0, + 1018.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 844.0, + 1016.0, + 1211.0, + 1016.0, + 1211.0, + 1050.0, + 844.0, + 1050.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1400.0, + 1016.0, + 1404.0, + 1016.0, + 1404.0, + 1050.0, + 1400.0, + 1050.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 844.0, + 1047.0, + 1405.0, + 1047.0, + 1405.0, + 1080.0, + 844.0, + 1080.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 844.0, + 1078.0, + 1162.0, + 1078.0, + 1162.0, + 1111.0, + 844.0, + 1111.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1263.0, + 1078.0, + 1405.0, + 1078.0, + 1405.0, + 1111.0, + 1263.0, + 1111.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 844.0, + 1109.0, + 1405.0, + 1109.0, + 1405.0, + 1141.0, + 844.0, + 1141.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 844.0, + 1138.0, + 1029.0, + 1138.0, + 1029.0, + 1171.0, + 844.0, + 1171.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1110.0, + 1138.0, + 1405.0, + 1138.0, + 1405.0, + 1171.0, + 1110.0, + 1171.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 844.0, + 1167.0, + 1406.0, + 1167.0, + 1406.0, + 1200.0, + 844.0, + 1200.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 844.0, + 1197.0, + 1289.0, + 1197.0, + 1289.0, + 1236.0, + 844.0, + 1236.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 706.0, + 599.0, + 706.0, + 599.0, + 741.0, + 295.0, + 741.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 737.0, + 701.0, + 737.0, + 701.0, + 770.0, + 295.0, + 770.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 351.0, + 1159.0, + 351.0, + 1159.0, + 399.0, + 291.0, + 399.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 73.0, + 817.0, + 73.0, + 817.0, + 108.0, + 295.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 839.0, + 2085.0, + 860.0, + 2085.0, + 860.0, + 2116.0, + 839.0, + 2116.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 838.0, + 2085.0, + 862.0, + 2085.0, + 862.0, + 2118.0, + 838.0, + 2118.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 706.0, + 599.0, + 706.0, + 599.0, + 741.0, + 296.0, + 741.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1698.0, + 370.0, + 1698.0, + 370.0, + 1733.0, + 296.0, + 1733.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 391.0, + 1698.0, + 792.0, + 1698.0, + 792.0, + 1733.0, + 391.0, + 1733.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 807.0, + 1698.0, + 853.0, + 1698.0, + 853.0, + 1733.0, + 807.0, + 1733.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 871.0, + 1698.0, + 1403.0, + 1698.0, + 1403.0, + 1733.0, + 871.0, + 1733.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1728.0, + 425.0, + 1728.0, + 425.0, + 1764.0, + 292.0, + 1764.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 442.0, + 1728.0, + 628.0, + 1728.0, + 628.0, + 1764.0, + 442.0, + 1764.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 650.0, + 1728.0, + 800.0, + 1728.0, + 800.0, + 1764.0, + 650.0, + 1764.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 862.0, + 1728.0, + 1406.0, + 1728.0, + 1406.0, + 1764.0, + 862.0, + 1764.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1758.0, + 297.0, + 1758.0, + 297.0, + 1795.0, + 294.0, + 1795.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1758.0, + 887.0, + 1758.0, + 887.0, + 1795.0, + 322.0, + 1795.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 906.0, + 1758.0, + 1248.0, + 1758.0, + 1248.0, + 1795.0, + 906.0, + 1795.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1268.0, + 1758.0, + 1405.0, + 1758.0, + 1405.0, + 1795.0, + 1268.0, + 1795.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1788.0, + 1406.0, + 1788.0, + 1406.0, + 1824.0, + 294.0, + 1824.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1819.0, + 1406.0, + 1819.0, + 1406.0, + 1855.0, + 292.0, + 1855.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1849.0, + 1406.0, + 1849.0, + 1406.0, + 1887.0, + 292.0, + 1887.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1881.0, + 1405.0, + 1881.0, + 1405.0, + 1916.0, + 295.0, + 1916.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1910.0, + 1031.0, + 1910.0, + 1031.0, + 1946.0, + 292.0, + 1946.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1053.0, + 1910.0, + 1403.0, + 1910.0, + 1403.0, + 1946.0, + 1053.0, + 1946.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1940.0, + 1405.0, + 1940.0, + 1405.0, + 1980.0, + 294.0, + 1980.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1969.0, + 1406.0, + 1969.0, + 1406.0, + 2011.0, + 292.0, + 2011.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 2000.0, + 491.0, + 2000.0, + 491.0, + 2036.0, + 294.0, + 2036.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 433.0, + 827.0, + 433.0, + 827.0, + 470.0, + 294.0, + 470.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 466.0, + 828.0, + 466.0, + 828.0, + 500.0, + 294.0, + 500.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 498.0, + 828.0, + 498.0, + 828.0, + 531.0, + 294.0, + 531.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 526.0, + 828.0, + 526.0, + 828.0, + 560.0, + 294.0, + 560.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 557.0, + 828.0, + 557.0, + 828.0, + 590.0, + 294.0, + 590.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 586.0, + 827.0, + 586.0, + 827.0, + 623.0, + 293.0, + 623.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 615.0, + 457.0, + 615.0, + 457.0, + 656.0, + 294.0, + 656.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 1017.0, + 830.0, + 1017.0, + 830.0, + 1057.0, + 290.0, + 1057.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1052.0, + 826.0, + 1052.0, + 826.0, + 1085.0, + 295.0, + 1085.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1081.0, + 385.0, + 1081.0, + 385.0, + 1115.0, + 296.0, + 1115.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 413.0, + 1081.0, + 827.0, + 1081.0, + 827.0, + 1115.0, + 413.0, + 1115.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1110.0, + 727.0, + 1110.0, + 727.0, + 1148.0, + 293.0, + 1148.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 793.0, + 1110.0, + 828.0, + 1110.0, + 828.0, + 1148.0, + 793.0, + 1148.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1143.0, + 551.0, + 1143.0, + 551.0, + 1176.0, + 295.0, + 1176.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 579.0, + 1143.0, + 639.0, + 1143.0, + 639.0, + 1176.0, + 579.0, + 1176.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 661.0, + 1143.0, + 827.0, + 1143.0, + 827.0, + 1176.0, + 661.0, + 1176.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1173.0, + 827.0, + 1173.0, + 827.0, + 1206.0, + 295.0, + 1206.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1203.0, + 827.0, + 1203.0, + 827.0, + 1237.0, + 295.0, + 1237.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1233.0, + 719.0, + 1233.0, + 719.0, + 1266.0, + 293.0, + 1266.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 763.0, + 1233.0, + 828.0, + 1233.0, + 828.0, + 1266.0, + 763.0, + 1266.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1265.0, + 753.0, + 1265.0, + 753.0, + 1298.0, + 293.0, + 1298.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1296.0, + 344.0, + 1296.0, + 344.0, + 1328.0, + 296.0, + 1328.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 372.0, + 1296.0, + 1406.0, + 1296.0, + 1406.0, + 1328.0, + 372.0, + 1328.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1327.0, + 1404.0, + 1327.0, + 1404.0, + 1359.0, + 296.0, + 1359.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1356.0, + 687.0, + 1356.0, + 687.0, + 1391.0, + 293.0, + 1391.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 732.0, + 1356.0, + 1406.0, + 1356.0, + 1406.0, + 1391.0, + 732.0, + 1391.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1386.0, + 446.0, + 1386.0, + 446.0, + 1423.0, + 294.0, + 1423.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 396.0, + 229.0, + 1405.0, + 229.0, + 1405.0, + 265.0, + 396.0, + 265.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 392.0, + 256.0, + 968.0, + 256.0, + 968.0, + 303.0, + 392.0, + 303.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 799.0, + 826.0, + 799.0, + 826.0, + 835.0, + 295.0, + 835.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 833.0, + 826.0, + 833.0, + 826.0, + 865.0, + 296.0, + 865.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 862.0, + 773.0, + 862.0, + 773.0, + 897.0, + 294.0, + 897.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 2, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 297, + 1281, + 1405, + 1281, + 1405, + 1680, + 297, + 1680 + ], + "score": 0.983 + }, + { + "category_id": 1, + "poly": [ + 299, + 1942, + 1402, + 1942, + 1402, + 2034, + 299, + 2034 + ], + "score": 0.975 + }, + { + "category_id": 1, + "poly": [ + 299, + 1694, + 1404, + 1694, + 1404, + 1787, + 299, + 1787 + ], + "score": 0.97 + }, + { + "category_id": 8, + "poly": [ + 717, + 1817, + 981, + 1817, + 981, + 1893, + 717, + 1893 + ], + "score": 0.942 + }, + { + "category_id": 2, + "poly": [ + 299, + 76, + 816, + 76, + 816, + 104, + 299, + 104 + ], + "score": 0.882 + }, + { + "category_id": 9, + "poly": [ + 1366, + 1831, + 1400, + 1831, + 1400, + 1860, + 1366, + 1860 + ], + "score": 0.878 + }, + { + "category_id": 5, + "poly": [ + 296, + 228, + 833, + 228, + 833, + 1158, + 296, + 1158 + ], + "score": 0.873, + "html": "
Algorithm 1 ANN-SNN conversion: initialization of weights and threshold voltages Input: Trained ANN model (A), SNN model (N), Input (X) // Copy ann weights to snn
for l=1 to L do |Ni.W ← A.W end // Initialize threshold voltage to O V ←[0,·…·,0]L-1 for l=1 to L-1 do c↑0 for t=1 to T do
Ot ← PoissonGenerator(X) for k=1 to l do ifk<l then // Forward (Algorithm 3) end
else // Pre-nonlinearity (A) A ← Nt(O-1) if max(A) > v then v ←max(A) end end end
" + }, + { + "category_id": 0, + "poly": [ + 299, + 1217, + 1241, + 1217, + 1241, + 1250, + 299, + 1250 + ], + "score": 0.783 + }, + { + "category_id": 2, + "poly": [ + 841, + 2089, + 858, + 2089, + 858, + 2111, + 841, + 2111 + ], + "score": 0.774 + }, + { + "category_id": 5, + "poly": [ + 874, + 231, + 1401, + 231, + 1401, + 1163, + 874, + 1163 + ], + "score": 0.746, + "html": "
Algorithm 2 Initialize the neuron parameters. Membrane potential (U),last spike time(S), dropout mask (M).The initialization is performed once for everymini-batch.
Input: Input(X), network model(N) b_size=X.b_size h=X.height w=X.width for l=1 to L do
if isintance(Ni,Conv) then Ut = zeros(b_size,Ni.out,h,w) St = ones(b_size,Ni.out,h,w) * (-1000) end elseif isintance(Nt,Linear) then Ut = zeros(b_size,Ni.out) St = ones(b_size,Ni.out) *(-1000)
end else if isintance(Ni,Dropout) then // Generate the dropout map that will be fixed for all time steps Mt = Ni(ones(Ut-1.shape)) end else ifisintance(Ni,AugPool) then //Reduce the width and height after average pooling layer h=h//kernel_size w=w//kernel_size end
" + }, + { + "category_id": 6, + "poly": [ + 299, + 1217, + 1241, + 1217, + 1241, + 1250, + 299, + 1250 + ], + "score": 0.136 + }, + { + "category_id": 1, + "poly": [ + 874, + 231, + 1401, + 231, + 1401, + 1163, + 874, + 1163 + ], + "score": 0.096 + }, + { + "category_id": 14, + "poly": [ + 717, + 1818, + 982, + 1818, + 982, + 1895, + 717, + 1895 + ], + "score": 0.95, + "latex": "u _ { i } ^ { t } = u _ { i } ^ { t - 1 } + \\sum _ { j } w _ { i j } o _ { j }" + }, + { + "category_id": 13, + "poly": [ + 438, + 1726, + 523, + 1726, + 523, + 1755, + 438, + 1755 + ], + "score": 0.86, + "latex": "\\lambda = 1" + }, + { + "category_id": 13, + "poly": [ + 506, + 899, + 657, + 899, + 657, + 931, + 506, + 931 + ], + "score": 0.84, + "latex": "m a x ( A ) > v" + }, + { + "category_id": 13, + "poly": [ + 481, + 864, + 664, + 864, + 664, + 899, + 481, + 899 + ], + "score": 0.82, + "latex": "A N _ { l } ( O _ { k - 1 } ^ { t } )" + }, + { + "category_id": 13, + "poly": [ + 953, + 546, + 1332, + 546, + 1332, + 578, + 953, + 578 + ], + "score": 0.81, + "latex": "U _ { l } = z e r o s ( b \\mathrm { . } s i z e , N _ { l } . o u t , h , w )" + }, + { + "category_id": 13, + "poly": [ + 352, + 395, + 396, + 395, + 396, + 422, + 352, + 422 + ], + "score": 0.81, + "latex": "l { = } l" + }, + { + "category_id": 13, + "poly": [ + 1053, + 515, + 1184, + 515, + 1184, + 547, + 1053, + 547 + ], + "score": 0.78, + "latex": "( N _ { l } , C o n v )" + }, + { + "category_id": 13, + "poly": [ + 924, + 486, + 968, + 486, + 968, + 514, + 924, + 514 + ], + "score": 0.77, + "latex": "l { = } l" + }, + { + "category_id": 13, + "poly": [ + 883, + 425, + 964, + 425, + 964, + 453, + 883, + 453 + ], + "score": 0.77, + "latex": "h = X" + }, + { + "category_id": 13, + "poly": [ + 953, + 699, + 1271, + 699, + 1271, + 730, + 953, + 730 + ], + "score": 0.75, + "latex": "U _ { l } = z e r o s ( b \\mathrm { . } s i z e , N _ { l } . o u t )" + }, + { + "category_id": 13, + "poly": [ + 449, + 694, + 514, + 694, + 514, + 722, + 449, + 722 + ], + "score": 0.72, + "latex": "k < l" + }, + { + "category_id": 13, + "poly": [ + 966, + 730, + 1397, + 730, + 1397, + 762, + 966, + 762 + ], + "score": 0.72, + "latex": "S _ { l } = o n e s ( b _ { - } s i z e , N _ { l } . o u t ) * ( - 1 0 0 0 )" + }, + { + "category_id": 13, + "poly": [ + 1111, + 266, + 1153, + 266, + 1153, + 296, + 1111, + 296 + ], + "score": 0.72, + "latex": "( U )" + }, + { + "category_id": 13, + "poly": [ + 1102, + 940, + 1273, + 940, + 1273, + 973, + 1102, + 973 + ], + "score": 0.7, + "latex": "( N _ { l } , A v g P o o l )" + }, + { + "category_id": 13, + "poly": [ + 508, + 931, + 667, + 931, + 667, + 962, + 508, + 962 + ], + "score": 0.68, + "latex": "v m a x ( A )" + }, + { + "category_id": 13, + "poly": [ + 952, + 577, + 1401, + 577, + 1401, + 610, + 952, + 610 + ], + "score": 0.68, + "latex": "S _ { l } ~ = ~ o n e s ( b \\mathrm { _ - } s i z e , N _ { l } . o u t , h , w ) \\ *" + }, + { + "category_id": 14, + "poly": [ + 967, + 877, + 1307, + 877, + 1307, + 912, + 967, + 912 + ], + "score": 0.68, + "latex": "M _ { l } = N _ { l } ( o n e s ( \\bar { U _ { l - 1 } } . s h a p e ) )" + }, + { + "category_id": 13, + "poly": [ + 1354, + 266, + 1393, + 266, + 1393, + 297, + 1354, + 297 + ], + "score": 0.67, + "latex": "( S )" + }, + { + "category_id": 13, + "poly": [ + 395, + 603, + 439, + 603, + 439, + 630, + 395, + 630 + ], + "score": 0.67, + "latex": "t { = } I" + }, + { + "category_id": 13, + "poly": [ + 868, + 395, + 1045, + 395, + 1045, + 424, + 868, + 424 + ], + "score": 0.67, + "latex": "b _ { - } s i z e = X . b _ { - } s" + }, + { + "category_id": 13, + "poly": [ + 883, + 455, + 969, + 455, + 969, + 483, + 883, + 483 + ], + "score": 0.63, + "latex": "w = X" + }, + { + "category_id": 13, + "poly": [ + 339, + 573, + 416, + 573, + 416, + 600, + 339, + 600 + ], + "score": 0.63, + "latex": "v 0" + }, + { + "category_id": 13, + "poly": [ + 310, + 512, + 534, + 512, + 534, + 546, + 310, + 546 + ], + "score": 0.6, + "latex": "V [ 0 , \\cdots , 0 ] _ { L - 1 }" + }, + { + "category_id": 13, + "poly": [ + 1056, + 297, + 1104, + 297, + 1104, + 327, + 1056, + 327 + ], + "score": 0.58, + "latex": "( M )" + }, + { + "category_id": 13, + "poly": [ + 1000, + 487, + 1022, + 487, + 1022, + 513, + 1000, + 513 + ], + "score": 0.55, + "latex": "L" + }, + { + "category_id": 13, + "poly": [ + 1242, + 365, + 1283, + 365, + 1283, + 394, + 1242, + 394 + ], + "score": 0.55, + "latex": "( N )" + }, + { + "category_id": 13, + "poly": [ + 1020, + 364, + 1058, + 364, + 1058, + 394, + 1020, + 394 + ], + "score": 0.54, + "latex": "\\boldsymbol { \\mathcal { X } } )" + }, + { + "category_id": 13, + "poly": [ + 437, + 665, + 486, + 665, + 486, + 691, + 437, + 691 + ], + "score": 0.54, + "latex": "k { = } l" + }, + { + "category_id": 13, + "poly": [ + 353, + 546, + 396, + 546, + 396, + 571, + 353, + 571 + ], + "score": 0.54, + "latex": "l { = } l" + }, + { + "category_id": 13, + "poly": [ + 679, + 836, + 719, + 836, + 719, + 864, + 679, + 864 + ], + "score": 0.53, + "latex": "( A )" + }, + { + "category_id": 13, + "poly": [ + 316, + 423, + 524, + 423, + 524, + 454, + 316, + 454 + ], + "score": 0.49, + "latex": "N _ { l } . W \\gets A _ { l } . W" + }, + { + "category_id": 13, + "poly": [ + 379, + 632, + 739, + 632, + 739, + 664, + 379, + 664 + ], + "score": 0.39, + "latex": "O _ { 0 } ^ { t } P o i s s o n G e n e r a t o r ( X )" + }, + { + "category_id": 13, + "poly": [ + 384, + 334, + 426, + 334, + 426, + 364, + 384, + 364 + ], + "score": 0.39, + "latex": "( N )" + }, + { + "category_id": 13, + "poly": [ + 506, + 335, + 548, + 335, + 548, + 364, + 506, + 364 + ], + "score": 0.37, + "latex": "( X )" + }, + { + "category_id": 13, + "poly": [ + 471, + 603, + 493, + 603, + 493, + 629, + 471, + 629 + ], + "score": 0.36, + "latex": "T" + }, + { + "category_id": 13, + "poly": [ + 1110, + 790, + 1145, + 790, + 1145, + 821, + 1110, + 821 + ], + "score": 0.34, + "latex": "\\cdot N _ { l }" + }, + { + "category_id": 13, + "poly": [ + 429, + 396, + 450, + 396, + 450, + 421, + 429, + 421 + ], + "score": 0.33, + "latex": "L" + }, + { + "category_id": 13, + "poly": [ + 690, + 632, + 738, + 632, + 738, + 666, + 690, + 666 + ], + "score": 0.33, + "latex": "( X )" + }, + { + "category_id": 13, + "poly": [ + 969, + 607, + 1070, + 607, + 1070, + 640, + 969, + 640 + ], + "score": 0.32, + "latex": "( - 1 0 0 0 )" + }, + { + "category_id": 13, + "poly": [ + 429, + 547, + 472, + 547, + 472, + 571, + 429, + 571 + ], + "score": 0.28, + "latex": "L \\ – I" + }, + { + "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": [ + 291.0, + 1213.0, + 1249.0, + 1213.0, + 1249.0, + 1258.0, + 291.0, + 1258.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": [ + 291.0, + 1213.0, + 1249.0, + 1213.0, + 1249.0, + 1258.0, + 291.0, + 1258.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1282.0, + 1402.0, + 1282.0, + 1402.0, + 1317.0, + 296.0, + 1317.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1314.0, + 1403.0, + 1314.0, + 1403.0, + 1347.0, + 296.0, + 1347.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1341.0, + 1406.0, + 1341.0, + 1406.0, + 1380.0, + 292.0, + 1380.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1375.0, + 1406.0, + 1375.0, + 1406.0, + 1408.0, + 296.0, + 1408.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1406.0, + 1405.0, + 1406.0, + 1405.0, + 1439.0, + 296.0, + 1439.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1436.0, + 1403.0, + 1436.0, + 1403.0, + 1469.0, + 296.0, + 1469.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1466.0, + 1403.0, + 1466.0, + 1403.0, + 1499.0, + 294.0, + 1499.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1493.0, + 1405.0, + 1493.0, + 1405.0, + 1531.0, + 294.0, + 1531.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1527.0, + 1406.0, + 1527.0, + 1406.0, + 1561.0, + 294.0, + 1561.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1556.0, + 1405.0, + 1556.0, + 1405.0, + 1592.0, + 295.0, + 1592.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1586.0, + 1405.0, + 1586.0, + 1405.0, + 1622.0, + 295.0, + 1622.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1616.0, + 1403.0, + 1616.0, + 1403.0, + 1652.0, + 294.0, + 1652.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1647.0, + 1045.0, + 1647.0, + 1045.0, + 1685.0, + 294.0, + 1685.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1940.0, + 1404.0, + 1940.0, + 1404.0, + 1976.0, + 294.0, + 1976.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1971.0, + 1402.0, + 1971.0, + 1402.0, + 2007.0, + 294.0, + 2007.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 2001.0, + 1406.0, + 2001.0, + 1406.0, + 2037.0, + 294.0, + 2037.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1691.0, + 1405.0, + 1691.0, + 1405.0, + 1730.0, + 294.0, + 1730.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1726.0, + 437.0, + 1726.0, + 437.0, + 1760.0, + 293.0, + 1760.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 524.0, + 1726.0, + 1404.0, + 1726.0, + 1404.0, + 1760.0, + 524.0, + 1760.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1756.0, + 1094.0, + 1756.0, + 1094.0, + 1790.0, + 295.0, + 1790.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 868.0, + 234.0, + 1405.0, + 234.0, + 1405.0, + 269.0, + 868.0, + 269.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 868.0, + 264.0, + 1110.0, + 264.0, + 1110.0, + 300.0, + 868.0, + 300.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1154.0, + 264.0, + 1353.0, + 264.0, + 1353.0, + 300.0, + 1154.0, + 300.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1394.0, + 264.0, + 1405.0, + 264.0, + 1405.0, + 300.0, + 1394.0, + 300.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 868.0, + 294.0, + 1055.0, + 294.0, + 1055.0, + 330.0, + 868.0, + 330.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1105.0, + 294.0, + 1406.0, + 294.0, + 1406.0, + 330.0, + 1105.0, + 330.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 868.0, + 326.0, + 1290.0, + 326.0, + 1290.0, + 359.0, + 868.0, + 359.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 870.0, + 363.0, + 1019.0, + 363.0, + 1019.0, + 397.0, + 870.0, + 397.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1059.0, + 363.0, + 1241.0, + 363.0, + 1241.0, + 397.0, + 1059.0, + 397.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1046.0, + 392.0, + 1089.0, + 392.0, + 1089.0, + 427.0, + 1046.0, + 427.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 877.0, + 421.0, + 882.0, + 421.0, + 882.0, + 457.0, + 877.0, + 457.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 965.0, + 421.0, + 1055.0, + 421.0, + 1055.0, + 457.0, + 965.0, + 457.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 877.0, + 453.0, + 882.0, + 453.0, + 882.0, + 485.0, + 877.0, + 485.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 970.0, + 453.0, + 1050.0, + 453.0, + 1050.0, + 485.0, + 970.0, + 485.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 882.0, + 484.0, + 923.0, + 484.0, + 923.0, + 515.0, + 882.0, + 515.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 969.0, + 484.0, + 999.0, + 484.0, + 999.0, + 515.0, + 969.0, + 515.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1023.0, + 484.0, + 1060.0, + 484.0, + 1060.0, + 515.0, + 1023.0, + 515.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 908.0, + 514.0, + 1052.0, + 514.0, + 1052.0, + 549.0, + 908.0, + 549.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1185.0, + 514.0, + 1247.0, + 514.0, + 1247.0, + 549.0, + 1185.0, + 549.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 964.0, + 603.0, + 968.0, + 603.0, + 968.0, + 642.0, + 964.0, + 642.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1071.0, + 603.0, + 1074.0, + 603.0, + 1074.0, + 642.0, + 1071.0, + 642.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 907.0, + 635.0, + 962.0, + 635.0, + 962.0, + 667.0, + 907.0, + 667.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 910.0, + 667.0, + 1315.0, + 667.0, + 1315.0, + 701.0, + 910.0, + 701.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 907.0, + 758.0, + 963.0, + 758.0, + 963.0, + 789.0, + 907.0, + 789.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 911.0, + 789.0, + 1109.0, + 789.0, + 1109.0, + 823.0, + 911.0, + 823.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1146.0, + 789.0, + 1333.0, + 789.0, + 1333.0, + 823.0, + 1146.0, + 823.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 948.0, + 816.0, + 1402.0, + 816.0, + 1402.0, + 852.0, + 948.0, + 852.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 966.0, + 845.0, + 1224.0, + 845.0, + 1224.0, + 883.0, + 966.0, + 883.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 908.0, + 908.0, + 966.0, + 908.0, + 966.0, + 942.0, + 908.0, + 942.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 910.0, + 940.0, + 1101.0, + 940.0, + 1101.0, + 973.0, + 910.0, + 973.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1274.0, + 940.0, + 1337.0, + 940.0, + 1337.0, + 973.0, + 1274.0, + 973.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 945.0, + 966.0, + 1402.0, + 966.0, + 1402.0, + 1002.0, + 945.0, + 1002.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 964.0, + 996.0, + 1217.0, + 996.0, + 1217.0, + 1036.0, + 964.0, + 1036.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 966.0, + 1027.0, + 1213.0, + 1027.0, + 1213.0, + 1065.0, + 966.0, + 1065.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 965.0, + 1059.0, + 1219.0, + 1059.0, + 1219.0, + 1093.0, + 965.0, + 1093.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 907.0, + 1089.0, + 964.0, + 1089.0, + 964.0, + 1123.0, + 907.0, + 1123.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 866.0, + 1122.0, + 922.0, + 1122.0, + 922.0, + 1156.0, + 866.0, + 1156.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 3, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 297, + 450, + 1405, + 450, + 1405, + 847, + 297, + 847 + ], + "score": 0.985 + }, + { + "category_id": 1, + "poly": [ + 297, + 1818, + 1403, + 1818, + 1403, + 2036, + 297, + 2036 + ], + "score": 0.98 + }, + { + "category_id": 1, + "poly": [ + 299, + 1443, + 1403, + 1443, + 1403, + 1538, + 299, + 1538 + ], + "score": 0.976 + }, + { + "category_id": 1, + "poly": [ + 299, + 1223, + 1404, + 1223, + 1404, + 1346, + 299, + 1346 + ], + "score": 0.976 + }, + { + "category_id": 1, + "poly": [ + 299, + 1641, + 1403, + 1641, + 1403, + 1735, + 299, + 1735 + ], + "score": 0.974 + }, + { + "category_id": 1, + "poly": [ + 300, + 947, + 1402, + 947, + 1402, + 1040, + 300, + 1040 + ], + "score": 0.973 + }, + { + "category_id": 8, + "poly": [ + 612, + 1346, + 1087, + 1346, + 1087, + 1432, + 612, + 1432 + ], + "score": 0.956 + }, + { + "category_id": 8, + "poly": [ + 751, + 338, + 942, + 338, + 942, + 428, + 751, + 428 + ], + "score": 0.951 + }, + { + "category_id": 8, + "poly": [ + 759, + 1553, + 939, + 1553, + 939, + 1628, + 759, + 1628 + ], + "score": 0.951 + }, + { + "category_id": 8, + "poly": [ + 525, + 1107, + 1171, + 1107, + 1171, + 1198, + 525, + 1198 + ], + "score": 0.95 + }, + { + "category_id": 8, + "poly": [ + 761, + 847, + 938, + 847, + 938, + 919, + 761, + 919 + ], + "score": 0.945 + }, + { + "category_id": 8, + "poly": [ + 731, + 259, + 967, + 259, + 967, + 329, + 731, + 329 + ], + "score": 0.939 + }, + { + "category_id": 8, + "poly": [ + 638, + 1750, + 1063, + 1750, + 1063, + 1789, + 638, + 1789 + ], + "score": 0.932 + }, + { + "category_id": 8, + "poly": [ + 724, + 1056, + 974, + 1056, + 974, + 1095, + 724, + 1095 + ], + "score": 0.93 + }, + { + "category_id": 1, + "poly": [ + 297, + 230, + 660, + 230, + 660, + 262, + 297, + 262 + ], + "score": 0.929 + }, + { + "category_id": 2, + "poly": [ + 298, + 74, + 817, + 74, + 817, + 106, + 298, + 106 + ], + "score": 0.912 + }, + { + "category_id": 9, + "poly": [ + 1352, + 1574, + 1399, + 1574, + 1399, + 1605, + 1352, + 1605 + ], + "score": 0.906 + }, + { + "category_id": 9, + "poly": [ + 1352, + 1753, + 1399, + 1753, + 1399, + 1784, + 1352, + 1784 + ], + "score": 0.902 + }, + { + "category_id": 9, + "poly": [ + 1366, + 367, + 1400, + 367, + 1400, + 397, + 1366, + 397 + ], + "score": 0.89 + }, + { + "category_id": 9, + "poly": [ + 1352, + 1367, + 1399, + 1367, + 1399, + 1397, + 1352, + 1397 + ], + "score": 0.887 + }, + { + "category_id": 9, + "poly": [ + 1366, + 269, + 1400, + 269, + 1400, + 299, + 1366, + 299 + ], + "score": 0.885 + }, + { + "category_id": 9, + "poly": [ + 1366, + 865, + 1400, + 865, + 1400, + 896, + 1366, + 896 + ], + "score": 0.884 + }, + { + "category_id": 9, + "poly": [ + 1366, + 1060, + 1400, + 1060, + 1400, + 1089, + 1366, + 1089 + ], + "score": 0.879 + }, + { + "category_id": 9, + "poly": [ + 1366, + 1132, + 1400, + 1132, + 1400, + 1161, + 1366, + 1161 + ], + "score": 0.871 + }, + { + "category_id": 2, + "poly": [ + 841, + 2088, + 858, + 2088, + 858, + 2112, + 841, + 2112 + ], + "score": 0.74 + }, + { + "category_id": 14, + "poly": [ + 759, + 1551, + 940, + 1551, + 940, + 1628, + 759, + 1628 + ], + "score": 0.95, + "latex": "\\frac { \\partial o _ { i } ^ { t } } { \\partial u _ { i } ^ { t } } = \\alpha e ^ { - \\beta \\Delta t }" + }, + { + "category_id": 14, + "poly": [ + 760, + 842, + 940, + 842, + 940, + 919, + 760, + 919 + ], + "score": 0.95, + "latex": "\\frac { \\partial L } { \\partial u _ { i } ^ { T } } = p _ { i } - y _ { i }" + }, + { + "category_id": 14, + "poly": [ + 611, + 1343, + 1090, + 1343, + 1090, + 1434, + 611, + 1434 + ], + "score": 0.94, + "latex": "\\Delta W _ { i j } = \\sum _ { t } { \\frac { \\partial L } { \\partial W _ { i j } ^ { t } } } = \\sum _ { t } { \\frac { \\partial L } { \\partial o _ { i } ^ { t } } } { \\frac { \\partial o _ { i } ^ { t } } { \\partial u _ { i } ^ { t } } } { \\frac { \\partial u _ { i } ^ { t } } { \\partial W _ { i j } ^ { t } } }" + }, + { + "category_id": 13, + "poly": [ + 681, + 1224, + 729, + 1224, + 729, + 1262, + 681, + 1262 + ], + "score": 0.92, + "latex": "{ W } _ { i j } ^ { t }" + }, + { + "category_id": 13, + "poly": [ + 426, + 1009, + 474, + 1009, + 474, + 1043, + 426, + 1043 + ], + "score": 0.92, + "latex": "W _ { i j }" + }, + { + "category_id": 13, + "poly": [ + 672, + 665, + 823, + 665, + 823, + 698, + 672, + 698 + ], + "score": 0.91, + "latex": "( 2 t ^ { \\prime } , 3 t ^ { \\prime } , . . . T )" + }, + { + "category_id": 14, + "poly": [ + 635, + 1750, + 1067, + 1750, + 1067, + 1789, + 635, + 1789 + ], + "score": 0.91, + "latex": "\\Delta t = ( t - t _ { s } ) , 0 < \\Delta t < T , \\Delta t \\epsilon \\mathbb { Z }" + }, + { + "category_id": 14, + "poly": [ + 525, + 1105, + 1174, + 1105, + 1174, + 1200, + 525, + 1200 + ], + "score": 0.9, + "latex": "\\Delta W _ { i j } = \\sum _ { t } { \\frac { \\partial L } { \\partial W _ { i j } ^ { t } } } = \\sum _ { t } { \\frac { \\partial L } { \\partial u _ { i } ^ { T } } } { \\frac { \\partial u _ { i } ^ { T } } { \\partial W _ { i j } ^ { t } } } = { \\frac { \\partial L } { \\partial u _ { i } ^ { T } } } \\sum _ { t } { \\frac { \\partial u _ { i } ^ { T } } { \\partial W _ { i j } ^ { t } } }" + }, + { + "category_id": 13, + "poly": [ + 1153, + 1444, + 1181, + 1444, + 1181, + 1478, + 1153, + 1478 + ], + "score": 0.89, + "latex": "u _ { i } ^ { t }" + }, + { + "category_id": 13, + "poly": [ + 1309, + 943, + 1368, + 943, + 1368, + 981, + 1309, + 981 + ], + "score": 0.89, + "latex": "( u _ { i } ^ { t - 1 }" + }, + { + "category_id": 13, + "poly": [ + 373, + 1444, + 400, + 1444, + 400, + 1478, + 373, + 1478 + ], + "score": 0.89, + "latex": "o _ { i } ^ { t }" + }, + { + "category_id": 13, + "poly": [ + 931, + 1944, + 966, + 1944, + 966, + 1970, + 931, + 1970 + ], + "score": 0.87, + "latex": "\\Delta t" + }, + { + "category_id": 13, + "poly": [ + 791, + 1674, + 832, + 1674, + 832, + 1704, + 791, + 1704 + ], + "score": 0.86, + "latex": "( t _ { s } )" + }, + { + "category_id": 13, + "poly": [ + 1364, + 450, + 1400, + 450, + 1400, + 480, + 1364, + 480 + ], + "score": 0.86, + "latex": "u ^ { T }" + }, + { + "category_id": 13, + "poly": [ + 542, + 1822, + 563, + 1822, + 563, + 1852, + 542, + 1852 + ], + "score": 0.86, + "latex": "\\beta" + }, + { + "category_id": 13, + "poly": [ + 625, + 1643, + 661, + 1643, + 661, + 1671, + 625, + 1671 + ], + "score": 0.86, + "latex": "\\Delta t" + }, + { + "category_id": 13, + "poly": [ + 443, + 1644, + 464, + 1644, + 464, + 1675, + 443, + 1675 + ], + "score": 0.85, + "latex": "\\beta" + }, + { + "category_id": 13, + "poly": [ + 1221, + 1822, + 1242, + 1822, + 1242, + 1852, + 1221, + 1852 + ], + "score": 0.84, + "latex": "\\beta" + }, + { + "category_id": 13, + "poly": [ + 1305, + 666, + 1327, + 666, + 1327, + 693, + 1305, + 693 + ], + "score": 0.84, + "latex": "t ^ { \\prime }" + }, + { + "category_id": 13, + "poly": [ + 742, + 574, + 763, + 574, + 763, + 601, + 742, + 601 + ], + "score": 0.83, + "latex": "t ^ { \\prime }" + }, + { + "category_id": 13, + "poly": [ + 1316, + 574, + 1337, + 574, + 1337, + 601, + 1316, + 601 + ], + "score": 0.83, + "latex": "t ^ { \\prime }" + }, + { + "category_id": 13, + "poly": [ + 1097, + 1822, + 1121, + 1822, + 1121, + 1848, + 1097, + 1848 + ], + "score": 0.83, + "latex": "T" + }, + { + "category_id": 13, + "poly": [ + 694, + 1883, + 717, + 1883, + 717, + 1909, + 694, + 1909 + ], + "score": 0.82, + "latex": "T" + }, + { + "category_id": 14, + "poly": [ + 737, + 257, + 964, + 257, + 964, + 431, + 737, + 431 + ], + "score": 0.81, + "latex": "\\begin{array} { c } { L = - \\displaystyle \\sum _ { i } y _ { i } l o g ( p _ { i } ) } \\\\ { p _ { i } = \\displaystyle \\frac { e ^ { u _ { i } ^ { T } } } { \\sum _ { k = 1 } ^ { N } e ^ { u _ { k } ^ { T } } } } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 1023, + 1822, + 1046, + 1822, + 1046, + 1848, + 1023, + 1848 + ], + "score": 0.81, + "latex": "T" + }, + { + "category_id": 13, + "poly": [ + 771, + 459, + 791, + 459, + 791, + 485, + 771, + 485 + ], + "score": 0.81, + "latex": "p" + }, + { + "category_id": 13, + "poly": [ + 374, + 1231, + 394, + 1231, + 394, + 1258, + 374, + 1258 + ], + "score": 0.8, + "latex": "\\eta" + }, + { + "category_id": 13, + "poly": [ + 562, + 459, + 581, + 459, + 581, + 485, + 562, + 485 + ], + "score": 0.8, + "latex": "y" + }, + { + "category_id": 13, + "poly": [ + 970, + 454, + 994, + 454, + 994, + 480, + 970, + 480 + ], + "score": 0.8, + "latex": "T" + }, + { + "category_id": 13, + "poly": [ + 976, + 697, + 1000, + 697, + 1000, + 723, + 976, + 723 + ], + "score": 0.79, + "latex": "T" + }, + { + "category_id": 13, + "poly": [ + 298, + 454, + 320, + 454, + 320, + 480, + 298, + 480 + ], + "score": 0.79, + "latex": "L" + }, + { + "category_id": 13, + "poly": [ + 372, + 1648, + 393, + 1648, + 393, + 1671, + 372, + 1671 + ], + "score": 0.78, + "latex": "\\alpha" + }, + { + "category_id": 13, + "poly": [ + 395, + 1886, + 416, + 1886, + 416, + 1909, + 395, + 1909 + ], + "score": 0.78, + "latex": "\\alpha" + }, + { + "category_id": 14, + "poly": [ + 721, + 1054, + 978, + 1054, + 978, + 1096, + 721, + 1096 + ], + "score": 0.77, + "latex": "W _ { i j } = W _ { i j } - \\eta \\Delta W _ { i j }" + }, + { + "category_id": 13, + "poly": [ + 960, + 1917, + 981, + 1917, + 981, + 1939, + 960, + 1939 + ], + "score": 0.77, + "latex": "\\alpha" + }, + { + "category_id": 13, + "poly": [ + 464, + 1826, + 486, + 1826, + 486, + 1848, + 464, + 1848 + ], + "score": 0.77, + "latex": "\\alpha" + }, + { + "category_id": 13, + "poly": [ + 298, + 513, + 326, + 513, + 326, + 541, + 298, + 541 + ], + "score": 0.76, + "latex": "N" + }, + { + "category_id": 13, + "poly": [ + 636, + 1705, + 674, + 1705, + 674, + 1734, + 636, + 1734 + ], + "score": 0.76, + "latex": "( T )" + }, + { + "category_id": 14, + "poly": [ + 731, + 257, + 968, + 257, + 968, + 331, + 731, + 331 + ], + "score": 0.75, + "latex": "L = - \\sum _ { i } y _ { i } l o g ( p _ { i } )" + }, + { + "category_id": 13, + "poly": [ + 414, + 1259, + 428, + 1259, + 428, + 1283, + 414, + 1283 + ], + "score": 0.67, + "latex": "t" + }, + { + "category_id": 13, + "poly": [ + 1238, + 1645, + 1268, + 1645, + 1268, + 1674, + 1238, + 1674 + ], + "score": 0.65, + "latex": "\\mathbf { \\rho } ( t )" + }, + { + "category_id": 13, + "poly": [ + 847, + 575, + 870, + 575, + 870, + 601, + 847, + 601 + ], + "score": 0.34, + "latex": "\\mathrm { T }" + }, + { + "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": [ + 839.0, + 2085.0, + 861.0, + 2085.0, + 861.0, + 2120.0, + 839.0, + 2120.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 448.0, + 297.0, + 448.0, + 297.0, + 488.0, + 292.0, + 488.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 448.0, + 561.0, + 448.0, + 561.0, + 488.0, + 321.0, + 488.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 582.0, + 448.0, + 770.0, + 448.0, + 770.0, + 488.0, + 582.0, + 488.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 792.0, + 448.0, + 969.0, + 448.0, + 969.0, + 488.0, + 792.0, + 488.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 995.0, + 448.0, + 1363.0, + 448.0, + 1363.0, + 488.0, + 995.0, + 488.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 480.0, + 1405.0, + 480.0, + 1405.0, + 516.0, + 294.0, + 516.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 327.0, + 511.0, + 1405.0, + 511.0, + 1405.0, + 546.0, + 327.0, + 546.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 541.0, + 1406.0, + 541.0, + 1406.0, + 579.0, + 292.0, + 579.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 572.0, + 741.0, + 572.0, + 741.0, + 608.0, + 292.0, + 608.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 764.0, + 572.0, + 846.0, + 572.0, + 846.0, + 608.0, + 764.0, + 608.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 871.0, + 572.0, + 1315.0, + 572.0, + 1315.0, + 608.0, + 871.0, + 608.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1338.0, + 572.0, + 1407.0, + 572.0, + 1407.0, + 608.0, + 1338.0, + 608.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 606.0, + 1403.0, + 606.0, + 1403.0, + 638.0, + 295.0, + 638.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 636.0, + 1405.0, + 636.0, + 1405.0, + 668.0, + 295.0, + 668.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 661.0, + 671.0, + 661.0, + 671.0, + 703.0, + 291.0, + 703.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 824.0, + 661.0, + 1304.0, + 661.0, + 1304.0, + 703.0, + 824.0, + 703.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1328.0, + 661.0, + 1407.0, + 661.0, + 1407.0, + 703.0, + 1328.0, + 703.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 695.0, + 975.0, + 695.0, + 975.0, + 731.0, + 295.0, + 731.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1001.0, + 695.0, + 1405.0, + 695.0, + 1405.0, + 731.0, + 1001.0, + 731.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 724.0, + 1403.0, + 724.0, + 1403.0, + 762.0, + 294.0, + 762.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 756.0, + 1405.0, + 756.0, + 1405.0, + 792.0, + 295.0, + 792.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 783.0, + 1406.0, + 783.0, + 1406.0, + 823.0, + 294.0, + 823.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 813.0, + 451.0, + 813.0, + 451.0, + 855.0, + 293.0, + 855.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1820.0, + 463.0, + 1820.0, + 463.0, + 1855.0, + 295.0, + 1855.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 487.0, + 1820.0, + 541.0, + 1820.0, + 541.0, + 1855.0, + 487.0, + 1855.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 564.0, + 1820.0, + 1022.0, + 1820.0, + 1022.0, + 1855.0, + 564.0, + 1855.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1047.0, + 1820.0, + 1096.0, + 1820.0, + 1096.0, + 1855.0, + 1047.0, + 1855.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1122.0, + 1820.0, + 1220.0, + 1820.0, + 1220.0, + 1855.0, + 1122.0, + 1855.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1243.0, + 1820.0, + 1405.0, + 1820.0, + 1405.0, + 1855.0, + 1243.0, + 1855.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1852.0, + 1404.0, + 1852.0, + 1404.0, + 1884.0, + 296.0, + 1884.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1880.0, + 394.0, + 1880.0, + 394.0, + 1918.0, + 295.0, + 1918.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 417.0, + 1880.0, + 693.0, + 1880.0, + 693.0, + 1918.0, + 417.0, + 1918.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 718.0, + 1880.0, + 1403.0, + 1880.0, + 1403.0, + 1918.0, + 718.0, + 1918.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1912.0, + 959.0, + 1912.0, + 959.0, + 1947.0, + 296.0, + 1947.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 982.0, + 1912.0, + 1404.0, + 1912.0, + 1404.0, + 1947.0, + 982.0, + 1947.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1943.0, + 930.0, + 1943.0, + 930.0, + 1978.0, + 295.0, + 1978.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 967.0, + 1943.0, + 1405.0, + 1943.0, + 1405.0, + 1978.0, + 967.0, + 1978.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1973.0, + 1407.0, + 1973.0, + 1407.0, + 2008.0, + 295.0, + 2008.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 2003.0, + 1405.0, + 2003.0, + 1405.0, + 2038.0, + 295.0, + 2038.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1444.0, + 372.0, + 1444.0, + 372.0, + 1478.0, + 297.0, + 1478.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 401.0, + 1444.0, + 1152.0, + 1444.0, + 1152.0, + 1478.0, + 401.0, + 1478.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1182.0, + 1444.0, + 1403.0, + 1444.0, + 1403.0, + 1478.0, + 1182.0, + 1478.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1475.0, + 1404.0, + 1475.0, + 1404.0, + 1509.0, + 295.0, + 1509.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1504.0, + 1355.0, + 1504.0, + 1355.0, + 1545.0, + 293.0, + 1545.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1223.0, + 373.0, + 1223.0, + 373.0, + 1262.0, + 293.0, + 1262.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 395.0, + 1223.0, + 680.0, + 1223.0, + 680.0, + 1262.0, + 395.0, + 1262.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 730.0, + 1223.0, + 1409.0, + 1223.0, + 1409.0, + 1262.0, + 730.0, + 1262.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1254.0, + 413.0, + 1254.0, + 413.0, + 1289.0, + 294.0, + 1289.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 429.0, + 1254.0, + 1406.0, + 1254.0, + 1406.0, + 1289.0, + 429.0, + 1289.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1286.0, + 1406.0, + 1286.0, + 1406.0, + 1320.0, + 292.0, + 1320.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1316.0, + 339.0, + 1316.0, + 339.0, + 1353.0, + 292.0, + 1353.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1639.0, + 371.0, + 1639.0, + 371.0, + 1676.0, + 295.0, + 1676.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 1639.0, + 442.0, + 1639.0, + 442.0, + 1676.0, + 394.0, + 1676.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 465.0, + 1639.0, + 624.0, + 1639.0, + 624.0, + 1676.0, + 465.0, + 1676.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 662.0, + 1639.0, + 1237.0, + 1639.0, + 1237.0, + 1676.0, + 662.0, + 1676.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1269.0, + 1639.0, + 1405.0, + 1639.0, + 1405.0, + 1676.0, + 1269.0, + 1676.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1671.0, + 790.0, + 1671.0, + 790.0, + 1707.0, + 294.0, + 1707.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 833.0, + 1671.0, + 1405.0, + 1671.0, + 1405.0, + 1707.0, + 833.0, + 1707.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1701.0, + 635.0, + 1701.0, + 635.0, + 1738.0, + 294.0, + 1738.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 675.0, + 1701.0, + 686.0, + 1701.0, + 686.0, + 1738.0, + 675.0, + 1738.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 942.0, + 1308.0, + 942.0, + 1308.0, + 983.0, + 293.0, + 983.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1369.0, + 942.0, + 1408.0, + 942.0, + 1408.0, + 983.0, + 1369.0, + 983.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 978.0, + 1404.0, + 978.0, + 1404.0, + 1012.0, + 296.0, + 1012.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1010.0, + 425.0, + 1010.0, + 425.0, + 1044.0, + 295.0, + 1044.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 475.0, + 1010.0, + 727.0, + 1010.0, + 727.0, + 1044.0, + 475.0, + 1044.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 230.0, + 663.0, + 230.0, + 663.0, + 263.0, + 294.0, + 263.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 4, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 297, + 1751, + 1404, + 1751, + 1404, + 2028, + 297, + 2028 + ], + "score": 0.982 + }, + { + "category_id": 1, + "poly": [ + 297, + 1420, + 1404, + 1420, + 1404, + 1605, + 297, + 1605 + ], + "score": 0.976 + }, + { + "category_id": 0, + "poly": [ + 300, + 1670, + 788, + 1670, + 788, + 1706, + 300, + 1706 + ], + "score": 0.892 + }, + { + "category_id": 2, + "poly": [ + 300, + 75, + 816, + 75, + 816, + 105, + 300, + 105 + ], + "score": 0.889 + }, + { + "category_id": 2, + "poly": [ + 840, + 2089, + 858, + 2089, + 858, + 2112, + 840, + 2112 + ], + "score": 0.772 + }, + { + "category_id": 1, + "poly": [ + 302, + 295, + 1395, + 295, + 1395, + 1344, + 302, + 1344 + ], + "score": 0.528 + }, + { + "category_id": 5, + "poly": [ + 302, + 295, + 1395, + 295, + 1395, + 1344, + 302, + 1344 + ], + "score": 0.362, + "html": "
Input: Mini-batch of input (X) - target (Y) pairs,network model(N),initial weights (W),thresholc voltage (V) U,S,M= InitializeNeuronParameters(X)[Algorithm 2] i/ Forward propagation
for t=1 to T do
Ot = PoissonGenerator(X)
for l=1 to L-1 do
if isintance(Nt,[Conv,Linear]) then / accumulate _the output of previous layer in U, soft reset when spike occurs Ut = XUt-1+WiOi-1-Vi*Ot-1
/ generate the output (+1) if U exceeds V Ot = STDB(Ut,Vi,t)
// store the latest spike times for each neuron St[Ot == 1] =t end
else if isintance(Nt, AvgPool) then ? Ot = Nt(Ot-1)
end else if isintance(Ni,Dropout) then 丨Ot=0t-1*Mt
end end
U=XU-1+WLO-1 end
//BackwardPropagation L from the cross-entropy loss function using BPTT Compute
UL for t=T to 1 do
for l=L-1 to 1 do aL
Compute based on if Nt is linear, conv, pooling, etc. aot
aL aLaOt aL 影 品丽 品 *ae-βst
" + }, + { + "category_id": 1, + "poly": [ + 295, + 227, + 1402, + 227, + 1402, + 293, + 295, + 293 + ], + "score": 0.165 + }, + { + "category_id": 5, + "poly": [ + 295, + 227, + 1402, + 227, + 1402, + 293, + 295, + 293 + ], + "score": 0.118, + "html": "
Algorithm 3 Training an SNN with surrogate gradient computed with spike timing. The network is composed of L layers. The training proceeds with mini-batch size (batch_size)
" + }, + { + "category_id": 13, + "poly": [ + 421, + 1077, + 471, + 1077, + 471, + 1118, + 421, + 1118 + ], + "score": 0.92, + "latex": "\\frac { \\partial L } { \\partial U _ { L } }" + }, + { + "category_id": 13, + "poly": [ + 493, + 1176, + 540, + 1176, + 540, + 1221, + 493, + 1221 + ], + "score": 0.9, + "latex": "\\frac { \\partial L } { \\partial O _ { l } ^ { t } }" + }, + { + "category_id": 13, + "poly": [ + 673, + 1181, + 706, + 1181, + 706, + 1210, + 673, + 1210 + ], + "score": 0.88, + "latex": "N _ { l }" + }, + { + "category_id": 13, + "poly": [ + 438, + 567, + 859, + 567, + 859, + 604, + 438, + 604 + ], + "score": 0.87, + "latex": "\\begin{array} { r } { U _ { l } ^ { t } = \\lambda U _ { l } ^ { t - 1 } + W _ { l } \\dot { O } _ { l - 1 } ^ { t } - V _ { l } * O _ { l } ^ { t - 1 } } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 352, + 1117, + 401, + 1117, + 401, + 1144, + 352, + 1144 + ], + "score": 0.86, + "latex": "t { = } T" + }, + { + "category_id": 13, + "poly": [ + 352, + 420, + 396, + 420, + 396, + 447, + 352, + 447 + ], + "score": 0.85, + "latex": "t { = } I" + }, + { + "category_id": 13, + "poly": [ + 1002, + 1846, + 1083, + 1846, + 1083, + 1874, + 1002, + 1874 + ], + "score": 0.83, + "latex": "\\mathrm { \\sim 2 5 0 0 }" + }, + { + "category_id": 14, + "poly": [ + 395, + 1219, + 772, + 1219, + 772, + 1274, + 395, + 1274 + ], + "score": 0.83, + "latex": "\\begin{array} { r } { \\frac { \\partial L } { \\partial U _ { l } ^ { t } } = \\frac { \\partial L } { \\partial O _ { l } ^ { t } } \\frac { \\partial O _ { l } ^ { t } } { \\partial U _ { l } ^ { t } } = \\frac { \\partial L } { \\partial O _ { l } ^ { t } } \\ast \\alpha e ^ { - \\beta S _ { l } ^ { t } } } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 651, + 1453, + 687, + 1453, + 687, + 1480, + 651, + 1480 + ], + "score": 0.83, + "latex": "\\Delta t" + }, + { + "category_id": 13, + "poly": [ + 922, + 541, + 945, + 541, + 945, + 567, + 922, + 567 + ], + "score": 0.81, + "latex": "U" + }, + { + "category_id": 13, + "poly": [ + 381, + 1146, + 449, + 1146, + 449, + 1175, + 381, + 1175 + ], + "score": 0.8, + "latex": "\\scriptstyle { l = L - I }" + }, + { + "category_id": 13, + "poly": [ + 439, + 629, + 708, + 629, + 708, + 665, + 439, + 665 + ], + "score": 0.78, + "latex": "\\hat { O _ { l } ^ { t } } = S T D B ( U _ { l } ^ { t } , V _ { l } , t )" + }, + { + "category_id": 13, + "poly": [ + 682, + 604, + 737, + 604, + 737, + 630, + 682, + 630 + ], + "score": 0.76, + "latex": "( + 1 )" + }, + { + "category_id": 13, + "poly": [ + 766, + 603, + 789, + 603, + 789, + 627, + 766, + 627 + ], + "score": 0.76, + "latex": "U" + }, + { + "category_id": 14, + "poly": [ + 338, + 978, + 636, + 978, + 636, + 1021, + 338, + 1021 + ], + "score": 0.75, + "latex": "U _ { L } ^ { t } = \\lambda U _ { L } ^ { t - 1 } + W _ { L } O _ { L - 1 } ^ { t }" + }, + { + "category_id": 13, + "poly": [ + 424, + 880, + 615, + 880, + 615, + 917, + 424, + 917 + ], + "score": 0.73, + "latex": "O _ { l } ^ { t } = O _ { l - 1 } ^ { t } * M _ { l }" + }, + { + "category_id": 13, + "poly": [ + 736, + 299, + 776, + 299, + 776, + 328, + 736, + 328 + ], + "score": 0.72, + "latex": "( Y )" + }, + { + "category_id": 13, + "poly": [ + 888, + 601, + 914, + 601, + 914, + 627, + 888, + 627 + ], + "score": 0.72, + "latex": "V" + }, + { + "category_id": 13, + "poly": [ + 604, + 299, + 648, + 299, + 648, + 328, + 604, + 328 + ], + "score": 0.71, + "latex": "( X )" + }, + { + "category_id": 13, + "poly": [ + 446, + 262, + 469, + 262, + 469, + 288, + 446, + 288 + ], + "score": 0.69, + "latex": "L" + }, + { + "category_id": 13, + "poly": [ + 394, + 483, + 439, + 483, + 439, + 509, + 394, + 509 + ], + "score": 0.66, + "latex": "l { = } l" + }, + { + "category_id": 13, + "poly": [ + 783, + 358, + 842, + 358, + 842, + 392, + 783, + 392 + ], + "score": 0.63, + "latex": "s ( X )" + }, + { + "category_id": 13, + "poly": [ + 425, + 784, + 606, + 784, + 606, + 821, + 425, + 821 + ], + "score": 0.62, + "latex": "O _ { l } ^ { t } = N _ { l } ( O _ { l - 1 } ^ { t } )" + }, + { + "category_id": 13, + "poly": [ + 430, + 420, + 451, + 420, + 451, + 446, + 430, + 446 + ], + "score": 0.56, + "latex": "T" + }, + { + "category_id": 13, + "poly": [ + 471, + 329, + 512, + 329, + 512, + 358, + 471, + 358 + ], + "score": 0.53, + "latex": "( V )" + }, + { + "category_id": 14, + "poly": [ + 439, + 689, + 639, + 689, + 639, + 726, + 439, + 726 + ], + "score": 0.53, + "latex": "S _ { l } ^ { t } [ O _ { l } ^ { t } = = 1 ] = t" + }, + { + "category_id": 13, + "poly": [ + 1017, + 299, + 1061, + 299, + 1061, + 328, + 1017, + 328 + ], + "score": 0.52, + "latex": "( N )" + }, + { + "category_id": 13, + "poly": [ + 439, + 689, + 638, + 689, + 638, + 726, + 439, + 726 + ], + "score": 0.52, + "latex": "S _ { l } ^ { t } [ O _ { l } ^ { t } = = 1 ] = t" + }, + { + "category_id": 13, + "poly": [ + 434, + 1119, + 450, + 1119, + 450, + 1143, + 434, + 1143 + ], + "score": 0.51, + "latex": "^ { l }" + }, + { + "category_id": 13, + "poly": [ + 511, + 511, + 767, + 511, + 767, + 543, + 511, + 543 + ], + "score": 0.51, + "latex": "e ( N _ { l } , [ C o n v , L i n e a r ] )" + }, + { + "category_id": 13, + "poly": [ + 1240, + 299, + 1283, + 299, + 1283, + 328, + 1240, + 328 + ], + "score": 0.51, + "latex": "( W )" + }, + { + "category_id": 13, + "poly": [ + 298, + 359, + 442, + 359, + 442, + 390, + 298, + 390 + ], + "score": 0.45, + "latex": "U , S , M = I" + }, + { + "category_id": 13, + "poly": [ + 641, + 450, + 689, + 450, + 689, + 484, + 641, + 484 + ], + "score": 0.4, + "latex": "( X )" + }, + { + "category_id": 13, + "poly": [ + 336, + 450, + 690, + 450, + 690, + 481, + 336, + 481 + ], + "score": 0.35, + "latex": "O _ { 0 } ^ { t } = P o i s s o n G e n e r a t o r ( X )" + }, + { + "category_id": 13, + "poly": [ + 571, + 753, + 743, + 753, + 743, + 786, + 571, + 786 + ], + "score": 0.35, + "latex": "{ \\mathrm { : } } ( N _ { l } , A v g P o o l )" + }, + { + "category_id": 13, + "poly": [ + 438, + 664, + 459, + 664, + 459, + 688, + 438, + 688 + ], + "score": 0.28, + "latex": "/ /" + }, + { + "category_id": 13, + "poly": [ + 572, + 849, + 740, + 849, + 740, + 882, + 572, + 882 + ], + "score": 0.26, + "latex": "( N _ { l } , D r o p o u t )" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1666.0, + 793.0, + 1666.0, + 793.0, + 1713.0, + 291.0, + 1713.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 73.0, + 817.0, + 73.0, + 817.0, + 108.0, + 296.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 840.0, + 2087.0, + 861.0, + 2087.0, + 861.0, + 2118.0, + 840.0, + 2118.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1753.0, + 1404.0, + 1753.0, + 1404.0, + 1786.0, + 295.0, + 1786.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1785.0, + 1405.0, + 1785.0, + 1405.0, + 1818.0, + 296.0, + 1818.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1814.0, + 1406.0, + 1814.0, + 1406.0, + 1850.0, + 294.0, + 1850.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1844.0, + 1001.0, + 1844.0, + 1001.0, + 1880.0, + 294.0, + 1880.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1084.0, + 1844.0, + 1406.0, + 1844.0, + 1406.0, + 1880.0, + 1084.0, + 1880.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1875.0, + 1406.0, + 1875.0, + 1406.0, + 1912.0, + 295.0, + 1912.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1907.0, + 1404.0, + 1907.0, + 1404.0, + 1939.0, + 296.0, + 1939.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1937.0, + 1405.0, + 1937.0, + 1405.0, + 1972.0, + 293.0, + 1972.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1965.0, + 1405.0, + 1965.0, + 1405.0, + 2002.0, + 295.0, + 2002.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1998.0, + 774.0, + 1998.0, + 774.0, + 2031.0, + 296.0, + 2031.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1421.0, + 1405.0, + 1421.0, + 1405.0, + 1455.0, + 292.0, + 1455.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1451.0, + 650.0, + 1451.0, + 650.0, + 1486.0, + 294.0, + 1486.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 688.0, + 1451.0, + 1406.0, + 1451.0, + 1406.0, + 1486.0, + 688.0, + 1486.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1481.0, + 1405.0, + 1481.0, + 1405.0, + 1518.0, + 292.0, + 1518.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1514.0, + 1404.0, + 1514.0, + 1404.0, + 1546.0, + 295.0, + 1546.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1539.0, + 1406.0, + 1539.0, + 1406.0, + 1581.0, + 291.0, + 1581.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1574.0, + 442.0, + 1574.0, + 442.0, + 1607.0, + 294.0, + 1607.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 292.0, + 603.0, + 292.0, + 603.0, + 333.0, + 296.0, + 333.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 649.0, + 292.0, + 735.0, + 292.0, + 735.0, + 333.0, + 649.0, + 333.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 777.0, + 292.0, + 1016.0, + 292.0, + 1016.0, + 333.0, + 777.0, + 333.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1062.0, + 292.0, + 1239.0, + 292.0, + 1239.0, + 333.0, + 1062.0, + 333.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1284.0, + 292.0, + 1400.0, + 292.0, + 1400.0, + 333.0, + 1284.0, + 333.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 379.0, + 325.0, + 470.0, + 325.0, + 470.0, + 361.0, + 379.0, + 361.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 513.0, + 325.0, + 518.0, + 325.0, + 518.0, + 361.0, + 513.0, + 361.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 354.0, + 297.0, + 354.0, + 297.0, + 394.0, + 294.0, + 394.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 443.0, + 354.0, + 782.0, + 354.0, + 782.0, + 394.0, + 443.0, + 394.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 843.0, + 354.0, + 1008.0, + 354.0, + 1008.0, + 394.0, + 843.0, + 394.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 303.0, + 385.0, + 574.0, + 385.0, + 574.0, + 425.0, + 303.0, + 425.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 307.0, + 414.0, + 351.0, + 414.0, + 351.0, + 453.0, + 307.0, + 453.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 397.0, + 414.0, + 429.0, + 414.0, + 429.0, + 453.0, + 397.0, + 453.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 452.0, + 414.0, + 491.0, + 414.0, + 491.0, + 453.0, + 452.0, + 453.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 351.0, + 480.0, + 393.0, + 480.0, + 393.0, + 511.0, + 351.0, + 511.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 440.0, + 480.0, + 555.0, + 480.0, + 555.0, + 511.0, + 440.0, + 511.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 378.0, + 509.0, + 510.0, + 509.0, + 510.0, + 543.0, + 378.0, + 543.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 768.0, + 509.0, + 832.0, + 509.0, + 832.0, + 543.0, + 768.0, + 543.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 417.0, + 535.0, + 921.0, + 535.0, + 921.0, + 576.0, + 417.0, + 576.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 946.0, + 535.0, + 1276.0, + 535.0, + 1276.0, + 576.0, + 946.0, + 576.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 430.0, + 560.0, + 437.0, + 560.0, + 437.0, + 609.0, + 430.0, + 609.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 860.0, + 560.0, + 864.0, + 560.0, + 864.0, + 609.0, + 860.0, + 609.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 435.0, + 597.0, + 681.0, + 597.0, + 681.0, + 631.0, + 435.0, + 631.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 738.0, + 597.0, + 765.0, + 597.0, + 765.0, + 631.0, + 738.0, + 631.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 790.0, + 597.0, + 887.0, + 597.0, + 887.0, + 631.0, + 790.0, + 631.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 435.0, + 625.0, + 438.0, + 625.0, + 438.0, + 667.0, + 435.0, + 667.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 709.0, + 625.0, + 713.0, + 625.0, + 713.0, + 667.0, + 709.0, + 667.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 460.0, + 657.0, + 942.0, + 657.0, + 942.0, + 694.0, + 460.0, + 694.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 434.0, + 684.0, + 438.0, + 684.0, + 438.0, + 731.0, + 434.0, + 731.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 640.0, + 684.0, + 649.0, + 684.0, + 649.0, + 731.0, + 640.0, + 731.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 376.0, + 721.0, + 434.0, + 721.0, + 434.0, + 755.0, + 376.0, + 755.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 378.0, + 746.0, + 570.0, + 746.0, + 570.0, + 790.0, + 378.0, + 790.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 744.0, + 746.0, + 809.0, + 746.0, + 809.0, + 790.0, + 744.0, + 790.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 417.0, + 777.0, + 424.0, + 777.0, + 424.0, + 825.0, + 417.0, + 825.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 607.0, + 777.0, + 613.0, + 777.0, + 613.0, + 825.0, + 607.0, + 825.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 376.0, + 818.0, + 434.0, + 818.0, + 434.0, + 849.0, + 376.0, + 849.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 378.0, + 845.0, + 571.0, + 845.0, + 571.0, + 883.0, + 378.0, + 883.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 741.0, + 845.0, + 805.0, + 845.0, + 805.0, + 883.0, + 741.0, + 883.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 407.0, + 876.0, + 423.0, + 876.0, + 423.0, + 916.0, + 407.0, + 916.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 616.0, + 876.0, + 621.0, + 876.0, + 621.0, + 916.0, + 616.0, + 916.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 376.0, + 911.0, + 436.0, + 911.0, + 436.0, + 947.0, + 376.0, + 947.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 334.0, + 945.0, + 394.0, + 945.0, + 394.0, + 980.0, + 334.0, + 980.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 332.0, + 976.0, + 337.0, + 976.0, + 337.0, + 1028.0, + 332.0, + 1028.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 637.0, + 976.0, + 640.0, + 976.0, + 640.0, + 1028.0, + 637.0, + 1028.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1019.0, + 348.0, + 1019.0, + 348.0, + 1050.0, + 295.0, + 1050.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1045.0, + 579.0, + 1045.0, + 579.0, + 1083.0, + 293.0, + 1083.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 307.0, + 1064.0, + 420.0, + 1064.0, + 420.0, + 1124.0, + 307.0, + 1124.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 472.0, + 1064.0, + 1030.0, + 1064.0, + 1030.0, + 1124.0, + 472.0, + 1124.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 308.0, + 1114.0, + 351.0, + 1114.0, + 351.0, + 1146.0, + 308.0, + 1146.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 402.0, + 1114.0, + 433.0, + 1114.0, + 433.0, + 1146.0, + 402.0, + 1146.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 451.0, + 1114.0, + 491.0, + 1114.0, + 491.0, + 1146.0, + 451.0, + 1146.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 335.0, + 1144.0, + 380.0, + 1144.0, + 380.0, + 1176.0, + 335.0, + 1176.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 450.0, + 1144.0, + 542.0, + 1144.0, + 542.0, + 1176.0, + 450.0, + 1176.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 377.0, + 1172.0, + 492.0, + 1172.0, + 492.0, + 1228.0, + 377.0, + 1228.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 541.0, + 1172.0, + 672.0, + 1172.0, + 672.0, + 1228.0, + 541.0, + 1228.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 707.0, + 1172.0, + 1020.0, + 1172.0, + 1020.0, + 1228.0, + 707.0, + 1228.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 332.0, + 1268.0, + 391.0, + 1268.0, + 391.0, + 1301.0, + 332.0, + 1301.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1301.0, + 350.0, + 1301.0, + 350.0, + 1336.0, + 291.0, + 1336.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 395.0, + 890.0, + 419.0, + 890.0, + 419.0, + 908.5, + 395.0, + 908.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 650.0, + 1222.0, + 779.0, + 1222.0, + 779.0, + 1263.0, + 650.0, + 1263.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 228.0, + 1405.0, + 228.0, + 1405.0, + 264.0, + 295.0, + 264.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 257.0, + 445.0, + 257.0, + 445.0, + 296.0, + 293.0, + 296.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 470.0, + 257.0, + 1185.0, + 257.0, + 1185.0, + 296.0, + 470.0, + 296.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 5, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 300, + 490, + 990, + 490, + 990, + 1101, + 300, + 1101 + ], + "score": 0.982 + }, + { + "category_id": 1, + "poly": [ + 298, + 229, + 1404, + 229, + 1404, + 474, + 298, + 474 + ], + "score": 0.979 + }, + { + "category_id": 1, + "poly": [ + 298, + 1460, + 1403, + 1460, + 1403, + 1643, + 298, + 1643 + ], + "score": 0.978 + }, + { + "category_id": 1, + "poly": [ + 298, + 1751, + 1404, + 1751, + 1404, + 1966, + 298, + 1966 + ], + "score": 0.977 + }, + { + "category_id": 1, + "poly": [ + 298, + 1229, + 989, + 1229, + 989, + 1351, + 298, + 1351 + ], + "score": 0.972 + }, + { + "category_id": 3, + "poly": [ + 1015, + 526, + 1403, + 526, + 1403, + 1171, + 1015, + 1171 + ], + "score": 0.966 + }, + { + "category_id": 4, + "poly": [ + 1013, + 1231, + 1402, + 1231, + 1402, + 1289, + 1013, + 1289 + ], + "score": 0.94 + }, + { + "category_id": 2, + "poly": [ + 330, + 2004, + 1104, + 2004, + 1104, + 2036, + 330, + 2036 + ], + "score": 0.905 + }, + { + "category_id": 0, + "poly": [ + 302, + 1155, + 749, + 1155, + 749, + 1189, + 302, + 1189 + ], + "score": 0.894 + }, + { + "category_id": 0, + "poly": [ + 301, + 1690, + 685, + 1690, + 685, + 1721, + 301, + 1721 + ], + "score": 0.891 + }, + { + "category_id": 0, + "poly": [ + 300, + 1399, + 626, + 1399, + 626, + 1430, + 300, + 1430 + ], + "score": 0.886 + }, + { + "category_id": 2, + "poly": [ + 300, + 76, + 816, + 76, + 816, + 104, + 300, + 104 + ], + "score": 0.886 + }, + { + "category_id": 2, + "poly": [ + 842, + 2088, + 858, + 2088, + 858, + 2111, + 842, + 2111 + ], + "score": 0.66 + }, + { + "category_id": 2, + "poly": [ + 842, + 2088, + 859, + 2088, + 859, + 2111, + 842, + 2111 + ], + "score": 0.205 + }, + { + "category_id": 13, + "poly": [ + 998, + 2005, + 1103, + 2005, + 1103, + 2040, + 998, + 2040 + ], + "score": 0.91, + "latex": "\\sum _ { j } w _ { i j } o _ { j }" + }, + { + "category_id": 13, + "poly": [ + 788, + 1843, + 844, + 1843, + 844, + 1873, + 788, + 1873 + ], + "score": 0.85, + "latex": "( 7 \\times 7" + }, + { + "category_id": 13, + "poly": [ + 1086, + 1874, + 1141, + 1874, + 1141, + 1904, + 1086, + 1904 + ], + "score": 0.84, + "latex": "( 3 \\times 3" + }, + { + "category_id": 15, + "poly": [ + 1063.0, + 534.0, + 1153.0, + 534.0, + 1153.0, + 560.0, + 1063.0, + 560.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1044.0, + 567.0, + 1172.0, + 567.0, + 1172.0, + 596.0, + 1044.0, + 596.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1240.0, + 568.0, + 1369.0, + 568.0, + 1369.0, + 598.0, + 1240.0, + 598.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1070.0, + 605.0, + 1145.0, + 605.0, + 1145.0, + 631.0, + 1070.0, + 631.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1099.0, + 628.0, + 1119.0, + 628.0, + 1119.0, + 647.0, + 1099.0, + 647.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1071.0, + 642.0, + 1145.0, + 642.0, + 1145.0, + 669.0, + 1071.0, + 669.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1101.0, + 668.0, + 1114.0, + 668.0, + 1114.0, + 679.0, + 1101.0, + 679.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1045.0, + 675.0, + 1173.0, + 675.0, + 1173.0, + 705.0, + 1045.0, + 705.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1099.0, + 701.0, + 1116.0, + 701.0, + 1116.0, + 716.0, + 1099.0, + 716.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1255.0, + 688.0, + 1347.0, + 688.0, + 1347.0, + 721.0, + 1255.0, + 721.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1071.0, + 713.0, + 1145.0, + 713.0, + 1145.0, + 739.0, + 1071.0, + 739.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1258.0, + 710.0, + 1349.0, + 710.0, + 1349.0, + 745.0, + 1258.0, + 745.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1099.0, + 737.0, + 1117.0, + 737.0, + 1117.0, + 754.0, + 1099.0, + 754.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1070.0, + 747.0, + 1146.0, + 747.0, + 1146.0, + 780.0, + 1070.0, + 780.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1101.0, + 776.0, + 1114.0, + 776.0, + 1114.0, + 787.0, + 1101.0, + 787.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1045.0, + 785.0, + 1172.0, + 785.0, + 1172.0, + 814.0, + 1045.0, + 814.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1101.0, + 812.0, + 1114.0, + 812.0, + 1114.0, + 823.0, + 1101.0, + 823.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1071.0, + 822.0, + 1145.0, + 822.0, + 1145.0, + 848.0, + 1071.0, + 848.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1099.0, + 844.0, + 1116.0, + 844.0, + 1116.0, + 861.0, + 1099.0, + 861.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1071.0, + 858.0, + 1145.0, + 858.0, + 1145.0, + 884.0, + 1071.0, + 884.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1044.0, + 891.0, + 1173.0, + 891.0, + 1173.0, + 920.0, + 1044.0, + 920.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1285.0, + 888.0, + 1385.0, + 888.0, + 1385.0, + 911.0, + 1285.0, + 911.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1101.0, + 918.0, + 1115.0, + 918.0, + 1115.0, + 932.0, + 1101.0, + 932.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1071.0, + 928.0, + 1145.0, + 928.0, + 1145.0, + 955.0, + 1071.0, + 955.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1097.0, + 951.0, + 1121.0, + 951.0, + 1121.0, + 971.0, + 1097.0, + 971.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1277.0, + 945.0, + 1397.0, + 945.0, + 1397.0, + 971.0, + 1277.0, + 971.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1070.0, + 963.0, + 1147.0, + 963.0, + 1147.0, + 996.0, + 1070.0, + 996.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1099.0, + 989.0, + 1116.0, + 989.0, + 1116.0, + 1005.0, + 1099.0, + 1005.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1044.0, + 1000.0, + 1173.0, + 1000.0, + 1173.0, + 1030.0, + 1044.0, + 1030.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1101.0, + 1026.0, + 1115.0, + 1026.0, + 1115.0, + 1039.0, + 1101.0, + 1039.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1111.0, + 1033.0, + 1187.0, + 1033.0, + 1187.0, + 1063.0, + 1111.0, + 1063.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1142.0, + 1060.0, + 1156.0, + 1060.0, + 1156.0, + 1073.0, + 1142.0, + 1073.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1110.0, + 1070.0, + 1186.0, + 1070.0, + 1186.0, + 1095.0, + 1110.0, + 1095.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1210.0, + 1077.0, + 1221.0, + 1077.0, + 1221.0, + 1090.0, + 1210.0, + 1090.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1072.0, + 1131.0, + 1170.0, + 1131.0, + 1170.0, + 1157.0, + 1072.0, + 1157.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1011.0, + 1231.0, + 1403.0, + 1231.0, + 1403.0, + 1263.0, + 1011.0, + 1263.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1009.0, + 1259.0, + 1078.0, + 1259.0, + 1078.0, + 1294.0, + 1009.0, + 1294.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 329.0, + 1994.0, + 997.0, + 1994.0, + 997.0, + 2045.0, + 329.0, + 2045.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1104.0, + 1994.0, + 1108.0, + 1994.0, + 1108.0, + 2045.0, + 1104.0, + 2045.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1151.0, + 756.0, + 1151.0, + 756.0, + 1194.0, + 293.0, + 1194.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1690.0, + 690.0, + 1690.0, + 690.0, + 1723.0, + 295.0, + 1723.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1396.0, + 631.0, + 1396.0, + 631.0, + 1434.0, + 294.0, + 1434.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, + 2087.0, + 861.0, + 2087.0, + 861.0, + 2119.0, + 840.0, + 2119.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 489.0, + 992.0, + 489.0, + 992.0, + 524.0, + 296.0, + 524.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 521.0, + 993.0, + 521.0, + 993.0, + 555.0, + 295.0, + 555.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 550.0, + 992.0, + 550.0, + 992.0, + 583.0, + 295.0, + 583.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 582.0, + 992.0, + 582.0, + 992.0, + 614.0, + 296.0, + 614.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 610.0, + 994.0, + 610.0, + 994.0, + 649.0, + 294.0, + 649.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 640.0, + 993.0, + 640.0, + 993.0, + 676.0, + 295.0, + 676.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 673.0, + 992.0, + 673.0, + 992.0, + 705.0, + 297.0, + 705.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 704.0, + 993.0, + 704.0, + 993.0, + 738.0, + 296.0, + 738.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 734.0, + 992.0, + 734.0, + 992.0, + 767.0, + 294.0, + 767.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 764.0, + 993.0, + 764.0, + 993.0, + 799.0, + 293.0, + 799.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 794.0, + 995.0, + 794.0, + 995.0, + 829.0, + 293.0, + 829.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 824.0, + 993.0, + 824.0, + 993.0, + 861.0, + 294.0, + 861.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 856.0, + 993.0, + 856.0, + 993.0, + 888.0, + 295.0, + 888.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 885.0, + 994.0, + 885.0, + 994.0, + 923.0, + 292.0, + 923.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 917.0, + 992.0, + 917.0, + 992.0, + 951.0, + 295.0, + 951.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 948.0, + 993.0, + 948.0, + 993.0, + 980.0, + 293.0, + 980.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 977.0, + 993.0, + 977.0, + 993.0, + 1011.0, + 294.0, + 1011.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1008.0, + 992.0, + 1008.0, + 992.0, + 1042.0, + 294.0, + 1042.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1037.0, + 992.0, + 1037.0, + 992.0, + 1073.0, + 295.0, + 1073.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1068.0, + 885.0, + 1068.0, + 885.0, + 1105.0, + 292.0, + 1105.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 231.0, + 1405.0, + 231.0, + 1405.0, + 264.0, + 296.0, + 264.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 262.0, + 1405.0, + 262.0, + 1405.0, + 295.0, + 294.0, + 295.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 293.0, + 1404.0, + 293.0, + 1404.0, + 326.0, + 296.0, + 326.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 323.0, + 1405.0, + 323.0, + 1405.0, + 356.0, + 293.0, + 356.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 353.0, + 1406.0, + 353.0, + 1406.0, + 385.0, + 294.0, + 385.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": [ + 294.0, + 414.0, + 1404.0, + 414.0, + 1404.0, + 447.0, + 294.0, + 447.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 439.0, + 1105.0, + 439.0, + 1105.0, + 481.0, + 292.0, + 481.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1459.0, + 1405.0, + 1459.0, + 1405.0, + 1495.0, + 296.0, + 1495.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1490.0, + 1407.0, + 1490.0, + 1407.0, + 1525.0, + 294.0, + 1525.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1520.0, + 1405.0, + 1520.0, + 1405.0, + 1555.0, + 294.0, + 1555.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1553.0, + 1405.0, + 1553.0, + 1405.0, + 1584.0, + 296.0, + 1584.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1583.0, + 1404.0, + 1583.0, + 1404.0, + 1615.0, + 296.0, + 1615.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1612.0, + 1179.0, + 1612.0, + 1179.0, + 1646.0, + 294.0, + 1646.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1749.0, + 1405.0, + 1749.0, + 1405.0, + 1785.0, + 293.0, + 1785.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1780.0, + 1404.0, + 1780.0, + 1404.0, + 1817.0, + 293.0, + 1817.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1812.0, + 1405.0, + 1812.0, + 1405.0, + 1847.0, + 293.0, + 1847.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1841.0, + 787.0, + 1841.0, + 787.0, + 1878.0, + 293.0, + 1878.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 845.0, + 1841.0, + 1406.0, + 1841.0, + 1406.0, + 1878.0, + 845.0, + 1878.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1872.0, + 1085.0, + 1872.0, + 1085.0, + 1909.0, + 292.0, + 1909.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1142.0, + 1872.0, + 1405.0, + 1872.0, + 1405.0, + 1909.0, + 1142.0, + 1909.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1903.0, + 1405.0, + 1903.0, + 1405.0, + 1941.0, + 293.0, + 1941.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1935.0, + 897.0, + 1935.0, + 897.0, + 1969.0, + 294.0, + 1969.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1228.0, + 992.0, + 1228.0, + 992.0, + 1261.0, + 294.0, + 1261.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1258.0, + 992.0, + 1258.0, + 992.0, + 1292.0, + 294.0, + 1292.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1290.0, + 994.0, + 1290.0, + 994.0, + 1325.0, + 294.0, + 1325.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1321.0, + 845.0, + 1321.0, + 845.0, + 1354.0, + 295.0, + 1354.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 6, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 297, + 1157, + 1405, + 1157, + 1405, + 1858, + 297, + 1858 + ], + "score": 0.982 + }, + { + "category_id": 5, + "poly": [ + 296, + 446, + 1405, + 446, + 1405, + 1076, + 296, + 1076 + ], + "score": 0.978, + "html": "
ArchitectureANNANN-SNNConversion(T = 2500)ANN-SNNConversion (reduced time steps)Hybrid Training(ANN-SNN Conversion+ STDB)
CIFAR10
VGG587.88%87.64%84.56% (T = 75)86.91% (T = 75)
VGG991.45%90.98%87.31% (T = 100)90.54% (T = 100)
VGG1692.81%92.48%90.2% (T = 100)91.13% (T = 100)
ResNet891.35%91.12%89.5% (T = 200)91.35% (T = 200)
ResNet2093.15%92.94%91.12% (T = 250)92.22% (T = 250)
CIFAR100
VGG1171.21%70.94%65.52% (T = 125)67.87% (T = 125)
ImageNet
ResNet3470.2%65.1%56.87% (T = 250)61.48% (T = 250)
VGG1669.35%68.12%62.73% (T= 250)65.19% (T = 250)
" + }, + { + "category_id": 6, + "poly": [ + 296, + 247, + 1403, + 247, + 1403, + 433, + 296, + 433 + ], + "score": 0.948 + }, + { + "category_id": 1, + "poly": [ + 298, + 1972, + 1400, + 1972, + 1400, + 2033, + 298, + 2033 + ], + "score": 0.945 + }, + { + "category_id": 2, + "poly": [ + 300, + 76, + 816, + 76, + 816, + 104, + 300, + 104 + ], + "score": 0.889 + }, + { + "category_id": 0, + "poly": [ + 300, + 1903, + 557, + 1903, + 557, + 1937, + 300, + 1937 + ], + "score": 0.886 + }, + { + "category_id": 2, + "poly": [ + 841, + 2089, + 858, + 2089, + 858, + 2111, + 841, + 2111 + ], + "score": 0.783 + }, + { + "category_id": 0, + "poly": [ + 299, + 1087, + 831, + 1087, + 831, + 1123, + 299, + 1123 + ], + "score": 0.393 + }, + { + "category_id": 6, + "poly": [ + 793, + 567, + 907, + 567, + 907, + 596, + 793, + 596 + ], + "score": 0.14 + }, + { + "category_id": 13, + "poly": [ + 1202, + 310, + 1332, + 310, + 1332, + 339, + 1202, + 339 + ], + "score": 0.9, + "latex": "T \\ : = \\ : 2 5 0 0" + }, + { + "category_id": 13, + "poly": [ + 506, + 709, + 593, + 709, + 593, + 734, + 506, + 734 + ], + "score": 0.87, + "latex": "9 2 . 8 1 \\%" + }, + { + "category_id": 13, + "poly": [ + 678, + 708, + 765, + 708, + 765, + 734, + 678, + 734 + ], + "score": 0.85, + "latex": "9 2 . 4 8 \\%" + }, + { + "category_id": 13, + "poly": [ + 506, + 796, + 593, + 796, + 593, + 820, + 506, + 820 + ], + "score": 0.84, + "latex": "9 3 . 1 5 \\%" + }, + { + "category_id": 13, + "poly": [ + 678, + 752, + 765, + 752, + 765, + 777, + 678, + 777 + ], + "score": 0.83, + "latex": "9 1 . 1 2 \\%" + }, + { + "category_id": 13, + "poly": [ + 677, + 662, + 766, + 662, + 766, + 690, + 677, + 690 + ], + "score": 0.81, + "latex": "9 0 . 9 8 \\%" + }, + { + "category_id": 13, + "poly": [ + 506, + 664, + 593, + 664, + 593, + 690, + 506, + 690 + ], + "score": 0.81, + "latex": "9 1 . 4 5 \\%" + }, + { + "category_id": 13, + "poly": [ + 506, + 752, + 593, + 752, + 593, + 776, + 506, + 776 + ], + "score": 0.81, + "latex": "9 1 . 3 5 \\%" + }, + { + "category_id": 13, + "poly": [ + 678, + 796, + 765, + 796, + 765, + 820, + 678, + 820 + ], + "score": 0.8, + "latex": "9 2 . 9 4 \\%" + }, + { + "category_id": 13, + "poly": [ + 677, + 1036, + 767, + 1036, + 767, + 1068, + 677, + 1068 + ], + "score": 0.79, + "latex": "6 8 . 1 2 \\%" + }, + { + "category_id": 13, + "poly": [ + 611, + 1676, + 633, + 1676, + 633, + 1702, + 611, + 1702 + ], + "score": 0.77, + "latex": "S" + }, + { + "category_id": 13, + "poly": [ + 504, + 1037, + 594, + 1037, + 594, + 1067, + 504, + 1067 + ], + "score": 0.74, + "latex": "6 9 . 3 5 \\%" + }, + { + "category_id": 13, + "poly": [ + 684, + 996, + 759, + 996, + 759, + 1023, + 684, + 1023 + ], + "score": 0.72, + "latex": "6 5 . 1 \\%" + }, + { + "category_id": 13, + "poly": [ + 949, + 799, + 1051, + 799, + 1051, + 819, + 949, + 819 + ], + "score": 0.69, + "latex": "T = 2 5 0" + }, + { + "category_id": 13, + "poly": [ + 512, + 995, + 587, + 995, + 587, + 1023, + 512, + 1023 + ], + "score": 0.66, + "latex": "7 0 . 2 \\%" + }, + { + "category_id": 13, + "poly": [ + 476, + 1402, + 526, + 1402, + 526, + 1431, + 476, + 1431 + ], + "score": 0.66, + "latex": "( M )" + }, + { + "category_id": 13, + "poly": [ + 854, + 752, + 928, + 752, + 928, + 777, + 854, + 777 + ], + "score": 0.65, + "latex": "8 9 . 5 \\%" + }, + { + "category_id": 13, + "poly": [ + 505, + 615, + 594, + 615, + 594, + 646, + 505, + 646 + ], + "score": 0.64, + "latex": "8 7 . 8 8 \\%" + }, + { + "category_id": 13, + "poly": [ + 847, + 660, + 936, + 660, + 936, + 691, + 847, + 691 + ], + "score": 0.64, + "latex": "8 7 . 3 1 \\%" + }, + { + "category_id": 13, + "poly": [ + 941, + 754, + 1047, + 754, + 1047, + 777, + 941, + 777 + ], + "score": 0.62, + "latex": "T = 2 0 0 )" + }, + { + "category_id": 13, + "poly": [ + 847, + 796, + 934, + 796, + 934, + 821, + 847, + 821 + ], + "score": 0.62, + "latex": "9 1 . 1 2 \\%" + }, + { + "category_id": 13, + "poly": [ + 506, + 897, + 593, + 897, + 593, + 922, + 506, + 922 + ], + "score": 0.6, + "latex": "7 1 . 2 1 \\%" + }, + { + "category_id": 13, + "poly": [ + 854, + 706, + 928, + 706, + 928, + 734, + 854, + 734 + ], + "score": 0.6, + "latex": "9 0 . 2 \\%" + }, + { + "category_id": 13, + "poly": [ + 677, + 616, + 766, + 616, + 766, + 647, + 677, + 647 + ], + "score": 0.6, + "latex": "8 7 . 6 4 \\%" + }, + { + "category_id": 13, + "poly": [ + 846, + 1036, + 936, + 1036, + 936, + 1068, + 846, + 1068 + ], + "score": 0.59, + "latex": "6 2 . 7 3 \\%" + }, + { + "category_id": 13, + "poly": [ + 494, + 1311, + 540, + 1311, + 540, + 1340, + 494, + 1340 + ], + "score": 0.59, + "latex": "( M )" + }, + { + "category_id": 13, + "poly": [ + 678, + 897, + 765, + 897, + 765, + 922, + 678, + 922 + ], + "score": 0.58, + "latex": "7 0 . 9 4 \\%" + }, + { + "category_id": 13, + "poly": [ + 1239, + 798, + 1342, + 798, + 1342, + 819, + 1239, + 819 + ], + "score": 0.54, + "latex": "T = 2 5 0" + }, + { + "category_id": 13, + "poly": [ + 949, + 900, + 1053, + 900, + 1053, + 920, + 949, + 920 + ], + "score": 0.5, + "latex": "T = 1 2 5" + }, + { + "category_id": 13, + "poly": [ + 946, + 1036, + 1056, + 1036, + 1056, + 1068, + 946, + 1068 + ], + "score": 0.48, + "latex": "T = 2 5 0 )" + }, + { + "category_id": 13, + "poly": [ + 953, + 616, + 1050, + 616, + 1050, + 647, + 953, + 647 + ], + "score": 0.46, + "latex": "T = 7 5 )" + }, + { + "category_id": 13, + "poly": [ + 940, + 709, + 1050, + 709, + 1050, + 734, + 940, + 734 + ], + "score": 0.43, + "latex": "C = 1 0 0 )" + }, + { + "category_id": 13, + "poly": [ + 1239, + 754, + 1343, + 754, + 1343, + 776, + 1239, + 776 + ], + "score": 0.41, + "latex": "T = 2 0 0" + }, + { + "category_id": 13, + "poly": [ + 853, + 615, + 943, + 615, + 943, + 647, + 853, + 647 + ], + "score": 0.39, + "latex": "8 4 . 5 6 \\%" + }, + { + "category_id": 13, + "poly": [ + 1236, + 1036, + 1345, + 1036, + 1345, + 1068, + 1236, + 1068 + ], + "score": 0.38, + "latex": "( T = 2 5 0 )" + }, + { + "category_id": 13, + "poly": [ + 1239, + 900, + 1342, + 900, + 1342, + 920, + 1239, + 920 + ], + "score": 0.33, + "latex": "T = 1 2 5" + }, + { + "category_id": 13, + "poly": [ + 1136, + 1035, + 1227, + 1035, + 1227, + 1069, + 1136, + 1069 + ], + "score": 0.32, + "latex": "6 5 . 1 9 \\%" + }, + { + "category_id": 13, + "poly": [ + 947, + 662, + 1058, + 662, + 1058, + 691, + 947, + 691 + ], + "score": 0.32, + "latex": "C = 1 0 0 )" + }, + { + "category_id": 13, + "poly": [ + 847, + 897, + 934, + 897, + 934, + 922, + 847, + 922 + ], + "score": 0.29, + "latex": "6 5 . 5 2 \\%" + }, + { + "category_id": 13, + "poly": [ + 1137, + 796, + 1225, + 796, + 1225, + 821, + 1137, + 821 + ], + "score": 0.27, + "latex": "9 2 . 2 2 \\%" + }, + { + "category_id": 13, + "poly": [ + 1236, + 706, + 1346, + 706, + 1346, + 735, + 1236, + 735 + ], + "score": 0.26, + "latex": "( T = 1 0 0 )" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 248.0, + 1403.0, + 248.0, + 1403.0, + 284.0, + 295.0, + 284.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 277.0, + 1404.0, + 277.0, + 1404.0, + 314.0, + 294.0, + 314.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 309.0, + 1201.0, + 309.0, + 1201.0, + 345.0, + 294.0, + 345.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1333.0, + 309.0, + 1405.0, + 309.0, + 1405.0, + 345.0, + 1333.0, + 345.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 339.0, + 1405.0, + 339.0, + 1405.0, + 376.0, + 294.0, + 376.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 368.0, + 1406.0, + 368.0, + 1406.0, + 409.0, + 291.0, + 409.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 400.0, + 1105.0, + 400.0, + 1105.0, + 437.0, + 294.0, + 437.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, + 1898.0, + 562.0, + 1898.0, + 562.0, + 1943.0, + 292.0, + 1943.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": [ + 291.0, + 1082.0, + 838.0, + 1082.0, + 838.0, + 1132.0, + 291.0, + 1132.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 792.0, + 565.0, + 909.0, + 565.0, + 909.0, + 605.0, + 792.0, + 605.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1157.0, + 1403.0, + 1157.0, + 1403.0, + 1192.0, + 295.0, + 1192.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1187.0, + 1402.0, + 1187.0, + 1402.0, + 1221.0, + 294.0, + 1221.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1217.0, + 1403.0, + 1217.0, + 1403.0, + 1252.0, + 294.0, + 1252.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1245.0, + 1405.0, + 1245.0, + 1405.0, + 1286.0, + 291.0, + 1286.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1277.0, + 1405.0, + 1277.0, + 1405.0, + 1315.0, + 292.0, + 1315.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1306.0, + 493.0, + 1306.0, + 493.0, + 1349.0, + 291.0, + 1349.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 541.0, + 1306.0, + 1406.0, + 1306.0, + 1406.0, + 1349.0, + 541.0, + 1349.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1340.0, + 1405.0, + 1340.0, + 1405.0, + 1375.0, + 292.0, + 1375.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 1369.0, + 1407.0, + 1369.0, + 1407.0, + 1409.0, + 290.0, + 1409.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1400.0, + 475.0, + 1400.0, + 475.0, + 1436.0, + 292.0, + 1436.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 527.0, + 1400.0, + 1406.0, + 1400.0, + 1406.0, + 1436.0, + 527.0, + 1436.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1430.0, + 1406.0, + 1430.0, + 1406.0, + 1467.0, + 292.0, + 1467.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1461.0, + 1405.0, + 1461.0, + 1405.0, + 1497.0, + 292.0, + 1497.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1494.0, + 1405.0, + 1494.0, + 1405.0, + 1525.0, + 296.0, + 1525.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1523.0, + 1405.0, + 1523.0, + 1405.0, + 1558.0, + 294.0, + 1558.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1554.0, + 1406.0, + 1554.0, + 1406.0, + 1589.0, + 295.0, + 1589.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1584.0, + 1403.0, + 1584.0, + 1403.0, + 1619.0, + 294.0, + 1619.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1613.0, + 1405.0, + 1613.0, + 1405.0, + 1649.0, + 294.0, + 1649.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1643.0, + 1406.0, + 1643.0, + 1406.0, + 1681.0, + 292.0, + 1681.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1673.0, + 610.0, + 1673.0, + 610.0, + 1710.0, + 294.0, + 1710.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 634.0, + 1673.0, + 1405.0, + 1673.0, + 1405.0, + 1710.0, + 634.0, + 1710.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1706.0, + 1403.0, + 1706.0, + 1403.0, + 1742.0, + 295.0, + 1742.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1737.0, + 1403.0, + 1737.0, + 1403.0, + 1772.0, + 294.0, + 1772.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1767.0, + 1405.0, + 1767.0, + 1405.0, + 1799.0, + 292.0, + 1799.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1797.0, + 1403.0, + 1797.0, + 1403.0, + 1832.0, + 294.0, + 1832.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1828.0, + 1392.0, + 1828.0, + 1392.0, + 1860.0, + 294.0, + 1860.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1969.0, + 1404.0, + 1969.0, + 1404.0, + 2009.0, + 294.0, + 2009.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 2003.0, + 1405.0, + 2003.0, + 1405.0, + 2035.0, + 293.0, + 2035.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 7, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 297, + 1183, + 1404, + 1183, + 1404, + 1580, + 297, + 1580 + ], + "score": 0.983 + }, + { + "category_id": 1, + "poly": [ + 298, + 1697, + 1404, + 1697, + 1404, + 2034, + 298, + 2034 + ], + "score": 0.981 + }, + { + "category_id": 3, + "poly": [ + 459, + 230, + 1232, + 230, + 1232, + 682, + 459, + 682 + ], + "score": 0.974 + }, + { + "category_id": 4, + "poly": [ + 297, + 692, + 1405, + 692, + 1405, + 846, + 297, + 846 + ], + "score": 0.957 + }, + { + "category_id": 1, + "poly": [ + 296, + 877, + 1399, + 877, + 1399, + 940, + 296, + 940 + ], + "score": 0.952 + }, + { + "category_id": 1, + "poly": [ + 295, + 1001, + 1400, + 1001, + 1400, + 1065, + 295, + 1065 + ], + "score": 0.941 + }, + { + "category_id": 1, + "poly": [ + 298, + 954, + 1185, + 954, + 1185, + 987, + 298, + 987 + ], + "score": 0.916 + }, + { + "category_id": 0, + "poly": [ + 301, + 1627, + 587, + 1627, + 587, + 1662, + 301, + 1662 + ], + "score": 0.901 + }, + { + "category_id": 2, + "poly": [ + 298, + 76, + 816, + 76, + 816, + 104, + 298, + 104 + ], + "score": 0.891 + }, + { + "category_id": 0, + "poly": [ + 300, + 1111, + 1025, + 1111, + 1025, + 1146, + 300, + 1146 + ], + "score": 0.869 + }, + { + "category_id": 2, + "poly": [ + 840, + 2088, + 858, + 2088, + 858, + 2111, + 840, + 2111 + ], + "score": 0.791 + }, + { + "category_id": 13, + "poly": [ + 804, + 1333, + 857, + 1333, + 857, + 1364, + 804, + 1364 + ], + "score": 0.9, + "latex": "1 0 ^ { t h }" + }, + { + "category_id": 13, + "poly": [ + 670, + 754, + 759, + 754, + 759, + 783, + 670, + 783 + ], + "score": 0.89, + "latex": "8 9 . 2 0 \\%" + }, + { + "category_id": 13, + "poly": [ + 941, + 909, + 1022, + 909, + 1022, + 938, + 941, + 938 + ], + "score": 0.89, + "latex": "3 2 \\times 3 2" + }, + { + "category_id": 13, + "poly": [ + 809, + 754, + 897, + 754, + 897, + 783, + 809, + 783 + ], + "score": 0.88, + "latex": "9 1 . 8 7 \\%" + }, + { + "category_id": 13, + "poly": [ + 735, + 1458, + 796, + 1458, + 796, + 1487, + 735, + 1487 + ], + "score": 0.87, + "latex": "1 . 5 \\times" + }, + { + "category_id": 13, + "poly": [ + 1207, + 786, + 1240, + 786, + 1240, + 813, + 1207, + 813 + ], + "score": 0.41, + "latex": "\\mathbf { \\epsilon } \\cdot \\mathbf { \\gamma } _ { \\mathbf { V } } \\mathbf { \\epsilon } )" + }, + { + "category_id": 15, + "poly": [ + 624.0, + 230.0, + 1111.0, + 230.0, + 1111.0, + 266.0, + 624.0, + 266.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 483.0, + 258.0, + 513.0, + 258.0, + 513.0, + 287.0, + 483.0, + 287.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1063.0, + 268.0, + 1146.0, + 268.0, + 1146.0, + 299.0, + 1063.0, + 299.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 532.0, + 274.0, + 814.0, + 274.0, + 814.0, + 303.0, + 532.0, + 303.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 454.0, + 280.0, + 490.0, + 280.0, + 490.0, + 612.0, + 454.0, + 612.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 535.0, + 295.0, + 730.0, + 295.0, + 730.0, + 323.0, + 535.0, + 323.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 480.0, + 304.0, + 515.0, + 304.0, + 515.0, + 363.0, + 480.0, + 363.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1140.0, + 309.0, + 1166.0, + 309.0, + 1166.0, + 389.0, + 1140.0, + 389.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1006.0, + 312.0, + 1086.0, + 312.0, + 1086.0, + 339.0, + 1006.0, + 339.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 478.0, + 342.0, + 518.0, + 342.0, + 518.0, + 440.0, + 478.0, + 440.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 959.0, + 342.0, + 1039.0, + 342.0, + 1039.0, + 370.0, + 959.0, + 370.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1187.0, + 325.0, + 1214.0, + 325.0, + 1214.0, + 407.0, + 1187.0, + 407.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 479.0, + 451.0, + 517.0, + 451.0, + 517.0, + 534.0, + 479.0, + 534.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 849.0, + 484.0, + 880.0, + 484.0, + 880.0, + 569.0, + 849.0, + 569.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 899.0, + 457.0, + 926.0, + 457.0, + 926.0, + 534.0, + 899.0, + 534.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 946.0, + 476.0, + 976.0, + 476.0, + 976.0, + 560.0, + 946.0, + 560.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 519.0, + 519.0, + 549.0, + 519.0, + 549.0, + 603.0, + 519.0, + 603.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 707.0, + 523.0, + 737.0, + 523.0, + 737.0, + 608.0, + 707.0, + 608.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 617.0, + 524.0, + 644.0, + 524.0, + 644.0, + 605.0, + 617.0, + 605.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 802.0, + 529.0, + 831.0, + 529.0, + 831.0, + 615.0, + 802.0, + 615.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 665.0, + 533.0, + 692.0, + 533.0, + 692.0, + 614.0, + 665.0, + 614.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 755.0, + 533.0, + 783.0, + 533.0, + 783.0, + 613.0, + 755.0, + 613.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 569.0, + 534.0, + 596.0, + 534.0, + 596.0, + 614.0, + 569.0, + 614.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 495.0, + 561.0, + 510.0, + 561.0, + 510.0, + 582.0, + 495.0, + 582.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 495.0, + 610.0, + 510.0, + 610.0, + 510.0, + 630.0, + 495.0, + 630.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 628.0, + 609.0, + 633.0, + 609.0, + 633.0, + 614.0, + 628.0, + 614.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 498.0, + 642.5, + 559.0, + 642.5, + 559.0, + 660.0, + 498.0, + 660.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 543.0, + 643.0, + 609.0, + 643.0, + 609.0, + 662.5, + 543.0, + 662.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 590.25, + 643.0, + 657.25, + 643.0, + 657.25, + 663.0, + 590.25, + 663.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 638.0, + 643.0, + 704.0, + 643.0, + 704.0, + 662.5, + 638.0, + 662.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 684.75, + 641.5, + 751.75, + 641.5, + 751.75, + 662.5, + 684.75, + 662.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 732.0, + 642.5, + 801.0, + 642.5, + 801.0, + 663.5, + 732.0, + 663.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 780.0, + 643.0, + 847.0, + 643.0, + 847.0, + 662.5, + 780.0, + 662.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 828.0, + 642.5, + 895.0, + 642.5, + 895.0, + 662.0, + 828.0, + 662.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 876.0, + 643.0, + 942.0, + 643.0, + 942.0, + 662.0, + 876.0, + 662.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 913.0, + 644.0, + 991.0, + 644.0, + 991.0, + 666.5, + 913.0, + 666.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 963.0, + 646.0, + 1036.0, + 646.0, + 1036.0, + 667.0, + 963.0, + 667.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1008.0, + 643.0, + 1088.0, + 643.0, + 1088.0, + 667.5, + 1008.0, + 667.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1055.75, + 643.5, + 1134.75, + 643.5, + 1134.75, + 666.5, + 1055.75, + 666.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1106.75, + 644.0, + 1179.75, + 644.0, + 1179.75, + 665.5, + 1106.75, + 665.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1154.75, + 644.5, + 1226.75, + 644.5, + 1226.75, + 666.0, + 1154.75, + 666.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 691.0, + 1403.0, + 691.0, + 1403.0, + 724.0, + 295.0, + 724.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 724.0, + 1403.0, + 724.0, + 1403.0, + 757.0, + 296.0, + 757.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 752.0, + 669.0, + 752.0, + 669.0, + 788.0, + 294.0, + 788.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 760.0, + 752.0, + 808.0, + 752.0, + 808.0, + 788.0, + 760.0, + 788.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 898.0, + 752.0, + 1405.0, + 752.0, + 1405.0, + 788.0, + 898.0, + 788.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 784.0, + 1206.0, + 784.0, + 1206.0, + 821.0, + 295.0, + 821.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1241.0, + 784.0, + 1406.0, + 784.0, + 1406.0, + 821.0, + 1241.0, + 821.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 815.0, + 1259.0, + 815.0, + 1259.0, + 848.0, + 296.0, + 848.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1624.0, + 593.0, + 1624.0, + 593.0, + 1668.0, + 292.0, + 1668.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, + 1107.0, + 1029.0, + 1107.0, + 1029.0, + 1152.0, + 292.0, + 1152.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, + 1183.0, + 1405.0, + 1183.0, + 1405.0, + 1220.0, + 295.0, + 1220.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1213.0, + 1405.0, + 1213.0, + 1405.0, + 1248.0, + 294.0, + 1248.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1243.0, + 1407.0, + 1243.0, + 1407.0, + 1283.0, + 294.0, + 1283.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1269.0, + 1406.0, + 1269.0, + 1406.0, + 1314.0, + 292.0, + 1314.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1305.0, + 1406.0, + 1305.0, + 1406.0, + 1341.0, + 295.0, + 1341.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1332.0, + 803.0, + 1332.0, + 803.0, + 1372.0, + 294.0, + 1372.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 858.0, + 1332.0, + 1406.0, + 1332.0, + 1406.0, + 1372.0, + 858.0, + 1372.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1366.0, + 1407.0, + 1366.0, + 1407.0, + 1402.0, + 295.0, + 1402.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1394.0, + 1407.0, + 1394.0, + 1407.0, + 1432.0, + 292.0, + 1432.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1427.0, + 1405.0, + 1427.0, + 1405.0, + 1460.0, + 293.0, + 1460.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1454.0, + 734.0, + 1454.0, + 734.0, + 1495.0, + 291.0, + 1495.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 797.0, + 1454.0, + 1406.0, + 1454.0, + 1406.0, + 1495.0, + 797.0, + 1495.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1486.0, + 1405.0, + 1486.0, + 1405.0, + 1524.0, + 294.0, + 1524.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1519.0, + 1404.0, + 1519.0, + 1404.0, + 1551.0, + 296.0, + 1551.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1548.0, + 1190.0, + 1548.0, + 1190.0, + 1585.0, + 296.0, + 1585.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1697.0, + 1404.0, + 1697.0, + 1404.0, + 1733.0, + 293.0, + 1733.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1728.0, + 1405.0, + 1728.0, + 1405.0, + 1765.0, + 293.0, + 1765.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1760.0, + 1402.0, + 1760.0, + 1402.0, + 1795.0, + 294.0, + 1795.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1790.0, + 1404.0, + 1790.0, + 1404.0, + 1825.0, + 294.0, + 1825.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1818.0, + 1406.0, + 1818.0, + 1406.0, + 1858.0, + 292.0, + 1858.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1851.0, + 1406.0, + 1851.0, + 1406.0, + 1885.0, + 293.0, + 1885.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1882.0, + 1406.0, + 1882.0, + 1406.0, + 1916.0, + 294.0, + 1916.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1913.0, + 1405.0, + 1913.0, + 1405.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, + 1978.0, + 293.0, + 1978.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1974.0, + 1406.0, + 1974.0, + 1406.0, + 2008.0, + 294.0, + 2008.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 2003.0, + 1404.0, + 2003.0, + 1404.0, + 2038.0, + 294.0, + 2038.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 874.0, + 1404.0, + 874.0, + 1404.0, + 915.0, + 295.0, + 915.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 907.0, + 940.0, + 907.0, + 940.0, + 942.0, + 295.0, + 942.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1023.0, + 907.0, + 1253.0, + 907.0, + 1253.0, + 942.0, + 1023.0, + 942.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1001.0, + 1404.0, + 1001.0, + 1404.0, + 1037.0, + 296.0, + 1037.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1033.0, + 743.0, + 1033.0, + 743.0, + 1069.0, + 296.0, + 1069.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 949.0, + 1189.0, + 949.0, + 1189.0, + 994.0, + 293.0, + 994.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 8, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 5, + "poly": [ + 335, + 282, + 1360, + 282, + 1360, + 989, + 335, + 989 + ], + "score": 0.986, + "html": "
ModelDatasetTrainingMethodArchitecture AccuracyTime-steps
Hunsberger&Eliasmith(2015)CIFAR10ANN-SNNConversion2Conv,2Linear82.95%6000
Caoetal.(2015)CIFAR10ANN-SNNConversion3Conv,2Linear77.43%400
Senguptaet al. (2019)CIFAR10ANN-SNNConversionVGG1691.55%2500
Lee etal.(2019)CIFAR10Spiking BPVGG990.45%100
Wu et al.(2019)CIFAR10 SurrogateGradient5Conv,2Linear90.53%12
This workCIFAR10HybridTrainingVGG1691.13%92.02%100200
Senguptaet al. (2019)ImageNetANN-SNNConversionVGG1669.96%2500
This workImageNetHybridTrainingVGG1665.19%250
" + }, + { + "category_id": 1, + "poly": [ + 298, + 1668, + 1404, + 1668, + 1404, + 2035, + 298, + 2035 + ], + "score": 0.984 + }, + { + "category_id": 1, + "poly": [ + 298, + 1005, + 1404, + 1005, + 1404, + 1553, + 298, + 1553 + ], + "score": 0.982 + }, + { + "category_id": 6, + "poly": [ + 323, + 248, + 1368, + 248, + 1368, + 279, + 323, + 279 + ], + "score": 0.903 + }, + { + "category_id": 2, + "poly": [ + 300, + 76, + 816, + 76, + 816, + 104, + 300, + 104 + ], + "score": 0.894 + }, + { + "category_id": 0, + "poly": [ + 300, + 1598, + 560, + 1598, + 560, + 1633, + 300, + 1633 + ], + "score": 0.879 + }, + { + "category_id": 2, + "poly": [ + 837, + 2088, + 865, + 2088, + 865, + 2112, + 837, + 2112 + ], + "score": 0.848 + }, + { + "category_id": 13, + "poly": [ + 1056, + 845, + 1145, + 845, + 1145, + 876, + 1056, + 876 + ], + "score": 0.77, + "latex": "6 9 . 9 6 \\%" + }, + { + "category_id": 13, + "poly": [ + 1056, + 466, + 1146, + 466, + 1146, + 498, + 1056, + 498 + ], + "score": 0.71, + "latex": "7 7 . 4 3 \\%" + }, + { + "category_id": 13, + "poly": [ + 1056, + 918, + 1158, + 918, + 1158, + 950, + 1056, + 950 + ], + "score": 0.7, + "latex": "\\mathbf { 6 5 . 1 9 \\% }" + }, + { + "category_id": 13, + "poly": [ + 1056, + 615, + 1146, + 615, + 1146, + 647, + 1056, + 647 + ], + "score": 0.7, + "latex": "9 0 . 4 5 \\%" + }, + { + "category_id": 13, + "poly": [ + 1056, + 540, + 1146, + 540, + 1146, + 574, + 1056, + 574 + ], + "score": 0.69, + "latex": "9 1 . 5 5 \\%" + }, + { + "category_id": 13, + "poly": [ + 1055, + 361, + 1146, + 361, + 1146, + 394, + 1055, + 394 + ], + "score": 0.66, + "latex": "8 2 . 9 5 \\%" + }, + { + "category_id": 13, + "poly": [ + 1057, + 691, + 1145, + 691, + 1145, + 720, + 1057, + 720 + ], + "score": 0.65, + "latex": "9 0 . 5 3 \\%" + }, + { + "category_id": 13, + "poly": [ + 1051, + 762, + 1162, + 762, + 1162, + 830, + 1051, + 830 + ], + "score": 0.28, + "latex": "\\begin{array} { c } { 9 1 . 1 3 \\% } \\\\ { 9 2 . 0 2 \\% } \\end{array}" + }, + { + "category_id": 15, + "poly": [ + 328.0, + 247.0, + 1371.0, + 247.0, + 1371.0, + 285.0, + 328.0, + 285.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": [ + 289.0, + 1592.0, + 566.0, + 1592.0, + 566.0, + 1642.0, + 289.0, + 1642.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": [ + 296.0, + 1669.0, + 1404.0, + 1669.0, + 1404.0, + 1703.0, + 296.0, + 1703.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1697.0, + 1405.0, + 1697.0, + 1405.0, + 1734.0, + 293.0, + 1734.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1729.0, + 1404.0, + 1729.0, + 1404.0, + 1763.0, + 294.0, + 1763.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1760.0, + 1405.0, + 1760.0, + 1405.0, + 1794.0, + 294.0, + 1794.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1789.0, + 1404.0, + 1789.0, + 1404.0, + 1824.0, + 294.0, + 1824.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1820.0, + 1404.0, + 1820.0, + 1404.0, + 1854.0, + 294.0, + 1854.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1850.0, + 1406.0, + 1850.0, + 1406.0, + 1887.0, + 292.0, + 1887.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1881.0, + 1405.0, + 1881.0, + 1405.0, + 1918.0, + 293.0, + 1918.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1911.0, + 1405.0, + 1911.0, + 1405.0, + 1949.0, + 293.0, + 1949.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1940.0, + 1406.0, + 1940.0, + 1406.0, + 1979.0, + 292.0, + 1979.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1973.0, + 1405.0, + 1973.0, + 1405.0, + 2007.0, + 294.0, + 2007.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 2003.0, + 369.0, + 2003.0, + 369.0, + 2040.0, + 294.0, + 2040.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1004.0, + 1405.0, + 1004.0, + 1405.0, + 1040.0, + 294.0, + 1040.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1035.0, + 1404.0, + 1035.0, + 1404.0, + 1070.0, + 294.0, + 1070.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1063.0, + 1408.0, + 1063.0, + 1408.0, + 1103.0, + 292.0, + 1103.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1095.0, + 1407.0, + 1095.0, + 1407.0, + 1133.0, + 292.0, + 1133.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1127.0, + 1406.0, + 1127.0, + 1406.0, + 1163.0, + 293.0, + 1163.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1155.0, + 1406.0, + 1155.0, + 1406.0, + 1193.0, + 292.0, + 1193.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1185.0, + 1407.0, + 1185.0, + 1407.0, + 1223.0, + 293.0, + 1223.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1218.0, + 1406.0, + 1218.0, + 1406.0, + 1252.0, + 293.0, + 1252.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1249.0, + 1406.0, + 1249.0, + 1406.0, + 1284.0, + 292.0, + 1284.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1279.0, + 1405.0, + 1279.0, + 1405.0, + 1313.0, + 292.0, + 1313.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1309.0, + 1405.0, + 1309.0, + 1405.0, + 1345.0, + 294.0, + 1345.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1339.0, + 1407.0, + 1339.0, + 1407.0, + 1375.0, + 292.0, + 1375.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1370.0, + 1406.0, + 1370.0, + 1406.0, + 1406.0, + 294.0, + 1406.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1402.0, + 1404.0, + 1402.0, + 1404.0, + 1433.0, + 296.0, + 1433.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1431.0, + 1406.0, + 1431.0, + 1406.0, + 1465.0, + 293.0, + 1465.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1459.0, + 1406.0, + 1459.0, + 1406.0, + 1499.0, + 292.0, + 1499.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1489.0, + 1406.0, + 1489.0, + 1406.0, + 1527.0, + 292.0, + 1527.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1523.0, + 1095.0, + 1523.0, + 1095.0, + 1559.0, + 294.0, + 1559.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 9, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 300, + 283, + 1401, + 283, + 1401, + 377, + 300, + 377 + ], + "score": 0.94 + }, + { + "category_id": 1, + "poly": [ + 300, + 475, + 1402, + 475, + 1402, + 570, + 300, + 570 + ], + "score": 0.895 + }, + { + "category_id": 2, + "poly": [ + 300, + 75, + 816, + 75, + 816, + 105, + 300, + 105 + ], + "score": 0.886 + }, + { + "category_id": 1, + "poly": [ + 294, + 1629, + 1399, + 1629, + 1399, + 1692, + 294, + 1692 + ], + "score": 0.869 + }, + { + "category_id": 1, + "poly": [ + 294, + 908, + 1402, + 908, + 1402, + 972, + 294, + 972 + ], + "score": 0.863 + }, + { + "category_id": 1, + "poly": [ + 297, + 1543, + 1402, + 1543, + 1402, + 1607, + 297, + 1607 + ], + "score": 0.862 + }, + { + "category_id": 1, + "poly": [ + 296, + 591, + 1402, + 591, + 1402, + 655, + 296, + 655 + ], + "score": 0.86 + }, + { + "category_id": 1, + "poly": [ + 298, + 793, + 1405, + 793, + 1405, + 885, + 298, + 885 + ], + "score": 0.858 + }, + { + "category_id": 1, + "poly": [ + 298, + 1458, + 1398, + 1458, + 1398, + 1521, + 298, + 1521 + ], + "score": 0.851 + }, + { + "category_id": 1, + "poly": [ + 294, + 1371, + 1400, + 1371, + 1400, + 1437, + 294, + 1437 + ], + "score": 0.845 + }, + { + "category_id": 1, + "poly": [ + 299, + 993, + 1399, + 993, + 1399, + 1089, + 299, + 1089 + ], + "score": 0.84 + }, + { + "category_id": 1, + "poly": [ + 299, + 676, + 1405, + 676, + 1405, + 771, + 299, + 771 + ], + "score": 0.834 + }, + { + "category_id": 1, + "poly": [ + 297, + 1109, + 1405, + 1109, + 1405, + 1234, + 297, + 1234 + ], + "score": 0.829 + }, + { + "category_id": 1, + "poly": [ + 297, + 1257, + 1404, + 1257, + 1404, + 1350, + 297, + 1350 + ], + "score": 0.828 + }, + { + "category_id": 1, + "poly": [ + 296, + 1713, + 1400, + 1713, + 1400, + 1779, + 296, + 1779 + ], + "score": 0.826 + }, + { + "category_id": 2, + "poly": [ + 836, + 2088, + 863, + 2088, + 863, + 2113, + 836, + 2113 + ], + "score": 0.805 + }, + { + "category_id": 0, + "poly": [ + 299, + 423, + 489, + 423, + 489, + 458, + 299, + 458 + ], + "score": 0.801 + }, + { + "category_id": 1, + "poly": [ + 298, + 1971, + 1401, + 1971, + 1401, + 2035, + 298, + 2035 + ], + "score": 0.742 + }, + { + "category_id": 1, + "poly": [ + 289, + 1800, + 1401, + 1800, + 1401, + 1864, + 289, + 1864 + ], + "score": 0.727 + }, + { + "category_id": 0, + "poly": [ + 301, + 232, + 558, + 232, + 558, + 261, + 301, + 261 + ], + "score": 0.708 + }, + { + "category_id": 1, + "poly": [ + 291, + 1884, + 1402, + 1884, + 1402, + 1949, + 291, + 1949 + ], + "score": 0.703 + }, + { + "category_id": 1, + "poly": [ + 301, + 232, + 558, + 232, + 558, + 261, + 301, + 261 + ], + "score": 0.133 + }, + { + "category_id": 13, + "poly": [ + 518, + 1918, + 571, + 1918, + 571, + 1950, + 518, + 1950 + ], + "score": 0.4, + "latex": "\\mathrm { V g g }" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 73.0, + 817.0, + 73.0, + 817.0, + 108.0, + 296.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 832.0, + 2085.0, + 868.0, + 2085.0, + 868.0, + 2125.0, + 832.0, + 2125.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 426.0, + 490.0, + 426.0, + 490.0, + 459.0, + 297.0, + 459.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 299.0, + 233.0, + 557.0, + 233.0, + 557.0, + 263.0, + 299.0, + 263.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 284.0, + 1402.0, + 284.0, + 1402.0, + 318.0, + 296.0, + 318.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 313.0, + 1406.0, + 313.0, + 1406.0, + 351.0, + 295.0, + 351.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 345.0, + 874.0, + 345.0, + 874.0, + 382.0, + 295.0, + 382.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 473.0, + 1406.0, + 473.0, + 1406.0, + 514.0, + 294.0, + 514.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 507.0, + 1407.0, + 507.0, + 1407.0, + 544.0, + 321.0, + 544.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 536.0, + 916.0, + 536.0, + 916.0, + 572.0, + 323.0, + 572.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1625.0, + 1404.0, + 1625.0, + 1404.0, + 1668.0, + 293.0, + 1668.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 1659.0, + 693.0, + 1659.0, + 693.0, + 1695.0, + 324.0, + 1695.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 907.0, + 1405.0, + 907.0, + 1405.0, + 946.0, + 292.0, + 946.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 940.0, + 730.0, + 940.0, + 730.0, + 972.0, + 322.0, + 972.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1540.0, + 1404.0, + 1540.0, + 1404.0, + 1583.0, + 293.0, + 1583.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1574.0, + 1144.0, + 1574.0, + 1144.0, + 1608.0, + 321.0, + 1608.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 591.0, + 1403.0, + 591.0, + 1403.0, + 627.0, + 295.0, + 627.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 622.0, + 897.0, + 622.0, + 897.0, + 658.0, + 323.0, + 658.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 298.0, + 795.0, + 1405.0, + 795.0, + 1405.0, + 828.0, + 298.0, + 828.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 825.0, + 1403.0, + 825.0, + 1403.0, + 858.0, + 321.0, + 858.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 851.0, + 401.0, + 851.0, + 401.0, + 891.0, + 320.0, + 891.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1455.0, + 1403.0, + 1455.0, + 1403.0, + 1495.0, + 293.0, + 1495.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1490.0, + 612.0, + 1490.0, + 612.0, + 1520.0, + 322.0, + 1520.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1370.0, + 1405.0, + 1370.0, + 1405.0, + 1407.0, + 296.0, + 1407.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1403.0, + 1169.0, + 1403.0, + 1169.0, + 1438.0, + 321.0, + 1438.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 994.0, + 1404.0, + 994.0, + 1404.0, + 1029.0, + 294.0, + 1029.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1025.0, + 1403.0, + 1025.0, + 1403.0, + 1062.0, + 322.0, + 1062.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1054.0, + 1343.0, + 1054.0, + 1343.0, + 1091.0, + 322.0, + 1091.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 675.0, + 1404.0, + 675.0, + 1404.0, + 713.0, + 296.0, + 713.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 319.0, + 706.0, + 1405.0, + 706.0, + 1405.0, + 745.0, + 319.0, + 745.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 740.0, + 546.0, + 740.0, + 546.0, + 772.0, + 320.0, + 772.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1112.0, + 1405.0, + 1112.0, + 1405.0, + 1145.0, + 294.0, + 1145.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1143.0, + 1403.0, + 1143.0, + 1403.0, + 1176.0, + 323.0, + 1176.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 319.0, + 1170.0, + 1406.0, + 1170.0, + 1406.0, + 1210.0, + 319.0, + 1210.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1203.0, + 467.0, + 1203.0, + 467.0, + 1234.0, + 323.0, + 1234.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1253.0, + 1405.0, + 1253.0, + 1405.0, + 1298.0, + 292.0, + 1298.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 1288.0, + 1404.0, + 1288.0, + 1404.0, + 1324.0, + 320.0, + 1324.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 1318.0, + 548.0, + 1318.0, + 548.0, + 1351.0, + 320.0, + 1351.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1715.0, + 1405.0, + 1715.0, + 1405.0, + 1751.0, + 296.0, + 1751.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1746.0, + 1337.0, + 1746.0, + 1337.0, + 1780.0, + 321.0, + 1780.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1971.0, + 1405.0, + 1971.0, + 1405.0, + 2007.0, + 296.0, + 2007.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 2002.0, + 1168.0, + 2002.0, + 1168.0, + 2036.0, + 321.0, + 2036.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1796.0, + 1406.0, + 1796.0, + 1406.0, + 1840.0, + 292.0, + 1840.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1832.0, + 970.0, + 1832.0, + 970.0, + 1864.0, + 321.0, + 1864.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1883.0, + 1405.0, + 1883.0, + 1405.0, + 1923.0, + 294.0, + 1923.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1917.0, + 517.0, + 1917.0, + 517.0, + 1951.0, + 322.0, + 1951.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 572.0, + 1917.0, + 1279.0, + 1917.0, + 1279.0, + 1951.0, + 572.0, + 1951.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 299.0, + 233.0, + 557.0, + 233.0, + 557.0, + 263.0, + 299.0, + 263.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 10, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 2, + "poly": [ + 300, + 75, + 817, + 75, + 817, + 105, + 300, + 105 + ], + "score": 0.88 + }, + { + "category_id": 2, + "poly": [ + 836, + 2088, + 865, + 2088, + 865, + 2113, + 836, + 2113 + ], + "score": 0.834 + }, + { + "category_id": 1, + "poly": [ + 292, + 228, + 1409, + 228, + 1409, + 860, + 292, + 860 + ], + "score": 0.568 + }, + { + "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, + 2124.0, + 832.0, + 2124.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 226.0, + 1403.0, + 226.0, + 1403.0, + 270.0, + 294.0, + 270.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 263.0, + 905.0, + 263.0, + 905.0, + 296.0, + 322.0, + 296.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 313.0, + 1404.0, + 313.0, + 1404.0, + 352.0, + 294.0, + 352.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 344.0, + 1228.0, + 344.0, + 1228.0, + 380.0, + 323.0, + 380.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 395.0, + 1404.0, + 395.0, + 1404.0, + 435.0, + 294.0, + 435.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 427.0, + 1405.0, + 427.0, + 1405.0, + 465.0, + 322.0, + 465.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 460.0, + 809.0, + 460.0, + 809.0, + 492.0, + 324.0, + 492.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 507.0, + 1408.0, + 507.0, + 1408.0, + 549.0, + 291.0, + 549.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 543.0, + 725.0, + 543.0, + 725.0, + 575.0, + 324.0, + 575.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 591.0, + 1404.0, + 591.0, + 1404.0, + 630.0, + 295.0, + 630.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 625.0, + 1312.0, + 625.0, + 1312.0, + 660.0, + 322.0, + 660.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 674.0, + 1405.0, + 674.0, + 1405.0, + 714.0, + 294.0, + 714.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 705.0, + 1405.0, + 705.0, + 1405.0, + 746.0, + 321.0, + 746.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 738.0, + 705.0, + 738.0, + 705.0, + 774.0, + 324.0, + 774.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 791.0, + 1403.0, + 791.0, + 1403.0, + 826.0, + 295.0, + 826.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 822.0, + 954.0, + 822.0, + 954.0, + 855.0, + 322.0, + 855.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 11, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 297, + 1011, + 1403, + 1011, + 1403, + 1408, + 297, + 1408 + ], + "score": 0.984 + }, + { + "category_id": 1, + "poly": [ + 299, + 297, + 823, + 297, + 823, + 825, + 299, + 825 + ], + "score": 0.974 + }, + { + "category_id": 3, + "poly": [ + 850, + 330, + 1397, + 330, + 1397, + 628, + 850, + 628 + ], + "score": 0.968 + }, + { + "category_id": 4, + "poly": [ + 845, + 660, + 1403, + 660, + 1403, + 752, + 845, + 752 + ], + "score": 0.958 + }, + { + "category_id": 8, + "poly": [ + 742, + 940, + 956, + 940, + 956, + 1006, + 742, + 1006 + ], + "score": 0.939 + }, + { + "category_id": 8, + "poly": [ + 674, + 862, + 1025, + 862, + 1025, + 927, + 674, + 927 + ], + "score": 0.929 + }, + { + "category_id": 9, + "poly": [ + 1353, + 959, + 1399, + 959, + 1399, + 989, + 1353, + 989 + ], + "score": 0.897 + }, + { + "category_id": 9, + "poly": [ + 1353, + 880, + 1399, + 880, + 1399, + 910, + 1353, + 910 + ], + "score": 0.895 + }, + { + "category_id": 2, + "poly": [ + 299, + 76, + 816, + 76, + 816, + 104, + 299, + 104 + ], + "score": 0.884 + }, + { + "category_id": 0, + "poly": [ + 299, + 227, + 1118, + 227, + 1118, + 262, + 299, + 262 + ], + "score": 0.879 + }, + { + "category_id": 1, + "poly": [ + 296, + 816, + 900, + 816, + 900, + 845, + 296, + 845 + ], + "score": 0.868 + }, + { + "category_id": 2, + "poly": [ + 836, + 2088, + 864, + 2088, + 864, + 2112, + 836, + 2112 + ], + "score": 0.839 + }, + { + "category_id": 14, + "poly": [ + 741, + 938, + 958, + 938, + 958, + 1005, + 741, + 1005 + ], + "score": 0.92, + "latex": "\\frac { \\partial o } { \\partial u } = \\alpha e ^ { - \\beta \\left| u - V _ { t } \\right| }" + }, + { + "category_id": 13, + "poly": [ + 938, + 1165, + 1031, + 1165, + 1031, + 1196, + 938, + 1196 + ], + "score": 0.92, + "latex": "| u - V _ { t } |" + }, + { + "category_id": 13, + "poly": [ + 385, + 1195, + 476, + 1195, + 476, + 1227, + 385, + 1227 + ], + "score": 0.9, + "latex": "| u - V _ { t } |" + }, + { + "category_id": 13, + "poly": [ + 341, + 600, + 459, + 600, + 459, + 633, + 341, + 633 + ], + "score": 0.9, + "latex": "\\mathrm { ~ ( ~ } u \\mathrm { ~ \\mathrm { ~ - ~ } ~ } V _ { t } \\mathrm { ) }" + }, + { + "category_id": 14, + "poly": [ + 671, + 858, + 1028, + 858, + 1028, + 927, + 671, + 927 + ], + "score": 0.9, + "latex": "\\frac { \\partial o } { \\partial u } = \\alpha \\ : m a x \\{ 0 , 1 - | u - V _ { t } | \\}" + }, + { + "category_id": 13, + "poly": [ + 1179, + 1011, + 1208, + 1011, + 1208, + 1041, + 1179, + 1041 + ], + "score": 0.87, + "latex": "V _ { t }" + }, + { + "category_id": 13, + "poly": [ + 463, + 633, + 494, + 633, + 494, + 663, + 463, + 663 + ], + "score": 0.84, + "latex": "V _ { t }" + }, + { + "category_id": 13, + "poly": [ + 824, + 1225, + 859, + 1225, + 859, + 1251, + 824, + 1251 + ], + "score": 0.84, + "latex": "\\Delta t" + }, + { + "category_id": 13, + "poly": [ + 482, + 1043, + 502, + 1043, + 502, + 1073, + 482, + 1073 + ], + "score": 0.84, + "latex": "\\beta" + }, + { + "category_id": 13, + "poly": [ + 447, + 1164, + 482, + 1164, + 482, + 1190, + 447, + 1190 + ], + "score": 0.81, + "latex": "\\Delta t" + }, + { + "category_id": 13, + "poly": [ + 298, + 1196, + 334, + 1196, + 334, + 1222, + 298, + 1222 + ], + "score": 0.79, + "latex": "\\Delta t" + }, + { + "category_id": 13, + "poly": [ + 826, + 1017, + 847, + 1017, + 847, + 1038, + 826, + 1038 + ], + "score": 0.77, + "latex": "u" + }, + { + "category_id": 13, + "poly": [ + 409, + 1046, + 430, + 1046, + 430, + 1070, + 409, + 1070 + ], + "score": 0.75, + "latex": "\\alpha" + }, + { + "category_id": 13, + "poly": [ + 377, + 1017, + 395, + 1017, + 395, + 1038, + 377, + 1038 + ], + "score": 0.7, + "latex": "o" + }, + { + "category_id": 13, + "poly": [ + 574, + 606, + 596, + 606, + 596, + 629, + 574, + 629 + ], + "score": 0.63, + "latex": "u" + }, + { + "category_id": 15, + "poly": [ + 879.0, + 329.0, + 922.0, + 329.0, + 922.0, + 365.0, + 879.0, + 365.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1284.0, + 344.0, + 1354.0, + 344.0, + 1354.0, + 378.0, + 1284.0, + 378.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1289.0, + 366.0, + 1394.0, + 366.0, + 1394.0, + 396.0, + 1289.0, + 396.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 878.0, + 401.0, + 923.0, + 401.0, + 923.0, + 438.0, + 878.0, + 438.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 840.0, + 419.0, + 894.0, + 419.0, + 894.0, + 490.0, + 840.0, + 490.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 879.0, + 476.0, + 923.0, + 476.0, + 923.0, + 512.0, + 879.0, + 512.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 899.0, + 555.0, + 918.0, + 555.0, + 918.0, + 582.0, + 899.0, + 582.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 903.0, + 572.0, + 930.0, + 572.0, + 930.0, + 598.0, + 903.0, + 598.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1012.0, + 568.0, + 1063.0, + 568.0, + 1063.0, + 602.0, + 1012.0, + 602.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1144.0, + 570.0, + 1168.0, + 570.0, + 1168.0, + 598.0, + 1144.0, + 598.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1252.0, + 568.0, + 1297.0, + 568.0, + 1297.0, + 602.0, + 1252.0, + 602.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1388.0, + 578.0, + 1396.0, + 578.0, + 1396.0, + 589.0, + 1388.0, + 589.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1104.0, + 590.0, + 1208.0, + 590.0, + 1208.0, + 634.0, + 1104.0, + 634.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 844.0, + 658.0, + 1404.0, + 658.0, + 1404.0, + 694.0, + 844.0, + 694.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 843.0, + 685.0, + 1405.0, + 685.0, + 1405.0, + 729.0, + 843.0, + 729.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 844.0, + 717.0, + 965.0, + 717.0, + 965.0, + 756.0, + 844.0, + 756.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 73.0, + 817.0, + 73.0, + 817.0, + 108.0, + 295.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 223.0, + 1120.0, + 223.0, + 1120.0, + 268.0, + 294.0, + 268.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": [ + 295.0, + 1010.0, + 376.0, + 1010.0, + 376.0, + 1046.0, + 295.0, + 1046.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 396.0, + 1010.0, + 825.0, + 1010.0, + 825.0, + 1046.0, + 396.0, + 1046.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 848.0, + 1010.0, + 1178.0, + 1010.0, + 1178.0, + 1046.0, + 848.0, + 1046.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1209.0, + 1010.0, + 1405.0, + 1010.0, + 1405.0, + 1046.0, + 1209.0, + 1046.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1041.0, + 408.0, + 1041.0, + 408.0, + 1075.0, + 292.0, + 1075.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 431.0, + 1041.0, + 481.0, + 1041.0, + 481.0, + 1075.0, + 431.0, + 1075.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 503.0, + 1041.0, + 1405.0, + 1041.0, + 1405.0, + 1075.0, + 503.0, + 1075.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1071.0, + 1405.0, + 1071.0, + 1405.0, + 1107.0, + 293.0, + 1107.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1101.0, + 1407.0, + 1101.0, + 1407.0, + 1137.0, + 293.0, + 1137.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1131.0, + 1407.0, + 1131.0, + 1407.0, + 1168.0, + 295.0, + 1168.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1160.0, + 446.0, + 1160.0, + 446.0, + 1197.0, + 295.0, + 1197.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 483.0, + 1160.0, + 937.0, + 1160.0, + 937.0, + 1197.0, + 483.0, + 1197.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1032.0, + 1160.0, + 1405.0, + 1160.0, + 1405.0, + 1197.0, + 1032.0, + 1197.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1191.0, + 297.0, + 1191.0, + 297.0, + 1230.0, + 294.0, + 1230.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 335.0, + 1191.0, + 384.0, + 1191.0, + 384.0, + 1230.0, + 335.0, + 1230.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 477.0, + 1191.0, + 1405.0, + 1191.0, + 1405.0, + 1230.0, + 477.0, + 1230.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1222.0, + 823.0, + 1222.0, + 823.0, + 1259.0, + 295.0, + 1259.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 860.0, + 1222.0, + 1405.0, + 1222.0, + 1405.0, + 1259.0, + 860.0, + 1259.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1255.0, + 1407.0, + 1255.0, + 1407.0, + 1291.0, + 293.0, + 1291.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1285.0, + 1407.0, + 1285.0, + 1407.0, + 1321.0, + 293.0, + 1321.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1317.0, + 1405.0, + 1317.0, + 1405.0, + 1349.0, + 293.0, + 1349.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1345.0, + 1405.0, + 1345.0, + 1405.0, + 1382.0, + 293.0, + 1382.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1374.0, + 1165.0, + 1374.0, + 1165.0, + 1413.0, + 292.0, + 1413.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 294.0, + 827.0, + 294.0, + 827.0, + 330.0, + 295.0, + 330.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 326.0, + 826.0, + 326.0, + 826.0, + 360.0, + 295.0, + 360.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 358.0, + 826.0, + 358.0, + 826.0, + 389.0, + 293.0, + 389.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 385.0, + 826.0, + 385.0, + 826.0, + 421.0, + 292.0, + 421.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 418.0, + 827.0, + 418.0, + 827.0, + 451.0, + 294.0, + 451.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 448.0, + 828.0, + 448.0, + 828.0, + 481.0, + 293.0, + 481.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 476.0, + 829.0, + 476.0, + 829.0, + 512.0, + 293.0, + 512.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 508.0, + 827.0, + 508.0, + 827.0, + 542.0, + 296.0, + 542.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 535.0, + 828.0, + 535.0, + 828.0, + 577.0, + 293.0, + 577.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 569.0, + 825.0, + 569.0, + 825.0, + 603.0, + 295.0, + 603.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 598.0, + 340.0, + 598.0, + 340.0, + 635.0, + 293.0, + 635.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 460.0, + 598.0, + 573.0, + 598.0, + 573.0, + 635.0, + 460.0, + 635.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 597.0, + 598.0, + 827.0, + 598.0, + 827.0, + 635.0, + 597.0, + 635.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 629.0, + 462.0, + 629.0, + 462.0, + 667.0, + 292.0, + 667.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 495.0, + 629.0, + 827.0, + 629.0, + 827.0, + 667.0, + 495.0, + 667.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 658.0, + 829.0, + 658.0, + 829.0, + 698.0, + 291.0, + 698.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 693.0, + 827.0, + 693.0, + 827.0, + 725.0, + 294.0, + 725.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 722.0, + 827.0, + 722.0, + 827.0, + 755.0, + 294.0, + 755.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 753.0, + 827.0, + 753.0, + 827.0, + 787.0, + 295.0, + 787.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 783.0, + 827.0, + 783.0, + 827.0, + 817.0, + 296.0, + 817.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 495.0, + 814.0, + 514.0, + 814.0, + 514.0, + 828.0, + 495.0, + 828.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 523.0, + 816.0, + 540.0, + 816.0, + 540.0, + 827.0, + 523.0, + 827.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 566.0, + 815.0, + 580.0, + 815.0, + 580.0, + 826.0, + 566.0, + 826.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 585.0, + 816.0, + 603.0, + 816.0, + 603.0, + 827.0, + 585.0, + 827.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 811.0, + 903.0, + 811.0, + 903.0, + 850.0, + 294.0, + 850.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 12, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 297, + 295, + 1405, + 295, + 1405, + 694, + 297, + 694 + ], + "score": 0.984 + }, + { + "category_id": 3, + "poly": [ + 297, + 725, + 1401, + 725, + 1401, + 1148, + 297, + 1148 + ], + "score": 0.967 + }, + { + "category_id": 2, + "poly": [ + 299, + 76, + 816, + 76, + 816, + 104, + 299, + 104 + ], + "score": 0.886 + }, + { + "category_id": 4, + "poly": [ + 295, + 1210, + 1405, + 1210, + 1405, + 1427, + 295, + 1427 + ], + "score": 0.845 + }, + { + "category_id": 2, + "poly": [ + 836, + 2088, + 865, + 2088, + 865, + 2112, + 836, + 2112 + ], + "score": 0.844 + }, + { + "category_id": 0, + "poly": [ + 291, + 225, + 1337, + 225, + 1337, + 262, + 291, + 262 + ], + "score": 0.834 + }, + { + "category_id": 1, + "poly": [ + 295, + 1210, + 1405, + 1210, + 1405, + 1427, + 295, + 1427 + ], + "score": 0.259 + }, + { + "category_id": 15, + "poly": [ + 429.0, + 734.0, + 696.0, + 734.0, + 696.0, + 771.0, + 429.0, + 771.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 980.0, + 730.0, + 1245.0, + 730.0, + 1245.0, + 769.0, + 980.0, + 769.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 301.0, + 787.0, + 349.0, + 787.0, + 349.0, + 820.0, + 301.0, + 820.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 825.0, + 812.0, + 874.0, + 812.0, + 874.0, + 845.0, + 825.0, + 845.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 311.0, + 915.0, + 350.0, + 915.0, + 350.0, + 949.0, + 311.0, + 949.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 835.0, + 925.0, + 874.0, + 925.0, + 874.0, + 959.0, + 835.0, + 959.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 331.0, + 1055.0, + 340.0, + 1055.0, + 340.0, + 1066.0, + 331.0, + 1066.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 850.0, + 1043.0, + 869.0, + 1043.0, + 869.0, + 1067.0, + 850.0, + 1067.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 408.0, + 1070.0, + 464.0, + 1070.0, + 464.0, + 1101.0, + 408.0, + 1101.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 558.0, + 1070.0, + 612.0, + 1070.0, + 612.0, + 1101.0, + 558.0, + 1101.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 700.0, + 1069.0, + 774.0, + 1069.0, + 774.0, + 1104.0, + 700.0, + 1104.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 939.0, + 1066.0, + 999.0, + 1066.0, + 999.0, + 1101.0, + 939.0, + 1101.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1106.0, + 1065.0, + 1166.0, + 1065.0, + 1166.0, + 1101.0, + 1106.0, + 1101.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1263.0, + 1063.0, + 1343.0, + 1063.0, + 1343.0, + 1102.0, + 1263.0, + 1102.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 477.0, + 1103.0, + 658.0, + 1103.0, + 658.0, + 1141.0, + 477.0, + 1141.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1028.0, + 1106.0, + 1099.0, + 1106.0, + 1099.0, + 1136.0, + 1028.0, + 1136.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1106.0, + 1099.0, + 1212.0, + 1099.0, + 1212.0, + 1142.0, + 1106.0, + 1142.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, + 1212.0, + 1405.0, + 1212.0, + 1405.0, + 1247.0, + 295.0, + 1247.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1242.0, + 1406.0, + 1242.0, + 1406.0, + 1275.0, + 293.0, + 1275.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1273.0, + 1406.0, + 1273.0, + 1406.0, + 1306.0, + 294.0, + 1306.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1301.0, + 1405.0, + 1301.0, + 1405.0, + 1338.0, + 293.0, + 1338.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1335.0, + 1405.0, + 1335.0, + 1405.0, + 1366.0, + 297.0, + 1366.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1363.0, + 1406.0, + 1363.0, + 1406.0, + 1401.0, + 294.0, + 1401.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1395.0, + 1011.0, + 1395.0, + 1011.0, + 1430.0, + 295.0, + 1430.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": [ + 288.0, + 220.0, + 1343.0, + 220.0, + 1343.0, + 271.0, + 288.0, + 271.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 296.0, + 1405.0, + 296.0, + 1405.0, + 332.0, + 296.0, + 332.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 328.0, + 1403.0, + 328.0, + 1403.0, + 361.0, + 295.0, + 361.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 355.0, + 1405.0, + 355.0, + 1405.0, + 394.0, + 292.0, + 394.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 385.0, + 1403.0, + 385.0, + 1403.0, + 423.0, + 294.0, + 423.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 419.0, + 1405.0, + 419.0, + 1405.0, + 452.0, + 296.0, + 452.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 446.0, + 1405.0, + 446.0, + 1405.0, + 485.0, + 294.0, + 485.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 478.0, + 1405.0, + 478.0, + 1405.0, + 513.0, + 294.0, + 513.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 509.0, + 1407.0, + 509.0, + 1407.0, + 545.0, + 294.0, + 545.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 537.0, + 1407.0, + 537.0, + 1407.0, + 576.0, + 292.0, + 576.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 570.0, + 1406.0, + 570.0, + 1406.0, + 606.0, + 294.0, + 606.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 598.0, + 1405.0, + 598.0, + 1405.0, + 637.0, + 294.0, + 637.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 630.0, + 1406.0, + 630.0, + 1406.0, + 670.0, + 294.0, + 670.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 663.0, + 1364.0, + 663.0, + 1364.0, + 696.0, + 296.0, + 696.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1212.0, + 1405.0, + 1212.0, + 1405.0, + 1247.0, + 295.0, + 1247.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1242.0, + 1406.0, + 1242.0, + 1406.0, + 1275.0, + 293.0, + 1275.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1273.0, + 1406.0, + 1273.0, + 1406.0, + 1306.0, + 294.0, + 1306.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1301.0, + 1405.0, + 1301.0, + 1405.0, + 1338.0, + 293.0, + 1338.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1335.0, + 1405.0, + 1335.0, + 1405.0, + 1366.0, + 297.0, + 1366.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1363.0, + 1406.0, + 1363.0, + 1406.0, + 1401.0, + 294.0, + 1401.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1395.0, + 1011.0, + 1395.0, + 1011.0, + 1430.0, + 295.0, + 1430.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 13, + "width": 1700, + "height": 2200 + } + } +] \ No newline at end of file diff --git a/parse/train/S1zz2i0cY7/S1zz2i0cY7.md b/parse/train/S1zz2i0cY7/S1zz2i0cY7.md new file mode 100644 index 0000000000000000000000000000000000000000..8e0a5299122efafb1ffecddf8259537e0d43497b --- /dev/null +++ b/parse/train/S1zz2i0cY7/S1zz2i0cY7.md @@ -0,0 +1,252 @@ +# INTEGER NETWORKS FOR DATA COMPRESSION WITH LATENT-VARIABLE MODELS + +Johannes Ballé, Nick Johnston & David Minnen Google Mountain View, CA 94043, USA {jballe,nickj,dminnen}@google.com + +# ABSTRACT + +We consider the problem of using variational latent-variable models for data compression. For such models to produce a compressed binary sequence, which is the universal data representation in a digital world, the latent representation needs to be subjected to entropy coding. Range coding as an entropy coding technique is optimal, but it can fail catastrophically if the computation of the prior differs even slightly between the sending and the receiving side. Unfortunately, this is a common scenario when floating point math is used and the sender and receiver operate on different hardware or software platforms, as numerical round-off is often platform dependent. We propose using integer networks as a universal solution to this problem, and demonstrate that they enable reliable cross-platform encoding and decoding of images using variational models. + +# 1 INTRODUCTION + +The task of information transmission in today’s world is largely divided into two separate endeavors: source coding, or the representation of data (such as audio or images) as sequences of bits, and channel coding, representing sequences of bits as analog signals on imperfect, physical channels such as radio waves (Cover and Thomas, 2006). This decoupling has substantial benefits, as the binary representations of arbitrary data can be seamlessly transmitted over arbitrary physical channels by only changing the underlying channel code, rather than having to design a new code for every possible combination of data source and physical channel. Hence, the universal representation of any compressed data today is the binary channel, a representation which consists of a variable number of binary symbols, each with probability $\textstyle { \frac { 1 } { 2 } }$ , and no noise (i.e. uncertainty). + +As a latent representation, the binary channel unfortunately is a severe restriction compared to the richness of latent representations defined by many variational latent-variable models in the literature (e.g., Kingma and Welling, 2014; Sønderby et al., 2016; van den Oord et al., 2017), and in particular models targeted at data compression (Theis et al., 2017; Ágústsson et al., 2017; Ballé et al., 2018). Variational latent-variable models such as VAEs (Kingma and Welling, 2014) consist of an encoder model distribution $e ( \pmb { y } \mid \pmb { x } )$ bringing the data $_ { \textbf { \em x } }$ into a latent representation $\textbf { { y } }$ , and a decoder model distribution $d ( { \pmb x } \mid { \pmb y } )$ , which represents the data likelihood conditioned on the latents. Given an encoder $e$ , we observe the marginal distribution of latents $m ( \pmb { y } ) = \mathbb { E } _ { \pmb { x } } [ e ( \pmb { y } \mid \pmb { x } ) ]$ , where the expectation runs over the (unknown) data distribution. The prior $p ( \pmb { y } )$ is a variational estimate of the marginal (Alemi et al., 2018). + +By choosing the parametric forms of these distributions and the training objective appropriately, many such models succeed in representing relevant information in the data they are trained for quite compactly (i.e., with a small expected Kullback–Leibler (KL) divergence between the encoder and the prior, $\begin{array} { r } { \mathbb { E } _ { \pmb { x } } D _ { \mathrm { K L } } [ e \| p ] ) } \end{array}$ , and so may be called compressive in a sense. However, not all of them can be directly used for practical data compression, as the representation needs to be further converted into binary (entropy encoded). This conversion is typically performed by range coding, or arithmetic coding (Rissanen and Langdon, 1981). Range coding is asymptotically optimal: the length of the binary sequence quickly converges to the expected KL divergence in bits, for reasonably large sequences (such as, for one image). For this to hold, the following requirements must be satisfied: + +![](images/b6a6648bd111c33790c9a0a1e49addb8c95065b786817c864c1cea610843d505.jpg) +Figure 1: The same image, decoded with a model computing the prior using integer arithmetic (left), and the same model using floating point arithmetic (right). The image was decoded correctly, beginning in the top-left corner, until floating point round-off error caused a small discrepancy between the sender’s and the receiver’s copy of the prior, at which point the error propagated catastrophically. + +• The representation must be discrete-valued, i.e. have a finite number of states, and be noiseless – i.e. the conditional entropy of the encoder must be zero: + +$$ +H [ e ] = \mathbb { E } _ { \pmb { x } } \mathbb { E } _ { \pmb { y } \sim e } [ - \log e ( \pmb { y } \mid \pmb { x } ) ] = 0 . +$$ + +• All scalar elements of the representation $\textbf { { y } }$ must be brought into a total ordering, and the prior needs to be written using the chain rule of calculus (as a product of conditionals), as the algorithm can only encode or decode one scalar random variable at a time. + +• Both sides of the binary channel (i.e. sender and receiver) must be able to evaluate the prior, and they must have identical instances of it. + +The latter point is crucial, as range coding is extremely sensitive to differences in $p$ between sender and receiver – so sensitive, in fact, that even small perturbations due to floating point round-off error can lead to catastrophic error propagation. Unfortunately, numerical round-off is highly platform dependent, and in typical data compression applications, sender and receiver may well employ different hardware or software platforms. Round-off error may even be non-deterministic on one and the same computer. Figure 1 illustrates a decoding failure in a model which computes $p$ using floating point math, caused by such computational non-determinism in sender vs. receiver. Recently, latent-variable models have been explored that employ artificial neural networks (ANNs) to compute hierarchical or autoregressive priors (Sønderby et al., 2016; van den Oord et al., 2017), including some of the best-performing learned image compression models (Ballé et al., 2018; Minnen et al., 2018; Klopp et al., 2018). Because ANNs are typically based on floating point math, these methods are vulnerable to catastrophic failures when deployed on heterogeneous platforms. + +To address this problem, and enable use of powerful learned variational models for real-world data compression, we propose to use integer arithmetic in these ANNs, as floating-point arithmetic cannot presently be made deterministic across arbitrary platforms. We formulate a type of quantized neural network we call integer networks, which are specifically targeted at generative and compression models, and at preventing computational non-determinism in computation of the prior. Because full determinism is a feature of many existing, widely used image and video compression methods, we also consider using integer networks end to end for computing the representation itself. + +# 2 INTEGER NEURAL NETWORKS + +ANNs are typically composite functions that alternate between linear and elementwise nonlinear operations. One linear operation followed by a nonlinearity is considered one layer of the network. To ensure that such a network can be implemented deterministically on a wide variety of hardware platforms, we restrict all the data types to be integral, and all operations to be implemented either with basic arithmetic or lookup tables. Because integer multiplications (including matrix multiplications or convolutions) increase the dynamic range of the output compared to their inputs, we introduce an additional step after each linear operator, where we divide each of its output by a learned parameter. + +![](images/c91a76ad0addf5cef94c1363679199123dda26f8a6a06cc57fa964c0de157f07.jpg) +Figure 2: Left: Example nonlinearity implementing a saturating rectifier for 4-bit unsigned integer outputs, given by $g _ { \mathrm { Q R e L U } } ( v ) = \mathrm { m a x } ( \mathrm { m i n } ( v , 1 5 ) , 0 )$ . This nonlinearity can be implemented deterministically either using a lookup table or simply using a clipping operation. The corresponding scaled cumulative of a generalized Gaussian with $\beta = 4$ used for computing gradients is plotted in cyan, and other choices of $\beta$ in gray. Right: Example nonlinearity approximating hyperbolic tangent for 4-bit signed integer outputs, given by $\begin{array} { r } { g _ { \mathrm { Q t a n h } } ( v ) = Q ( 7 \operatorname { t a n h } ( \frac { v } { 1 5 } ) ) } \end{array}$ . This nonlinearity can be implemented deterministically using a lookup table. The corresponding scaled hyperbolic tangent used for computing gradients is plotted in cyan. + +Concretely, we define the relationship between inputs $\textbf { \em u }$ and outputs $\pmb { w }$ of one layer as: + +$$ +\begin{array} { r } { \pmb { v } = ( \pmb { H } \pmb { u } + \pmb { b } ) \oslash \pmb { c } , } \\ { \pmb { w } = g ( \pmb { v } ) . } \end{array} +$$ + +In order, the inputs $\textbf { \em u }$ are subjected to a linear transform $\pmb { H }$ (a matrix multiplication, or a convolution); a bias vector $^ { b }$ is added; the result is divided elementwise by a vector $^ c$ , yielding an intermediate result vector $\textbf { { v } }$ ; and finally, an elementwise nonlinearity $g$ is applied to $\pmb { v }$ . + +The activations $\textbf { \em w }$ and all intermediate results, as well as the parameters $H , b$ , and $^ c$ are all defined as integers. However, they may use differing number formats. For $\pmb { v }$ to be integral, we define $\oslash$ here to perform rounding division (equivalent to division followed by rounding to the nearest integer). In programming languages such as C, this can be implemented with integer operands $m , n$ as + +$$ +\begin{array} { r } { m \oslash n = Q ( \frac { m } { n } ) = ( m + n / / 2 ) \ / / n , } \end{array} +$$ + +where $Q$ rounds to the nearest integer and $/ /$ is floor division; here, the addition can be folded into the bias $^ { b }$ as an optimization. We constrain the linear filter coefficients $\pmb { H }$ and the bias vector $^ { b }$ to generally use signed integers, and the scaling vector $^ c$ to use unsigned integers. We implement the accumulators of the linear transform with larger bit width than the activations and filter coefficients, in order to reflect the potentially increased dynamic range of multiplicative operations. We assume here that the bias and scaling vectors, as well as the intermediate vector $\pmb { v }$ , have the same bit width as the accumulators. + +The elementwise nonlinearity $g$ must be saturating on both ends of its domain, because integers can only represent finite number ranges. In order to maximize utility of the dynamic range, we scale nonlinearities such that their range matches the bit width of $\pmb { w }$ , while their domain can be scaled somewhat arbitrarily. Depending on the range of the nonlinearity, the activations $\textbf { \em w }$ may use a signed or unsigned number format. For instance, a reasonable choice of number formats and nonlinearity would be: + +$$ +\begin{array} { c } { { H : 8 \mathrm { - b i t ~ s i g n e d ~ } } } \\ { { b , v : 3 2 \mathrm { - b i t ~ s i g n e d ~ ( s a m e ~ a s ~ a c c u m u l a t o r ) } } } \\ { { c : 3 2 \mathrm { - b i t ~ u n s i g n e d ~ } } } \\ { { w : 8 \mathrm { - b i t ~ u n s i g n e d ~ } } } \\ { { g _ { \mathrm { Q R e L U } } ( v ) = \mathrm { m a x } ( \mathrm { m i n } ( v , 2 5 5 ) , 0 ) } } \end{array} +$$ + +In this example, the nonlinearity can be implemented with a simple clipping operation. Refer to figure 2, left, for a visualization (for visualization purposes, the figure shows a smaller bit width). + +Another example is: + +$$ +\begin{array} { r } { g _ { \mathrm { Q t a n h } } ( v ) = Q \bigl ( 7 \operatorname { t a n h } ( \frac { v } { 1 5 } ) \bigr ) } \end{array} +$$ + +Here, the nonlinearity approximates the hyperbolic tangent, a widely used nonlinearity. It may be best implemented using a lookup table (see figure 2, right, for a visualization). We scale its range to fill the 4-bit signed integer number format of $\pmb { w }$ by multiplying its output with 7. The domain can be scaled somewhat arbitrarily, since $\pmb { v }$ has a larger bit width than $\pmb { w }$ . When it is chosen too small, $\pmb { w }$ may not utilize all integer values, leading to a large quantization error. When it is chosen too large, overflow may occur in $\pmb { v }$ , or the size of the lookup table may grow too large for practical purposes. Therefore, it is best to determine the input scaling based on the shape of the nonlinearity and the available dynamic range. Here, we simply chose the value of 15 “by eye”, so that the nonlinearity is reasonably well represented with the lookup table (i.e., we made sure that at least two or three input values are mapped to each output value, in order to preserve the approximate shape of the nonlinearity). + +# 3 TRAINING INTEGER NEURAL NETWORKS + +To effectively accumulate small gradient signals, we train the networks entirely using floating point computations, rounded to integers after every computational operation, while the backpropagation is done with full floating point precision. More concretely, we define the integer parameters $H , b ,$ and $^ c$ as functions of their floating point equivalents $H ^ { \prime } , b ^ { \prime }$ , and $c ^ { \prime }$ , respectively: + +$$ +\begin{array} { r l } & { \boldsymbol { H } = \left[ \begin{array} { c } { Q ( h _ { 1 } ^ { \prime } / s ( h _ { 1 } ^ { \prime } ) ) ) } \\ { \vdots } \\ { Q ( h _ { N } ^ { \prime } / s ( h _ { N } ^ { \prime } ) ) } \end{array} \right] , } \\ & { ~ b = Q \big ( 2 ^ { K } b ^ { \prime } \big ) , } \\ & { \boldsymbol { c } = Q \big ( 2 ^ { K } r ( \boldsymbol { c } ^ { \prime } ) \big ) . } \end{array} +$$ + +Here, we simply rescale each element of $\pmb { b } ^ { \prime }$ using a constant $K$ , which is the bit-width of the kernel $\pmb { H }$ (e.g. 8-bits in the QReLu networks), and round it to the nearest integer. The reparameterization mapping $r$ is borrowed from Ballé (2018): + +$$ +r ( c ^ { \prime } ) = \mathrm { m a x } \Big ( c ^ { \prime } , \sqrt { 1 + \epsilon ^ { 2 } } \Big ) ^ { 2 } - \epsilon ^ { 2 } . +$$ + +When $^ c$ is small, perturbations in $^ c$ can lead to excessively large fluctuations of the quotient (i.e., the input to the nonlinearity). This leads to instabilities in training. $r$ ensures that values of $^ c$ are always positive, while gracefully scaling down gradient magnitudes on $^ c$ near zero. Effectively, the step size on $^ c$ is multiplied with a factor that is approximately linear in $^ c$ (Ballé, 2018). + +Before rounding the linear filter coefficients in $\pmb { H } ^ { \prime } = [ h _ { 1 } ^ { \prime } , \ldots , h _ { N } ^ { \prime } ] ^ { \top }$ , we apply a special rescaling function $s$ to each of its filters $\mathbf { { } } h ^ { \prime }$ : + +$$ +s ( h ^ { \prime } ) = \mathrm { m a x } \Big ( ( - 2 ^ { K - 1 } ) ^ { - 1 } \operatorname* { m i n } _ { i } h _ { i } ^ { \prime } , ( 2 ^ { K - 1 } - 1 ) ^ { - 1 } \operatorname* { m a x } _ { i } h _ { i } ^ { \prime } , \epsilon \Big ) . +$$ + +$s$ rescales each filter such that at least one of its minimum and maximum coefficients hits one of the dynamic range bounds $( - 2 ^ { K - 1 }$ and $2 ^ { K - 1 } - 1 )$ ), while keeping zero at zero. This represents the finest possible quantization of the filter given its integer representation, and thus maximizes accuracy. To prevent division by zero, we ensure the divisor is larger than or equal to a small constant $\epsilon$ (for example, $\epsilon = 1 0 ^ { - \tilde { 2 } 0 }$ ). + +In order to backpropagate gradient signals into the parameters, one cannot simply take gradients of the loss function with respect to $H ^ { \prime }$ , $\pmb { b } ^ { \prime }$ , or $c ^ { \prime }$ , since the rounding function $Q$ has zero gradients almost everywhere, except for the half-integer positions where the gradient is positive infinity. A simple remedy is to replace the derivative of $Q$ with the identity function, since this is the smoothed gradient across all rounded values. + +Further, we treat the rescaling divisor $s$ as if it were a constant. That is, we compute the derivatives of the loss function with respect to $H ^ { \prime } , b ^ { \prime }$ , and $c ^ { \prime }$ as with the chain rule of calculus, but overriding: + +$$ +\frac { \partial h } { \partial h ^ { \prime } } : = \frac { 1 } { s ( h ^ { \prime } ) } , \qquad \frac { \partial b } { \partial b ^ { \prime } } : = 2 ^ { K } , \qquad \frac { \partial c } { \partial c ^ { \prime } } : = 2 ^ { K } r ^ { \prime } ( c ^ { \prime } ) , +$$ + +where $r ^ { \prime }$ is the replacement gradient function for $r$ as proposed by Ballé (2018). After training is completed, we compute the integer parameters $\pmb { H }$ , $^ { b }$ and $^ c$ one more time, and from then on use them for evaluation. Note that further reparameterization of the kernels $H ^ { \prime }$ , such as Sadam (Ballé, 2018), or of the biases $\pmb { b } ^ { \prime }$ or scaling parameters $c ^ { \prime }$ , is possible by simply chaining reparameterizations. + +In addition to rounding the parameters, it is necessary to round the activations. To obtain gradients for the rounding division $\oslash$ , we simply substitute the gradient of floating point division. To estimate gradients for the rounded activation functions, we replace their gradient with the corresponding nonrounded activation function, plotted in cyan in figure 2. In the case of QReLU, the gradient of the clipping operation is a box function, which can lead to training getting stuck, since if activations consistently hit one of the bounds, no gradients are propagated back (this is sometimes called the “dead unit” problem). As a remedy, we replace the gradient instead with + +$$ +\frac { \partial g _ { \mathrm { Q R e L U } } ( v ) } { \partial v } : = \exp \Bigl ( - \alpha ^ { \beta } \Bigl | \frac { 2 v } { 2 ^ { L } - 1 } - 1 \Bigr | ^ { \beta } \Bigr ) , +$$ + +where $\begin{array} { r } { \alpha = \frac { 1 } { \beta } \Gamma \left( \frac { 1 } { \beta } \right) } \end{array}$ , and $L$ is the bit width of $\textbf { \em w }$ . This function corresponds to a scaled generalized Gaussian probability density with shape parameter $\beta$ . In this context, we can think of $\beta$ as a temperature parameter that makes the function converge to the gradient of the clipping operation as $\beta$ goes to infinity. Although this setting permits an annealing schedule, we simply chose $\beta = 4$ and obtained good results. The integral of this function is plotted in figure 2 (left) in cyan, along with other choices of $\beta$ in gray. + +# 4 COMPUTING THE PRIOR WITH INTEGER NETWORKS + +Suppose our prior on the latent representation is $p ( \pmb { y } \mid z )$ , where $_ z$ summarizes other latent variables of the representation (it may be empty). To apply range coding, we need to impose a total ordering on the elements of $\textbf { { y } }$ and write it as a chain of conditionals: + +$$ +p ( \pmb { y } \mid z ) = \prod _ { i } p ( y _ { i } \mid \pmb { y } _ { : i } , z ) , +$$ + +where $\mathbf { \nabla } _ { \mathbf { { \boldsymbol { y } } } : i }$ denotes the vector of all elements of $\textbf { { y } }$ preceding the ith. A common assumption is that $p$ is a known distribution, with parameters $\theta _ { i }$ computed by an $\operatorname { A N N } g$ : + +$$ +p ( \pmb { y } \mid z ) = \prod _ { i } p ( y _ { i } \mid \pmb { \theta } _ { i } ) \operatorname { w i t h } \pmb { \theta } _ { i } = g ( \pmb { y } _ { : i } , z ) +$$ + +We simply propose here to compute $g$ deterministically using an integer network, discretizing the parameters $\pmb \theta$ to a reasonable accuracy. If $p ( y _ { i } \mid \pmb \theta _ { i } )$ itself cannot be computed deterministically, we can precompute all possible values and express it as a lookup table over $y _ { i }$ and $\theta _ { i }$ . + +As an example, consider the prior used in the image compression model proposed by Ballé et al. (2018), which is a modified Gaussian with scale parameters conditioned on another latent variable: + +$$ +p ( \pmb { y } \mid z ) = \prod _ { i } \left( \mathcal { N } ( 0 , \sigma _ { i } ^ { 2 } ) * \mathcal { U } ( - \textstyle \frac { 1 } { 2 } , \textstyle \frac { 1 } { 2 } ) \right) ( y _ { i } ) \mathrm { w i t h } \sigma = g ( z ) . +$$ + +We reformulate the scale parameters $\sigma$ as: + +$$ +\begin{array} { r } { \sigma _ { i } = \exp \Bigl ( \log \bigl ( \sigma _ { \operatorname* { m i n } } \bigr ) + \frac { \log \left( \sigma _ { \operatorname* { m a x } } \right) - \log \left( \sigma _ { \operatorname* { m i n } } \right) } { L - 1 } \theta _ { i } \Bigr ) , } \end{array} +$$ + +where $\pmb \theta = g ( z )$ is computed using an integer network. The last activation function in $g$ is chosen to have integer outputs of $L$ levels in the range $[ 0 , L - 1 ]$ . Constants $\sigma _ { \mathrm { m i n } }$ , $\sigma _ { \mathrm { m a x } }$ , and $L$ determine the discretized selection of scale parameters used in the model. The discretization is chosen to be logarithmic, as this choice minimizes $\mathbb { E } _ { \pmb { x } } D _ { \mathrm { K L } } [ e \Vert p ]$ for a given number of levels. + +During training, we can simply backpropagate through this reformulation, and through $g$ as described in the previous section. After training, we precompute all possible values of $p$ as a function of $y _ { i }$ and $\theta _ { i }$ and form a lookup table, while $g$ is implemented with integer arithmetic. + +For certain applications, it can be useful not only to be able to deploy a compression model across heterogenous platforms, but to go even further in also ensuring identical reconstructions of the data across platforms. To this end, it can be attractive to make the entire model robust to non-determinism. To use integer networks in the encoder or decoder, one can use the equivalent construction as in (13): define $e$ or $d$ as a known distribution, with parameters computed by an integer network. To allow the use of range coding, we’re especially interested in discrete-valued representations here, such as studied in van den Oord et al. (2017), Jang et al. (2017), Theis et al. (2017), Ágústsson et al. (2017), and Ballé et al. (2018), among others. These approaches typically employ biased gradient estimators. + +Jang et al. (2017) and Ágústsson et al. (2017) are concerned with producing gradients for categorical distributions and vector quantization (VQ), respectively. In both methods, the representation is found by evaluating an ANN followed by an arg max function, while useful gradients are obtained by substituting the arg max with a softmax function. Since arg max can be evaluated deterministically in a platform-independent way, and evaluating a softmax function with rounded inputs is feasible, integer networks can be combined with these models without additional modifications. + +Theis et al. (2017) and Ballé et al. (2018) differ mostly in the details of interaction between the encoder and the prior. These two approaches are particularly interesting for image compression, as they scale well: Image compression models are often trained with a rate–distortion objective with a Lagrange parameter $\lambda$ , equivalent to $\beta$ in the $\beta$ -VAE objective (Higgins et al., 2017; Alemi et al., 2018). Depending on the parameter, the latent representation carries vastly different amounts of information, and the optimal number of latent states in turn varies with that. While the number of latent states is a hyperparameter that needs to be chosen ahead of time in the categorical/VQ case, the latter two approaches can extend it as needed during training, because the latent states are organized along the real line. Further, for categorical distributions as well as VQ, the required dimensionality of the function computing the parameters grows linearly with the number of latent states due to their use of the arg max function. In the latter two models, the number of states can grow arbitrarily without increasing the dimensionality of $g$ . + +Both Theis et al. (2017) and Ballé et al. (2018) use deterministic encoder distributions (i.e. degenerating to delta distributions) during evaluation, but replace them with probabilistic versions for purposes of estimating $\mathbb { E } _ { \pmb { x } } D _ { \mathrm { K L } } [ e \Vert p ]$ during training. Theis et al. (2017) propose to use the following encoder distribution: + +$$ +\begin{array} { r } { e ( \pmb { y } \mid \pmb { x } ) = \mathcal { U } ( \pmb { y } \mid Q ( g ( \pmb { x } ) ) - \frac { 1 } { 2 } , Q ( g ( \pmb { x } ) ) + \frac { 1 } { 2 } ) , } \end{array} +$$ + +where $\mathcal { U }$ is the uniform distribution and $g$ is an ANN. They replace the gradient of the quantizer with the identity. During evaluation, $\pmb { y } = Q ( g ( \pmb { x } ) )$ is used as the representation. Ballé et al. (2018) use the following distribution during training: + +$$ +\begin{array} { r } { e ( \pmb { y } \mid \pmb { x } ) = \mathcal { U } ( \pmb { y } \mid g ( \pmb { x } ) - \frac { 1 } { 2 } , g ( \pmb { x } ) + \frac { 1 } { 2 } ) , } \end{array} +$$ + +which makes $\textbf { { y } }$ shift-invariant. During evaluation, they determine the representation as ${ \textbf { 3 } } =$ $Q ( g ( \pmb { x } ) - \pmb { o } )$ , where $^ o$ is a sub-integer offset chosen such that the mode (or, if it cannot be estimated easily, the median) of the distribution is centered on one of the quantization bins. + +If $g$ is implemented with integer networks, the latter approach becomes equivalent to the former, because $g$ then inherently computes integer outputs, and this is effectively equivalent to the quantization in (16). However, we’ve found that training with this construction leads to instabilities, such that the prior distribution never converges to a stable set of parameters. The reason may be that with quantization in $e$ , the marginal $m ( \bar { \pmb { y } } ) = \mathbb { E } _ { \pmb { x } } e ( \pmb { y } \mid \pmb { x } )$ resembles a piecewise constant function, while the prior $p$ must be forced to be smooth, or $\mathbb { E } _ { \pmb { x } } D _ { \mathrm { K L } } [ e \Vert p ]$ would not yield any useful gradients. Because the prior is a variational approximation of the marginal, this means that the prior must be regularized (which we did not attempt here – we used the nonparametric density model described in Ballé et al. (2018)). On the other hand, when using (17) without quantization, the marginal is typically a smooth density, and the prior can approximate it closely without the need for regularization. + +As a remedy for the instabilities, we propose the following trick: We simply use (17) during training, but define the last layer of $g$ without a nonlinearity and with floating point division, such that the representation is + +$$ +\begin{array} { r } { e ( \pmb { y } \mid \pmb { x } ) = \mathcal { U } ( \pmb { y } \mid ( \pmb { H } \pmb { u } + \pmb { b } ) / c - \frac { 1 } { 2 } , ( \pmb { H } \pmb { u } + \pmb { b } ) / c + \frac { 1 } { 2 } ) , } \end{array} +$$ + +![](images/4169eee3870fc1b30ed28c0ec26e0fa7b41d213ef75cb24efacfc3951184acc1.jpg) +Figure 3: Rate–distortion performance of image compression models with integer priors (left and up is better). Left: performance of Ballé et al. (2018) model vs. the same model with an integer prior. The performance is identical, but the latter can be reliably deployed across different hardware platforms. Right: performance of Ballé (2018) ReLU model with 128 filters per layer vs. the same model, with integer transforms and QReLU activation functions and 128 or 256 filters per layer. The approximation capacity of integer networks is diminished vs. floating point networks, but doubling the number of filters per layer more than compensates for the loss. + +
compressed ondecompressed onCPU 1CPU 1CPU 1GPU 1CPU 1CPU 2CPU 1GPU 2GPU 1CPU 1GPU 1GPU 1GPU 1CPU 2GPU 1GPU 2
Tecnick dataset:100 RGB i3 images of 1200 × 1200 pixels
Ballé et al. (2018)ditto, integer prior0%0%71%0%54%0%66%0%63%0%41%0%59%0%34%0%
CLIC dataset: 2021 RGB images of various pixel sizes
Ballé et al. (2018)ditto, integer prior0%0%78%0%68%0%78%0%77%0%52%0%78%0%54%0%
+ +CPU 1: Intel Xeon E5-1650 GPU 1: NVIDIA Titan X (Pascal) CPU 2: Intel Xeon E5-2690 GPU 2: NVIDIA Titan X (Maxwell) + +Table 1: Decompression failure rates due to floating point round-off error on Tecnick and CLIC image datasets. When compressing and decompressing on the same CPU platform (first column), the Ballé et al. (2018) model decompresses all images correctly. However, when compressing on a GPU or decompressing on a different platform, a large percentage of the images fail to be decoded correctly. Implementing the prior of the same model using integer networks ensures correct decompression across all tested platforms. + +during training, where $\textbf { \em u }$ is the input to the last layer and $/$ represents elementwise floating point division, and + +$$ +{ \pmb y } = Q \big ( ( { \pmb H } { \pmb u } + { \pmb b } ) / c - o \big ) +$$ + +during evaluation. This can be rewritten strictly using integer arithmetic as: + +$$ +\pmb { y } = \left( \pmb { H } \pmb { u } + \pmb { b } - \pmb { Q } ( \pmb { o } \odot \pmb { c } ) \right) \oslash \pmb { c } , +$$ + +where $\odot$ represents elementwise multiplication, and the rounded product can be folded into the bias $^ { b }$ as an optimization. This way, the representation is computed deterministically during evaluation, while during training, the marginal still resembles a smooth function, such that no regularization of the prior is necessary. + +# 6 EXPERIMENTAL RESULTS + +In order to assess the efficacy of integer networks to enable platform-independent compression and decompression, we re-implemented the image compression model described in Ballé et al. (2018), which is defined with a hyperprior. We compare the original model with a version in which the network $h _ { s }$ computing the prior is replaced with an integer network. We used the same network architectures in terms of number of layers, filters, etc., and the same training parameters as in the original paper. The rate–distortion performance of the model was assessed on Kodak (1993) and is shown in figure 3 (left). The modified model performs identically to the original model, as it maps out the same rate–distortion frontier. However, it is much more robust to cross-platform compression and decompression (table 1). We tested compression and decompression on four different platforms (two CPU platforms and two GPU platforms) and two different datasets, Tecnick (Asuni and Giachetti, 2014) and CLIC (2018). The original model fails to correctly decompress more than half of the images on average when compression and decompression occurs on different platforms. The modified model brings the failure rate down to $0 \%$ in all cases. + +![](images/a865c9ab4174bfbf3d830d1396893dbffeb412c482ec838ff0e3400b2afccbbb.jpg) +Figure 4: Loss function across training of Ballé (2018) model, evaluated on Kodak (1993), corresponding to the rate point at approximately 0.7 bits per pixel in figure 3, right panel. Generally, training of integer models takes somewhat longer and is somewhat noisier than training of floating point models. When matching floating point and integer networks for asymptotic performance (128 vs. 256 filters, respectively), integer networks take longer to converge (likely due to their larger number of filters). When matching by number of filters (128), it appears that the training time to convergence is about the same, but the performance ends up worse. + +It should be noted that the decreased accuracy of integer arithmetic generally leads to a lower approximation capacity than with floating point networks. We found that when implementing the models described in Ballé (2018) using integer networks throughout, the rate–distortion performance decreased (figure 3, right). The loss in approximation capacity can be compensated for by increasing the number of filters per layer. Note that this appears to increase the training time necessary for convergence (figure 4). However, note that increasing the number of parameters may not necessarily increase the size of the model parameters or the runtime, as the storage requirements for integer parameters (kernels, biases, etc.) are lower than for floating point parameters, and integer arithmetic is computationally less complex than floating point arithmetic in general. + +# 7 DISCUSSION + +There is a large body of recent research considering quantization of ANNs mostly targeted at image recognition applications. Courbariaux et al. (2015) train classification networks on lower precision multiplication. Hubara et al. (2016) and Rastegari et al. (2016) perform quantization down to bilevel (i.e., 1-bit integers) at inference time to reduce computation in classification networks. More recently, Wu et al. (2018) and others have used quantization during training as well as inference, to reduce computation on gradients as well as activations, and Baluja et al. (2018) use non-uniform quantization to remove floating point computation, replacing it completely with integer offsets into an integer lookup table. + +While the quantization of neural networks is not a new topic, the results from the above techniques focus almost exclusively on classification networks. Denton et al. (2014), Han et al. (2016), and others have demonstrated that these types of networks are particularly robust to capacity reduction. + +Models used for image compression, like many generative models, are much more sensitive to capacity constraints since they tend to underfit. As illustrated in Ballé (2018) and in figure 3 (right), this class of models is much more sensitive to reductions of capacity, both in terms of network size and the expressive power of the activation function. This may explain why our experiments with post-hoc quantization of network activations have never yielded competitive results for this class of model (not shown). + +As illustrated in figure 1 and table 1, small floating point inconsistencies in variational latent-variable models can have disastrous effects when we use range coding to employ the models for data compression across different hardware or software platforms. The reader may wonder whether there exists other entropy coding algorithms that can convert discrete latent-variable representations into a binary representation, and which do not suffer from a sensitivity to perturbations in the probability model. Unfortunately, such an algorithm would always produce suboptimal results for the following reason. The source coding theorem (Shannon, 1948) establishes a lower bound on the average length of the resulting bit sequences, which range coding achieves asymptotically (i.e. for long bit sequences). The lower bound is given by the cross entropy between the marginal and the prior: + +$$ +\mathbb { E } _ { { \pmb { y } } \sim m } [ | b ( { \pmb { y } } ) | ] \geq \mathbb { E } _ { { \pmb { y } } \sim m } [ - \log _ { 2 } p ( { \pmb { y } } \mid { \pmb { \theta } } ) ] , +$$ + +where $\left| b ( \boldsymbol { y } ) \right|$ is the length of the binary representation of $\textbf { { y } }$ . If an entropy coding algorithm tolerates error in the values of $p ( \pmb { y } \mid \pmb { \theta } )$ , this means it must operate under the assumption of identical probability values for a range of values of $\pmb { \theta } -$ in other words, discretize the probability values. Since the cross entropy is minimal only for $p ( \pmb { y } \mid \pmb { \theta } ) = m ( \pmb { y } )$ (for all $\textbf { { y } }$ ), this would impose a new lower bound on $\left| b ( \pmb { y } ) \right|$ given by the cross entropy with the discretized probabilities, which is greater or equal to the cross entropy given above. Thus, the more tolerant the entropy coding method is to errors in $p$ , the further it deviates from optimal performance. Moreover, it is hard to establish tolerance intervals for probability values computed with floating point arithmetic, in particular when ANNs are used, due to error propagation. Hence, it is generally difficult to provide guarantees that a given tolerance will not be exceeded. For similar reasons, current commercial compression methods model probabilities exclusively in the discrete domain (e.g., using lookup tables; Marpe et al., 2003). + +Our approach to neural network quantization is the first we are aware of which specifically addresses non-deterministic computation, as opposed to computational complexity. It enables a variety of possible variational model architectures and distributions to be effectively used for platformindependent data compression. While we aren’t assessing its effects on computational complexity here, it is conceivable that complexity reductions can also be achieved with the same approach; this is a topic for future work. + +# REFERENCES + +Ágústsson, Eiríkur Þór et al. (2017). “Soft-to-Hard Vector Quantization for End-to-End Learning Compressible Representations”. In: Advances in Neural Information Processing Systems 30, pp. 1141–1151. +Alemi, Alexander A. et al. (2018). “Fixing a Broken ELBO”. In: arXiv e-prints. arXiv: 1711 . 00464. +Asuni, N. and A. Giachetti (2014). “TESTIMAGES: A large-scale archive for testing visual devices and basic image processing algorithms”. In: Proc. of STAG: Smart Tools and Apps for Graphics. DOI: 10.2312/stag.20141242. +Ballé, Johannes (2018). “Efficient Nonlinear Transforms for Lossy Image Compression”. In: Picture Coding Symposium (PCS), 2018. +Ballé, Johannes et al. (2018). “Variational image compression with a scale hyperprior”. In: Proc. of 6th Int. Conf. on Learning Representations. URL: https://openreview.net/forum? id $=$ rkcQFMZRb. +Baluja, Shumeet et al. (2018). “No Multiplication? No Floating Point? No Problem! Training Networks for Efficient Inference”. In: arXiv e-prints. arXiv: 1809.09244. +CLIC: Challenge on Learned Image Compression (2018). Mobile and Professional Datasets. URL: http://www.compression.cc/2018/challenge. +Courbariaux, Matthieu, Jean-Pierre David, and Yoshua Bengio (2015). “Training deep neural networks with low precision multiplications”. In: arXiv e-prints. Presented as a workshop contribution at the 3rd Int. Conf. on Learning Representations. arXiv: 1412.7024. +Cover, Thomas M. and Joy A. Thomas (2006). Elements of Information Theory. 2nd ed. Wiley. +Denton, Emily et al. (2014). “Exploiting Linear Structure Within Convolutional Networks for Efficient Evaluation”. In: Advances in Neural Information Processing Systems 27, pp. 1269–1277. +Han, Song, Huizi Mao, and William J. Dally (2016). “Deep Compression: Compressing Deep Neural Network with Pruning, Trained Quantization and Huffman Coding”. In: arXiv e-prints. Presented at the 4th Int. Conf. on Learning Representations. arXiv: 1510.00149. +Higgins, Irina et al. (2017). “ $\beta$ -VAE: Learning Basic Visual Concepts with a Constrained Variational Framework”. In: Proc. of 5th Int. Conf. on Learning Representations. URL: https : //openreview.net/forum?id $=$ Sy2fzU9gl. +Hubara, Itay et al. (2016). “Binarized Neural Networks”. In: Advances in Neural Information Processing Systems 29, pp. 4107–4115. +Jang, Eric, Shixiang Gu, and Ben Poole (2017). “Categorical Reparameterization with GumbelSoftmax”. In: Proc. of 5th Int. Conf. on Learning Representations. URL: https : / / openreview.net/forum?id $\underline { { \underline { { \mathbf { \Pi } } } } } =$ rkE3y85ee. +Kingma, Diederik P. and Max Welling (2014). “Auto-Encoding Variational Bayes”. In: arXiv eprints. Presented at the 2nd Int. Conf. on Learning Representations. arXiv: 1312.6114. +Klopp, Jan P. et al. (2018). “Learning a Code-Space Predictor by Exploiting Intra-ImageDependencies”. In: Proc. of 29th British Machine Vision Conference. +Kodak, Eastman (1993). Kodak Lossless True Color Image Suite (PhotoCD PCD0992). URL: http://r0k.us/graphics/kodak/. +Marpe, Detlev, Heiko Schwarz, and Thomas Wiegand (2003). “Context-Based Adaptive Binary Arithmetic Coding in the H.264/AVC Video Compression Standard”. In: IEEE Transactions on Circuits and Systems for Video Technology 13.7. DOI: 10.1109/TCSVT.2003.815173. +Minnen, David, Johannes Ballé, and George Toderici (2018). “Joint Autoregressive and Hierarchical Priors for Learned Image Compression”. In: Advances in Neural Information Processing Systems 31, pp. 10771–10780. +Oord, Aäron van den, Oriol Vinyals, and Koray Kavukcuoglu (2017). “Neural Discrete Representation Learning”. In: Advances in Neural Information Processing Systems 30, pp. 6306–6315. +Rastegari, Mohammad et al. (2016). “XNOR-Net: ImageNet Classification Using Binary Convolutional Neural Networks”. In: ECCV 2016. Lecture Notes in Computer Science. Vol. 9908. DOI: 10.1007/978-3-319-46493-0_32. +Rissanen, Jorma and Glen G. Langdon Jr. (1981). “Universal modeling and coding”. In: IEEE Transactions on Information Theory 27.1. DOI: 10.1109/TIT.1981.1056282. +Shannon, Claude E. (1948). “A Mathematical Theory of Communication”. In: The Bell System Technical Journal 27.3. DOI: 10.1002/j.1538-7305.1948.tb01338.x. +Sønderby, Casper Kaae et al. (2016). “Ladder variational autoencoders”. In: Advances in Neural Information Processing Systems 29, pp. 3738–3746. +Theis, Lucas et al. (2017). “Lossy Image Compression with Compressive Autoencoders”. In: Proc. of 5th Int. Conf. on Learning Representations. URL: https://openreview.net/forum? id $=$ rJiNwv9gg. +Wu, Shuang et al. (2018). “Training and Inference with Integers in Deep Neural Networks”. In: Proc. of 6th Int. Conf. on Learning Representations. URL: https://openreview.net/ forum?id $\underline { { \underline { { \mathbf { \Pi } } } } } =$ HJGXzmspb. \ No newline at end of file diff --git a/parse/train/S1zz2i0cY7/S1zz2i0cY7_content_list.json b/parse/train/S1zz2i0cY7/S1zz2i0cY7_content_list.json new file mode 100644 index 0000000000000000000000000000000000000000..fa6c3bb5136f019c4786451c977b1028a6248c26 --- /dev/null +++ b/parse/train/S1zz2i0cY7/S1zz2i0cY7_content_list.json @@ -0,0 +1,1106 @@ +[ + { + "type": "text", + "text": "INTEGER NETWORKS FOR DATA COMPRESSION WITH LATENT-VARIABLE MODELS ", + "text_level": 1, + "bbox": [ + 176, + 98, + 740, + 146 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "Johannes Ballé, Nick Johnston & David Minnen Google Mountain View, CA 94043, USA {jballe,nickj,dminnen}@google.com ", + "bbox": [ + 184, + 169, + 517, + 226 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "ABSTRACT ", + "text_level": 1, + "bbox": [ + 454, + 262, + 544, + 277 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "We consider the problem of using variational latent-variable models for data compression. For such models to produce a compressed binary sequence, which is the universal data representation in a digital world, the latent representation needs to be subjected to entropy coding. Range coding as an entropy coding technique is optimal, but it can fail catastrophically if the computation of the prior differs even slightly between the sending and the receiving side. Unfortunately, this is a common scenario when floating point math is used and the sender and receiver operate on different hardware or software platforms, as numerical round-off is often platform dependent. We propose using integer networks as a universal solution to this problem, and demonstrate that they enable reliable cross-platform encoding and decoding of images using variational models. ", + "bbox": [ + 233, + 299, + 764, + 452 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "1 INTRODUCTION ", + "text_level": 1, + "bbox": [ + 176, + 489, + 336, + 505 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "The task of information transmission in today’s world is largely divided into two separate endeavors: source coding, or the representation of data (such as audio or images) as sequences of bits, and channel coding, representing sequences of bits as analog signals on imperfect, physical channels such as radio waves (Cover and Thomas, 2006). This decoupling has substantial benefits, as the binary representations of arbitrary data can be seamlessly transmitted over arbitrary physical channels by only changing the underlying channel code, rather than having to design a new code for every possible combination of data source and physical channel. Hence, the universal representation of any compressed data today is the binary channel, a representation which consists of a variable number of binary symbols, each with probability $\\textstyle { \\frac { 1 } { 2 } }$ , and no noise (i.e. uncertainty). ", + "bbox": [ + 173, + 518, + 825, + 645 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "As a latent representation, the binary channel unfortunately is a severe restriction compared to the richness of latent representations defined by many variational latent-variable models in the literature (e.g., Kingma and Welling, 2014; Sønderby et al., 2016; van den Oord et al., 2017), and in particular models targeted at data compression (Theis et al., 2017; Ágústsson et al., 2017; Ballé et al., 2018). Variational latent-variable models such as VAEs (Kingma and Welling, 2014) consist of an encoder model distribution $e ( \\pmb { y } \\mid \\pmb { x } )$ bringing the data $_ { \\textbf { \\em x } }$ into a latent representation $\\textbf { { y } }$ , and a decoder model distribution $d ( { \\pmb x } \\mid { \\pmb y } )$ , which represents the data likelihood conditioned on the latents. Given an encoder $e$ , we observe the marginal distribution of latents $m ( \\pmb { y } ) = \\mathbb { E } _ { \\pmb { x } } [ e ( \\pmb { y } \\mid \\pmb { x } ) ]$ , where the expectation runs over the (unknown) data distribution. The prior $p ( \\pmb { y } )$ is a variational estimate of the marginal (Alemi et al., 2018). ", + "bbox": [ + 173, + 651, + 825, + 791 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "By choosing the parametric forms of these distributions and the training objective appropriately, many such models succeed in representing relevant information in the data they are trained for quite compactly (i.e., with a small expected Kullback–Leibler (KL) divergence between the encoder and the prior, $\\begin{array} { r } { \\mathbb { E } _ { \\pmb { x } } D _ { \\mathrm { K L } } [ e \\| p ] ) } \\end{array}$ , and so may be called compressive in a sense. However, not all of them can be directly used for practical data compression, as the representation needs to be further converted into binary (entropy encoded). This conversion is typically performed by range coding, or arithmetic coding (Rissanen and Langdon, 1981). Range coding is asymptotically optimal: the length of the binary sequence quickly converges to the expected KL divergence in bits, for reasonably large sequences (such as, for one image). For this to hold, the following requirements must be satisfied: ", + "bbox": [ + 173, + 797, + 825, + 924 + ], + "page_idx": 0 + }, + { + "type": "image", + "img_path": "images/b6a6648bd111c33790c9a0a1e49addb8c95065b786817c864c1cea610843d505.jpg", + "image_caption": [ + "Figure 1: The same image, decoded with a model computing the prior using integer arithmetic (left), and the same model using floating point arithmetic (right). The image was decoded correctly, beginning in the top-left corner, until floating point round-off error caused a small discrepancy between the sender’s and the receiver’s copy of the prior, at which point the error propagated catastrophically. " + ], + "image_footnote": [], + "bbox": [ + 174, + 102, + 826, + 268 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "• The representation must be discrete-valued, i.e. have a finite number of states, and be noiseless – i.e. the conditional entropy of the encoder must be zero: ", + "bbox": [ + 215, + 363, + 823, + 392 + ], + "page_idx": 1 + }, + { + "type": "equation", + "img_path": "images/430dff0a889fb943e29c48983aae0adcc3a9bda733edb62b41e761ff8e7055b5.jpg", + "text": "$$\nH [ e ] = \\mathbb { E } _ { \\pmb { x } } \\mathbb { E } _ { \\pmb { y } \\sim e } [ - \\log e ( \\pmb { y } \\mid \\pmb { x } ) ] = 0 .\n$$", + "text_format": "latex", + "bbox": [ + 401, + 398, + 655, + 416 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "• All scalar elements of the representation $\\textbf { { y } }$ must be brought into a total ordering, and the prior needs to be written using the chain rule of calculus (as a product of conditionals), as the algorithm can only encode or decode one scalar random variable at a time. ", + "bbox": [ + 215, + 425, + 825, + 467 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "• Both sides of the binary channel (i.e. sender and receiver) must be able to evaluate the prior, and they must have identical instances of it. ", + "bbox": [ + 215, + 472, + 823, + 501 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "The latter point is crucial, as range coding is extremely sensitive to differences in $p$ between sender and receiver – so sensitive, in fact, that even small perturbations due to floating point round-off error can lead to catastrophic error propagation. Unfortunately, numerical round-off is highly platform dependent, and in typical data compression applications, sender and receiver may well employ different hardware or software platforms. Round-off error may even be non-deterministic on one and the same computer. Figure 1 illustrates a decoding failure in a model which computes $p$ using floating point math, caused by such computational non-determinism in sender vs. receiver. Recently, latent-variable models have been explored that employ artificial neural networks (ANNs) to compute hierarchical or autoregressive priors (Sønderby et al., 2016; van den Oord et al., 2017), including some of the best-performing learned image compression models (Ballé et al., 2018; Minnen et al., 2018; Klopp et al., 2018). Because ANNs are typically based on floating point math, these methods are vulnerable to catastrophic failures when deployed on heterogeneous platforms. ", + "bbox": [ + 174, + 512, + 825, + 679 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "To address this problem, and enable use of powerful learned variational models for real-world data compression, we propose to use integer arithmetic in these ANNs, as floating-point arithmetic cannot presently be made deterministic across arbitrary platforms. We formulate a type of quantized neural network we call integer networks, which are specifically targeted at generative and compression models, and at preventing computational non-determinism in computation of the prior. Because full determinism is a feature of many existing, widely used image and video compression methods, we also consider using integer networks end to end for computing the representation itself. ", + "bbox": [ + 174, + 685, + 825, + 784 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "2 INTEGER NEURAL NETWORKS ", + "text_level": 1, + "bbox": [ + 176, + 797, + 454, + 814 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "ANNs are typically composite functions that alternate between linear and elementwise nonlinear operations. One linear operation followed by a nonlinearity is considered one layer of the network. To ensure that such a network can be implemented deterministically on a wide variety of hardware platforms, we restrict all the data types to be integral, and all operations to be implemented either with basic arithmetic or lookup tables. Because integer multiplications (including matrix multiplications or convolutions) increase the dynamic range of the output compared to their inputs, we introduce an additional step after each linear operator, where we divide each of its output by a learned parameter. ", + "bbox": [ + 174, + 825, + 825, + 924 + ], + "page_idx": 1 + }, + { + "type": "image", + "img_path": "images/c91a76ad0addf5cef94c1363679199123dda26f8a6a06cc57fa964c0de157f07.jpg", + "image_caption": [ + "Figure 2: Left: Example nonlinearity implementing a saturating rectifier for 4-bit unsigned integer outputs, given by $g _ { \\mathrm { Q R e L U } } ( v ) = \\mathrm { m a x } ( \\mathrm { m i n } ( v , 1 5 ) , 0 )$ . This nonlinearity can be implemented deterministically either using a lookup table or simply using a clipping operation. The corresponding scaled cumulative of a generalized Gaussian with $\\beta = 4$ used for computing gradients is plotted in cyan, and other choices of $\\beta$ in gray. Right: Example nonlinearity approximating hyperbolic tangent for 4-bit signed integer outputs, given by $\\begin{array} { r } { g _ { \\mathrm { Q t a n h } } ( v ) = Q ( 7 \\operatorname { t a n h } ( \\frac { v } { 1 5 } ) ) } \\end{array}$ . This nonlinearity can be implemented deterministically using a lookup table. The corresponding scaled hyperbolic tangent used for computing gradients is plotted in cyan. " + ], + "image_footnote": [], + "bbox": [ + 178, + 99, + 826, + 261 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "Concretely, we define the relationship between inputs $\\textbf { \\em u }$ and outputs $\\pmb { w }$ of one layer as: ", + "bbox": [ + 171, + 411, + 741, + 428 + ], + "page_idx": 2 + }, + { + "type": "equation", + "img_path": "images/ce8662bd1d7fc1b5a6a25eb34e6f32e599e0b3eee84dbc30fa3074ec7a8052f0.jpg", + "text": "$$\n\\begin{array} { r } { \\pmb { v } = ( \\pmb { H } \\pmb { u } + \\pmb { b } ) \\oslash \\pmb { c } , } \\\\ { \\pmb { w } = g ( \\pmb { v } ) . } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 426, + 431, + 568, + 469 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "In order, the inputs $\\textbf { \\em u }$ are subjected to a linear transform $\\pmb { H }$ (a matrix multiplication, or a convolution); a bias vector $^ { b }$ is added; the result is divided elementwise by a vector $^ c$ , yielding an intermediate result vector $\\textbf { { v } }$ ; and finally, an elementwise nonlinearity $g$ is applied to $\\pmb { v }$ . ", + "bbox": [ + 174, + 473, + 823, + 515 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "The activations $\\textbf { \\em w }$ and all intermediate results, as well as the parameters $H , b$ , and $^ c$ are all defined as integers. However, they may use differing number formats. For $\\pmb { v }$ to be integral, we define $\\oslash$ here to perform rounding division (equivalent to division followed by rounding to the nearest integer). In programming languages such as C, this can be implemented with integer operands $m , n$ as ", + "bbox": [ + 173, + 522, + 825, + 579 + ], + "page_idx": 2 + }, + { + "type": "equation", + "img_path": "images/ed009fa80d9626f5fa79793ff68d2a7c7aa65c2ae0feec3d06db5eac912637f9.jpg", + "text": "$$\n\\begin{array} { r } { m \\oslash n = Q ( \\frac { m } { n } ) = ( m + n / / 2 ) \\ / / n , } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 375, + 584, + 622, + 603 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "where $Q$ rounds to the nearest integer and $/ /$ is floor division; here, the addition can be folded into the bias $^ { b }$ as an optimization. We constrain the linear filter coefficients $\\pmb { H }$ and the bias vector $^ { b }$ to generally use signed integers, and the scaling vector $^ c$ to use unsigned integers. We implement the accumulators of the linear transform with larger bit width than the activations and filter coefficients, in order to reflect the potentially increased dynamic range of multiplicative operations. We assume here that the bias and scaling vectors, as well as the intermediate vector $\\pmb { v }$ , have the same bit width as the accumulators. ", + "bbox": [ + 173, + 607, + 825, + 705 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "The elementwise nonlinearity $g$ must be saturating on both ends of its domain, because integers can only represent finite number ranges. In order to maximize utility of the dynamic range, we scale nonlinearities such that their range matches the bit width of $\\pmb { w }$ , while their domain can be scaled somewhat arbitrarily. Depending on the range of the nonlinearity, the activations $\\textbf { \\em w }$ may use a signed or unsigned number format. For instance, a reasonable choice of number formats and nonlinearity would be: ", + "bbox": [ + 173, + 712, + 825, + 795 + ], + "page_idx": 2 + }, + { + "type": "equation", + "img_path": "images/fe3f008418a79eb1a359d809f9a965ca060c64629f36c823a6b4d86af5b9a8df.jpg", + "text": "$$\n\\begin{array} { c } { { H : 8 \\mathrm { - b i t ~ s i g n e d ~ } } } \\\\ { { b , v : 3 2 \\mathrm { - b i t ~ s i g n e d ~ ( s a m e ~ a s ~ a c c u m u l a t o r ) } } } \\\\ { { c : 3 2 \\mathrm { - b i t ~ u n s i g n e d ~ } } } \\\\ { { w : 8 \\mathrm { - b i t ~ u n s i g n e d ~ } } } \\\\ { { g _ { \\mathrm { Q R e L U } } ( v ) = \\mathrm { m a x } ( \\mathrm { m i n } ( v , 2 5 5 ) , 0 ) } } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 334, + 800, + 658, + 891 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "In this example, the nonlinearity can be implemented with a simple clipping operation. Refer to figure 2, left, for a visualization (for visualization purposes, the figure shows a smaller bit width). ", + "bbox": [ + 173, + 895, + 825, + 924 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "Another example is: ", + "bbox": [ + 176, + 103, + 307, + 118 + ], + "page_idx": 3 + }, + { + "type": "equation", + "img_path": "images/cc95b1f0d28bdf8a82da442b2265bec7cc26d2ececebf5f0d4d876d0774c11d0.jpg", + "text": "$$\n\\begin{array} { r } { g _ { \\mathrm { Q t a n h } } ( v ) = Q \\bigl ( 7 \\operatorname { t a n h } ( \\frac { v } { 1 5 } ) \\bigr ) } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 343, + 198, + 526, + 217 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "Here, the nonlinearity approximates the hyperbolic tangent, a widely used nonlinearity. It may be best implemented using a lookup table (see figure 2, right, for a visualization). We scale its range to fill the 4-bit signed integer number format of $\\pmb { w }$ by multiplying its output with 7. The domain can be scaled somewhat arbitrarily, since $\\pmb { v }$ has a larger bit width than $\\pmb { w }$ . When it is chosen too small, $\\pmb { w }$ may not utilize all integer values, leading to a large quantization error. When it is chosen too large, overflow may occur in $\\pmb { v }$ , or the size of the lookup table may grow too large for practical purposes. Therefore, it is best to determine the input scaling based on the shape of the nonlinearity and the available dynamic range. Here, we simply chose the value of 15 “by eye”, so that the nonlinearity is reasonably well represented with the lookup table (i.e., we made sure that at least two or three input values are mapped to each output value, in order to preserve the approximate shape of the nonlinearity). ", + "bbox": [ + 173, + 223, + 826, + 376 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "3 TRAINING INTEGER NEURAL NETWORKS ", + "text_level": 1, + "bbox": [ + 176, + 391, + 545, + 406 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "To effectively accumulate small gradient signals, we train the networks entirely using floating point computations, rounded to integers after every computational operation, while the backpropagation is done with full floating point precision. More concretely, we define the integer parameters $H , b ,$ and $^ c$ as functions of their floating point equivalents $H ^ { \\prime } , b ^ { \\prime }$ , and $c ^ { \\prime }$ , respectively: ", + "bbox": [ + 173, + 419, + 825, + 476 + ], + "page_idx": 3 + }, + { + "type": "equation", + "img_path": "images/0c5fab5e1106a5f19986b471317b0cace4da7facbec6fe3276f8ec72272a666d.jpg", + "text": "$$\n\\begin{array} { r l } & { \\boldsymbol { H } = \\left[ \\begin{array} { c } { Q ( h _ { 1 } ^ { \\prime } / s ( h _ { 1 } ^ { \\prime } ) ) ) } \\\\ { \\vdots } \\\\ { Q ( h _ { N } ^ { \\prime } / s ( h _ { N } ^ { \\prime } ) ) } \\end{array} \\right] , } \\\\ & { ~ b = Q \\big ( 2 ^ { K } b ^ { \\prime } \\big ) , } \\\\ & { \\boldsymbol { c } = Q \\big ( 2 ^ { K } r ( \\boldsymbol { c } ^ { \\prime } ) \\big ) . } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 411, + 483, + 584, + 583 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "Here, we simply rescale each element of $\\pmb { b } ^ { \\prime }$ using a constant $K$ , which is the bit-width of the kernel $\\pmb { H }$ (e.g. 8-bits in the QReLu networks), and round it to the nearest integer. The reparameterization mapping $r$ is borrowed from Ballé (2018): ", + "bbox": [ + 173, + 588, + 825, + 631 + ], + "page_idx": 3 + }, + { + "type": "equation", + "img_path": "images/f05f14dee3381c0df2a2f328de637c63d32eee81f98dd6f4752b463161af90d9.jpg", + "text": "$$\nr ( c ^ { \\prime } ) = \\mathrm { m a x } \\Big ( c ^ { \\prime } , \\sqrt { 1 + \\epsilon ^ { 2 } } \\Big ) ^ { 2 } - \\epsilon ^ { 2 } .\n$$", + "text_format": "latex", + "bbox": [ + 383, + 637, + 614, + 667 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "When $^ c$ is small, perturbations in $^ c$ can lead to excessively large fluctuations of the quotient (i.e., the input to the nonlinearity). This leads to instabilities in training. $r$ ensures that values of $^ c$ are always positive, while gracefully scaling down gradient magnitudes on $^ c$ near zero. Effectively, the step size on $^ c$ is multiplied with a factor that is approximately linear in $^ c$ (Ballé, 2018). ", + "bbox": [ + 173, + 674, + 825, + 731 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "Before rounding the linear filter coefficients in $\\pmb { H } ^ { \\prime } = [ h _ { 1 } ^ { \\prime } , \\ldots , h _ { N } ^ { \\prime } ] ^ { \\top }$ , we apply a special rescaling function $s$ to each of its filters $\\mathbf { { } } h ^ { \\prime }$ : ", + "bbox": [ + 173, + 736, + 823, + 765 + ], + "page_idx": 3 + }, + { + "type": "equation", + "img_path": "images/57b15f6a4c1f94326ab3a5538cc460fb940a23a55e4b65800eddd132c700c6f4.jpg", + "text": "$$\ns ( h ^ { \\prime } ) = \\mathrm { m a x } \\Big ( ( - 2 ^ { K - 1 } ) ^ { - 1 } \\operatorname* { m i n } _ { i } h _ { i } ^ { \\prime } , ( 2 ^ { K - 1 } - 1 ) ^ { - 1 } \\operatorname* { m a x } _ { i } h _ { i } ^ { \\prime } , \\epsilon \\Big ) .\n$$", + "text_format": "latex", + "bbox": [ + 294, + 770, + 704, + 797 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "$s$ rescales each filter such that at least one of its minimum and maximum coefficients hits one of the dynamic range bounds $( - 2 ^ { K - 1 }$ and $2 ^ { K - 1 } - 1 )$ ), while keeping zero at zero. This represents the finest possible quantization of the filter given its integer representation, and thus maximizes accuracy. To prevent division by zero, we ensure the divisor is larger than or equal to a small constant $\\epsilon$ (for example, $\\epsilon = 1 0 ^ { - \\tilde { 2 } 0 }$ ). ", + "bbox": [ + 174, + 804, + 825, + 875 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "In order to backpropagate gradient signals into the parameters, one cannot simply take gradients of the loss function with respect to $H ^ { \\prime }$ , $\\pmb { b } ^ { \\prime }$ , or $c ^ { \\prime }$ , since the rounding function $Q$ has zero gradients almost everywhere, except for the half-integer positions where the gradient is positive infinity. A simple remedy is to replace the derivative of $Q$ with the identity function, since this is the smoothed gradient across all rounded values. ", + "bbox": [ + 174, + 881, + 825, + 924 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "", + "bbox": [ + 171, + 103, + 823, + 132 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "Further, we treat the rescaling divisor $s$ as if it were a constant. That is, we compute the derivatives of the loss function with respect to $H ^ { \\prime } , b ^ { \\prime }$ , and $c ^ { \\prime }$ as with the chain rule of calculus, but overriding: ", + "bbox": [ + 171, + 138, + 821, + 166 + ], + "page_idx": 4 + }, + { + "type": "equation", + "img_path": "images/9dcdab371e0ac3c891e10b51a1ac5565b11f72012c44c2cab17a641ac3c7d56f.jpg", + "text": "$$\n\\frac { \\partial h } { \\partial h ^ { \\prime } } : = \\frac { 1 } { s ( h ^ { \\prime } ) } , \\qquad \\frac { \\partial b } { \\partial b ^ { \\prime } } : = 2 ^ { K } , \\qquad \\frac { \\partial c } { \\partial c ^ { \\prime } } : = 2 ^ { K } r ^ { \\prime } ( c ^ { \\prime } ) ,\n$$", + "text_format": "latex", + "bbox": [ + 316, + 167, + 679, + 200 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "where $r ^ { \\prime }$ is the replacement gradient function for $r$ as proposed by Ballé (2018). After training is completed, we compute the integer parameters $\\pmb { H }$ , $^ { b }$ and $^ c$ one more time, and from then on use them for evaluation. Note that further reparameterization of the kernels $H ^ { \\prime }$ , such as Sadam (Ballé, 2018), or of the biases $\\pmb { b } ^ { \\prime }$ or scaling parameters $c ^ { \\prime }$ , is possible by simply chaining reparameterizations. ", + "bbox": [ + 173, + 202, + 825, + 258 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "In addition to rounding the parameters, it is necessary to round the activations. To obtain gradients for the rounding division $\\oslash$ , we simply substitute the gradient of floating point division. To estimate gradients for the rounded activation functions, we replace their gradient with the corresponding nonrounded activation function, plotted in cyan in figure 2. In the case of QReLU, the gradient of the clipping operation is a box function, which can lead to training getting stuck, since if activations consistently hit one of the bounds, no gradients are propagated back (this is sometimes called the “dead unit” problem). As a remedy, we replace the gradient instead with ", + "bbox": [ + 173, + 263, + 825, + 362 + ], + "page_idx": 4 + }, + { + "type": "equation", + "img_path": "images/8bd5e5b014f1b8ecea4471bd1b8419a80013ba1ea95ef323be837e2024dba8c0.jpg", + "text": "$$\n\\frac { \\partial g _ { \\mathrm { Q R e L U } } ( v ) } { \\partial v } : = \\exp \\Bigl ( - \\alpha ^ { \\beta } \\Bigl | \\frac { 2 v } { 2 ^ { L } - 1 } - 1 \\Bigr | ^ { \\beta } \\Bigr ) ,\n$$", + "text_format": "latex", + "bbox": [ + 354, + 363, + 642, + 395 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "where $\\begin{array} { r } { \\alpha = \\frac { 1 } { \\beta } \\Gamma \\left( \\frac { 1 } { \\beta } \\right) } \\end{array}$ , and $L$ is the bit width of $\\textbf { \\em w }$ . This function corresponds to a scaled generalized Gaussian probability density with shape parameter $\\beta$ . In this context, we can think of $\\beta$ as a temperature parameter that makes the function converge to the gradient of the clipping operation as $\\beta$ goes to infinity. Although this setting permits an annealing schedule, we simply chose $\\beta = 4$ and obtained good results. The integral of this function is plotted in figure 2 (left) in cyan, along with other choices of $\\beta$ in gray. ", + "bbox": [ + 173, + 396, + 825, + 483 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "4 COMPUTING THE PRIOR WITH INTEGER NETWORKS ", + "text_level": 1, + "bbox": [ + 174, + 497, + 632, + 512 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "Suppose our prior on the latent representation is $p ( \\pmb { y } \\mid z )$ , where $_ z$ summarizes other latent variables of the representation (it may be empty). To apply range coding, we need to impose a total ordering on the elements of $\\textbf { { y } }$ and write it as a chain of conditionals: ", + "bbox": [ + 173, + 526, + 825, + 569 + ], + "page_idx": 4 + }, + { + "type": "equation", + "img_path": "images/3b81a38a72d7a4a93351af7c7855836877083f200b8973e92fd9c159877db3f8.jpg", + "text": "$$\np ( \\pmb { y } \\mid z ) = \\prod _ { i } p ( y _ { i } \\mid \\pmb { y } _ { : i } , z ) ,\n$$", + "text_format": "latex", + "bbox": [ + 401, + 570, + 593, + 602 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "where $\\mathbf { \\nabla } _ { \\mathbf { { \\boldsymbol { y } } } : i }$ denotes the vector of all elements of $\\textbf { { y } }$ preceding the ith. A common assumption is that $p$ is a known distribution, with parameters $\\theta _ { i }$ computed by an $\\operatorname { A N N } g$ : ", + "bbox": [ + 176, + 603, + 823, + 631 + ], + "page_idx": 4 + }, + { + "type": "equation", + "img_path": "images/723b71d7b3fae2ceb75f637c854496d30080baa5379bfedefff53ac018895d1f.jpg", + "text": "$$\np ( \\pmb { y } \\mid z ) = \\prod _ { i } p ( y _ { i } \\mid \\pmb { \\theta } _ { i } ) \\operatorname { w i t h } \\pmb { \\theta } _ { i } = g ( \\pmb { y } _ { : i } , z )\n$$", + "text_format": "latex", + "bbox": [ + 349, + 632, + 647, + 665 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "We simply propose here to compute $g$ deterministically using an integer network, discretizing the parameters $\\pmb \\theta$ to a reasonable accuracy. If $p ( y _ { i } \\mid \\pmb \\theta _ { i } )$ itself cannot be computed deterministically, we can precompute all possible values and express it as a lookup table over $y _ { i }$ and $\\theta _ { i }$ . ", + "bbox": [ + 173, + 665, + 825, + 708 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "As an example, consider the prior used in the image compression model proposed by Ballé et al. (2018), which is a modified Gaussian with scale parameters conditioned on another latent variable: ", + "bbox": [ + 173, + 713, + 820, + 742 + ], + "page_idx": 4 + }, + { + "type": "equation", + "img_path": "images/df784c2bf29be4c8224f794cc3a592fc4cfc5163742ff09ba5cde4b3acc2bc28.jpg", + "text": "$$\np ( \\pmb { y } \\mid z ) = \\prod _ { i } \\left( \\mathcal { N } ( 0 , \\sigma _ { i } ^ { 2 } ) * \\mathcal { U } ( - \\textstyle \\frac { 1 } { 2 } , \\textstyle \\frac { 1 } { 2 } ) \\right) ( y _ { i } ) \\mathrm { w i t h } \\sigma = g ( z ) .\n$$", + "text_format": "latex", + "bbox": [ + 303, + 743, + 692, + 776 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "We reformulate the scale parameters $\\sigma$ as: ", + "bbox": [ + 176, + 776, + 450, + 790 + ], + "page_idx": 4 + }, + { + "type": "equation", + "img_path": "images/002e76f31249019d2bc4dce05d0d356ad9f4f4cec3c7e7e515eee472faad9513.jpg", + "text": "$$\n\\begin{array} { r } { \\sigma _ { i } = \\exp \\Bigl ( \\log \\bigl ( \\sigma _ { \\operatorname* { m i n } } \\bigr ) + \\frac { \\log \\left( \\sigma _ { \\operatorname* { m a x } } \\right) - \\log \\left( \\sigma _ { \\operatorname* { m i n } } \\right) } { L - 1 } \\theta _ { i } \\Bigr ) , } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 351, + 791, + 645, + 818 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "where $\\pmb \\theta = g ( z )$ is computed using an integer network. The last activation function in $g$ is chosen to have integer outputs of $L$ levels in the range $[ 0 , L - 1 ]$ . Constants $\\sigma _ { \\mathrm { m i n } }$ , $\\sigma _ { \\mathrm { m a x } }$ , and $L$ determine the discretized selection of scale parameters used in the model. The discretization is chosen to be logarithmic, as this choice minimizes $\\mathbb { E } _ { \\pmb { x } } D _ { \\mathrm { K L } } [ e \\Vert p ]$ for a given number of levels. ", + "bbox": [ + 174, + 819, + 825, + 876 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "During training, we can simply backpropagate through this reformulation, and through $g$ as described in the previous section. After training, we precompute all possible values of $p$ as a function of $y _ { i }$ and $\\theta _ { i }$ and form a lookup table, while $g$ is implemented with integer arithmetic. ", + "bbox": [ + 174, + 881, + 823, + 924 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "For certain applications, it can be useful not only to be able to deploy a compression model across heterogenous platforms, but to go even further in also ensuring identical reconstructions of the data across platforms. To this end, it can be attractive to make the entire model robust to non-determinism. To use integer networks in the encoder or decoder, one can use the equivalent construction as in (13): define $e$ or $d$ as a known distribution, with parameters computed by an integer network. To allow the use of range coding, we’re especially interested in discrete-valued representations here, such as studied in van den Oord et al. (2017), Jang et al. (2017), Theis et al. (2017), Ágústsson et al. (2017), and Ballé et al. (2018), among others. These approaches typically employ biased gradient estimators. ", + "bbox": [ + 173, + 130, + 825, + 257 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "Jang et al. (2017) and Ágústsson et al. (2017) are concerned with producing gradients for categorical distributions and vector quantization (VQ), respectively. In both methods, the representation is found by evaluating an ANN followed by an arg max function, while useful gradients are obtained by substituting the arg max with a softmax function. Since arg max can be evaluated deterministically in a platform-independent way, and evaluating a softmax function with rounded inputs is feasible, integer networks can be combined with these models without additional modifications. ", + "bbox": [ + 174, + 263, + 825, + 347 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "Theis et al. (2017) and Ballé et al. (2018) differ mostly in the details of interaction between the encoder and the prior. These two approaches are particularly interesting for image compression, as they scale well: Image compression models are often trained with a rate–distortion objective with a Lagrange parameter $\\lambda$ , equivalent to $\\beta$ in the $\\beta$ -VAE objective (Higgins et al., 2017; Alemi et al., 2018). Depending on the parameter, the latent representation carries vastly different amounts of information, and the optimal number of latent states in turn varies with that. While the number of latent states is a hyperparameter that needs to be chosen ahead of time in the categorical/VQ case, the latter two approaches can extend it as needed during training, because the latent states are organized along the real line. Further, for categorical distributions as well as VQ, the required dimensionality of the function computing the parameters grows linearly with the number of latent states due to their use of the arg max function. In the latter two models, the number of states can grow arbitrarily without increasing the dimensionality of $g$ . ", + "bbox": [ + 173, + 353, + 825, + 522 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "Both Theis et al. (2017) and Ballé et al. (2018) use deterministic encoder distributions (i.e. degenerating to delta distributions) during evaluation, but replace them with probabilistic versions for purposes of estimating $\\mathbb { E } _ { \\pmb { x } } D _ { \\mathrm { K L } } [ e \\Vert p ]$ during training. Theis et al. (2017) propose to use the following encoder distribution: ", + "bbox": [ + 174, + 527, + 823, + 583 + ], + "page_idx": 5 + }, + { + "type": "equation", + "img_path": "images/4018eb58a2925f4a556ccf5ddf500c6b355fec0471e7bc348858809e61666513.jpg", + "text": "$$\n\\begin{array} { r } { e ( \\pmb { y } \\mid \\pmb { x } ) = \\mathcal { U } ( \\pmb { y } \\mid Q ( g ( \\pmb { x } ) ) - \\frac { 1 } { 2 } , Q ( g ( \\pmb { x } ) ) + \\frac { 1 } { 2 } ) , } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 341, + 582, + 655, + 601 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "where $\\mathcal { U }$ is the uniform distribution and $g$ is an ANN. They replace the gradient of the quantizer with the identity. During evaluation, $\\pmb { y } = Q ( g ( \\pmb { x } ) )$ is used as the representation. Ballé et al. (2018) use the following distribution during training: ", + "bbox": [ + 178, + 601, + 823, + 642 + ], + "page_idx": 5 + }, + { + "type": "equation", + "img_path": "images/2896319ede8c255b82cd7a7f3de1996e7edb3bb2da063222a41b0132c3e9bb4d.jpg", + "text": "$$\n\\begin{array} { r } { e ( \\pmb { y } \\mid \\pmb { x } ) = \\mathcal { U } ( \\pmb { y } \\mid g ( \\pmb { x } ) - \\frac { 1 } { 2 } , g ( \\pmb { x } ) + \\frac { 1 } { 2 } ) , } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 366, + 645, + 630, + 665 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "which makes $\\textbf { { y } }$ shift-invariant. During evaluation, they determine the representation as ${ \\textbf { 3 } } =$ $Q ( g ( \\pmb { x } ) - \\pmb { o } )$ , where $^ o$ is a sub-integer offset chosen such that the mode (or, if it cannot be estimated easily, the median) of the distribution is centered on one of the quantization bins. ", + "bbox": [ + 174, + 667, + 825, + 709 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "If $g$ is implemented with integer networks, the latter approach becomes equivalent to the former, because $g$ then inherently computes integer outputs, and this is effectively equivalent to the quantization in (16). However, we’ve found that training with this construction leads to instabilities, such that the prior distribution never converges to a stable set of parameters. The reason may be that with quantization in $e$ , the marginal $m ( \\bar { \\pmb { y } } ) = \\mathbb { E } _ { \\pmb { x } } e ( \\pmb { y } \\mid \\pmb { x } )$ resembles a piecewise constant function, while the prior $p$ must be forced to be smooth, or $\\mathbb { E } _ { \\pmb { x } } D _ { \\mathrm { K L } } [ e \\Vert p ]$ would not yield any useful gradients. Because the prior is a variational approximation of the marginal, this means that the prior must be regularized (which we did not attempt here – we used the nonparametric density model described in Ballé et al. (2018)). On the other hand, when using (17) without quantization, the marginal is typically a smooth density, and the prior can approximate it closely without the need for regularization. ", + "bbox": [ + 173, + 715, + 825, + 856 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "As a remedy for the instabilities, we propose the following trick: We simply use (17) during training, but define the last layer of $g$ without a nonlinearity and with floating point division, such that the representation is ", + "bbox": [ + 174, + 862, + 825, + 905 + ], + "page_idx": 5 + }, + { + "type": "equation", + "img_path": "images/dd15f528d275a906ce34c1944e5d748cc721f84d236c3274ac353e4e1fdc1e1e.jpg", + "text": "$$\n\\begin{array} { r } { e ( \\pmb { y } \\mid \\pmb { x } ) = \\mathcal { U } ( \\pmb { y } \\mid ( \\pmb { H } \\pmb { u } + \\pmb { b } ) / c - \\frac { 1 } { 2 } , ( \\pmb { H } \\pmb { u } + \\pmb { b } ) / c + \\frac { 1 } { 2 } ) , } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 312, + 906, + 684, + 926 + ], + "page_idx": 5 + }, + { + "type": "image", + "img_path": "images/4169eee3870fc1b30ed28c0ec26e0fa7b41d213ef75cb24efacfc3951184acc1.jpg", + "image_caption": [ + "Figure 3: Rate–distortion performance of image compression models with integer priors (left and up is better). Left: performance of Ballé et al. (2018) model vs. the same model with an integer prior. The performance is identical, but the latter can be reliably deployed across different hardware platforms. Right: performance of Ballé (2018) ReLU model with 128 filters per layer vs. the same model, with integer transforms and QReLU activation functions and 128 or 256 filters per layer. The approximation capacity of integer networks is diminished vs. floating point networks, but doubling the number of filters per layer more than compensates for the loss. " + ], + "image_footnote": [], + "bbox": [ + 174, + 98, + 826, + 301 + ], + "page_idx": 6 + }, + { + "type": "table", + "img_path": "images/de3d5491ab19c9ba29340ad9eca07f4406914fc7c8869f9143cf02cb37d1a068.jpg", + "table_caption": [], + "table_footnote": [ + "CPU 1: Intel Xeon E5-1650 GPU 1: NVIDIA Titan X (Pascal) CPU 2: Intel Xeon E5-2690 GPU 2: NVIDIA Titan X (Maxwell) " + ], + "table_body": "
compressed ondecompressed onCPU 1CPU 1CPU 1GPU 1CPU 1CPU 2CPU 1GPU 2GPU 1CPU 1GPU 1GPU 1GPU 1CPU 2GPU 1GPU 2
Tecnick dataset:100 RGB i3 images of 1200 × 1200 pixels
Ballé et al. (2018)ditto, integer prior0%0%71%0%54%0%66%0%63%0%41%0%59%0%34%0%
CLIC dataset: 2021 RGB images of various pixel sizes
Ballé et al. (2018)ditto, integer prior0%0%78%0%68%0%78%0%77%0%52%0%78%0%54%0%
", + "bbox": [ + 171, + 426, + 826, + 551 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "Table 1: Decompression failure rates due to floating point round-off error on Tecnick and CLIC image datasets. When compressing and decompressing on the same CPU platform (first column), the Ballé et al. (2018) model decompresses all images correctly. However, when compressing on a GPU or decompressing on a different platform, a large percentage of the images fail to be decoded correctly. Implementing the prior of the same model using integer networks ensures correct decompression across all tested platforms. ", + "bbox": [ + 173, + 594, + 825, + 679 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "during training, where $\\textbf { \\em u }$ is the input to the last layer and $/$ represents elementwise floating point division, and ", + "bbox": [ + 171, + 705, + 823, + 733 + ], + "page_idx": 6 + }, + { + "type": "equation", + "img_path": "images/04fafd8d6ad8dbb52c1f821552ac363dfe9dae5846aa8167bb2cfaafc5fbd817.jpg", + "text": "$$\n{ \\pmb y } = Q \\big ( ( { \\pmb H } { \\pmb u } + { \\pmb b } ) / c - o \\big )\n$$", + "text_format": "latex", + "bbox": [ + 408, + 731, + 588, + 751 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "during evaluation. This can be rewritten strictly using integer arithmetic as: ", + "bbox": [ + 173, + 752, + 668, + 767 + ], + "page_idx": 6 + }, + { + "type": "equation", + "img_path": "images/a63f5230a7295667dafce708a4401fd4832872f60756398bec1621b656ecb170.jpg", + "text": "$$\n\\pmb { y } = \\left( \\pmb { H } \\pmb { u } + \\pmb { b } - \\pmb { Q } ( \\pmb { o } \\odot \\pmb { c } ) \\right) \\oslash \\pmb { c } ,\n$$", + "text_format": "latex", + "bbox": [ + 387, + 772, + 609, + 791 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "where $\\odot$ represents elementwise multiplication, and the rounded product can be folded into the bias $^ { b }$ as an optimization. This way, the representation is computed deterministically during evaluation, while during training, the marginal still resembles a smooth function, such that no regularization of the prior is necessary. ", + "bbox": [ + 174, + 796, + 825, + 853 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "6 EXPERIMENTAL RESULTS ", + "text_level": 1, + "bbox": [ + 176, + 867, + 416, + 883 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "In order to assess the efficacy of integer networks to enable platform-independent compression and decompression, we re-implemented the image compression model described in Ballé et al. (2018), which is defined with a hyperprior. We compare the original model with a version in which the network $h _ { s }$ computing the prior is replaced with an integer network. We used the same network architectures in terms of number of layers, filters, etc., and the same training parameters as in the original paper. The rate–distortion performance of the model was assessed on Kodak (1993) and is shown in figure 3 (left). The modified model performs identically to the original model, as it maps out the same rate–distortion frontier. However, it is much more robust to cross-platform compression and decompression (table 1). We tested compression and decompression on four different platforms (two CPU platforms and two GPU platforms) and two different datasets, Tecnick (Asuni and Giachetti, 2014) and CLIC (2018). The original model fails to correctly decompress more than half of the images on average when compression and decompression occurs on different platforms. The modified model brings the failure rate down to $0 \\%$ in all cases. ", + "bbox": [ + 173, + 895, + 823, + 924 + ], + "page_idx": 6 + }, + { + "type": "image", + "img_path": "images/a865c9ab4174bfbf3d830d1396893dbffeb412c482ec838ff0e3400b2afccbbb.jpg", + "image_caption": [ + "Figure 4: Loss function across training of Ballé (2018) model, evaluated on Kodak (1993), corresponding to the rate point at approximately 0.7 bits per pixel in figure 3, right panel. Generally, training of integer models takes somewhat longer and is somewhat noisier than training of floating point models. When matching floating point and integer networks for asymptotic performance (128 vs. 256 filters, respectively), integer networks take longer to converge (likely due to their larger number of filters). When matching by number of filters (128), it appears that the training time to convergence is about the same, but the performance ends up worse. " + ], + "image_footnote": [], + "bbox": [ + 176, + 98, + 828, + 286 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "", + "bbox": [ + 174, + 430, + 825, + 583 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "It should be noted that the decreased accuracy of integer arithmetic generally leads to a lower approximation capacity than with floating point networks. We found that when implementing the models described in Ballé (2018) using integer networks throughout, the rate–distortion performance decreased (figure 3, right). The loss in approximation capacity can be compensated for by increasing the number of filters per layer. Note that this appears to increase the training time necessary for convergence (figure 4). However, note that increasing the number of parameters may not necessarily increase the size of the model parameters or the runtime, as the storage requirements for integer parameters (kernels, biases, etc.) are lower than for floating point parameters, and integer arithmetic is computationally less complex than floating point arithmetic in general. ", + "bbox": [ + 174, + 590, + 825, + 715 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "7 DISCUSSION ", + "text_level": 1, + "bbox": [ + 176, + 733, + 310, + 750 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "There is a large body of recent research considering quantization of ANNs mostly targeted at image recognition applications. Courbariaux et al. (2015) train classification networks on lower precision multiplication. Hubara et al. (2016) and Rastegari et al. (2016) perform quantization down to bilevel (i.e., 1-bit integers) at inference time to reduce computation in classification networks. More recently, Wu et al. (2018) and others have used quantization during training as well as inference, to reduce computation on gradients as well as activations, and Baluja et al. (2018) use non-uniform quantization to remove floating point computation, replacing it completely with integer offsets into an integer lookup table. ", + "bbox": [ + 174, + 762, + 825, + 875 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "While the quantization of neural networks is not a new topic, the results from the above techniques focus almost exclusively on classification networks. Denton et al. (2014), Han et al. (2016), and others have demonstrated that these types of networks are particularly robust to capacity reduction. ", + "bbox": [ + 176, + 882, + 823, + 924 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "Models used for image compression, like many generative models, are much more sensitive to capacity constraints since they tend to underfit. As illustrated in Ballé (2018) and in figure 3 (right), this class of models is much more sensitive to reductions of capacity, both in terms of network size and the expressive power of the activation function. This may explain why our experiments with post-hoc quantization of network activations have never yielded competitive results for this class of model (not shown). ", + "bbox": [ + 174, + 103, + 825, + 186 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "As illustrated in figure 1 and table 1, small floating point inconsistencies in variational latent-variable models can have disastrous effects when we use range coding to employ the models for data compression across different hardware or software platforms. The reader may wonder whether there exists other entropy coding algorithms that can convert discrete latent-variable representations into a binary representation, and which do not suffer from a sensitivity to perturbations in the probability model. Unfortunately, such an algorithm would always produce suboptimal results for the following reason. The source coding theorem (Shannon, 1948) establishes a lower bound on the average length of the resulting bit sequences, which range coding achieves asymptotically (i.e. for long bit sequences). The lower bound is given by the cross entropy between the marginal and the prior: ", + "bbox": [ + 173, + 194, + 825, + 320 + ], + "page_idx": 8 + }, + { + "type": "equation", + "img_path": "images/786031a35590cd81be96ba2593d76313da6cd3b82795e6b00aa6db14c740d1e3.jpg", + "text": "$$\n\\mathbb { E } _ { { \\pmb { y } } \\sim m } [ | b ( { \\pmb { y } } ) | ] \\geq \\mathbb { E } _ { { \\pmb { y } } \\sim m } [ - \\log _ { 2 } p ( { \\pmb { y } } \\mid { \\pmb { \\theta } } ) ] ,\n$$", + "text_format": "latex", + "bbox": [ + 362, + 323, + 633, + 340 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "where $\\left| b ( \\boldsymbol { y } ) \\right|$ is the length of the binary representation of $\\textbf { { y } }$ . If an entropy coding algorithm tolerates error in the values of $p ( \\pmb { y } \\mid \\pmb { \\theta } )$ , this means it must operate under the assumption of identical probability values for a range of values of $\\pmb { \\theta } -$ in other words, discretize the probability values. Since the cross entropy is minimal only for $p ( \\pmb { y } \\mid \\pmb { \\theta } ) = m ( \\pmb { y } )$ (for all $\\textbf { { y } }$ ), this would impose a new lower bound on $\\left| b ( \\pmb { y } ) \\right|$ given by the cross entropy with the discretized probabilities, which is greater or equal to the cross entropy given above. Thus, the more tolerant the entropy coding method is to errors in $p$ , the further it deviates from optimal performance. Moreover, it is hard to establish tolerance intervals for probability values computed with floating point arithmetic, in particular when ANNs are used, due to error propagation. Hence, it is generally difficult to provide guarantees that a given tolerance will not be exceeded. For similar reasons, current commercial compression methods model probabilities exclusively in the discrete domain (e.g., using lookup tables; Marpe et al., 2003). ", + "bbox": [ + 173, + 342, + 825, + 496 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "Our approach to neural network quantization is the first we are aware of which specifically addresses non-deterministic computation, as opposed to computational complexity. It enables a variety of possible variational model architectures and distributions to be effectively used for platformindependent data compression. While we aren’t assessing its effects on computational complexity here, it is conceivable that complexity reductions can also be achieved with the same approach; this is a topic for future work. ", + "bbox": [ + 174, + 502, + 825, + 585 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "REFERENCES ", + "text_level": 1, + "bbox": [ + 174, + 601, + 285, + 616 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "Ágústsson, Eiríkur Þór et al. (2017). “Soft-to-Hard Vector Quantization for End-to-End Learning Compressible Representations”. In: Advances in Neural Information Processing Systems 30, pp. 1141–1151. \nAlemi, Alexander A. et al. (2018). “Fixing a Broken ELBO”. In: arXiv e-prints. arXiv: 1711 . 00464. \nAsuni, N. and A. Giachetti (2014). “TESTIMAGES: A large-scale archive for testing visual devices and basic image processing algorithms”. In: Proc. of STAG: Smart Tools and Apps for Graphics. DOI: 10.2312/stag.20141242. \nBallé, Johannes (2018). “Efficient Nonlinear Transforms for Lossy Image Compression”. In: Picture Coding Symposium (PCS), 2018. \nBallé, Johannes et al. (2018). “Variational image compression with a scale hyperprior”. In: Proc. of 6th Int. Conf. on Learning Representations. URL: https://openreview.net/forum? id $=$ rkcQFMZRb. \nBaluja, Shumeet et al. (2018). “No Multiplication? No Floating Point? No Problem! Training Networks for Efficient Inference”. In: arXiv e-prints. arXiv: 1809.09244. \nCLIC: Challenge on Learned Image Compression (2018). Mobile and Professional Datasets. URL: http://www.compression.cc/2018/challenge. \nCourbariaux, Matthieu, Jean-Pierre David, and Yoshua Bengio (2015). “Training deep neural networks with low precision multiplications”. In: arXiv e-prints. Presented as a workshop contribution at the 3rd Int. Conf. on Learning Representations. arXiv: 1412.7024. \nCover, Thomas M. and Joy A. Thomas (2006). Elements of Information Theory. 2nd ed. Wiley. \nDenton, Emily et al. (2014). “Exploiting Linear Structure Within Convolutional Networks for Efficient Evaluation”. In: Advances in Neural Information Processing Systems 27, pp. 1269–1277. \nHan, Song, Huizi Mao, and William J. Dally (2016). “Deep Compression: Compressing Deep Neural Network with Pruning, Trained Quantization and Huffman Coding”. In: arXiv e-prints. Presented at the 4th Int. Conf. on Learning Representations. arXiv: 1510.00149. \nHiggins, Irina et al. (2017). “ $\\beta$ -VAE: Learning Basic Visual Concepts with a Constrained Variational Framework”. In: Proc. of 5th Int. Conf. on Learning Representations. URL: https : //openreview.net/forum?id $=$ Sy2fzU9gl. \nHubara, Itay et al. (2016). “Binarized Neural Networks”. In: Advances in Neural Information Processing Systems 29, pp. 4107–4115. \nJang, Eric, Shixiang Gu, and Ben Poole (2017). “Categorical Reparameterization with GumbelSoftmax”. In: Proc. of 5th Int. Conf. on Learning Representations. URL: https : / / openreview.net/forum?id $\\underline { { \\underline { { \\mathbf { \\Pi } } } } } =$ rkE3y85ee. \nKingma, Diederik P. and Max Welling (2014). “Auto-Encoding Variational Bayes”. In: arXiv eprints. Presented at the 2nd Int. Conf. on Learning Representations. arXiv: 1312.6114. \nKlopp, Jan P. et al. (2018). “Learning a Code-Space Predictor by Exploiting Intra-ImageDependencies”. In: Proc. of 29th British Machine Vision Conference. \nKodak, Eastman (1993). Kodak Lossless True Color Image Suite (PhotoCD PCD0992). URL: http://r0k.us/graphics/kodak/. \nMarpe, Detlev, Heiko Schwarz, and Thomas Wiegand (2003). “Context-Based Adaptive Binary Arithmetic Coding in the H.264/AVC Video Compression Standard”. In: IEEE Transactions on Circuits and Systems for Video Technology 13.7. DOI: 10.1109/TCSVT.2003.815173. \nMinnen, David, Johannes Ballé, and George Toderici (2018). “Joint Autoregressive and Hierarchical Priors for Learned Image Compression”. In: Advances in Neural Information Processing Systems 31, pp. 10771–10780. \nOord, Aäron van den, Oriol Vinyals, and Koray Kavukcuoglu (2017). “Neural Discrete Representation Learning”. In: Advances in Neural Information Processing Systems 30, pp. 6306–6315. \nRastegari, Mohammad et al. (2016). “XNOR-Net: ImageNet Classification Using Binary Convolutional Neural Networks”. In: ECCV 2016. Lecture Notes in Computer Science. Vol. 9908. DOI: 10.1007/978-3-319-46493-0_32. \nRissanen, Jorma and Glen G. Langdon Jr. (1981). “Universal modeling and coding”. In: IEEE Transactions on Information Theory 27.1. DOI: 10.1109/TIT.1981.1056282. \nShannon, Claude E. (1948). “A Mathematical Theory of Communication”. In: The Bell System Technical Journal 27.3. DOI: 10.1002/j.1538-7305.1948.tb01338.x. \nSønderby, Casper Kaae et al. (2016). “Ladder variational autoencoders”. In: Advances in Neural Information Processing Systems 29, pp. 3738–3746. \nTheis, Lucas et al. (2017). “Lossy Image Compression with Compressive Autoencoders”. In: Proc. of 5th Int. Conf. on Learning Representations. URL: https://openreview.net/forum? id $=$ rJiNwv9gg. \nWu, Shuang et al. (2018). “Training and Inference with Integers in Deep Neural Networks”. In: Proc. of 6th Int. Conf. on Learning Representations. URL: https://openreview.net/ forum?id $\\underline { { \\underline { { \\mathbf { \\Pi } } } } } =$ HJGXzmspb. ", + "bbox": [ + 173, + 631, + 826, + 924 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "", + "bbox": [ + 171, + 95, + 826, + 691 + ], + "page_idx": 9 + } +] \ No newline at end of file diff --git a/parse/train/S1zz2i0cY7/S1zz2i0cY7_middle.json b/parse/train/S1zz2i0cY7/S1zz2i0cY7_middle.json new file mode 100644 index 0000000000000000000000000000000000000000..e409473b48727005031228584da99138a3b3123b --- /dev/null +++ b/parse/train/S1zz2i0cY7/S1zz2i0cY7_middle.json @@ -0,0 +1,30348 @@ +{ + "pdf_info": [ + { + "preproc_blocks": [ + { + "type": "title", + "bbox": [ + 108, + 78, + 453, + 116 + ], + "lines": [ + { + "bbox": [ + 105, + 78, + 457, + 97 + ], + "spans": [ + { + "bbox": [ + 105, + 78, + 457, + 97 + ], + "score": 1.0, + "content": "INTEGER NETWORKS FOR DATA COMPRESSION", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 106, + 98, + 363, + 117 + ], + "spans": [ + { + "bbox": [ + 106, + 98, + 363, + 117 + ], + "score": 1.0, + "content": "WITH LATENT-VARIABLE MODELS", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5 + }, + { + "type": "text", + "bbox": [ + 113, + 134, + 317, + 179 + ], + "lines": [ + { + "bbox": [ + 111, + 135, + 318, + 147 + ], + "spans": [ + { + "bbox": [ + 111, + 135, + 318, + 147 + ], + "score": 1.0, + "content": "Johannes Ballé, Nick Johnston & David Minnen", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 111, + 146, + 145, + 159 + ], + "spans": [ + { + "bbox": [ + 111, + 146, + 145, + 159 + ], + "score": 1.0, + "content": "Google", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 111, + 157, + 247, + 169 + ], + "spans": [ + { + "bbox": [ + 111, + 157, + 247, + 169 + ], + "score": 1.0, + "content": "Mountain View, CA 94043, USA", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 113, + 168, + 312, + 181 + ], + "spans": [ + { + "bbox": [ + 113, + 168, + 312, + 181 + ], + "score": 1.0, + "content": "{jballe,nickj,dminnen}@google.com", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 3.5 + }, + { + "type": "title", + "bbox": [ + 278, + 208, + 333, + 220 + ], + "lines": [ + { + "bbox": [ + 276, + 207, + 336, + 222 + ], + "spans": [ + { + "bbox": [ + 276, + 207, + 336, + 222 + ], + "score": 1.0, + "content": "ABSTRACT", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 6 + }, + { + "type": "text", + "bbox": [ + 143, + 237, + 468, + 358 + ], + "lines": [ + { + "bbox": [ + 142, + 237, + 469, + 250 + ], + "spans": [ + { + "bbox": [ + 142, + 237, + 469, + 250 + ], + "score": 1.0, + "content": "We consider the problem of using variational latent-variable models for data com-", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 141, + 249, + 469, + 261 + ], + "spans": [ + { + "bbox": [ + 141, + 249, + 469, + 261 + ], + "score": 1.0, + "content": "pression. For such models to produce a compressed binary sequence, which is the", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 142, + 260, + 469, + 272 + ], + "spans": [ + { + "bbox": [ + 142, + 260, + 469, + 272 + ], + "score": 1.0, + "content": "universal data representation in a digital world, the latent representation needs to", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 141, + 271, + 469, + 283 + ], + "spans": [ + { + "bbox": [ + 141, + 271, + 469, + 283 + ], + "score": 1.0, + "content": "be subjected to entropy coding. Range coding as an entropy coding technique is", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 141, + 281, + 470, + 294 + ], + "spans": [ + { + "bbox": [ + 141, + 281, + 470, + 294 + ], + "score": 1.0, + "content": "optimal, but it can fail catastrophically if the computation of the prior differs even", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 142, + 293, + 470, + 304 + ], + "spans": [ + { + "bbox": [ + 142, + 293, + 470, + 304 + ], + "score": 1.0, + "content": "slightly between the sending and the receiving side. Unfortunately, this is a com-", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 141, + 304, + 470, + 316 + ], + "spans": [ + { + "bbox": [ + 141, + 304, + 470, + 316 + ], + "score": 1.0, + "content": "mon scenario when floating point math is used and the sender and receiver operate", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 141, + 315, + 469, + 326 + ], + "spans": [ + { + "bbox": [ + 141, + 315, + 469, + 326 + ], + "score": 1.0, + "content": "on different hardware or software platforms, as numerical round-off is often plat-", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 141, + 325, + 470, + 338 + ], + "spans": [ + { + "bbox": [ + 141, + 325, + 470, + 338 + ], + "score": 1.0, + "content": "form dependent. We propose using integer networks as a universal solution to this", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 141, + 336, + 469, + 349 + ], + "spans": [ + { + "bbox": [ + 141, + 336, + 469, + 349 + ], + "score": 1.0, + "content": "problem, and demonstrate that they enable reliable cross-platform encoding and", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 142, + 348, + 325, + 360 + ], + "spans": [ + { + "bbox": [ + 142, + 348, + 325, + 360 + ], + "score": 1.0, + "content": "decoding of images using variational models.", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 12 + }, + { + "type": "title", + "bbox": [ + 108, + 388, + 206, + 400 + ], + "lines": [ + { + "bbox": [ + 105, + 387, + 208, + 403 + ], + "spans": [ + { + "bbox": [ + 105, + 387, + 208, + 403 + ], + "score": 1.0, + "content": "1 INTRODUCTION", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 18 + }, + { + "type": "text", + "bbox": [ + 106, + 411, + 505, + 511 + ], + "lines": [ + { + "bbox": [ + 106, + 411, + 505, + 423 + ], + "spans": [ + { + "bbox": [ + 106, + 411, + 505, + 423 + ], + "score": 1.0, + "content": "The task of information transmission in today’s world is largely divided into two separate endeavors:", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 423, + 505, + 435 + ], + "spans": [ + { + "bbox": [ + 105, + 423, + 505, + 435 + ], + "score": 1.0, + "content": "source coding, or the representation of data (such as audio or images) as sequences of bits, and chan-", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 106, + 434, + 505, + 446 + ], + "spans": [ + { + "bbox": [ + 106, + 434, + 505, + 446 + ], + "score": 1.0, + "content": "nel coding, representing sequences of bits as analog signals on imperfect, physical channels such", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 104, + 443, + 505, + 458 + ], + "spans": [ + { + "bbox": [ + 104, + 443, + 505, + 458 + ], + "score": 1.0, + "content": "as radio waves (Cover and Thomas, 2006). This decoupling has substantial benefits, as the binary", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 455, + 504, + 468 + ], + "spans": [ + { + "bbox": [ + 105, + 455, + 504, + 468 + ], + "score": 1.0, + "content": "representations of arbitrary data can be seamlessly transmitted over arbitrary physical channels by", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 466, + 505, + 480 + ], + "spans": [ + { + "bbox": [ + 105, + 466, + 505, + 480 + ], + "score": 1.0, + "content": "only changing the underlying channel code, rather than having to design a new code for every pos-", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 477, + 504, + 490 + ], + "spans": [ + { + "bbox": [ + 105, + 477, + 504, + 490 + ], + "score": 1.0, + "content": "sible combination of data source and physical channel. Hence, the universal representation of any", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 488, + 505, + 501 + ], + "spans": [ + { + "bbox": [ + 105, + 488, + 505, + 501 + ], + "score": 1.0, + "content": "compressed data today is the binary channel, a representation which consists of a variable number", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 106, + 498, + 406, + 513 + ], + "spans": [ + { + "bbox": [ + 106, + 499, + 271, + 513 + ], + "score": 1.0, + "content": "of binary symbols, each with probability", + "type": "text" + }, + { + "bbox": [ + 271, + 498, + 278, + 512 + ], + "score": 0.85, + "content": "\\textstyle { \\frac { 1 } { 2 } }", + "type": "inline_equation" + }, + { + "bbox": [ + 278, + 499, + 406, + 513 + ], + "score": 1.0, + "content": ", and no noise (i.e. uncertainty).", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 23 + }, + { + "type": "text", + "bbox": [ + 106, + 516, + 505, + 627 + ], + "lines": [ + { + "bbox": [ + 106, + 516, + 505, + 529 + ], + "spans": [ + { + "bbox": [ + 106, + 516, + 505, + 529 + ], + "score": 1.0, + "content": "As a latent representation, the binary channel unfortunately is a severe restriction compared to the", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 106, + 528, + 505, + 539 + ], + "spans": [ + { + "bbox": [ + 106, + 528, + 505, + 539 + ], + "score": 1.0, + "content": "richness of latent representations defined by many variational latent-variable models in the literature", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 538, + 506, + 551 + ], + "spans": [ + { + "bbox": [ + 105, + 538, + 506, + 551 + ], + "score": 1.0, + "content": "(e.g., Kingma and Welling, 2014; Sønderby et al., 2016; van den Oord et al., 2017), and in particular", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 550, + 505, + 563 + ], + "spans": [ + { + "bbox": [ + 105, + 550, + 505, + 563 + ], + "score": 1.0, + "content": "models targeted at data compression (Theis et al., 2017; Ágústsson et al., 2017; Ballé et al., 2018).", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 106, + 561, + 505, + 574 + ], + "spans": [ + { + "bbox": [ + 106, + 561, + 505, + 574 + ], + "score": 1.0, + "content": "Variational latent-variable models such as VAEs (Kingma and Welling, 2014) consist of an encoder", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 572, + 505, + 585 + ], + "spans": [ + { + "bbox": [ + 105, + 572, + 182, + 585 + ], + "score": 1.0, + "content": "model distribution", + "type": "text" + }, + { + "bbox": [ + 182, + 572, + 218, + 584 + ], + "score": 0.92, + "content": "e ( \\pmb { y } \\mid \\pmb { x } )", + "type": "inline_equation" + }, + { + "bbox": [ + 218, + 572, + 289, + 585 + ], + "score": 1.0, + "content": "bringing the data", + "type": "text" + }, + { + "bbox": [ + 290, + 574, + 297, + 582 + ], + "score": 0.76, + "content": "_ { \\textbf { \\em x } }", + "type": "inline_equation" + }, + { + "bbox": [ + 298, + 572, + 408, + 585 + ], + "score": 1.0, + "content": "into a latent representation", + "type": "text" + }, + { + "bbox": [ + 408, + 574, + 415, + 583 + ], + "score": 0.78, + "content": "\\textbf { { y } }", + "type": "inline_equation" + }, + { + "bbox": [ + 416, + 572, + 505, + 585 + ], + "score": 1.0, + "content": ", and a decoder model", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 106, + 583, + 505, + 595 + ], + "spans": [ + { + "bbox": [ + 106, + 583, + 155, + 595 + ], + "score": 1.0, + "content": "distribution", + "type": "text" + }, + { + "bbox": [ + 155, + 583, + 190, + 595 + ], + "score": 0.92, + "content": "d ( { \\pmb x } \\mid { \\pmb y } )", + "type": "inline_equation" + }, + { + "bbox": [ + 191, + 583, + 505, + 595 + ], + "score": 1.0, + "content": ", which represents the data likelihood conditioned on the latents. Given an en-", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 592, + 506, + 608 + ], + "spans": [ + { + "bbox": [ + 105, + 592, + 130, + 608 + ], + "score": 1.0, + "content": "coder", + "type": "text" + }, + { + "bbox": [ + 131, + 596, + 136, + 604 + ], + "score": 0.63, + "content": "e", + "type": "inline_equation" + }, + { + "bbox": [ + 137, + 592, + 324, + 608 + ], + "score": 1.0, + "content": ", we observe the marginal distribution of latents", + "type": "text" + }, + { + "bbox": [ + 325, + 594, + 412, + 606 + ], + "score": 0.93, + "content": "m ( \\pmb { y } ) = \\mathbb { E } _ { \\pmb { x } } [ e ( \\pmb { y } \\mid \\pmb { x } ) ]", + "type": "inline_equation" + }, + { + "bbox": [ + 413, + 592, + 506, + 608 + ], + "score": 1.0, + "content": ", where the expectation", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 605, + 505, + 618 + ], + "spans": [ + { + "bbox": [ + 105, + 605, + 321, + 618 + ], + "score": 1.0, + "content": "runs over the (unknown) data distribution. The prior", + "type": "text" + }, + { + "bbox": [ + 321, + 605, + 341, + 617 + ], + "score": 0.91, + "content": "p ( \\pmb { y } )", + "type": "inline_equation" + }, + { + "bbox": [ + 341, + 605, + 505, + 618 + ], + "score": 1.0, + "content": "is a variational estimate of the marginal", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 106, + 616, + 189, + 627 + ], + "spans": [ + { + "bbox": [ + 106, + 616, + 189, + 627 + ], + "score": 1.0, + "content": "(Alemi et al., 2018).", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 32.5 + }, + { + "type": "text", + "bbox": [ + 106, + 632, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 632, + 505, + 646 + ], + "spans": [ + { + "bbox": [ + 105, + 632, + 505, + 646 + ], + "score": 1.0, + "content": "By choosing the parametric forms of these distributions and the training objective appropriately,", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 643, + 505, + 657 + ], + "spans": [ + { + "bbox": [ + 105, + 643, + 505, + 657 + ], + "score": 1.0, + "content": "many such models succeed in representing relevant information in the data they are trained for quite", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 655, + 506, + 667 + ], + "spans": [ + { + "bbox": [ + 105, + 655, + 506, + 667 + ], + "score": 1.0, + "content": "compactly (i.e., with a small expected Kullback–Leibler (KL) divergence between the encoder and", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 106, + 666, + 506, + 679 + ], + "spans": [ + { + "bbox": [ + 106, + 666, + 145, + 679 + ], + "score": 1.0, + "content": "the prior,", + "type": "text" + }, + { + "bbox": [ + 145, + 666, + 201, + 678 + ], + "score": 0.93, + "content": "\\begin{array} { r } { \\mathbb { E } _ { \\pmb { x } } D _ { \\mathrm { K L } } [ e \\| p ] ) } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 202, + 666, + 506, + 679 + ], + "score": 1.0, + "content": ", and so may be called compressive in a sense. However, not all of them can", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 104, + 676, + 506, + 691 + ], + "spans": [ + { + "bbox": [ + 104, + 676, + 506, + 691 + ], + "score": 1.0, + "content": "be directly used for practical data compression, as the representation needs to be further converted", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 687, + 505, + 700 + ], + "spans": [ + { + "bbox": [ + 105, + 687, + 505, + 700 + ], + "score": 1.0, + "content": "into binary (entropy encoded). This conversion is typically performed by range coding, or arith-", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 104, + 698, + 506, + 712 + ], + "spans": [ + { + "bbox": [ + 104, + 698, + 506, + 712 + ], + "score": 1.0, + "content": "metic coding (Rissanen and Langdon, 1981). Range coding is asymptotically optimal: the length of", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 708, + 505, + 724 + ], + "spans": [ + { + "bbox": [ + 105, + 708, + 505, + 724 + ], + "score": 1.0, + "content": "the binary sequence quickly converges to the expected KL divergence in bits, for reasonably large", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 105, + 721, + 499, + 733 + ], + "spans": [ + { + "bbox": [ + 105, + 721, + 499, + 733 + ], + "score": 1.0, + "content": "sequences (such as, for one image). For this to hold, the following requirements must be satisfied:", + "type": "text" + } + ], + "index": 46 + } + ], + "index": 42 + } + ], + "page_idx": 0, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 27, + 293, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 26, + 294, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 26, + 294, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2019", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 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, + 453, + 116 + ], + "lines": [ + { + "bbox": [ + 105, + 78, + 457, + 97 + ], + "spans": [ + { + "bbox": [ + 105, + 78, + 457, + 97 + ], + "score": 1.0, + "content": "INTEGER NETWORKS FOR DATA COMPRESSION", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 106, + 98, + 363, + 117 + ], + "spans": [ + { + "bbox": [ + 106, + 98, + 363, + 117 + ], + "score": 1.0, + "content": "WITH LATENT-VARIABLE MODELS", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5 + }, + { + "type": "text", + "bbox": [ + 113, + 134, + 317, + 179 + ], + "lines": [ + { + "bbox": [ + 111, + 135, + 318, + 147 + ], + "spans": [ + { + "bbox": [ + 111, + 135, + 318, + 147 + ], + "score": 1.0, + "content": "Johannes Ballé, Nick Johnston & David Minnen", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 111, + 146, + 145, + 159 + ], + "spans": [ + { + "bbox": [ + 111, + 146, + 145, + 159 + ], + "score": 1.0, + "content": "Google", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 111, + 157, + 247, + 169 + ], + "spans": [ + { + "bbox": [ + 111, + 157, + 247, + 169 + ], + "score": 1.0, + "content": "Mountain View, CA 94043, USA", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 113, + 168, + 312, + 181 + ], + "spans": [ + { + "bbox": [ + 113, + 168, + 312, + 181 + ], + "score": 1.0, + "content": "{jballe,nickj,dminnen}@google.com", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 3.5, + "bbox_fs": [ + 111, + 135, + 318, + 181 + ] + }, + { + "type": "title", + "bbox": [ + 278, + 208, + 333, + 220 + ], + "lines": [ + { + "bbox": [ + 276, + 207, + 336, + 222 + ], + "spans": [ + { + "bbox": [ + 276, + 207, + 336, + 222 + ], + "score": 1.0, + "content": "ABSTRACT", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 6 + }, + { + "type": "text", + "bbox": [ + 143, + 237, + 468, + 358 + ], + "lines": [ + { + "bbox": [ + 142, + 237, + 469, + 250 + ], + "spans": [ + { + "bbox": [ + 142, + 237, + 469, + 250 + ], + "score": 1.0, + "content": "We consider the problem of using variational latent-variable models for data com-", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 141, + 249, + 469, + 261 + ], + "spans": [ + { + "bbox": [ + 141, + 249, + 469, + 261 + ], + "score": 1.0, + "content": "pression. For such models to produce a compressed binary sequence, which is the", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 142, + 260, + 469, + 272 + ], + "spans": [ + { + "bbox": [ + 142, + 260, + 469, + 272 + ], + "score": 1.0, + "content": "universal data representation in a digital world, the latent representation needs to", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 141, + 271, + 469, + 283 + ], + "spans": [ + { + "bbox": [ + 141, + 271, + 469, + 283 + ], + "score": 1.0, + "content": "be subjected to entropy coding. Range coding as an entropy coding technique is", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 141, + 281, + 470, + 294 + ], + "spans": [ + { + "bbox": [ + 141, + 281, + 470, + 294 + ], + "score": 1.0, + "content": "optimal, but it can fail catastrophically if the computation of the prior differs even", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 142, + 293, + 470, + 304 + ], + "spans": [ + { + "bbox": [ + 142, + 293, + 470, + 304 + ], + "score": 1.0, + "content": "slightly between the sending and the receiving side. Unfortunately, this is a com-", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 141, + 304, + 470, + 316 + ], + "spans": [ + { + "bbox": [ + 141, + 304, + 470, + 316 + ], + "score": 1.0, + "content": "mon scenario when floating point math is used and the sender and receiver operate", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 141, + 315, + 469, + 326 + ], + "spans": [ + { + "bbox": [ + 141, + 315, + 469, + 326 + ], + "score": 1.0, + "content": "on different hardware or software platforms, as numerical round-off is often plat-", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 141, + 325, + 470, + 338 + ], + "spans": [ + { + "bbox": [ + 141, + 325, + 470, + 338 + ], + "score": 1.0, + "content": "form dependent. We propose using integer networks as a universal solution to this", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 141, + 336, + 469, + 349 + ], + "spans": [ + { + "bbox": [ + 141, + 336, + 469, + 349 + ], + "score": 1.0, + "content": "problem, and demonstrate that they enable reliable cross-platform encoding and", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 142, + 348, + 325, + 360 + ], + "spans": [ + { + "bbox": [ + 142, + 348, + 325, + 360 + ], + "score": 1.0, + "content": "decoding of images using variational models.", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 12, + "bbox_fs": [ + 141, + 237, + 470, + 360 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 388, + 206, + 400 + ], + "lines": [ + { + "bbox": [ + 105, + 387, + 208, + 403 + ], + "spans": [ + { + "bbox": [ + 105, + 387, + 208, + 403 + ], + "score": 1.0, + "content": "1 INTRODUCTION", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 18 + }, + { + "type": "text", + "bbox": [ + 106, + 411, + 505, + 511 + ], + "lines": [ + { + "bbox": [ + 106, + 411, + 505, + 423 + ], + "spans": [ + { + "bbox": [ + 106, + 411, + 505, + 423 + ], + "score": 1.0, + "content": "The task of information transmission in today’s world is largely divided into two separate endeavors:", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 423, + 505, + 435 + ], + "spans": [ + { + "bbox": [ + 105, + 423, + 505, + 435 + ], + "score": 1.0, + "content": "source coding, or the representation of data (such as audio or images) as sequences of bits, and chan-", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 106, + 434, + 505, + 446 + ], + "spans": [ + { + "bbox": [ + 106, + 434, + 505, + 446 + ], + "score": 1.0, + "content": "nel coding, representing sequences of bits as analog signals on imperfect, physical channels such", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 104, + 443, + 505, + 458 + ], + "spans": [ + { + "bbox": [ + 104, + 443, + 505, + 458 + ], + "score": 1.0, + "content": "as radio waves (Cover and Thomas, 2006). This decoupling has substantial benefits, as the binary", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 455, + 504, + 468 + ], + "spans": [ + { + "bbox": [ + 105, + 455, + 504, + 468 + ], + "score": 1.0, + "content": "representations of arbitrary data can be seamlessly transmitted over arbitrary physical channels by", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 466, + 505, + 480 + ], + "spans": [ + { + "bbox": [ + 105, + 466, + 505, + 480 + ], + "score": 1.0, + "content": "only changing the underlying channel code, rather than having to design a new code for every pos-", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 477, + 504, + 490 + ], + "spans": [ + { + "bbox": [ + 105, + 477, + 504, + 490 + ], + "score": 1.0, + "content": "sible combination of data source and physical channel. Hence, the universal representation of any", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 488, + 505, + 501 + ], + "spans": [ + { + "bbox": [ + 105, + 488, + 505, + 501 + ], + "score": 1.0, + "content": "compressed data today is the binary channel, a representation which consists of a variable number", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 106, + 498, + 406, + 513 + ], + "spans": [ + { + "bbox": [ + 106, + 499, + 271, + 513 + ], + "score": 1.0, + "content": "of binary symbols, each with probability", + "type": "text" + }, + { + "bbox": [ + 271, + 498, + 278, + 512 + ], + "score": 0.85, + "content": "\\textstyle { \\frac { 1 } { 2 } }", + "type": "inline_equation" + }, + { + "bbox": [ + 278, + 499, + 406, + 513 + ], + "score": 1.0, + "content": ", and no noise (i.e. uncertainty).", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 23, + "bbox_fs": [ + 104, + 411, + 505, + 513 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 516, + 505, + 627 + ], + "lines": [ + { + "bbox": [ + 106, + 516, + 505, + 529 + ], + "spans": [ + { + "bbox": [ + 106, + 516, + 505, + 529 + ], + "score": 1.0, + "content": "As a latent representation, the binary channel unfortunately is a severe restriction compared to the", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 106, + 528, + 505, + 539 + ], + "spans": [ + { + "bbox": [ + 106, + 528, + 505, + 539 + ], + "score": 1.0, + "content": "richness of latent representations defined by many variational latent-variable models in the literature", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 538, + 506, + 551 + ], + "spans": [ + { + "bbox": [ + 105, + 538, + 506, + 551 + ], + "score": 1.0, + "content": "(e.g., Kingma and Welling, 2014; Sønderby et al., 2016; van den Oord et al., 2017), and in particular", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 550, + 505, + 563 + ], + "spans": [ + { + "bbox": [ + 105, + 550, + 505, + 563 + ], + "score": 1.0, + "content": "models targeted at data compression (Theis et al., 2017; Ágústsson et al., 2017; Ballé et al., 2018).", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 106, + 561, + 505, + 574 + ], + "spans": [ + { + "bbox": [ + 106, + 561, + 505, + 574 + ], + "score": 1.0, + "content": "Variational latent-variable models such as VAEs (Kingma and Welling, 2014) consist of an encoder", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 572, + 505, + 585 + ], + "spans": [ + { + "bbox": [ + 105, + 572, + 182, + 585 + ], + "score": 1.0, + "content": "model distribution", + "type": "text" + }, + { + "bbox": [ + 182, + 572, + 218, + 584 + ], + "score": 0.92, + "content": "e ( \\pmb { y } \\mid \\pmb { x } )", + "type": "inline_equation" + }, + { + "bbox": [ + 218, + 572, + 289, + 585 + ], + "score": 1.0, + "content": "bringing the data", + "type": "text" + }, + { + "bbox": [ + 290, + 574, + 297, + 582 + ], + "score": 0.76, + "content": "_ { \\textbf { \\em x } }", + "type": "inline_equation" + }, + { + "bbox": [ + 298, + 572, + 408, + 585 + ], + "score": 1.0, + "content": "into a latent representation", + "type": "text" + }, + { + "bbox": [ + 408, + 574, + 415, + 583 + ], + "score": 0.78, + "content": "\\textbf { { y } }", + "type": "inline_equation" + }, + { + "bbox": [ + 416, + 572, + 505, + 585 + ], + "score": 1.0, + "content": ", and a decoder model", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 106, + 583, + 505, + 595 + ], + "spans": [ + { + "bbox": [ + 106, + 583, + 155, + 595 + ], + "score": 1.0, + "content": "distribution", + "type": "text" + }, + { + "bbox": [ + 155, + 583, + 190, + 595 + ], + "score": 0.92, + "content": "d ( { \\pmb x } \\mid { \\pmb y } )", + "type": "inline_equation" + }, + { + "bbox": [ + 191, + 583, + 505, + 595 + ], + "score": 1.0, + "content": ", which represents the data likelihood conditioned on the latents. Given an en-", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 592, + 506, + 608 + ], + "spans": [ + { + "bbox": [ + 105, + 592, + 130, + 608 + ], + "score": 1.0, + "content": "coder", + "type": "text" + }, + { + "bbox": [ + 131, + 596, + 136, + 604 + ], + "score": 0.63, + "content": "e", + "type": "inline_equation" + }, + { + "bbox": [ + 137, + 592, + 324, + 608 + ], + "score": 1.0, + "content": ", we observe the marginal distribution of latents", + "type": "text" + }, + { + "bbox": [ + 325, + 594, + 412, + 606 + ], + "score": 0.93, + "content": "m ( \\pmb { y } ) = \\mathbb { E } _ { \\pmb { x } } [ e ( \\pmb { y } \\mid \\pmb { x } ) ]", + "type": "inline_equation" + }, + { + "bbox": [ + 413, + 592, + 506, + 608 + ], + "score": 1.0, + "content": ", where the expectation", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 605, + 505, + 618 + ], + "spans": [ + { + "bbox": [ + 105, + 605, + 321, + 618 + ], + "score": 1.0, + "content": "runs over the (unknown) data distribution. The prior", + "type": "text" + }, + { + "bbox": [ + 321, + 605, + 341, + 617 + ], + "score": 0.91, + "content": "p ( \\pmb { y } )", + "type": "inline_equation" + }, + { + "bbox": [ + 341, + 605, + 505, + 618 + ], + "score": 1.0, + "content": "is a variational estimate of the marginal", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 106, + 616, + 189, + 627 + ], + "spans": [ + { + "bbox": [ + 106, + 616, + 189, + 627 + ], + "score": 1.0, + "content": "(Alemi et al., 2018).", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 32.5, + "bbox_fs": [ + 105, + 516, + 506, + 627 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 632, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 632, + 505, + 646 + ], + "spans": [ + { + "bbox": [ + 105, + 632, + 505, + 646 + ], + "score": 1.0, + "content": "By choosing the parametric forms of these distributions and the training objective appropriately,", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 643, + 505, + 657 + ], + "spans": [ + { + "bbox": [ + 105, + 643, + 505, + 657 + ], + "score": 1.0, + "content": "many such models succeed in representing relevant information in the data they are trained for quite", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 655, + 506, + 667 + ], + "spans": [ + { + "bbox": [ + 105, + 655, + 506, + 667 + ], + "score": 1.0, + "content": "compactly (i.e., with a small expected Kullback–Leibler (KL) divergence between the encoder and", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 106, + 666, + 506, + 679 + ], + "spans": [ + { + "bbox": [ + 106, + 666, + 145, + 679 + ], + "score": 1.0, + "content": "the prior,", + "type": "text" + }, + { + "bbox": [ + 145, + 666, + 201, + 678 + ], + "score": 0.93, + "content": "\\begin{array} { r } { \\mathbb { E } _ { \\pmb { x } } D _ { \\mathrm { K L } } [ e \\| p ] ) } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 202, + 666, + 506, + 679 + ], + "score": 1.0, + "content": ", and so may be called compressive in a sense. However, not all of them can", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 104, + 676, + 506, + 691 + ], + "spans": [ + { + "bbox": [ + 104, + 676, + 506, + 691 + ], + "score": 1.0, + "content": "be directly used for practical data compression, as the representation needs to be further converted", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 687, + 505, + 700 + ], + "spans": [ + { + "bbox": [ + 105, + 687, + 505, + 700 + ], + "score": 1.0, + "content": "into binary (entropy encoded). This conversion is typically performed by range coding, or arith-", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 104, + 698, + 506, + 712 + ], + "spans": [ + { + "bbox": [ + 104, + 698, + 506, + 712 + ], + "score": 1.0, + "content": "metic coding (Rissanen and Langdon, 1981). Range coding is asymptotically optimal: the length of", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 708, + 505, + 724 + ], + "spans": [ + { + "bbox": [ + 105, + 708, + 505, + 724 + ], + "score": 1.0, + "content": "the binary sequence quickly converges to the expected KL divergence in bits, for reasonably large", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 105, + 721, + 499, + 733 + ], + "spans": [ + { + "bbox": [ + 105, + 721, + 499, + 733 + ], + "score": 1.0, + "content": "sequences (such as, for one image). For this to hold, the following requirements must be satisfied:", + "type": "text" + } + ], + "index": 46 + } + ], + "index": 42, + "bbox_fs": [ + 104, + 632, + 506, + 733 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "image", + "bbox": [ + 107, + 81, + 506, + 213 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 107, + 81, + 506, + 213 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 107, + 81, + 506, + 213 + ], + "spans": [ + { + "bbox": [ + 107, + 81, + 506, + 213 + ], + "score": 0.973, + "type": "image", + "image_path": "b6a6648bd111c33790c9a0a1e49addb8c95065b786817c864c1cea610843d505.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 107, + 81, + 506, + 125.0 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 107, + 125.0, + 506, + 169.0 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 107, + 169.0, + 506, + 213.0 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 222, + 505, + 267 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 222, + 505, + 234 + ], + "spans": [ + { + "bbox": [ + 106, + 222, + 505, + 234 + ], + "score": 1.0, + "content": "Figure 1: The same image, decoded with a model computing the prior using integer arithmetic (left),", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 233, + 505, + 246 + ], + "spans": [ + { + "bbox": [ + 105, + 233, + 505, + 246 + ], + "score": 1.0, + "content": "and the same model using floating point arithmetic (right). The image was decoded correctly, begin-", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 106, + 244, + 505, + 257 + ], + "spans": [ + { + "bbox": [ + 106, + 244, + 505, + 257 + ], + "score": 1.0, + "content": "ning in the top-left corner, until floating point round-off error caused a small discrepancy between", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 254, + 505, + 268 + ], + "spans": [ + { + "bbox": [ + 105, + 254, + 505, + 268 + ], + "score": 1.0, + "content": "the sender’s and the receiver’s copy of the prior, at which point the error propagated catastrophically.", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 4.5 + } + ], + "index": 2.75 + }, + { + "type": "text", + "bbox": [ + 132, + 288, + 504, + 311 + ], + "lines": [ + { + "bbox": [ + 133, + 288, + 504, + 299 + ], + "spans": [ + { + "bbox": [ + 133, + 288, + 504, + 299 + ], + "score": 1.0, + "content": "• The representation must be discrete-valued, i.e. have a finite number of states, and be", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 141, + 299, + 414, + 312 + ], + "spans": [ + { + "bbox": [ + 141, + 299, + 414, + 312 + ], + "score": 1.0, + "content": "noiseless – i.e. the conditional entropy of the encoder must be zero:", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 7.5 + }, + { + "type": "interline_equation", + "bbox": [ + 246, + 316, + 401, + 330 + ], + "lines": [ + { + "bbox": [ + 246, + 316, + 401, + 330 + ], + "spans": [ + { + "bbox": [ + 246, + 316, + 401, + 330 + ], + "score": 0.91, + "content": "H [ e ] = \\mathbb { E } _ { \\pmb { x } } \\mathbb { E } _ { \\pmb { y } \\sim e } [ - \\log e ( \\pmb { y } \\mid \\pmb { x } ) ] = 0 .", + "type": "interline_equation", + "image_path": "430dff0a889fb943e29c48983aae0adcc3a9bda733edb62b41e761ff8e7055b5.jpg" + } + ] + } + ], + "index": 9, + "virtual_lines": [ + { + "bbox": [ + 246, + 316, + 401, + 330 + ], + "spans": [], + "index": 9 + } + ] + }, + { + "type": "text", + "bbox": [ + 132, + 337, + 505, + 370 + ], + "lines": [ + { + "bbox": [ + 132, + 337, + 506, + 350 + ], + "spans": [ + { + "bbox": [ + 132, + 337, + 308, + 350 + ], + "score": 1.0, + "content": "• All scalar elements of the representation", + "type": "text" + }, + { + "bbox": [ + 309, + 339, + 317, + 349 + ], + "score": 0.8, + "content": "\\textbf { { y } }", + "type": "inline_equation" + }, + { + "bbox": [ + 317, + 337, + 506, + 350 + ], + "score": 1.0, + "content": "must be brought into a total ordering, and the", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 142, + 349, + 506, + 360 + ], + "spans": [ + { + "bbox": [ + 142, + 349, + 506, + 360 + ], + "score": 1.0, + "content": "prior needs to be written using the chain rule of calculus (as a product of conditionals), as", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 142, + 360, + 457, + 371 + ], + "spans": [ + { + "bbox": [ + 142, + 360, + 457, + 371 + ], + "score": 1.0, + "content": "the algorithm can only encode or decode one scalar random variable at a time.", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 11 + }, + { + "type": "text", + "bbox": [ + 132, + 374, + 504, + 397 + ], + "lines": [ + { + "bbox": [ + 132, + 373, + 505, + 386 + ], + "spans": [ + { + "bbox": [ + 132, + 373, + 505, + 386 + ], + "score": 1.0, + "content": "• Both sides of the binary channel (i.e. sender and receiver) must be able to evaluate the", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 141, + 385, + 343, + 397 + ], + "spans": [ + { + "bbox": [ + 141, + 385, + 343, + 397 + ], + "score": 1.0, + "content": "prior, and they must have identical instances of it.", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 13.5 + }, + { + "type": "text", + "bbox": [ + 107, + 406, + 505, + 538 + ], + "lines": [ + { + "bbox": [ + 105, + 406, + 506, + 419 + ], + "spans": [ + { + "bbox": [ + 105, + 406, + 433, + 419 + ], + "score": 1.0, + "content": "The latter point is crucial, as range coding is extremely sensitive to differences in", + "type": "text" + }, + { + "bbox": [ + 433, + 408, + 440, + 418 + ], + "score": 0.79, + "content": "p", + "type": "inline_equation" + }, + { + "bbox": [ + 440, + 406, + 506, + 419 + ], + "score": 1.0, + "content": "between sender", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 104, + 416, + 506, + 430 + ], + "spans": [ + { + "bbox": [ + 104, + 416, + 506, + 430 + ], + "score": 1.0, + "content": "and receiver – so sensitive, in fact, that even small perturbations due to floating point round-off", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 428, + 505, + 441 + ], + "spans": [ + { + "bbox": [ + 105, + 428, + 505, + 441 + ], + "score": 1.0, + "content": "error can lead to catastrophic error propagation. Unfortunately, numerical round-off is highly plat-", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 438, + 505, + 452 + ], + "spans": [ + { + "bbox": [ + 105, + 438, + 505, + 452 + ], + "score": 1.0, + "content": "form dependent, and in typical data compression applications, sender and receiver may well employ", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 450, + 506, + 462 + ], + "spans": [ + { + "bbox": [ + 105, + 450, + 506, + 462 + ], + "score": 1.0, + "content": "different hardware or software platforms. Round-off error may even be non-deterministic on one", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 460, + 505, + 475 + ], + "spans": [ + { + "bbox": [ + 105, + 460, + 473, + 475 + ], + "score": 1.0, + "content": "and the same computer. Figure 1 illustrates a decoding failure in a model which computes", + "type": "text" + }, + { + "bbox": [ + 473, + 463, + 480, + 473 + ], + "score": 0.78, + "content": "p", + "type": "inline_equation" + }, + { + "bbox": [ + 480, + 460, + 505, + 475 + ], + "score": 1.0, + "content": "using", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 471, + 505, + 484 + ], + "spans": [ + { + "bbox": [ + 105, + 471, + 505, + 484 + ], + "score": 1.0, + "content": "floating point math, caused by such computational non-determinism in sender vs. receiver. Recently,", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 483, + 505, + 495 + ], + "spans": [ + { + "bbox": [ + 105, + 483, + 505, + 495 + ], + "score": 1.0, + "content": "latent-variable models have been explored that employ artificial neural networks (ANNs) to compute", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 493, + 506, + 507 + ], + "spans": [ + { + "bbox": [ + 105, + 493, + 506, + 507 + ], + "score": 1.0, + "content": "hierarchical or autoregressive priors (Sønderby et al., 2016; van den Oord et al., 2017), including", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 505, + 505, + 517 + ], + "spans": [ + { + "bbox": [ + 105, + 505, + 505, + 517 + ], + "score": 1.0, + "content": "some of the best-performing learned image compression models (Ballé et al., 2018; Minnen et al.,", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 516, + 505, + 528 + ], + "spans": [ + { + "bbox": [ + 105, + 516, + 505, + 528 + ], + "score": 1.0, + "content": "2018; Klopp et al., 2018). Because ANNs are typically based on floating point math, these methods", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 527, + 438, + 540 + ], + "spans": [ + { + "bbox": [ + 105, + 527, + 438, + 540 + ], + "score": 1.0, + "content": "are vulnerable to catastrophic failures when deployed on heterogeneous platforms.", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 20.5 + }, + { + "type": "text", + "bbox": [ + 107, + 543, + 505, + 621 + ], + "lines": [ + { + "bbox": [ + 106, + 544, + 505, + 556 + ], + "spans": [ + { + "bbox": [ + 106, + 544, + 505, + 556 + ], + "score": 1.0, + "content": "To address this problem, and enable use of powerful learned variational models for real-world data", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 555, + 506, + 567 + ], + "spans": [ + { + "bbox": [ + 105, + 555, + 506, + 567 + ], + "score": 1.0, + "content": "compression, we propose to use integer arithmetic in these ANNs, as floating-point arithmetic cannot", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 565, + 505, + 578 + ], + "spans": [ + { + "bbox": [ + 105, + 565, + 505, + 578 + ], + "score": 1.0, + "content": "presently be made deterministic across arbitrary platforms. We formulate a type of quantized neural", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 578, + 505, + 589 + ], + "spans": [ + { + "bbox": [ + 105, + 578, + 505, + 589 + ], + "score": 1.0, + "content": "network we call integer networks, which are specifically targeted at generative and compression", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 106, + 588, + 505, + 599 + ], + "spans": [ + { + "bbox": [ + 106, + 588, + 505, + 599 + ], + "score": 1.0, + "content": "models, and at preventing computational non-determinism in computation of the prior. Because full", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 597, + 506, + 612 + ], + "spans": [ + { + "bbox": [ + 105, + 597, + 506, + 612 + ], + "score": 1.0, + "content": "determinism is a feature of many existing, widely used image and video compression methods, we", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 609, + 456, + 621 + ], + "spans": [ + { + "bbox": [ + 105, + 609, + 456, + 621 + ], + "score": 1.0, + "content": "also consider using integer networks end to end for computing the representation itself.", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 30 + }, + { + "type": "title", + "bbox": [ + 108, + 632, + 278, + 645 + ], + "lines": [ + { + "bbox": [ + 105, + 631, + 280, + 647 + ], + "spans": [ + { + "bbox": [ + 105, + 631, + 280, + 647 + ], + "score": 1.0, + "content": "2 INTEGER NEURAL NETWORKS", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 34 + }, + { + "type": "text", + "bbox": [ + 107, + 654, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 654, + 505, + 668 + ], + "spans": [ + { + "bbox": [ + 105, + 654, + 505, + 668 + ], + "score": 1.0, + "content": "ANNs are typically composite functions that alternate between linear and elementwise nonlinear op-", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 666, + 505, + 677 + ], + "spans": [ + { + "bbox": [ + 105, + 666, + 505, + 677 + ], + "score": 1.0, + "content": "erations. One linear operation followed by a nonlinearity is considered one layer of the network. To", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 677, + 504, + 689 + ], + "spans": [ + { + "bbox": [ + 105, + 677, + 504, + 689 + ], + "score": 1.0, + "content": "ensure that such a network can be implemented deterministically on a wide variety of hardware plat-", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 689, + 505, + 700 + ], + "spans": [ + { + "bbox": [ + 105, + 689, + 505, + 700 + ], + "score": 1.0, + "content": "forms, we restrict all the data types to be integral, and all operations to be implemented either with", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 699, + 505, + 711 + ], + "spans": [ + { + "bbox": [ + 105, + 699, + 505, + 711 + ], + "score": 1.0, + "content": "basic arithmetic or lookup tables. Because integer multiplications (including matrix multiplications", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 709, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 105, + 709, + 505, + 722 + ], + "score": 1.0, + "content": "or convolutions) increase the dynamic range of the output compared to their inputs, we introduce an", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 721, + 505, + 733 + ], + "spans": [ + { + "bbox": [ + 105, + 721, + 505, + 733 + ], + "score": 1.0, + "content": "additional step after each linear operator, where we divide each of its output by a learned parameter.", + "type": "text" + } + ], + "index": 41 + } + ], + "index": 38 + } + ], + "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 2019", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 302, + 751, + 309, + 760 + ], + "lines": [ + { + "bbox": [ + 301, + 750, + 310, + 763 + ], + "spans": [ + { + "bbox": [ + 301, + 750, + 310, + 763 + ], + "score": 1.0, + "content": "2", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "image", + "bbox": [ + 107, + 81, + 506, + 213 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 107, + 81, + 506, + 213 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 107, + 81, + 506, + 213 + ], + "spans": [ + { + "bbox": [ + 107, + 81, + 506, + 213 + ], + "score": 0.973, + "type": "image", + "image_path": "b6a6648bd111c33790c9a0a1e49addb8c95065b786817c864c1cea610843d505.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 107, + 81, + 506, + 125.0 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 107, + 125.0, + 506, + 169.0 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 107, + 169.0, + 506, + 213.0 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 222, + 505, + 267 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 222, + 505, + 234 + ], + "spans": [ + { + "bbox": [ + 106, + 222, + 505, + 234 + ], + "score": 1.0, + "content": "Figure 1: The same image, decoded with a model computing the prior using integer arithmetic (left),", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 233, + 505, + 246 + ], + "spans": [ + { + "bbox": [ + 105, + 233, + 505, + 246 + ], + "score": 1.0, + "content": "and the same model using floating point arithmetic (right). The image was decoded correctly, begin-", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 106, + 244, + 505, + 257 + ], + "spans": [ + { + "bbox": [ + 106, + 244, + 505, + 257 + ], + "score": 1.0, + "content": "ning in the top-left corner, until floating point round-off error caused a small discrepancy between", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 254, + 505, + 268 + ], + "spans": [ + { + "bbox": [ + 105, + 254, + 505, + 268 + ], + "score": 1.0, + "content": "the sender’s and the receiver’s copy of the prior, at which point the error propagated catastrophically.", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 4.5 + } + ], + "index": 2.75 + }, + { + "type": "text", + "bbox": [ + 132, + 288, + 504, + 311 + ], + "lines": [ + { + "bbox": [ + 133, + 288, + 504, + 299 + ], + "spans": [ + { + "bbox": [ + 133, + 288, + 504, + 299 + ], + "score": 1.0, + "content": "• The representation must be discrete-valued, i.e. have a finite number of states, and be", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 141, + 299, + 414, + 312 + ], + "spans": [ + { + "bbox": [ + 141, + 299, + 414, + 312 + ], + "score": 1.0, + "content": "noiseless – i.e. the conditional entropy of the encoder must be zero:", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 7.5, + "bbox_fs": [ + 133, + 288, + 504, + 312 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 246, + 316, + 401, + 330 + ], + "lines": [ + { + "bbox": [ + 246, + 316, + 401, + 330 + ], + "spans": [ + { + "bbox": [ + 246, + 316, + 401, + 330 + ], + "score": 0.91, + "content": "H [ e ] = \\mathbb { E } _ { \\pmb { x } } \\mathbb { E } _ { \\pmb { y } \\sim e } [ - \\log e ( \\pmb { y } \\mid \\pmb { x } ) ] = 0 .", + "type": "interline_equation", + "image_path": "430dff0a889fb943e29c48983aae0adcc3a9bda733edb62b41e761ff8e7055b5.jpg" + } + ] + } + ], + "index": 9, + "virtual_lines": [ + { + "bbox": [ + 246, + 316, + 401, + 330 + ], + "spans": [], + "index": 9 + } + ] + }, + { + "type": "text", + "bbox": [ + 132, + 337, + 505, + 370 + ], + "lines": [ + { + "bbox": [ + 132, + 337, + 506, + 350 + ], + "spans": [ + { + "bbox": [ + 132, + 337, + 308, + 350 + ], + "score": 1.0, + "content": "• All scalar elements of the representation", + "type": "text" + }, + { + "bbox": [ + 309, + 339, + 317, + 349 + ], + "score": 0.8, + "content": "\\textbf { { y } }", + "type": "inline_equation" + }, + { + "bbox": [ + 317, + 337, + 506, + 350 + ], + "score": 1.0, + "content": "must be brought into a total ordering, and the", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 142, + 349, + 506, + 360 + ], + "spans": [ + { + "bbox": [ + 142, + 349, + 506, + 360 + ], + "score": 1.0, + "content": "prior needs to be written using the chain rule of calculus (as a product of conditionals), as", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 142, + 360, + 457, + 371 + ], + "spans": [ + { + "bbox": [ + 142, + 360, + 457, + 371 + ], + "score": 1.0, + "content": "the algorithm can only encode or decode one scalar random variable at a time.", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 11, + "bbox_fs": [ + 132, + 337, + 506, + 371 + ] + }, + { + "type": "text", + "bbox": [ + 132, + 374, + 504, + 397 + ], + "lines": [ + { + "bbox": [ + 132, + 373, + 505, + 386 + ], + "spans": [ + { + "bbox": [ + 132, + 373, + 505, + 386 + ], + "score": 1.0, + "content": "• Both sides of the binary channel (i.e. sender and receiver) must be able to evaluate the", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 141, + 385, + 343, + 397 + ], + "spans": [ + { + "bbox": [ + 141, + 385, + 343, + 397 + ], + "score": 1.0, + "content": "prior, and they must have identical instances of it.", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 13.5, + "bbox_fs": [ + 132, + 373, + 505, + 397 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 406, + 505, + 538 + ], + "lines": [ + { + "bbox": [ + 105, + 406, + 506, + 419 + ], + "spans": [ + { + "bbox": [ + 105, + 406, + 433, + 419 + ], + "score": 1.0, + "content": "The latter point is crucial, as range coding is extremely sensitive to differences in", + "type": "text" + }, + { + "bbox": [ + 433, + 408, + 440, + 418 + ], + "score": 0.79, + "content": "p", + "type": "inline_equation" + }, + { + "bbox": [ + 440, + 406, + 506, + 419 + ], + "score": 1.0, + "content": "between sender", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 104, + 416, + 506, + 430 + ], + "spans": [ + { + "bbox": [ + 104, + 416, + 506, + 430 + ], + "score": 1.0, + "content": "and receiver – so sensitive, in fact, that even small perturbations due to floating point round-off", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 428, + 505, + 441 + ], + "spans": [ + { + "bbox": [ + 105, + 428, + 505, + 441 + ], + "score": 1.0, + "content": "error can lead to catastrophic error propagation. Unfortunately, numerical round-off is highly plat-", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 438, + 505, + 452 + ], + "spans": [ + { + "bbox": [ + 105, + 438, + 505, + 452 + ], + "score": 1.0, + "content": "form dependent, and in typical data compression applications, sender and receiver may well employ", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 450, + 506, + 462 + ], + "spans": [ + { + "bbox": [ + 105, + 450, + 506, + 462 + ], + "score": 1.0, + "content": "different hardware or software platforms. Round-off error may even be non-deterministic on one", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 460, + 505, + 475 + ], + "spans": [ + { + "bbox": [ + 105, + 460, + 473, + 475 + ], + "score": 1.0, + "content": "and the same computer. Figure 1 illustrates a decoding failure in a model which computes", + "type": "text" + }, + { + "bbox": [ + 473, + 463, + 480, + 473 + ], + "score": 0.78, + "content": "p", + "type": "inline_equation" + }, + { + "bbox": [ + 480, + 460, + 505, + 475 + ], + "score": 1.0, + "content": "using", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 471, + 505, + 484 + ], + "spans": [ + { + "bbox": [ + 105, + 471, + 505, + 484 + ], + "score": 1.0, + "content": "floating point math, caused by such computational non-determinism in sender vs. receiver. Recently,", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 483, + 505, + 495 + ], + "spans": [ + { + "bbox": [ + 105, + 483, + 505, + 495 + ], + "score": 1.0, + "content": "latent-variable models have been explored that employ artificial neural networks (ANNs) to compute", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 493, + 506, + 507 + ], + "spans": [ + { + "bbox": [ + 105, + 493, + 506, + 507 + ], + "score": 1.0, + "content": "hierarchical or autoregressive priors (Sønderby et al., 2016; van den Oord et al., 2017), including", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 505, + 505, + 517 + ], + "spans": [ + { + "bbox": [ + 105, + 505, + 505, + 517 + ], + "score": 1.0, + "content": "some of the best-performing learned image compression models (Ballé et al., 2018; Minnen et al.,", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 516, + 505, + 528 + ], + "spans": [ + { + "bbox": [ + 105, + 516, + 505, + 528 + ], + "score": 1.0, + "content": "2018; Klopp et al., 2018). Because ANNs are typically based on floating point math, these methods", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 527, + 438, + 540 + ], + "spans": [ + { + "bbox": [ + 105, + 527, + 438, + 540 + ], + "score": 1.0, + "content": "are vulnerable to catastrophic failures when deployed on heterogeneous platforms.", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 20.5, + "bbox_fs": [ + 104, + 406, + 506, + 540 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 543, + 505, + 621 + ], + "lines": [ + { + "bbox": [ + 106, + 544, + 505, + 556 + ], + "spans": [ + { + "bbox": [ + 106, + 544, + 505, + 556 + ], + "score": 1.0, + "content": "To address this problem, and enable use of powerful learned variational models for real-world data", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 555, + 506, + 567 + ], + "spans": [ + { + "bbox": [ + 105, + 555, + 506, + 567 + ], + "score": 1.0, + "content": "compression, we propose to use integer arithmetic in these ANNs, as floating-point arithmetic cannot", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 565, + 505, + 578 + ], + "spans": [ + { + "bbox": [ + 105, + 565, + 505, + 578 + ], + "score": 1.0, + "content": "presently be made deterministic across arbitrary platforms. We formulate a type of quantized neural", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 578, + 505, + 589 + ], + "spans": [ + { + "bbox": [ + 105, + 578, + 505, + 589 + ], + "score": 1.0, + "content": "network we call integer networks, which are specifically targeted at generative and compression", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 106, + 588, + 505, + 599 + ], + "spans": [ + { + "bbox": [ + 106, + 588, + 505, + 599 + ], + "score": 1.0, + "content": "models, and at preventing computational non-determinism in computation of the prior. Because full", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 597, + 506, + 612 + ], + "spans": [ + { + "bbox": [ + 105, + 597, + 506, + 612 + ], + "score": 1.0, + "content": "determinism is a feature of many existing, widely used image and video compression methods, we", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 609, + 456, + 621 + ], + "spans": [ + { + "bbox": [ + 105, + 609, + 456, + 621 + ], + "score": 1.0, + "content": "also consider using integer networks end to end for computing the representation itself.", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 30, + "bbox_fs": [ + 105, + 544, + 506, + 621 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 632, + 278, + 645 + ], + "lines": [ + { + "bbox": [ + 105, + 631, + 280, + 647 + ], + "spans": [ + { + "bbox": [ + 105, + 631, + 280, + 647 + ], + "score": 1.0, + "content": "2 INTEGER NEURAL NETWORKS", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 34 + }, + { + "type": "text", + "bbox": [ + 107, + 654, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 654, + 505, + 668 + ], + "spans": [ + { + "bbox": [ + 105, + 654, + 505, + 668 + ], + "score": 1.0, + "content": "ANNs are typically composite functions that alternate between linear and elementwise nonlinear op-", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 666, + 505, + 677 + ], + "spans": [ + { + "bbox": [ + 105, + 666, + 505, + 677 + ], + "score": 1.0, + "content": "erations. One linear operation followed by a nonlinearity is considered one layer of the network. To", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 677, + 504, + 689 + ], + "spans": [ + { + "bbox": [ + 105, + 677, + 504, + 689 + ], + "score": 1.0, + "content": "ensure that such a network can be implemented deterministically on a wide variety of hardware plat-", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 689, + 505, + 700 + ], + "spans": [ + { + "bbox": [ + 105, + 689, + 505, + 700 + ], + "score": 1.0, + "content": "forms, we restrict all the data types to be integral, and all operations to be implemented either with", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 699, + 505, + 711 + ], + "spans": [ + { + "bbox": [ + 105, + 699, + 505, + 711 + ], + "score": 1.0, + "content": "basic arithmetic or lookup tables. Because integer multiplications (including matrix multiplications", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 709, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 105, + 709, + 505, + 722 + ], + "score": 1.0, + "content": "or convolutions) increase the dynamic range of the output compared to their inputs, we introduce an", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 721, + 505, + 733 + ], + "spans": [ + { + "bbox": [ + 105, + 721, + 505, + 733 + ], + "score": 1.0, + "content": "additional step after each linear operator, where we divide each of its output by a learned parameter.", + "type": "text" + } + ], + "index": 41 + } + ], + "index": 38, + "bbox_fs": [ + 105, + 654, + 505, + 733 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "image", + "bbox": [ + 109, + 79, + 506, + 207 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 109, + 79, + 506, + 207 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 109, + 79, + 506, + 207 + ], + "spans": [ + { + "bbox": [ + 109, + 79, + 506, + 207 + ], + "score": 0.967, + "type": "image", + "image_path": "c91a76ad0addf5cef94c1363679199123dda26f8a6a06cc57fa964c0de157f07.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 109, + 79, + 506, + 121.66666666666666 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 109, + 121.66666666666666, + 506, + 164.33333333333331 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 109, + 164.33333333333331, + 506, + 206.99999999999997 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 217, + 506, + 306 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 217, + 506, + 231 + ], + "spans": [ + { + "bbox": [ + 105, + 217, + 506, + 231 + ], + "score": 1.0, + "content": "Figure 2: Left: Example nonlinearity implementing a saturating rectifier for 4-bit unsigned integer", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 106, + 228, + 506, + 242 + ], + "spans": [ + { + "bbox": [ + 106, + 228, + 180, + 242 + ], + "score": 1.0, + "content": "outputs, given by", + "type": "text" + }, + { + "bbox": [ + 180, + 228, + 317, + 240 + ], + "score": 0.91, + "content": "g _ { \\mathrm { Q R e L U } } ( v ) = \\mathrm { m a x } ( \\mathrm { m i n } ( v , 1 5 ) , 0 )", + "type": "inline_equation" + }, + { + "bbox": [ + 317, + 228, + 506, + 242 + ], + "score": 1.0, + "content": ". This nonlinearity can be implemented deter-", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 240, + 506, + 253 + ], + "spans": [ + { + "bbox": [ + 105, + 240, + 506, + 253 + ], + "score": 1.0, + "content": "ministically either using a lookup table or simply using a clipping operation. The corresponding", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 250, + 505, + 263 + ], + "spans": [ + { + "bbox": [ + 105, + 250, + 307, + 263 + ], + "score": 1.0, + "content": "scaled cumulative of a generalized Gaussian with", + "type": "text" + }, + { + "bbox": [ + 307, + 250, + 334, + 262 + ], + "score": 0.91, + "content": "\\beta = 4", + "type": "inline_equation" + }, + { + "bbox": [ + 334, + 250, + 505, + 263 + ], + "score": 1.0, + "content": "used for computing gradients is plotted in", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 261, + 506, + 274 + ], + "spans": [ + { + "bbox": [ + 105, + 261, + 216, + 274 + ], + "score": 1.0, + "content": "cyan, and other choices of", + "type": "text" + }, + { + "bbox": [ + 216, + 261, + 224, + 272 + ], + "score": 0.84, + "content": "\\beta", + "type": "inline_equation" + }, + { + "bbox": [ + 224, + 261, + 506, + 274 + ], + "score": 1.0, + "content": "in gray. Right: Example nonlinearity approximating hyperbolic tan-", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 271, + 506, + 286 + ], + "spans": [ + { + "bbox": [ + 105, + 271, + 291, + 286 + ], + "score": 1.0, + "content": "gent for 4-bit signed integer outputs, given by", + "type": "text" + }, + { + "bbox": [ + 292, + 272, + 401, + 285 + ], + "score": 0.92, + "content": "\\begin{array} { r } { g _ { \\mathrm { Q t a n h } } ( v ) = Q ( 7 \\operatorname { t a n h } ( \\frac { v } { 1 5 } ) ) } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 401, + 271, + 506, + 286 + ], + "score": 1.0, + "content": ". This nonlinearity can be", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 106, + 283, + 506, + 297 + ], + "spans": [ + { + "bbox": [ + 106, + 283, + 506, + 297 + ], + "score": 1.0, + "content": "implemented deterministically using a lookup table. The corresponding scaled hyperbolic tangent", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 293, + 298, + 308 + ], + "spans": [ + { + "bbox": [ + 105, + 293, + 298, + 308 + ], + "score": 1.0, + "content": "used for computing gradients is plotted in cyan.", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 6.5 + } + ], + "index": 3.75 + }, + { + "type": "text", + "bbox": [ + 105, + 326, + 454, + 339 + ], + "lines": [ + { + "bbox": [ + 105, + 325, + 455, + 340 + ], + "spans": [ + { + "bbox": [ + 105, + 325, + 322, + 340 + ], + "score": 1.0, + "content": "Concretely, we define the relationship between inputs", + "type": "text" + }, + { + "bbox": [ + 322, + 329, + 330, + 337 + ], + "score": 0.8, + "content": "\\textbf { \\em u }", + "type": "inline_equation" + }, + { + "bbox": [ + 330, + 325, + 380, + 340 + ], + "score": 1.0, + "content": "and outputs", + "type": "text" + }, + { + "bbox": [ + 381, + 329, + 390, + 337 + ], + "score": 0.78, + "content": "\\pmb { w }", + "type": "inline_equation" + }, + { + "bbox": [ + 390, + 325, + 455, + 340 + ], + "score": 1.0, + "content": "of one layer as:", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 11 + }, + { + "type": "interline_equation", + "bbox": [ + 261, + 342, + 348, + 372 + ], + "lines": [ + { + "bbox": [ + 261, + 342, + 348, + 372 + ], + "spans": [ + { + "bbox": [ + 261, + 342, + 348, + 372 + ], + "score": 0.91, + "content": "\\begin{array} { r } { \\pmb { v } = ( \\pmb { H } \\pmb { u } + \\pmb { b } ) \\oslash \\pmb { c } , } \\\\ { \\pmb { w } = g ( \\pmb { v } ) . } \\end{array}", + "type": "interline_equation", + "image_path": "ce8662bd1d7fc1b5a6a25eb34e6f32e599e0b3eee84dbc30fa3074ec7a8052f0.jpg" + } + ] + } + ], + "index": 12.5, + "virtual_lines": [ + { + "bbox": [ + 261, + 342, + 348, + 357.0 + ], + "spans": [], + "index": 12 + }, + { + "bbox": [ + 261, + 357.0, + 348, + 372.0 + ], + "spans": [], + "index": 13 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 375, + 504, + 408 + ], + "lines": [ + { + "bbox": [ + 105, + 375, + 504, + 388 + ], + "spans": [ + { + "bbox": [ + 105, + 375, + 190, + 388 + ], + "score": 1.0, + "content": "In order, the inputs", + "type": "text" + }, + { + "bbox": [ + 190, + 378, + 198, + 385 + ], + "score": 0.76, + "content": "\\textbf { \\em u }", + "type": "inline_equation" + }, + { + "bbox": [ + 198, + 375, + 346, + 388 + ], + "score": 1.0, + "content": "are subjected to a linear transform", + "type": "text" + }, + { + "bbox": [ + 347, + 375, + 359, + 385 + ], + "score": 0.76, + "content": "\\pmb { H }", + "type": "inline_equation" + }, + { + "bbox": [ + 359, + 375, + 504, + 388 + ], + "score": 1.0, + "content": "(a matrix multiplication, or a con-", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 386, + 505, + 399 + ], + "spans": [ + { + "bbox": [ + 105, + 386, + 206, + 399 + ], + "score": 1.0, + "content": "volution); a bias vector", + "type": "text" + }, + { + "bbox": [ + 206, + 387, + 213, + 396 + ], + "score": 0.76, + "content": "^ { b }", + "type": "inline_equation" + }, + { + "bbox": [ + 213, + 386, + 445, + 399 + ], + "score": 1.0, + "content": "is added; the result is divided elementwise by a vector", + "type": "text" + }, + { + "bbox": [ + 445, + 389, + 452, + 396 + ], + "score": 0.69, + "content": "^ c", + "type": "inline_equation" + }, + { + "bbox": [ + 452, + 386, + 505, + 399 + ], + "score": 1.0, + "content": ", yielding an", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 397, + 454, + 410 + ], + "spans": [ + { + "bbox": [ + 105, + 397, + 210, + 410 + ], + "score": 1.0, + "content": "intermediate result vector", + "type": "text" + }, + { + "bbox": [ + 211, + 399, + 218, + 407 + ], + "score": 0.77, + "content": "\\textbf { { v } }", + "type": "inline_equation" + }, + { + "bbox": [ + 218, + 397, + 383, + 410 + ], + "score": 1.0, + "content": "; and finally, an elementwise nonlinearity", + "type": "text" + }, + { + "bbox": [ + 383, + 399, + 390, + 409 + ], + "score": 0.79, + "content": "g", + "type": "inline_equation" + }, + { + "bbox": [ + 390, + 397, + 442, + 410 + ], + "score": 1.0, + "content": "is applied to", + "type": "text" + }, + { + "bbox": [ + 442, + 399, + 449, + 407 + ], + "score": 0.78, + "content": "\\pmb { v }", + "type": "inline_equation" + }, + { + "bbox": [ + 450, + 397, + 454, + 410 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 15 + }, + { + "type": "text", + "bbox": [ + 106, + 414, + 505, + 459 + ], + "lines": [ + { + "bbox": [ + 106, + 414, + 505, + 426 + ], + "spans": [ + { + "bbox": [ + 106, + 414, + 169, + 426 + ], + "score": 1.0, + "content": "The activations", + "type": "text" + }, + { + "bbox": [ + 170, + 416, + 180, + 424 + ], + "score": 0.75, + "content": "\\textbf { \\em w }", + "type": "inline_equation" + }, + { + "bbox": [ + 180, + 414, + 396, + 426 + ], + "score": 1.0, + "content": "and all intermediate results, as well as the parameters", + "type": "text" + }, + { + "bbox": [ + 396, + 414, + 418, + 425 + ], + "score": 0.52, + "content": "H , b", + "type": "inline_equation" + }, + { + "bbox": [ + 419, + 414, + 438, + 426 + ], + "score": 1.0, + "content": ", and", + "type": "text" + }, + { + "bbox": [ + 438, + 416, + 445, + 424 + ], + "score": 0.75, + "content": "^ c", + "type": "inline_equation" + }, + { + "bbox": [ + 446, + 414, + 505, + 426 + ], + "score": 1.0, + "content": "are all defined", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 425, + 505, + 437 + ], + "spans": [ + { + "bbox": [ + 105, + 425, + 370, + 437 + ], + "score": 1.0, + "content": "as integers. However, they may use differing number formats. For", + "type": "text" + }, + { + "bbox": [ + 370, + 427, + 377, + 435 + ], + "score": 0.77, + "content": "\\pmb { v }", + "type": "inline_equation" + }, + { + "bbox": [ + 378, + 425, + 475, + 437 + ], + "score": 1.0, + "content": "to be integral, we define", + "type": "text" + }, + { + "bbox": [ + 475, + 426, + 485, + 436 + ], + "score": 0.83, + "content": "\\oslash", + "type": "inline_equation" + }, + { + "bbox": [ + 485, + 425, + 505, + 437 + ], + "score": 1.0, + "content": "here", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 437, + 505, + 448 + ], + "spans": [ + { + "bbox": [ + 105, + 437, + 505, + 448 + ], + "score": 1.0, + "content": "to perform rounding division (equivalent to division followed by rounding to the nearest integer). In", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 447, + 470, + 460 + ], + "spans": [ + { + "bbox": [ + 105, + 447, + 437, + 460 + ], + "score": 1.0, + "content": "programming languages such as C, this can be implemented with integer operands", + "type": "text" + }, + { + "bbox": [ + 437, + 449, + 457, + 459 + ], + "score": 0.88, + "content": "m , n", + "type": "inline_equation" + }, + { + "bbox": [ + 458, + 447, + 470, + 460 + ], + "score": 1.0, + "content": "as", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 18.5 + }, + { + "type": "interline_equation", + "bbox": [ + 230, + 463, + 381, + 478 + ], + "lines": [ + { + "bbox": [ + 230, + 463, + 381, + 478 + ], + "spans": [ + { + "bbox": [ + 230, + 463, + 381, + 478 + ], + "score": 0.92, + "content": "\\begin{array} { r } { m \\oslash n = Q ( \\frac { m } { n } ) = ( m + n / / 2 ) \\ / / n , } \\end{array}", + "type": "interline_equation", + "image_path": "ed009fa80d9626f5fa79793ff68d2a7c7aa65c2ae0feec3d06db5eac912637f9.jpg" + } + ] + } + ], + "index": 21, + "virtual_lines": [ + { + "bbox": [ + 230, + 463, + 381, + 478 + ], + "spans": [], + "index": 21 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 481, + 505, + 559 + ], + "lines": [ + { + "bbox": [ + 106, + 482, + 506, + 494 + ], + "spans": [ + { + "bbox": [ + 106, + 482, + 133, + 494 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 134, + 482, + 143, + 493 + ], + "score": 0.85, + "content": "Q", + "type": "inline_equation" + }, + { + "bbox": [ + 143, + 482, + 279, + 494 + ], + "score": 1.0, + "content": "rounds to the nearest integer and", + "type": "text" + }, + { + "bbox": [ + 279, + 482, + 286, + 494 + ], + "score": 0.79, + "content": "/ /", + "type": "inline_equation" + }, + { + "bbox": [ + 287, + 482, + 506, + 494 + ], + "score": 1.0, + "content": "is floor division; here, the addition can be folded into", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 106, + 493, + 505, + 504 + ], + "spans": [ + { + "bbox": [ + 106, + 493, + 140, + 504 + ], + "score": 1.0, + "content": "the bias", + "type": "text" + }, + { + "bbox": [ + 141, + 493, + 147, + 502 + ], + "score": 0.71, + "content": "^ { b }", + "type": "inline_equation" + }, + { + "bbox": [ + 147, + 493, + 394, + 504 + ], + "score": 1.0, + "content": "as an optimization. We constrain the linear filter coefficients", + "type": "text" + }, + { + "bbox": [ + 395, + 493, + 407, + 503 + ], + "score": 0.75, + "content": "\\pmb { H }", + "type": "inline_equation" + }, + { + "bbox": [ + 407, + 493, + 487, + 504 + ], + "score": 1.0, + "content": "and the bias vector", + "type": "text" + }, + { + "bbox": [ + 487, + 493, + 493, + 502 + ], + "score": 0.7, + "content": "^ { b }", + "type": "inline_equation" + }, + { + "bbox": [ + 494, + 493, + 505, + 504 + ], + "score": 1.0, + "content": "to", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 504, + 505, + 516 + ], + "spans": [ + { + "bbox": [ + 105, + 504, + 318, + 516 + ], + "score": 1.0, + "content": "generally use signed integers, and the scaling vector", + "type": "text" + }, + { + "bbox": [ + 318, + 506, + 325, + 514 + ], + "score": 0.7, + "content": "^ c", + "type": "inline_equation" + }, + { + "bbox": [ + 325, + 504, + 505, + 516 + ], + "score": 1.0, + "content": "to use unsigned integers. We implement the", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 104, + 514, + 506, + 528 + ], + "spans": [ + { + "bbox": [ + 104, + 514, + 506, + 528 + ], + "score": 1.0, + "content": "accumulators of the linear transform with larger bit width than the activations and filter coefficients,", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 526, + 505, + 538 + ], + "spans": [ + { + "bbox": [ + 105, + 526, + 505, + 538 + ], + "score": 1.0, + "content": "in order to reflect the potentially increased dynamic range of multiplicative operations. We assume", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 536, + 505, + 549 + ], + "spans": [ + { + "bbox": [ + 105, + 536, + 396, + 549 + ], + "score": 1.0, + "content": "here that the bias and scaling vectors, as well as the intermediate vector", + "type": "text" + }, + { + "bbox": [ + 396, + 539, + 403, + 546 + ], + "score": 0.72, + "content": "\\pmb { v }", + "type": "inline_equation" + }, + { + "bbox": [ + 403, + 536, + 505, + 549 + ], + "score": 1.0, + "content": ", have the same bit width", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 106, + 548, + 190, + 559 + ], + "spans": [ + { + "bbox": [ + 106, + 548, + 190, + 559 + ], + "score": 1.0, + "content": "as the accumulators.", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 25 + }, + { + "type": "text", + "bbox": [ + 106, + 564, + 505, + 630 + ], + "lines": [ + { + "bbox": [ + 106, + 564, + 505, + 577 + ], + "spans": [ + { + "bbox": [ + 106, + 564, + 230, + 577 + ], + "score": 1.0, + "content": "The elementwise nonlinearity", + "type": "text" + }, + { + "bbox": [ + 231, + 567, + 237, + 576 + ], + "score": 0.77, + "content": "g", + "type": "inline_equation" + }, + { + "bbox": [ + 238, + 564, + 505, + 577 + ], + "score": 1.0, + "content": "must be saturating on both ends of its domain, because integers", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 106, + 575, + 506, + 588 + ], + "spans": [ + { + "bbox": [ + 106, + 575, + 506, + 588 + ], + "score": 1.0, + "content": "can only represent finite number ranges. In order to maximize utility of the dynamic range, we", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 106, + 587, + 505, + 598 + ], + "spans": [ + { + "bbox": [ + 106, + 587, + 380, + 598 + ], + "score": 1.0, + "content": "scale nonlinearities such that their range matches the bit width of", + "type": "text" + }, + { + "bbox": [ + 380, + 588, + 389, + 596 + ], + "score": 0.67, + "content": "\\pmb { w }", + "type": "inline_equation" + }, + { + "bbox": [ + 390, + 587, + 505, + 598 + ], + "score": 1.0, + "content": ", while their domain can be", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 597, + 505, + 610 + ], + "spans": [ + { + "bbox": [ + 105, + 597, + 473, + 610 + ], + "score": 1.0, + "content": "scaled somewhat arbitrarily. Depending on the range of the nonlinearity, the activations", + "type": "text" + }, + { + "bbox": [ + 473, + 599, + 483, + 608 + ], + "score": 0.63, + "content": "\\textbf { \\em w }", + "type": "inline_equation" + }, + { + "bbox": [ + 483, + 597, + 505, + 610 + ], + "score": 1.0, + "content": "may", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 608, + 506, + 621 + ], + "spans": [ + { + "bbox": [ + 105, + 608, + 506, + 621 + ], + "score": 1.0, + "content": "use a signed or unsigned number format. For instance, a reasonable choice of number formats and", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 620, + 198, + 631 + ], + "spans": [ + { + "bbox": [ + 105, + 620, + 198, + 631 + ], + "score": 1.0, + "content": "nonlinearity would be:", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 31.5 + }, + { + "type": "interline_equation", + "bbox": [ + 205, + 634, + 403, + 706 + ], + "lines": [ + { + "bbox": [ + 205, + 634, + 403, + 706 + ], + "spans": [ + { + "bbox": [ + 205, + 634, + 403, + 706 + ], + "score": 0.89, + "content": "\\begin{array} { c } { { H : 8 \\mathrm { - b i t ~ s i g n e d ~ } } } \\\\ { { b , v : 3 2 \\mathrm { - b i t ~ s i g n e d ~ ( s a m e ~ a s ~ a c c u m u l a t o r ) } } } \\\\ { { c : 3 2 \\mathrm { - b i t ~ u n s i g n e d ~ } } } \\\\ { { w : 8 \\mathrm { - b i t ~ u n s i g n e d ~ } } } \\\\ { { g _ { \\mathrm { Q R e L U } } ( v ) = \\mathrm { m a x } ( \\mathrm { m i n } ( v , 2 5 5 ) , 0 ) } } \\end{array}", + "type": "interline_equation", + "image_path": "fe3f008418a79eb1a359d809f9a965ca060c64629f36c823a6b4d86af5b9a8df.jpg" + } + ] + } + ], + "index": 37, + "virtual_lines": [ + { + "bbox": [ + 205, + 634, + 403, + 648.4 + ], + "spans": [], + "index": 35 + }, + { + "bbox": [ + 205, + 648.4, + 403, + 662.8 + ], + "spans": [], + "index": 36 + }, + { + "bbox": [ + 205, + 662.8, + 403, + 677.1999999999999 + ], + "spans": [], + "index": 37 + }, + { + "bbox": [ + 205, + 677.1999999999999, + 403, + 691.5999999999999 + ], + "spans": [], + "index": 38 + }, + { + "bbox": [ + 205, + 691.5999999999999, + 403, + 705.9999999999999 + ], + "spans": [], + "index": 39 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 709, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 709, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 106, + 709, + 505, + 722 + ], + "score": 1.0, + "content": "In this example, the nonlinearity can be implemented with a simple clipping operation. Refer to", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 106, + 720, + 505, + 733 + ], + "spans": [ + { + "bbox": [ + 106, + 720, + 505, + 733 + ], + "score": 1.0, + "content": "figure 2, left, for a visualization (for visualization purposes, the figure shows a smaller bit width).", + "type": "text" + } + ], + "index": 41 + } + ], + "index": 40.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 2019", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 302, + 751, + 309, + 760 + ], + "lines": [ + { + "bbox": [ + 301, + 750, + 310, + 762 + ], + "spans": [ + { + "bbox": [ + 301, + 750, + 310, + 762 + ], + "score": 1.0, + "content": "3", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "image", + "bbox": [ + 109, + 79, + 506, + 207 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 109, + 79, + 506, + 207 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 109, + 79, + 506, + 207 + ], + "spans": [ + { + "bbox": [ + 109, + 79, + 506, + 207 + ], + "score": 0.967, + "type": "image", + "image_path": "c91a76ad0addf5cef94c1363679199123dda26f8a6a06cc57fa964c0de157f07.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 109, + 79, + 506, + 121.66666666666666 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 109, + 121.66666666666666, + 506, + 164.33333333333331 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 109, + 164.33333333333331, + 506, + 206.99999999999997 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 217, + 506, + 306 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 217, + 506, + 231 + ], + "spans": [ + { + "bbox": [ + 105, + 217, + 506, + 231 + ], + "score": 1.0, + "content": "Figure 2: Left: Example nonlinearity implementing a saturating rectifier for 4-bit unsigned integer", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 106, + 228, + 506, + 242 + ], + "spans": [ + { + "bbox": [ + 106, + 228, + 180, + 242 + ], + "score": 1.0, + "content": "outputs, given by", + "type": "text" + }, + { + "bbox": [ + 180, + 228, + 317, + 240 + ], + "score": 0.91, + "content": "g _ { \\mathrm { Q R e L U } } ( v ) = \\mathrm { m a x } ( \\mathrm { m i n } ( v , 1 5 ) , 0 )", + "type": "inline_equation" + }, + { + "bbox": [ + 317, + 228, + 506, + 242 + ], + "score": 1.0, + "content": ". This nonlinearity can be implemented deter-", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 240, + 506, + 253 + ], + "spans": [ + { + "bbox": [ + 105, + 240, + 506, + 253 + ], + "score": 1.0, + "content": "ministically either using a lookup table or simply using a clipping operation. The corresponding", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 250, + 505, + 263 + ], + "spans": [ + { + "bbox": [ + 105, + 250, + 307, + 263 + ], + "score": 1.0, + "content": "scaled cumulative of a generalized Gaussian with", + "type": "text" + }, + { + "bbox": [ + 307, + 250, + 334, + 262 + ], + "score": 0.91, + "content": "\\beta = 4", + "type": "inline_equation" + }, + { + "bbox": [ + 334, + 250, + 505, + 263 + ], + "score": 1.0, + "content": "used for computing gradients is plotted in", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 261, + 506, + 274 + ], + "spans": [ + { + "bbox": [ + 105, + 261, + 216, + 274 + ], + "score": 1.0, + "content": "cyan, and other choices of", + "type": "text" + }, + { + "bbox": [ + 216, + 261, + 224, + 272 + ], + "score": 0.84, + "content": "\\beta", + "type": "inline_equation" + }, + { + "bbox": [ + 224, + 261, + 506, + 274 + ], + "score": 1.0, + "content": "in gray. Right: Example nonlinearity approximating hyperbolic tan-", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 271, + 506, + 286 + ], + "spans": [ + { + "bbox": [ + 105, + 271, + 291, + 286 + ], + "score": 1.0, + "content": "gent for 4-bit signed integer outputs, given by", + "type": "text" + }, + { + "bbox": [ + 292, + 272, + 401, + 285 + ], + "score": 0.92, + "content": "\\begin{array} { r } { g _ { \\mathrm { Q t a n h } } ( v ) = Q ( 7 \\operatorname { t a n h } ( \\frac { v } { 1 5 } ) ) } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 401, + 271, + 506, + 286 + ], + "score": 1.0, + "content": ". This nonlinearity can be", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 106, + 283, + 506, + 297 + ], + "spans": [ + { + "bbox": [ + 106, + 283, + 506, + 297 + ], + "score": 1.0, + "content": "implemented deterministically using a lookup table. The corresponding scaled hyperbolic tangent", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 293, + 298, + 308 + ], + "spans": [ + { + "bbox": [ + 105, + 293, + 298, + 308 + ], + "score": 1.0, + "content": "used for computing gradients is plotted in cyan.", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 6.5 + } + ], + "index": 3.75 + }, + { + "type": "text", + "bbox": [ + 105, + 326, + 454, + 339 + ], + "lines": [ + { + "bbox": [ + 105, + 325, + 455, + 340 + ], + "spans": [ + { + "bbox": [ + 105, + 325, + 322, + 340 + ], + "score": 1.0, + "content": "Concretely, we define the relationship between inputs", + "type": "text" + }, + { + "bbox": [ + 322, + 329, + 330, + 337 + ], + "score": 0.8, + "content": "\\textbf { \\em u }", + "type": "inline_equation" + }, + { + "bbox": [ + 330, + 325, + 380, + 340 + ], + "score": 1.0, + "content": "and outputs", + "type": "text" + }, + { + "bbox": [ + 381, + 329, + 390, + 337 + ], + "score": 0.78, + "content": "\\pmb { w }", + "type": "inline_equation" + }, + { + "bbox": [ + 390, + 325, + 455, + 340 + ], + "score": 1.0, + "content": "of one layer as:", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 11, + "bbox_fs": [ + 105, + 325, + 455, + 340 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 261, + 342, + 348, + 372 + ], + "lines": [ + { + "bbox": [ + 261, + 342, + 348, + 372 + ], + "spans": [ + { + "bbox": [ + 261, + 342, + 348, + 372 + ], + "score": 0.91, + "content": "\\begin{array} { r } { \\pmb { v } = ( \\pmb { H } \\pmb { u } + \\pmb { b } ) \\oslash \\pmb { c } , } \\\\ { \\pmb { w } = g ( \\pmb { v } ) . } \\end{array}", + "type": "interline_equation", + "image_path": "ce8662bd1d7fc1b5a6a25eb34e6f32e599e0b3eee84dbc30fa3074ec7a8052f0.jpg" + } + ] + } + ], + "index": 12.5, + "virtual_lines": [ + { + "bbox": [ + 261, + 342, + 348, + 357.0 + ], + "spans": [], + "index": 12 + }, + { + "bbox": [ + 261, + 357.0, + 348, + 372.0 + ], + "spans": [], + "index": 13 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 375, + 504, + 408 + ], + "lines": [ + { + "bbox": [ + 105, + 375, + 504, + 388 + ], + "spans": [ + { + "bbox": [ + 105, + 375, + 190, + 388 + ], + "score": 1.0, + "content": "In order, the inputs", + "type": "text" + }, + { + "bbox": [ + 190, + 378, + 198, + 385 + ], + "score": 0.76, + "content": "\\textbf { \\em u }", + "type": "inline_equation" + }, + { + "bbox": [ + 198, + 375, + 346, + 388 + ], + "score": 1.0, + "content": "are subjected to a linear transform", + "type": "text" + }, + { + "bbox": [ + 347, + 375, + 359, + 385 + ], + "score": 0.76, + "content": "\\pmb { H }", + "type": "inline_equation" + }, + { + "bbox": [ + 359, + 375, + 504, + 388 + ], + "score": 1.0, + "content": "(a matrix multiplication, or a con-", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 386, + 505, + 399 + ], + "spans": [ + { + "bbox": [ + 105, + 386, + 206, + 399 + ], + "score": 1.0, + "content": "volution); a bias vector", + "type": "text" + }, + { + "bbox": [ + 206, + 387, + 213, + 396 + ], + "score": 0.76, + "content": "^ { b }", + "type": "inline_equation" + }, + { + "bbox": [ + 213, + 386, + 445, + 399 + ], + "score": 1.0, + "content": "is added; the result is divided elementwise by a vector", + "type": "text" + }, + { + "bbox": [ + 445, + 389, + 452, + 396 + ], + "score": 0.69, + "content": "^ c", + "type": "inline_equation" + }, + { + "bbox": [ + 452, + 386, + 505, + 399 + ], + "score": 1.0, + "content": ", yielding an", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 397, + 454, + 410 + ], + "spans": [ + { + "bbox": [ + 105, + 397, + 210, + 410 + ], + "score": 1.0, + "content": "intermediate result vector", + "type": "text" + }, + { + "bbox": [ + 211, + 399, + 218, + 407 + ], + "score": 0.77, + "content": "\\textbf { { v } }", + "type": "inline_equation" + }, + { + "bbox": [ + 218, + 397, + 383, + 410 + ], + "score": 1.0, + "content": "; and finally, an elementwise nonlinearity", + "type": "text" + }, + { + "bbox": [ + 383, + 399, + 390, + 409 + ], + "score": 0.79, + "content": "g", + "type": "inline_equation" + }, + { + "bbox": [ + 390, + 397, + 442, + 410 + ], + "score": 1.0, + "content": "is applied to", + "type": "text" + }, + { + "bbox": [ + 442, + 399, + 449, + 407 + ], + "score": 0.78, + "content": "\\pmb { v }", + "type": "inline_equation" + }, + { + "bbox": [ + 450, + 397, + 454, + 410 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 15, + "bbox_fs": [ + 105, + 375, + 505, + 410 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 414, + 505, + 459 + ], + "lines": [ + { + "bbox": [ + 106, + 414, + 505, + 426 + ], + "spans": [ + { + "bbox": [ + 106, + 414, + 169, + 426 + ], + "score": 1.0, + "content": "The activations", + "type": "text" + }, + { + "bbox": [ + 170, + 416, + 180, + 424 + ], + "score": 0.75, + "content": "\\textbf { \\em w }", + "type": "inline_equation" + }, + { + "bbox": [ + 180, + 414, + 396, + 426 + ], + "score": 1.0, + "content": "and all intermediate results, as well as the parameters", + "type": "text" + }, + { + "bbox": [ + 396, + 414, + 418, + 425 + ], + "score": 0.52, + "content": "H , b", + "type": "inline_equation" + }, + { + "bbox": [ + 419, + 414, + 438, + 426 + ], + "score": 1.0, + "content": ", and", + "type": "text" + }, + { + "bbox": [ + 438, + 416, + 445, + 424 + ], + "score": 0.75, + "content": "^ c", + "type": "inline_equation" + }, + { + "bbox": [ + 446, + 414, + 505, + 426 + ], + "score": 1.0, + "content": "are all defined", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 425, + 505, + 437 + ], + "spans": [ + { + "bbox": [ + 105, + 425, + 370, + 437 + ], + "score": 1.0, + "content": "as integers. However, they may use differing number formats. For", + "type": "text" + }, + { + "bbox": [ + 370, + 427, + 377, + 435 + ], + "score": 0.77, + "content": "\\pmb { v }", + "type": "inline_equation" + }, + { + "bbox": [ + 378, + 425, + 475, + 437 + ], + "score": 1.0, + "content": "to be integral, we define", + "type": "text" + }, + { + "bbox": [ + 475, + 426, + 485, + 436 + ], + "score": 0.83, + "content": "\\oslash", + "type": "inline_equation" + }, + { + "bbox": [ + 485, + 425, + 505, + 437 + ], + "score": 1.0, + "content": "here", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 437, + 505, + 448 + ], + "spans": [ + { + "bbox": [ + 105, + 437, + 505, + 448 + ], + "score": 1.0, + "content": "to perform rounding division (equivalent to division followed by rounding to the nearest integer). In", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 447, + 470, + 460 + ], + "spans": [ + { + "bbox": [ + 105, + 447, + 437, + 460 + ], + "score": 1.0, + "content": "programming languages such as C, this can be implemented with integer operands", + "type": "text" + }, + { + "bbox": [ + 437, + 449, + 457, + 459 + ], + "score": 0.88, + "content": "m , n", + "type": "inline_equation" + }, + { + "bbox": [ + 458, + 447, + 470, + 460 + ], + "score": 1.0, + "content": "as", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 18.5, + "bbox_fs": [ + 105, + 414, + 505, + 460 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 230, + 463, + 381, + 478 + ], + "lines": [ + { + "bbox": [ + 230, + 463, + 381, + 478 + ], + "spans": [ + { + "bbox": [ + 230, + 463, + 381, + 478 + ], + "score": 0.92, + "content": "\\begin{array} { r } { m \\oslash n = Q ( \\frac { m } { n } ) = ( m + n / / 2 ) \\ / / n , } \\end{array}", + "type": "interline_equation", + "image_path": "ed009fa80d9626f5fa79793ff68d2a7c7aa65c2ae0feec3d06db5eac912637f9.jpg" + } + ] + } + ], + "index": 21, + "virtual_lines": [ + { + "bbox": [ + 230, + 463, + 381, + 478 + ], + "spans": [], + "index": 21 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 481, + 505, + 559 + ], + "lines": [ + { + "bbox": [ + 106, + 482, + 506, + 494 + ], + "spans": [ + { + "bbox": [ + 106, + 482, + 133, + 494 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 134, + 482, + 143, + 493 + ], + "score": 0.85, + "content": "Q", + "type": "inline_equation" + }, + { + "bbox": [ + 143, + 482, + 279, + 494 + ], + "score": 1.0, + "content": "rounds to the nearest integer and", + "type": "text" + }, + { + "bbox": [ + 279, + 482, + 286, + 494 + ], + "score": 0.79, + "content": "/ /", + "type": "inline_equation" + }, + { + "bbox": [ + 287, + 482, + 506, + 494 + ], + "score": 1.0, + "content": "is floor division; here, the addition can be folded into", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 106, + 493, + 505, + 504 + ], + "spans": [ + { + "bbox": [ + 106, + 493, + 140, + 504 + ], + "score": 1.0, + "content": "the bias", + "type": "text" + }, + { + "bbox": [ + 141, + 493, + 147, + 502 + ], + "score": 0.71, + "content": "^ { b }", + "type": "inline_equation" + }, + { + "bbox": [ + 147, + 493, + 394, + 504 + ], + "score": 1.0, + "content": "as an optimization. We constrain the linear filter coefficients", + "type": "text" + }, + { + "bbox": [ + 395, + 493, + 407, + 503 + ], + "score": 0.75, + "content": "\\pmb { H }", + "type": "inline_equation" + }, + { + "bbox": [ + 407, + 493, + 487, + 504 + ], + "score": 1.0, + "content": "and the bias vector", + "type": "text" + }, + { + "bbox": [ + 487, + 493, + 493, + 502 + ], + "score": 0.7, + "content": "^ { b }", + "type": "inline_equation" + }, + { + "bbox": [ + 494, + 493, + 505, + 504 + ], + "score": 1.0, + "content": "to", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 504, + 505, + 516 + ], + "spans": [ + { + "bbox": [ + 105, + 504, + 318, + 516 + ], + "score": 1.0, + "content": "generally use signed integers, and the scaling vector", + "type": "text" + }, + { + "bbox": [ + 318, + 506, + 325, + 514 + ], + "score": 0.7, + "content": "^ c", + "type": "inline_equation" + }, + { + "bbox": [ + 325, + 504, + 505, + 516 + ], + "score": 1.0, + "content": "to use unsigned integers. We implement the", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 104, + 514, + 506, + 528 + ], + "spans": [ + { + "bbox": [ + 104, + 514, + 506, + 528 + ], + "score": 1.0, + "content": "accumulators of the linear transform with larger bit width than the activations and filter coefficients,", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 526, + 505, + 538 + ], + "spans": [ + { + "bbox": [ + 105, + 526, + 505, + 538 + ], + "score": 1.0, + "content": "in order to reflect the potentially increased dynamic range of multiplicative operations. We assume", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 536, + 505, + 549 + ], + "spans": [ + { + "bbox": [ + 105, + 536, + 396, + 549 + ], + "score": 1.0, + "content": "here that the bias and scaling vectors, as well as the intermediate vector", + "type": "text" + }, + { + "bbox": [ + 396, + 539, + 403, + 546 + ], + "score": 0.72, + "content": "\\pmb { v }", + "type": "inline_equation" + }, + { + "bbox": [ + 403, + 536, + 505, + 549 + ], + "score": 1.0, + "content": ", have the same bit width", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 106, + 548, + 190, + 559 + ], + "spans": [ + { + "bbox": [ + 106, + 548, + 190, + 559 + ], + "score": 1.0, + "content": "as the accumulators.", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 25, + "bbox_fs": [ + 104, + 482, + 506, + 559 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 564, + 505, + 630 + ], + "lines": [ + { + "bbox": [ + 106, + 564, + 505, + 577 + ], + "spans": [ + { + "bbox": [ + 106, + 564, + 230, + 577 + ], + "score": 1.0, + "content": "The elementwise nonlinearity", + "type": "text" + }, + { + "bbox": [ + 231, + 567, + 237, + 576 + ], + "score": 0.77, + "content": "g", + "type": "inline_equation" + }, + { + "bbox": [ + 238, + 564, + 505, + 577 + ], + "score": 1.0, + "content": "must be saturating on both ends of its domain, because integers", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 106, + 575, + 506, + 588 + ], + "spans": [ + { + "bbox": [ + 106, + 575, + 506, + 588 + ], + "score": 1.0, + "content": "can only represent finite number ranges. In order to maximize utility of the dynamic range, we", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 106, + 587, + 505, + 598 + ], + "spans": [ + { + "bbox": [ + 106, + 587, + 380, + 598 + ], + "score": 1.0, + "content": "scale nonlinearities such that their range matches the bit width of", + "type": "text" + }, + { + "bbox": [ + 380, + 588, + 389, + 596 + ], + "score": 0.67, + "content": "\\pmb { w }", + "type": "inline_equation" + }, + { + "bbox": [ + 390, + 587, + 505, + 598 + ], + "score": 1.0, + "content": ", while their domain can be", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 597, + 505, + 610 + ], + "spans": [ + { + "bbox": [ + 105, + 597, + 473, + 610 + ], + "score": 1.0, + "content": "scaled somewhat arbitrarily. Depending on the range of the nonlinearity, the activations", + "type": "text" + }, + { + "bbox": [ + 473, + 599, + 483, + 608 + ], + "score": 0.63, + "content": "\\textbf { \\em w }", + "type": "inline_equation" + }, + { + "bbox": [ + 483, + 597, + 505, + 610 + ], + "score": 1.0, + "content": "may", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 608, + 506, + 621 + ], + "spans": [ + { + "bbox": [ + 105, + 608, + 506, + 621 + ], + "score": 1.0, + "content": "use a signed or unsigned number format. For instance, a reasonable choice of number formats and", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 620, + 198, + 631 + ], + "spans": [ + { + "bbox": [ + 105, + 620, + 198, + 631 + ], + "score": 1.0, + "content": "nonlinearity would be:", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 31.5, + "bbox_fs": [ + 105, + 564, + 506, + 631 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 205, + 634, + 403, + 706 + ], + "lines": [ + { + "bbox": [ + 205, + 634, + 403, + 706 + ], + "spans": [ + { + "bbox": [ + 205, + 634, + 403, + 706 + ], + "score": 0.89, + "content": "\\begin{array} { c } { { H : 8 \\mathrm { - b i t ~ s i g n e d ~ } } } \\\\ { { b , v : 3 2 \\mathrm { - b i t ~ s i g n e d ~ ( s a m e ~ a s ~ a c c u m u l a t o r ) } } } \\\\ { { c : 3 2 \\mathrm { - b i t ~ u n s i g n e d ~ } } } \\\\ { { w : 8 \\mathrm { - b i t ~ u n s i g n e d ~ } } } \\\\ { { g _ { \\mathrm { Q R e L U } } ( v ) = \\mathrm { m a x } ( \\mathrm { m i n } ( v , 2 5 5 ) , 0 ) } } \\end{array}", + "type": "interline_equation", + "image_path": "fe3f008418a79eb1a359d809f9a965ca060c64629f36c823a6b4d86af5b9a8df.jpg" + } + ] + } + ], + "index": 37, + "virtual_lines": [ + { + "bbox": [ + 205, + 634, + 403, + 648.4 + ], + "spans": [], + "index": 35 + }, + { + "bbox": [ + 205, + 648.4, + 403, + 662.8 + ], + "spans": [], + "index": 36 + }, + { + "bbox": [ + 205, + 662.8, + 403, + 677.1999999999999 + ], + "spans": [], + "index": 37 + }, + { + "bbox": [ + 205, + 677.1999999999999, + 403, + 691.5999999999999 + ], + "spans": [], + "index": 38 + }, + { + "bbox": [ + 205, + 691.5999999999999, + 403, + 705.9999999999999 + ], + "spans": [], + "index": 39 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 709, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 709, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 106, + 709, + 505, + 722 + ], + "score": 1.0, + "content": "In this example, the nonlinearity can be implemented with a simple clipping operation. Refer to", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 106, + 720, + 505, + 733 + ], + "spans": [ + { + "bbox": [ + 106, + 720, + 505, + 733 + ], + "score": 1.0, + "content": "figure 2, left, for a visualization (for visualization purposes, the figure shows a smaller bit width).", + "type": "text" + } + ], + "index": 41 + } + ], + "index": 40.5, + "bbox_fs": [ + 106, + 709, + 505, + 733 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 108, + 82, + 188, + 94 + ], + "lines": [ + { + "bbox": [ + 106, + 81, + 190, + 96 + ], + "spans": [ + { + "bbox": [ + 106, + 81, + 190, + 96 + ], + "score": 1.0, + "content": "Another example is:", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "interline_equation", + "bbox": [ + 210, + 157, + 322, + 172 + ], + "lines": [ + { + "bbox": [ + 210, + 157, + 322, + 172 + ], + "spans": [ + { + "bbox": [ + 210, + 157, + 322, + 172 + ], + "score": 0.91, + "content": "\\begin{array} { r } { g _ { \\mathrm { Q t a n h } } ( v ) = Q \\bigl ( 7 \\operatorname { t a n h } ( \\frac { v } { 1 5 } ) \\bigr ) } \\end{array}", + "type": "interline_equation", + "image_path": "cc95b1f0d28bdf8a82da442b2265bec7cc26d2ececebf5f0d4d876d0774c11d0.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 210, + 157, + 322, + 172 + ], + "spans": [], + "index": 1 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 177, + 506, + 298 + ], + "lines": [ + { + "bbox": [ + 105, + 177, + 506, + 190 + ], + "spans": [ + { + "bbox": [ + 105, + 177, + 506, + 190 + ], + "score": 1.0, + "content": "Here, the nonlinearity approximates the hyperbolic tangent, a widely used nonlinearity. It may be", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 188, + 506, + 201 + ], + "spans": [ + { + "bbox": [ + 105, + 188, + 506, + 201 + ], + "score": 1.0, + "content": "best implemented using a lookup table (see figure 2, right, for a visualization). We scale its range to", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 106, + 199, + 506, + 212 + ], + "spans": [ + { + "bbox": [ + 106, + 199, + 285, + 212 + ], + "score": 1.0, + "content": "fill the 4-bit signed integer number format of", + "type": "text" + }, + { + "bbox": [ + 286, + 201, + 295, + 209 + ], + "score": 0.77, + "content": "\\pmb { w }", + "type": "inline_equation" + }, + { + "bbox": [ + 295, + 199, + 506, + 212 + ], + "score": 1.0, + "content": "by multiplying its output with 7. The domain can be", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 106, + 210, + 504, + 222 + ], + "spans": [ + { + "bbox": [ + 106, + 210, + 245, + 222 + ], + "score": 1.0, + "content": "scaled somewhat arbitrarily, since", + "type": "text" + }, + { + "bbox": [ + 245, + 212, + 252, + 220 + ], + "score": 0.68, + "content": "\\pmb { v }", + "type": "inline_equation" + }, + { + "bbox": [ + 253, + 210, + 361, + 222 + ], + "score": 1.0, + "content": "has a larger bit width than", + "type": "text" + }, + { + "bbox": [ + 362, + 212, + 371, + 220 + ], + "score": 0.5, + "content": "\\pmb { w }", + "type": "inline_equation" + }, + { + "bbox": [ + 372, + 210, + 494, + 222 + ], + "score": 1.0, + "content": ". When it is chosen too small,", + "type": "text" + }, + { + "bbox": [ + 494, + 212, + 504, + 220 + ], + "score": 0.42, + "content": "\\pmb { w }", + "type": "inline_equation" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 219, + 506, + 235 + ], + "spans": [ + { + "bbox": [ + 105, + 219, + 506, + 235 + ], + "score": 1.0, + "content": "may not utilize all integer values, leading to a large quantization error. When it is chosen too large,", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 232, + 505, + 245 + ], + "spans": [ + { + "bbox": [ + 105, + 232, + 199, + 245 + ], + "score": 1.0, + "content": "overflow may occur in", + "type": "text" + }, + { + "bbox": [ + 199, + 234, + 206, + 242 + ], + "score": 0.69, + "content": "\\pmb { v }", + "type": "inline_equation" + }, + { + "bbox": [ + 207, + 232, + 505, + 245 + ], + "score": 1.0, + "content": ", or the size of the lookup table may grow too large for practical purposes.", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 106, + 242, + 505, + 255 + ], + "spans": [ + { + "bbox": [ + 106, + 242, + 505, + 255 + ], + "score": 1.0, + "content": "Therefore, it is best to determine the input scaling based on the shape of the nonlinearity and the", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 254, + 505, + 267 + ], + "spans": [ + { + "bbox": [ + 105, + 254, + 505, + 267 + ], + "score": 1.0, + "content": "available dynamic range. Here, we simply chose the value of 15 “by eye”, so that the nonlinearity", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 265, + 505, + 277 + ], + "spans": [ + { + "bbox": [ + 105, + 265, + 505, + 277 + ], + "score": 1.0, + "content": "is reasonably well represented with the lookup table (i.e., we made sure that at least two or three", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 276, + 506, + 289 + ], + "spans": [ + { + "bbox": [ + 105, + 276, + 506, + 289 + ], + "score": 1.0, + "content": "input values are mapped to each output value, in order to preserve the approximate shape of the", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 287, + 163, + 300 + ], + "spans": [ + { + "bbox": [ + 105, + 287, + 163, + 300 + ], + "score": 1.0, + "content": "nonlinearity).", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 7 + }, + { + "type": "title", + "bbox": [ + 108, + 310, + 334, + 322 + ], + "lines": [ + { + "bbox": [ + 104, + 308, + 334, + 326 + ], + "spans": [ + { + "bbox": [ + 104, + 308, + 334, + 326 + ], + "score": 1.0, + "content": "3 TRAINING INTEGER NEURAL NETWORKS", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 13 + }, + { + "type": "text", + "bbox": [ + 106, + 332, + 505, + 377 + ], + "lines": [ + { + "bbox": [ + 105, + 332, + 506, + 345 + ], + "spans": [ + { + "bbox": [ + 105, + 332, + 506, + 345 + ], + "score": 1.0, + "content": "To effectively accumulate small gradient signals, we train the networks entirely using floating point", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 106, + 344, + 505, + 356 + ], + "spans": [ + { + "bbox": [ + 106, + 344, + 505, + 356 + ], + "score": 1.0, + "content": "computations, rounded to integers after every computational operation, while the backpropagation", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 354, + 502, + 367 + ], + "spans": [ + { + "bbox": [ + 105, + 354, + 479, + 367 + ], + "score": 1.0, + "content": "is done with full floating point precision. More concretely, we define the integer parameters", + "type": "text" + }, + { + "bbox": [ + 479, + 354, + 502, + 365 + ], + "score": 0.27, + "content": "H , b ,", + "type": "inline_equation" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 364, + 431, + 379 + ], + "spans": [ + { + "bbox": [ + 105, + 364, + 123, + 379 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 124, + 367, + 130, + 375 + ], + "score": 0.69, + "content": "^ c", + "type": "inline_equation" + }, + { + "bbox": [ + 131, + 364, + 316, + 379 + ], + "score": 1.0, + "content": "as functions of their floating point equivalents", + "type": "text" + }, + { + "bbox": [ + 317, + 365, + 344, + 376 + ], + "score": 0.46, + "content": "H ^ { \\prime } , b ^ { \\prime }", + "type": "inline_equation" + }, + { + "bbox": [ + 344, + 364, + 364, + 379 + ], + "score": 1.0, + "content": ", and", + "type": "text" + }, + { + "bbox": [ + 365, + 365, + 373, + 375 + ], + "score": 0.84, + "content": "c ^ { \\prime }", + "type": "inline_equation" + }, + { + "bbox": [ + 374, + 364, + 431, + 379 + ], + "score": 1.0, + "content": ", respectively:", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 15.5 + }, + { + "type": "interline_equation", + "bbox": [ + 252, + 383, + 358, + 462 + ], + "lines": [ + { + "bbox": [ + 252, + 383, + 358, + 462 + ], + "spans": [ + { + "bbox": [ + 252, + 383, + 358, + 462 + ], + "score": 0.94, + "content": "\\begin{array} { r l } & { \\boldsymbol { H } = \\left[ \\begin{array} { c } { Q ( h _ { 1 } ^ { \\prime } / s ( h _ { 1 } ^ { \\prime } ) ) ) } \\\\ { \\vdots } \\\\ { Q ( h _ { N } ^ { \\prime } / s ( h _ { N } ^ { \\prime } ) ) } \\end{array} \\right] , } \\\\ & { ~ b = Q \\big ( 2 ^ { K } b ^ { \\prime } \\big ) , } \\\\ & { \\boldsymbol { c } = Q \\big ( 2 ^ { K } r ( \\boldsymbol { c } ^ { \\prime } ) \\big ) . } \\end{array}", + "type": "interline_equation", + "image_path": "0c5fab5e1106a5f19986b471317b0cace4da7facbec6fe3276f8ec72272a666d.jpg" + } + ] + } + ], + "index": 18.5, + "virtual_lines": [ + { + "bbox": [ + 252, + 383, + 358, + 422.5 + ], + "spans": [], + "index": 18 + }, + { + "bbox": [ + 252, + 422.5, + 358, + 462.0 + ], + "spans": [], + "index": 19 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 466, + 505, + 500 + ], + "lines": [ + { + "bbox": [ + 106, + 466, + 505, + 478 + ], + "spans": [ + { + "bbox": [ + 106, + 466, + 271, + 478 + ], + "score": 1.0, + "content": "Here, we simply rescale each element of", + "type": "text" + }, + { + "bbox": [ + 271, + 467, + 280, + 477 + ], + "score": 0.86, + "content": "\\pmb { b } ^ { \\prime }", + "type": "inline_equation" + }, + { + "bbox": [ + 280, + 466, + 348, + 478 + ], + "score": 1.0, + "content": "using a constant", + "type": "text" + }, + { + "bbox": [ + 348, + 467, + 358, + 477 + ], + "score": 0.84, + "content": "K", + "type": "inline_equation" + }, + { + "bbox": [ + 359, + 466, + 505, + 478 + ], + "score": 1.0, + "content": ", which is the bit-width of the kernel", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 107, + 477, + 505, + 490 + ], + "spans": [ + { + "bbox": [ + 107, + 478, + 119, + 488 + ], + "score": 0.71, + "content": "\\pmb { H }", + "type": "inline_equation" + }, + { + "bbox": [ + 119, + 477, + 505, + 490 + ], + "score": 1.0, + "content": "(e.g. 8-bits in the QReLu networks), and round it to the nearest integer. The reparameterization", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 488, + 278, + 501 + ], + "spans": [ + { + "bbox": [ + 105, + 488, + 144, + 501 + ], + "score": 1.0, + "content": "mapping", + "type": "text" + }, + { + "bbox": [ + 144, + 491, + 150, + 498 + ], + "score": 0.75, + "content": "r", + "type": "inline_equation" + }, + { + "bbox": [ + 150, + 488, + 278, + 501 + ], + "score": 1.0, + "content": "is borrowed from Ballé (2018):", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 21 + }, + { + "type": "interline_equation", + "bbox": [ + 235, + 505, + 376, + 529 + ], + "lines": [ + { + "bbox": [ + 235, + 505, + 376, + 529 + ], + "spans": [ + { + "bbox": [ + 235, + 505, + 376, + 529 + ], + "score": 0.94, + "content": "r ( c ^ { \\prime } ) = \\mathrm { m a x } \\Big ( c ^ { \\prime } , \\sqrt { 1 + \\epsilon ^ { 2 } } \\Big ) ^ { 2 } - \\epsilon ^ { 2 } .", + "type": "interline_equation", + "image_path": "f05f14dee3381c0df2a2f328de637c63d32eee81f98dd6f4752b463161af90d9.jpg" + } + ] + } + ], + "index": 23, + "virtual_lines": [ + { + "bbox": [ + 235, + 505, + 376, + 529 + ], + "spans": [], + "index": 23 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 534, + 505, + 579 + ], + "lines": [ + { + "bbox": [ + 106, + 534, + 506, + 547 + ], + "spans": [ + { + "bbox": [ + 106, + 534, + 133, + 547 + ], + "score": 1.0, + "content": "When", + "type": "text" + }, + { + "bbox": [ + 133, + 537, + 140, + 545 + ], + "score": 0.68, + "content": "^ c", + "type": "inline_equation" + }, + { + "bbox": [ + 141, + 534, + 245, + 547 + ], + "score": 1.0, + "content": "is small, perturbations in", + "type": "text" + }, + { + "bbox": [ + 245, + 537, + 252, + 545 + ], + "score": 0.65, + "content": "^ c", + "type": "inline_equation" + }, + { + "bbox": [ + 253, + 534, + 506, + 547 + ], + "score": 1.0, + "content": "can lead to excessively large fluctuations of the quotient (i.e.,", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 545, + 506, + 558 + ], + "spans": [ + { + "bbox": [ + 105, + 545, + 383, + 558 + ], + "score": 1.0, + "content": "the input to the nonlinearity). This leads to instabilities in training.", + "type": "text" + }, + { + "bbox": [ + 384, + 548, + 390, + 555 + ], + "score": 0.71, + "content": "r", + "type": "inline_equation" + }, + { + "bbox": [ + 390, + 545, + 482, + 558 + ], + "score": 1.0, + "content": "ensures that values of", + "type": "text" + }, + { + "bbox": [ + 482, + 548, + 489, + 555 + ], + "score": 0.69, + "content": "^ c", + "type": "inline_equation" + }, + { + "bbox": [ + 489, + 545, + 506, + 558 + ], + "score": 1.0, + "content": "are", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 106, + 556, + 505, + 568 + ], + "spans": [ + { + "bbox": [ + 106, + 556, + 392, + 568 + ], + "score": 1.0, + "content": "always positive, while gracefully scaling down gradient magnitudes on", + "type": "text" + }, + { + "bbox": [ + 392, + 559, + 398, + 566 + ], + "score": 0.6, + "content": "^ c", + "type": "inline_equation" + }, + { + "bbox": [ + 399, + 556, + 505, + 568 + ], + "score": 1.0, + "content": "near zero. Effectively, the", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 568, + 456, + 580 + ], + "spans": [ + { + "bbox": [ + 105, + 568, + 155, + 580 + ], + "score": 1.0, + "content": "step size on", + "type": "text" + }, + { + "bbox": [ + 156, + 570, + 162, + 577 + ], + "score": 0.68, + "content": "^ c", + "type": "inline_equation" + }, + { + "bbox": [ + 163, + 568, + 390, + 580 + ], + "score": 1.0, + "content": "is multiplied with a factor that is approximately linear in", + "type": "text" + }, + { + "bbox": [ + 390, + 569, + 397, + 578 + ], + "score": 0.65, + "content": "^ c", + "type": "inline_equation" + }, + { + "bbox": [ + 398, + 568, + 456, + 580 + ], + "score": 1.0, + "content": "(Ballé, 2018).", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 25.5 + }, + { + "type": "text", + "bbox": [ + 106, + 583, + 504, + 606 + ], + "lines": [ + { + "bbox": [ + 105, + 581, + 506, + 599 + ], + "spans": [ + { + "bbox": [ + 105, + 581, + 297, + 599 + ], + "score": 1.0, + "content": "Before rounding the linear filter coefficients in", + "type": "text" + }, + { + "bbox": [ + 297, + 583, + 385, + 597 + ], + "score": 0.92, + "content": "\\pmb { H } ^ { \\prime } = [ h _ { 1 } ^ { \\prime } , \\ldots , h _ { N } ^ { \\prime } ] ^ { \\top }", + "type": "inline_equation" + }, + { + "bbox": [ + 385, + 581, + 506, + 599 + ], + "score": 1.0, + "content": ", we apply a special rescaling", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 106, + 594, + 243, + 607 + ], + "spans": [ + { + "bbox": [ + 106, + 594, + 142, + 607 + ], + "score": 1.0, + "content": "function", + "type": "text" + }, + { + "bbox": [ + 142, + 598, + 148, + 605 + ], + "score": 0.74, + "content": "s", + "type": "inline_equation" + }, + { + "bbox": [ + 149, + 594, + 228, + 607 + ], + "score": 1.0, + "content": "to each of its filters", + "type": "text" + }, + { + "bbox": [ + 228, + 595, + 239, + 605 + ], + "score": 0.87, + "content": "\\mathbf { { } } h ^ { \\prime }", + "type": "inline_equation" + }, + { + "bbox": [ + 239, + 594, + 243, + 607 + ], + "score": 1.0, + "content": ":", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 28.5 + }, + { + "type": "interline_equation", + "bbox": [ + 180, + 610, + 431, + 632 + ], + "lines": [ + { + "bbox": [ + 180, + 610, + 431, + 632 + ], + "spans": [ + { + "bbox": [ + 180, + 610, + 431, + 632 + ], + "score": 0.92, + "content": "s ( h ^ { \\prime } ) = \\mathrm { m a x } \\Big ( ( - 2 ^ { K - 1 } ) ^ { - 1 } \\operatorname* { m i n } _ { i } h _ { i } ^ { \\prime } , ( 2 ^ { K - 1 } - 1 ) ^ { - 1 } \\operatorname* { m a x } _ { i } h _ { i } ^ { \\prime } , \\epsilon \\Big ) .", + "type": "interline_equation", + "image_path": "57b15f6a4c1f94326ab3a5538cc460fb940a23a55e4b65800eddd132c700c6f4.jpg" + } + ] + } + ], + "index": 30, + "virtual_lines": [ + { + "bbox": [ + 180, + 610, + 431, + 632 + ], + "spans": [], + "index": 30 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 637, + 505, + 693 + ], + "lines": [ + { + "bbox": [ + 107, + 638, + 505, + 650 + ], + "spans": [ + { + "bbox": [ + 107, + 641, + 113, + 648 + ], + "score": 0.7, + "content": "s", + "type": "inline_equation" + }, + { + "bbox": [ + 113, + 638, + 505, + 650 + ], + "score": 1.0, + "content": "rescales each filter such that at least one of its minimum and maximum coefficients hits one of the", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 645, + 506, + 662 + ], + "spans": [ + { + "bbox": [ + 105, + 645, + 200, + 662 + ], + "score": 1.0, + "content": "dynamic range bounds", + "type": "text" + }, + { + "bbox": [ + 201, + 648, + 233, + 660 + ], + "score": 0.89, + "content": "( - 2 ^ { K - 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 233, + 645, + 250, + 662 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 251, + 648, + 290, + 660 + ], + "score": 0.89, + "content": "2 ^ { K - 1 } - 1 )", + "type": "inline_equation" + }, + { + "bbox": [ + 290, + 645, + 506, + 662 + ], + "score": 1.0, + "content": "), while keeping zero at zero. This represents the finest", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 660, + 506, + 672 + ], + "spans": [ + { + "bbox": [ + 105, + 660, + 506, + 672 + ], + "score": 1.0, + "content": "possible quantization of the filter given its integer representation, and thus maximizes accuracy. To", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 670, + 506, + 684 + ], + "spans": [ + { + "bbox": [ + 105, + 670, + 480, + 684 + ], + "score": 1.0, + "content": "prevent division by zero, we ensure the divisor is larger than or equal to a small constant", + "type": "text" + }, + { + "bbox": [ + 480, + 673, + 486, + 681 + ], + "score": 0.72, + "content": "\\epsilon", + "type": "inline_equation" + }, + { + "bbox": [ + 486, + 670, + 506, + 684 + ], + "score": 1.0, + "content": "(for", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 680, + 196, + 694 + ], + "spans": [ + { + "bbox": [ + 105, + 680, + 145, + 694 + ], + "score": 1.0, + "content": "example,", + "type": "text" + }, + { + "bbox": [ + 145, + 681, + 188, + 692 + ], + "score": 0.9, + "content": "\\epsilon = 1 0 ^ { - \\tilde { 2 } 0 }", + "type": "inline_equation" + }, + { + "bbox": [ + 188, + 680, + 196, + 694 + ], + "score": 1.0, + "content": ").", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 33 + }, + { + "type": "text", + "bbox": [ + 107, + 698, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 698, + 506, + 711 + ], + "spans": [ + { + "bbox": [ + 105, + 698, + 506, + 711 + ], + "score": 1.0, + "content": "In order to backpropagate gradient signals into the parameters, one cannot simply take gradients of", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 106, + 710, + 505, + 721 + ], + "spans": [ + { + "bbox": [ + 106, + 711, + 242, + 721 + ], + "score": 1.0, + "content": "the loss function with respect to", + "type": "text" + }, + { + "bbox": [ + 242, + 710, + 256, + 720 + ], + "score": 0.47, + "content": "H ^ { \\prime }", + "type": "inline_equation" + }, + { + "bbox": [ + 257, + 711, + 261, + 721 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 262, + 710, + 271, + 720 + ], + "score": 0.41, + "content": "\\pmb { b } ^ { \\prime }", + "type": "inline_equation" + }, + { + "bbox": [ + 271, + 711, + 288, + 721 + ], + "score": 1.0, + "content": ", or", + "type": "text" + }, + { + "bbox": [ + 288, + 710, + 296, + 720 + ], + "score": 0.84, + "content": "c ^ { \\prime }", + "type": "inline_equation" + }, + { + "bbox": [ + 297, + 711, + 417, + 721 + ], + "score": 1.0, + "content": ", since the rounding function", + "type": "text" + }, + { + "bbox": [ + 417, + 710, + 427, + 721 + ], + "score": 0.84, + "content": "Q", + "type": "inline_equation" + }, + { + "bbox": [ + 427, + 711, + 505, + 721 + ], + "score": 1.0, + "content": "has zero gradients", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 106, + 721, + 505, + 733 + ], + "spans": [ + { + "bbox": [ + 106, + 721, + 505, + 733 + ], + "score": 1.0, + "content": "almost everywhere, except for the half-integer positions where the gradient is positive infinity. A", + "type": "text" + } + ], + "index": 38 + } + ], + "index": 37 + } + ], + "page_idx": 3, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 26, + 293, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 25, + 294, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 25, + 294, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2019", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 302, + 752, + 308, + 759 + ], + "lines": [] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 108, + 82, + 188, + 94 + ], + "lines": [ + { + "bbox": [ + 106, + 81, + 190, + 96 + ], + "spans": [ + { + "bbox": [ + 106, + 81, + 190, + 96 + ], + "score": 1.0, + "content": "Another example is:", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0, + "bbox_fs": [ + 106, + 81, + 190, + 96 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 210, + 157, + 322, + 172 + ], + "lines": [ + { + "bbox": [ + 210, + 157, + 322, + 172 + ], + "spans": [ + { + "bbox": [ + 210, + 157, + 322, + 172 + ], + "score": 0.91, + "content": "\\begin{array} { r } { g _ { \\mathrm { Q t a n h } } ( v ) = Q \\bigl ( 7 \\operatorname { t a n h } ( \\frac { v } { 1 5 } ) \\bigr ) } \\end{array}", + "type": "interline_equation", + "image_path": "cc95b1f0d28bdf8a82da442b2265bec7cc26d2ececebf5f0d4d876d0774c11d0.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 210, + 157, + 322, + 172 + ], + "spans": [], + "index": 1 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 177, + 506, + 298 + ], + "lines": [ + { + "bbox": [ + 105, + 177, + 506, + 190 + ], + "spans": [ + { + "bbox": [ + 105, + 177, + 506, + 190 + ], + "score": 1.0, + "content": "Here, the nonlinearity approximates the hyperbolic tangent, a widely used nonlinearity. It may be", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 188, + 506, + 201 + ], + "spans": [ + { + "bbox": [ + 105, + 188, + 506, + 201 + ], + "score": 1.0, + "content": "best implemented using a lookup table (see figure 2, right, for a visualization). We scale its range to", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 106, + 199, + 506, + 212 + ], + "spans": [ + { + "bbox": [ + 106, + 199, + 285, + 212 + ], + "score": 1.0, + "content": "fill the 4-bit signed integer number format of", + "type": "text" + }, + { + "bbox": [ + 286, + 201, + 295, + 209 + ], + "score": 0.77, + "content": "\\pmb { w }", + "type": "inline_equation" + }, + { + "bbox": [ + 295, + 199, + 506, + 212 + ], + "score": 1.0, + "content": "by multiplying its output with 7. The domain can be", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 106, + 210, + 504, + 222 + ], + "spans": [ + { + "bbox": [ + 106, + 210, + 245, + 222 + ], + "score": 1.0, + "content": "scaled somewhat arbitrarily, since", + "type": "text" + }, + { + "bbox": [ + 245, + 212, + 252, + 220 + ], + "score": 0.68, + "content": "\\pmb { v }", + "type": "inline_equation" + }, + { + "bbox": [ + 253, + 210, + 361, + 222 + ], + "score": 1.0, + "content": "has a larger bit width than", + "type": "text" + }, + { + "bbox": [ + 362, + 212, + 371, + 220 + ], + "score": 0.5, + "content": "\\pmb { w }", + "type": "inline_equation" + }, + { + "bbox": [ + 372, + 210, + 494, + 222 + ], + "score": 1.0, + "content": ". When it is chosen too small,", + "type": "text" + }, + { + "bbox": [ + 494, + 212, + 504, + 220 + ], + "score": 0.42, + "content": "\\pmb { w }", + "type": "inline_equation" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 219, + 506, + 235 + ], + "spans": [ + { + "bbox": [ + 105, + 219, + 506, + 235 + ], + "score": 1.0, + "content": "may not utilize all integer values, leading to a large quantization error. When it is chosen too large,", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 232, + 505, + 245 + ], + "spans": [ + { + "bbox": [ + 105, + 232, + 199, + 245 + ], + "score": 1.0, + "content": "overflow may occur in", + "type": "text" + }, + { + "bbox": [ + 199, + 234, + 206, + 242 + ], + "score": 0.69, + "content": "\\pmb { v }", + "type": "inline_equation" + }, + { + "bbox": [ + 207, + 232, + 505, + 245 + ], + "score": 1.0, + "content": ", or the size of the lookup table may grow too large for practical purposes.", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 106, + 242, + 505, + 255 + ], + "spans": [ + { + "bbox": [ + 106, + 242, + 505, + 255 + ], + "score": 1.0, + "content": "Therefore, it is best to determine the input scaling based on the shape of the nonlinearity and the", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 254, + 505, + 267 + ], + "spans": [ + { + "bbox": [ + 105, + 254, + 505, + 267 + ], + "score": 1.0, + "content": "available dynamic range. Here, we simply chose the value of 15 “by eye”, so that the nonlinearity", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 265, + 505, + 277 + ], + "spans": [ + { + "bbox": [ + 105, + 265, + 505, + 277 + ], + "score": 1.0, + "content": "is reasonably well represented with the lookup table (i.e., we made sure that at least two or three", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 276, + 506, + 289 + ], + "spans": [ + { + "bbox": [ + 105, + 276, + 506, + 289 + ], + "score": 1.0, + "content": "input values are mapped to each output value, in order to preserve the approximate shape of the", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 287, + 163, + 300 + ], + "spans": [ + { + "bbox": [ + 105, + 287, + 163, + 300 + ], + "score": 1.0, + "content": "nonlinearity).", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 7, + "bbox_fs": [ + 105, + 177, + 506, + 300 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 310, + 334, + 322 + ], + "lines": [ + { + "bbox": [ + 104, + 308, + 334, + 326 + ], + "spans": [ + { + "bbox": [ + 104, + 308, + 334, + 326 + ], + "score": 1.0, + "content": "3 TRAINING INTEGER NEURAL NETWORKS", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 13 + }, + { + "type": "text", + "bbox": [ + 106, + 332, + 505, + 377 + ], + "lines": [ + { + "bbox": [ + 105, + 332, + 506, + 345 + ], + "spans": [ + { + "bbox": [ + 105, + 332, + 506, + 345 + ], + "score": 1.0, + "content": "To effectively accumulate small gradient signals, we train the networks entirely using floating point", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 106, + 344, + 505, + 356 + ], + "spans": [ + { + "bbox": [ + 106, + 344, + 505, + 356 + ], + "score": 1.0, + "content": "computations, rounded to integers after every computational operation, while the backpropagation", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 354, + 502, + 367 + ], + "spans": [ + { + "bbox": [ + 105, + 354, + 479, + 367 + ], + "score": 1.0, + "content": "is done with full floating point precision. More concretely, we define the integer parameters", + "type": "text" + }, + { + "bbox": [ + 479, + 354, + 502, + 365 + ], + "score": 0.27, + "content": "H , b ,", + "type": "inline_equation" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 364, + 431, + 379 + ], + "spans": [ + { + "bbox": [ + 105, + 364, + 123, + 379 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 124, + 367, + 130, + 375 + ], + "score": 0.69, + "content": "^ c", + "type": "inline_equation" + }, + { + "bbox": [ + 131, + 364, + 316, + 379 + ], + "score": 1.0, + "content": "as functions of their floating point equivalents", + "type": "text" + }, + { + "bbox": [ + 317, + 365, + 344, + 376 + ], + "score": 0.46, + "content": "H ^ { \\prime } , b ^ { \\prime }", + "type": "inline_equation" + }, + { + "bbox": [ + 344, + 364, + 364, + 379 + ], + "score": 1.0, + "content": ", and", + "type": "text" + }, + { + "bbox": [ + 365, + 365, + 373, + 375 + ], + "score": 0.84, + "content": "c ^ { \\prime }", + "type": "inline_equation" + }, + { + "bbox": [ + 374, + 364, + 431, + 379 + ], + "score": 1.0, + "content": ", respectively:", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 15.5, + "bbox_fs": [ + 105, + 332, + 506, + 379 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 252, + 383, + 358, + 462 + ], + "lines": [ + { + "bbox": [ + 252, + 383, + 358, + 462 + ], + "spans": [ + { + "bbox": [ + 252, + 383, + 358, + 462 + ], + "score": 0.94, + "content": "\\begin{array} { r l } & { \\boldsymbol { H } = \\left[ \\begin{array} { c } { Q ( h _ { 1 } ^ { \\prime } / s ( h _ { 1 } ^ { \\prime } ) ) ) } \\\\ { \\vdots } \\\\ { Q ( h _ { N } ^ { \\prime } / s ( h _ { N } ^ { \\prime } ) ) } \\end{array} \\right] , } \\\\ & { ~ b = Q \\big ( 2 ^ { K } b ^ { \\prime } \\big ) , } \\\\ & { \\boldsymbol { c } = Q \\big ( 2 ^ { K } r ( \\boldsymbol { c } ^ { \\prime } ) \\big ) . } \\end{array}", + "type": "interline_equation", + "image_path": "0c5fab5e1106a5f19986b471317b0cace4da7facbec6fe3276f8ec72272a666d.jpg" + } + ] + } + ], + "index": 18.5, + "virtual_lines": [ + { + "bbox": [ + 252, + 383, + 358, + 422.5 + ], + "spans": [], + "index": 18 + }, + { + "bbox": [ + 252, + 422.5, + 358, + 462.0 + ], + "spans": [], + "index": 19 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 466, + 505, + 500 + ], + "lines": [ + { + "bbox": [ + 106, + 466, + 505, + 478 + ], + "spans": [ + { + "bbox": [ + 106, + 466, + 271, + 478 + ], + "score": 1.0, + "content": "Here, we simply rescale each element of", + "type": "text" + }, + { + "bbox": [ + 271, + 467, + 280, + 477 + ], + "score": 0.86, + "content": "\\pmb { b } ^ { \\prime }", + "type": "inline_equation" + }, + { + "bbox": [ + 280, + 466, + 348, + 478 + ], + "score": 1.0, + "content": "using a constant", + "type": "text" + }, + { + "bbox": [ + 348, + 467, + 358, + 477 + ], + "score": 0.84, + "content": "K", + "type": "inline_equation" + }, + { + "bbox": [ + 359, + 466, + 505, + 478 + ], + "score": 1.0, + "content": ", which is the bit-width of the kernel", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 107, + 477, + 505, + 490 + ], + "spans": [ + { + "bbox": [ + 107, + 478, + 119, + 488 + ], + "score": 0.71, + "content": "\\pmb { H }", + "type": "inline_equation" + }, + { + "bbox": [ + 119, + 477, + 505, + 490 + ], + "score": 1.0, + "content": "(e.g. 8-bits in the QReLu networks), and round it to the nearest integer. The reparameterization", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 488, + 278, + 501 + ], + "spans": [ + { + "bbox": [ + 105, + 488, + 144, + 501 + ], + "score": 1.0, + "content": "mapping", + "type": "text" + }, + { + "bbox": [ + 144, + 491, + 150, + 498 + ], + "score": 0.75, + "content": "r", + "type": "inline_equation" + }, + { + "bbox": [ + 150, + 488, + 278, + 501 + ], + "score": 1.0, + "content": "is borrowed from Ballé (2018):", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 21, + "bbox_fs": [ + 105, + 466, + 505, + 501 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 235, + 505, + 376, + 529 + ], + "lines": [ + { + "bbox": [ + 235, + 505, + 376, + 529 + ], + "spans": [ + { + "bbox": [ + 235, + 505, + 376, + 529 + ], + "score": 0.94, + "content": "r ( c ^ { \\prime } ) = \\mathrm { m a x } \\Big ( c ^ { \\prime } , \\sqrt { 1 + \\epsilon ^ { 2 } } \\Big ) ^ { 2 } - \\epsilon ^ { 2 } .", + "type": "interline_equation", + "image_path": "f05f14dee3381c0df2a2f328de637c63d32eee81f98dd6f4752b463161af90d9.jpg" + } + ] + } + ], + "index": 23, + "virtual_lines": [ + { + "bbox": [ + 235, + 505, + 376, + 529 + ], + "spans": [], + "index": 23 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 534, + 505, + 579 + ], + "lines": [ + { + "bbox": [ + 106, + 534, + 506, + 547 + ], + "spans": [ + { + "bbox": [ + 106, + 534, + 133, + 547 + ], + "score": 1.0, + "content": "When", + "type": "text" + }, + { + "bbox": [ + 133, + 537, + 140, + 545 + ], + "score": 0.68, + "content": "^ c", + "type": "inline_equation" + }, + { + "bbox": [ + 141, + 534, + 245, + 547 + ], + "score": 1.0, + "content": "is small, perturbations in", + "type": "text" + }, + { + "bbox": [ + 245, + 537, + 252, + 545 + ], + "score": 0.65, + "content": "^ c", + "type": "inline_equation" + }, + { + "bbox": [ + 253, + 534, + 506, + 547 + ], + "score": 1.0, + "content": "can lead to excessively large fluctuations of the quotient (i.e.,", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 545, + 506, + 558 + ], + "spans": [ + { + "bbox": [ + 105, + 545, + 383, + 558 + ], + "score": 1.0, + "content": "the input to the nonlinearity). This leads to instabilities in training.", + "type": "text" + }, + { + "bbox": [ + 384, + 548, + 390, + 555 + ], + "score": 0.71, + "content": "r", + "type": "inline_equation" + }, + { + "bbox": [ + 390, + 545, + 482, + 558 + ], + "score": 1.0, + "content": "ensures that values of", + "type": "text" + }, + { + "bbox": [ + 482, + 548, + 489, + 555 + ], + "score": 0.69, + "content": "^ c", + "type": "inline_equation" + }, + { + "bbox": [ + 489, + 545, + 506, + 558 + ], + "score": 1.0, + "content": "are", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 106, + 556, + 505, + 568 + ], + "spans": [ + { + "bbox": [ + 106, + 556, + 392, + 568 + ], + "score": 1.0, + "content": "always positive, while gracefully scaling down gradient magnitudes on", + "type": "text" + }, + { + "bbox": [ + 392, + 559, + 398, + 566 + ], + "score": 0.6, + "content": "^ c", + "type": "inline_equation" + }, + { + "bbox": [ + 399, + 556, + 505, + 568 + ], + "score": 1.0, + "content": "near zero. Effectively, the", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 568, + 456, + 580 + ], + "spans": [ + { + "bbox": [ + 105, + 568, + 155, + 580 + ], + "score": 1.0, + "content": "step size on", + "type": "text" + }, + { + "bbox": [ + 156, + 570, + 162, + 577 + ], + "score": 0.68, + "content": "^ c", + "type": "inline_equation" + }, + { + "bbox": [ + 163, + 568, + 390, + 580 + ], + "score": 1.0, + "content": "is multiplied with a factor that is approximately linear in", + "type": "text" + }, + { + "bbox": [ + 390, + 569, + 397, + 578 + ], + "score": 0.65, + "content": "^ c", + "type": "inline_equation" + }, + { + "bbox": [ + 398, + 568, + 456, + 580 + ], + "score": 1.0, + "content": "(Ballé, 2018).", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 25.5, + "bbox_fs": [ + 105, + 534, + 506, + 580 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 583, + 504, + 606 + ], + "lines": [ + { + "bbox": [ + 105, + 581, + 506, + 599 + ], + "spans": [ + { + "bbox": [ + 105, + 581, + 297, + 599 + ], + "score": 1.0, + "content": "Before rounding the linear filter coefficients in", + "type": "text" + }, + { + "bbox": [ + 297, + 583, + 385, + 597 + ], + "score": 0.92, + "content": "\\pmb { H } ^ { \\prime } = [ h _ { 1 } ^ { \\prime } , \\ldots , h _ { N } ^ { \\prime } ] ^ { \\top }", + "type": "inline_equation" + }, + { + "bbox": [ + 385, + 581, + 506, + 599 + ], + "score": 1.0, + "content": ", we apply a special rescaling", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 106, + 594, + 243, + 607 + ], + "spans": [ + { + "bbox": [ + 106, + 594, + 142, + 607 + ], + "score": 1.0, + "content": "function", + "type": "text" + }, + { + "bbox": [ + 142, + 598, + 148, + 605 + ], + "score": 0.74, + "content": "s", + "type": "inline_equation" + }, + { + "bbox": [ + 149, + 594, + 228, + 607 + ], + "score": 1.0, + "content": "to each of its filters", + "type": "text" + }, + { + "bbox": [ + 228, + 595, + 239, + 605 + ], + "score": 0.87, + "content": "\\mathbf { { } } h ^ { \\prime }", + "type": "inline_equation" + }, + { + "bbox": [ + 239, + 594, + 243, + 607 + ], + "score": 1.0, + "content": ":", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 28.5, + "bbox_fs": [ + 105, + 581, + 506, + 607 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 180, + 610, + 431, + 632 + ], + "lines": [ + { + "bbox": [ + 180, + 610, + 431, + 632 + ], + "spans": [ + { + "bbox": [ + 180, + 610, + 431, + 632 + ], + "score": 0.92, + "content": "s ( h ^ { \\prime } ) = \\mathrm { m a x } \\Big ( ( - 2 ^ { K - 1 } ) ^ { - 1 } \\operatorname* { m i n } _ { i } h _ { i } ^ { \\prime } , ( 2 ^ { K - 1 } - 1 ) ^ { - 1 } \\operatorname* { m a x } _ { i } h _ { i } ^ { \\prime } , \\epsilon \\Big ) .", + "type": "interline_equation", + "image_path": "57b15f6a4c1f94326ab3a5538cc460fb940a23a55e4b65800eddd132c700c6f4.jpg" + } + ] + } + ], + "index": 30, + "virtual_lines": [ + { + "bbox": [ + 180, + 610, + 431, + 632 + ], + "spans": [], + "index": 30 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 637, + 505, + 693 + ], + "lines": [ + { + "bbox": [ + 107, + 638, + 505, + 650 + ], + "spans": [ + { + "bbox": [ + 107, + 641, + 113, + 648 + ], + "score": 0.7, + "content": "s", + "type": "inline_equation" + }, + { + "bbox": [ + 113, + 638, + 505, + 650 + ], + "score": 1.0, + "content": "rescales each filter such that at least one of its minimum and maximum coefficients hits one of the", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 645, + 506, + 662 + ], + "spans": [ + { + "bbox": [ + 105, + 645, + 200, + 662 + ], + "score": 1.0, + "content": "dynamic range bounds", + "type": "text" + }, + { + "bbox": [ + 201, + 648, + 233, + 660 + ], + "score": 0.89, + "content": "( - 2 ^ { K - 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 233, + 645, + 250, + 662 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 251, + 648, + 290, + 660 + ], + "score": 0.89, + "content": "2 ^ { K - 1 } - 1 )", + "type": "inline_equation" + }, + { + "bbox": [ + 290, + 645, + 506, + 662 + ], + "score": 1.0, + "content": "), while keeping zero at zero. This represents the finest", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 660, + 506, + 672 + ], + "spans": [ + { + "bbox": [ + 105, + 660, + 506, + 672 + ], + "score": 1.0, + "content": "possible quantization of the filter given its integer representation, and thus maximizes accuracy. To", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 670, + 506, + 684 + ], + "spans": [ + { + "bbox": [ + 105, + 670, + 480, + 684 + ], + "score": 1.0, + "content": "prevent division by zero, we ensure the divisor is larger than or equal to a small constant", + "type": "text" + }, + { + "bbox": [ + 480, + 673, + 486, + 681 + ], + "score": 0.72, + "content": "\\epsilon", + "type": "inline_equation" + }, + { + "bbox": [ + 486, + 670, + 506, + 684 + ], + "score": 1.0, + "content": "(for", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 680, + 196, + 694 + ], + "spans": [ + { + "bbox": [ + 105, + 680, + 145, + 694 + ], + "score": 1.0, + "content": "example,", + "type": "text" + }, + { + "bbox": [ + 145, + 681, + 188, + 692 + ], + "score": 0.9, + "content": "\\epsilon = 1 0 ^ { - \\tilde { 2 } 0 }", + "type": "inline_equation" + }, + { + "bbox": [ + 188, + 680, + 196, + 694 + ], + "score": 1.0, + "content": ").", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 33, + "bbox_fs": [ + 105, + 638, + 506, + 694 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 698, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 698, + 506, + 711 + ], + "spans": [ + { + "bbox": [ + 105, + 698, + 506, + 711 + ], + "score": 1.0, + "content": "In order to backpropagate gradient signals into the parameters, one cannot simply take gradients of", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 106, + 710, + 505, + 721 + ], + "spans": [ + { + "bbox": [ + 106, + 711, + 242, + 721 + ], + "score": 1.0, + "content": "the loss function with respect to", + "type": "text" + }, + { + "bbox": [ + 242, + 710, + 256, + 720 + ], + "score": 0.47, + "content": "H ^ { \\prime }", + "type": "inline_equation" + }, + { + "bbox": [ + 257, + 711, + 261, + 721 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 262, + 710, + 271, + 720 + ], + "score": 0.41, + "content": "\\pmb { b } ^ { \\prime }", + "type": "inline_equation" + }, + { + "bbox": [ + 271, + 711, + 288, + 721 + ], + "score": 1.0, + "content": ", or", + "type": "text" + }, + { + "bbox": [ + 288, + 710, + 296, + 720 + ], + "score": 0.84, + "content": "c ^ { \\prime }", + "type": "inline_equation" + }, + { + "bbox": [ + 297, + 711, + 417, + 721 + ], + "score": 1.0, + "content": ", since the rounding function", + "type": "text" + }, + { + "bbox": [ + 417, + 710, + 427, + 721 + ], + "score": 0.84, + "content": "Q", + "type": "inline_equation" + }, + { + "bbox": [ + 427, + 711, + 505, + 721 + ], + "score": 1.0, + "content": "has zero gradients", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 106, + 721, + 505, + 733 + ], + "spans": [ + { + "bbox": [ + 106, + 721, + 505, + 733 + ], + "score": 1.0, + "content": "almost everywhere, except for the half-integer positions where the gradient is positive infinity. A", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 106, + 82, + 505, + 95 + ], + "spans": [ + { + "bbox": [ + 106, + 82, + 284, + 95 + ], + "score": 1.0, + "content": "simple remedy is to replace the derivative of", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 285, + 83, + 294, + 94 + ], + "score": 0.86, + "content": "Q", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 294, + 82, + 505, + 95 + ], + "score": 1.0, + "content": "with the identity function, since this is the smoothed", + "type": "text", + "cross_page": true + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 94, + 247, + 106 + ], + "spans": [ + { + "bbox": [ + 105, + 94, + 247, + 106 + ], + "score": 1.0, + "content": "gradient across all rounded values.", + "type": "text", + "cross_page": true + } + ], + "index": 1 + } + ], + "index": 37, + "bbox_fs": [ + 105, + 698, + 506, + 733 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 105, + 82, + 504, + 105 + ], + "lines": [ + { + "bbox": [ + 106, + 82, + 505, + 95 + ], + "spans": [ + { + "bbox": [ + 106, + 82, + 284, + 95 + ], + "score": 1.0, + "content": "simple remedy is to replace the derivative of", + "type": "text" + }, + { + "bbox": [ + 285, + 83, + 294, + 94 + ], + "score": 0.86, + "content": "Q", + "type": "inline_equation" + }, + { + "bbox": [ + 294, + 82, + 505, + 95 + ], + "score": 1.0, + "content": "with the identity function, since this is the smoothed", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 94, + 247, + 106 + ], + "spans": [ + { + "bbox": [ + 105, + 94, + 247, + 106 + ], + "score": 1.0, + "content": "gradient across all rounded values.", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5 + }, + { + "type": "text", + "bbox": [ + 105, + 110, + 503, + 132 + ], + "lines": [ + { + "bbox": [ + 106, + 111, + 504, + 122 + ], + "spans": [ + { + "bbox": [ + 106, + 111, + 258, + 122 + ], + "score": 1.0, + "content": "Further, we treat the rescaling divisor", + "type": "text" + }, + { + "bbox": [ + 258, + 113, + 264, + 120 + ], + "score": 0.77, + "content": "s", + "type": "inline_equation" + }, + { + "bbox": [ + 265, + 111, + 504, + 122 + ], + "score": 1.0, + "content": "as if it were a constant. That is, we compute the derivatives", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 120, + 503, + 135 + ], + "spans": [ + { + "bbox": [ + 105, + 120, + 247, + 135 + ], + "score": 1.0, + "content": "of the loss function with respect to", + "type": "text" + }, + { + "bbox": [ + 247, + 121, + 274, + 132 + ], + "score": 0.54, + "content": "H ^ { \\prime } , b ^ { \\prime }", + "type": "inline_equation" + }, + { + "bbox": [ + 275, + 120, + 295, + 135 + ], + "score": 1.0, + "content": ", and", + "type": "text" + }, + { + "bbox": [ + 295, + 122, + 304, + 131 + ], + "score": 0.87, + "content": "c ^ { \\prime }", + "type": "inline_equation" + }, + { + "bbox": [ + 304, + 120, + 503, + 135 + ], + "score": 1.0, + "content": "as with the chain rule of calculus, but overriding:", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 2.5 + }, + { + "type": "interline_equation", + "bbox": [ + 194, + 133, + 416, + 159 + ], + "lines": [ + { + "bbox": [ + 194, + 133, + 416, + 159 + ], + "spans": [ + { + "bbox": [ + 194, + 133, + 416, + 159 + ], + "score": 0.91, + "content": "\\frac { \\partial h } { \\partial h ^ { \\prime } } : = \\frac { 1 } { s ( h ^ { \\prime } ) } , \\qquad \\frac { \\partial b } { \\partial b ^ { \\prime } } : = 2 ^ { K } , \\qquad \\frac { \\partial c } { \\partial c ^ { \\prime } } : = 2 ^ { K } r ^ { \\prime } ( c ^ { \\prime } ) ,", + "type": "interline_equation", + "image_path": "9dcdab371e0ac3c891e10b51a1ac5565b11f72012c44c2cab17a641ac3c7d56f.jpg" + } + ] + } + ], + "index": 4, + "virtual_lines": [ + { + "bbox": [ + 194, + 133, + 416, + 159 + ], + "spans": [], + "index": 4 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 160, + 505, + 205 + ], + "lines": [ + { + "bbox": [ + 105, + 159, + 506, + 173 + ], + "spans": [ + { + "bbox": [ + 105, + 159, + 133, + 173 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 134, + 160, + 143, + 170 + ], + "score": 0.85, + "content": "r ^ { \\prime }", + "type": "inline_equation" + }, + { + "bbox": [ + 143, + 159, + 308, + 173 + ], + "score": 1.0, + "content": "is the replacement gradient function for", + "type": "text" + }, + { + "bbox": [ + 308, + 163, + 314, + 170 + ], + "score": 0.77, + "content": "r", + "type": "inline_equation" + }, + { + "bbox": [ + 315, + 159, + 506, + 173 + ], + "score": 1.0, + "content": "as proposed by Ballé (2018). After training is", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 171, + 506, + 184 + ], + "spans": [ + { + "bbox": [ + 105, + 171, + 292, + 184 + ], + "score": 1.0, + "content": "completed, we compute the integer parameters", + "type": "text" + }, + { + "bbox": [ + 292, + 172, + 303, + 181 + ], + "score": 0.72, + "content": "\\pmb { H }", + "type": "inline_equation" + }, + { + "bbox": [ + 304, + 171, + 307, + 184 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 307, + 172, + 313, + 181 + ], + "score": 0.61, + "content": "^ { b }", + "type": "inline_equation" + }, + { + "bbox": [ + 314, + 171, + 330, + 184 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 330, + 173, + 337, + 181 + ], + "score": 0.72, + "content": "^ c", + "type": "inline_equation" + }, + { + "bbox": [ + 338, + 171, + 506, + 184 + ], + "score": 1.0, + "content": "one more time, and from then on use them", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 182, + 505, + 195 + ], + "spans": [ + { + "bbox": [ + 105, + 182, + 369, + 195 + ], + "score": 1.0, + "content": "for evaluation. Note that further reparameterization of the kernels", + "type": "text" + }, + { + "bbox": [ + 369, + 182, + 383, + 192 + ], + "score": 0.88, + "content": "H ^ { \\prime }", + "type": "inline_equation" + }, + { + "bbox": [ + 383, + 182, + 505, + 195 + ], + "score": 1.0, + "content": ", such as Sadam (Ballé, 2018),", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 192, + 488, + 207 + ], + "spans": [ + { + "bbox": [ + 105, + 192, + 169, + 207 + ], + "score": 1.0, + "content": "or of the biases", + "type": "text" + }, + { + "bbox": [ + 169, + 193, + 179, + 203 + ], + "score": 0.83, + "content": "\\pmb { b } ^ { \\prime }", + "type": "inline_equation" + }, + { + "bbox": [ + 179, + 192, + 268, + 207 + ], + "score": 1.0, + "content": "or scaling parameters", + "type": "text" + }, + { + "bbox": [ + 268, + 193, + 276, + 203 + ], + "score": 0.84, + "content": "c ^ { \\prime }", + "type": "inline_equation" + }, + { + "bbox": [ + 277, + 192, + 488, + 207 + ], + "score": 1.0, + "content": ", is possible by simply chaining reparameterizations.", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 6.5 + }, + { + "type": "text", + "bbox": [ + 106, + 209, + 505, + 287 + ], + "lines": [ + { + "bbox": [ + 105, + 209, + 505, + 223 + ], + "spans": [ + { + "bbox": [ + 105, + 209, + 505, + 223 + ], + "score": 1.0, + "content": "In addition to rounding the parameters, it is necessary to round the activations. To obtain gradients", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 221, + 505, + 234 + ], + "spans": [ + { + "bbox": [ + 105, + 221, + 207, + 234 + ], + "score": 1.0, + "content": "for the rounding division", + "type": "text" + }, + { + "bbox": [ + 207, + 222, + 216, + 232 + ], + "score": 0.81, + "content": "\\oslash", + "type": "inline_equation" + }, + { + "bbox": [ + 217, + 221, + 505, + 234 + ], + "score": 1.0, + "content": ", we simply substitute the gradient of floating point division. To estimate", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 231, + 505, + 245 + ], + "spans": [ + { + "bbox": [ + 105, + 231, + 505, + 245 + ], + "score": 1.0, + "content": "gradients for the rounded activation functions, we replace their gradient with the corresponding non-", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 243, + 505, + 255 + ], + "spans": [ + { + "bbox": [ + 105, + 243, + 505, + 255 + ], + "score": 1.0, + "content": "rounded activation function, plotted in cyan in figure 2. In the case of QReLU, the gradient of the", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 253, + 505, + 267 + ], + "spans": [ + { + "bbox": [ + 105, + 253, + 505, + 267 + ], + "score": 1.0, + "content": "clipping operation is a box function, which can lead to training getting stuck, since if activations", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 265, + 505, + 277 + ], + "spans": [ + { + "bbox": [ + 105, + 265, + 505, + 277 + ], + "score": 1.0, + "content": "consistently hit one of the bounds, no gradients are propagated back (this is sometimes called the", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 106, + 276, + 397, + 288 + ], + "spans": [ + { + "bbox": [ + 106, + 276, + 397, + 288 + ], + "score": 1.0, + "content": "“dead unit” problem). As a remedy, we replace the gradient instead with", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 12 + }, + { + "type": "interline_equation", + "bbox": [ + 217, + 288, + 393, + 313 + ], + "lines": [ + { + "bbox": [ + 217, + 288, + 393, + 313 + ], + "spans": [ + { + "bbox": [ + 217, + 288, + 393, + 313 + ], + "score": 0.94, + "content": "\\frac { \\partial g _ { \\mathrm { Q R e L U } } ( v ) } { \\partial v } : = \\exp \\Bigl ( - \\alpha ^ { \\beta } \\Bigl | \\frac { 2 v } { 2 ^ { L } - 1 } - 1 \\Bigr | ^ { \\beta } \\Bigr ) ,", + "type": "interline_equation", + "image_path": "8bd5e5b014f1b8ecea4471bd1b8419a80013ba1ea95ef323be837e2024dba8c0.jpg" + } + ] + } + ], + "index": 16, + "virtual_lines": [ + { + "bbox": [ + 217, + 288, + 393, + 313 + ], + "spans": [], + "index": 16 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 314, + 505, + 383 + ], + "lines": [ + { + "bbox": [ + 106, + 313, + 506, + 329 + ], + "spans": [ + { + "bbox": [ + 106, + 313, + 133, + 329 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 134, + 313, + 185, + 329 + ], + "score": 0.94, + "content": "\\begin{array} { r } { \\alpha = \\frac { 1 } { \\beta } \\Gamma \\left( \\frac { 1 } { \\beta } \\right) } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 185, + 313, + 206, + 329 + ], + "score": 1.0, + "content": ", and", + "type": "text" + }, + { + "bbox": [ + 206, + 315, + 214, + 324 + ], + "score": 0.83, + "content": "L", + "type": "inline_equation" + }, + { + "bbox": [ + 215, + 313, + 289, + 329 + ], + "score": 1.0, + "content": "is the bit width of", + "type": "text" + }, + { + "bbox": [ + 290, + 316, + 299, + 325 + ], + "score": 0.74, + "content": "\\textbf { \\em w }", + "type": "inline_equation" + }, + { + "bbox": [ + 299, + 313, + 506, + 329 + ], + "score": 1.0, + "content": ". This function corresponds to a scaled generalized", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 106, + 327, + 505, + 340 + ], + "spans": [ + { + "bbox": [ + 106, + 327, + 313, + 340 + ], + "score": 1.0, + "content": "Gaussian probability density with shape parameter", + "type": "text" + }, + { + "bbox": [ + 314, + 327, + 321, + 339 + ], + "score": 0.83, + "content": "\\beta", + "type": "inline_equation" + }, + { + "bbox": [ + 321, + 327, + 456, + 340 + ], + "score": 1.0, + "content": ". In this context, we can think of", + "type": "text" + }, + { + "bbox": [ + 456, + 327, + 464, + 338 + ], + "score": 0.85, + "content": "\\beta", + "type": "inline_equation" + }, + { + "bbox": [ + 464, + 327, + 505, + 340 + ], + "score": 1.0, + "content": "as a tem-", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 338, + 504, + 351 + ], + "spans": [ + { + "bbox": [ + 105, + 338, + 496, + 351 + ], + "score": 1.0, + "content": "perature parameter that makes the function converge to the gradient of the clipping operation as", + "type": "text" + }, + { + "bbox": [ + 496, + 339, + 504, + 349 + ], + "score": 0.83, + "content": "\\beta", + "type": "inline_equation" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 349, + 506, + 361 + ], + "spans": [ + { + "bbox": [ + 105, + 349, + 459, + 361 + ], + "score": 1.0, + "content": "goes to infinity. Although this setting permits an annealing schedule, we simply chose", + "type": "text" + }, + { + "bbox": [ + 459, + 349, + 487, + 360 + ], + "score": 0.91, + "content": "\\beta = 4", + "type": "inline_equation" + }, + { + "bbox": [ + 487, + 349, + 506, + 361 + ], + "score": 1.0, + "content": "and", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 360, + 505, + 373 + ], + "spans": [ + { + "bbox": [ + 105, + 360, + 505, + 373 + ], + "score": 1.0, + "content": "obtained good results. The integral of this function is plotted in figure 2 (left) in cyan, along with", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 369, + 213, + 384 + ], + "spans": [ + { + "bbox": [ + 105, + 369, + 172, + 384 + ], + "score": 1.0, + "content": "other choices of", + "type": "text" + }, + { + "bbox": [ + 173, + 371, + 180, + 382 + ], + "score": 0.85, + "content": "\\beta", + "type": "inline_equation" + }, + { + "bbox": [ + 181, + 369, + 213, + 384 + ], + "score": 1.0, + "content": "in gray.", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 19.5 + }, + { + "type": "title", + "bbox": [ + 107, + 394, + 387, + 406 + ], + "lines": [ + { + "bbox": [ + 105, + 393, + 388, + 408 + ], + "spans": [ + { + "bbox": [ + 105, + 393, + 388, + 408 + ], + "score": 1.0, + "content": "4 COMPUTING THE PRIOR WITH INTEGER NETWORKS", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 23 + }, + { + "type": "text", + "bbox": [ + 106, + 417, + 505, + 451 + ], + "lines": [ + { + "bbox": [ + 105, + 417, + 505, + 430 + ], + "spans": [ + { + "bbox": [ + 105, + 417, + 297, + 430 + ], + "score": 1.0, + "content": "Suppose our prior on the latent representation is", + "type": "text" + }, + { + "bbox": [ + 298, + 417, + 332, + 430 + ], + "score": 0.93, + "content": "p ( \\pmb { y } \\mid z )", + "type": "inline_equation" + }, + { + "bbox": [ + 332, + 417, + 362, + 430 + ], + "score": 1.0, + "content": ", where", + "type": "text" + }, + { + "bbox": [ + 362, + 420, + 369, + 428 + ], + "score": 0.77, + "content": "_ z", + "type": "inline_equation" + }, + { + "bbox": [ + 370, + 417, + 505, + 430 + ], + "score": 1.0, + "content": "summarizes other latent variables", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 427, + 505, + 443 + ], + "spans": [ + { + "bbox": [ + 105, + 427, + 505, + 443 + ], + "score": 1.0, + "content": "of the representation (it may be empty). To apply range coding, we need to impose a total ordering", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 439, + 345, + 451 + ], + "spans": [ + { + "bbox": [ + 105, + 439, + 182, + 451 + ], + "score": 1.0, + "content": "on the elements of", + "type": "text" + }, + { + "bbox": [ + 182, + 442, + 190, + 451 + ], + "score": 0.82, + "content": "\\textbf { { y } }", + "type": "inline_equation" + }, + { + "bbox": [ + 190, + 439, + 345, + 451 + ], + "score": 1.0, + "content": "and write it as a chain of conditionals:", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 25 + }, + { + "type": "interline_equation", + "bbox": [ + 246, + 452, + 363, + 477 + ], + "lines": [ + { + "bbox": [ + 246, + 452, + 363, + 477 + ], + "spans": [ + { + "bbox": [ + 246, + 452, + 363, + 477 + ], + "score": 0.94, + "content": "p ( \\pmb { y } \\mid z ) = \\prod _ { i } p ( y _ { i } \\mid \\pmb { y } _ { : i } , z ) ,", + "type": "interline_equation", + "image_path": "3b81a38a72d7a4a93351af7c7855836877083f200b8973e92fd9c159877db3f8.jpg" + } + ] + } + ], + "index": 27, + "virtual_lines": [ + { + "bbox": [ + 246, + 452, + 363, + 477 + ], + "spans": [], + "index": 27 + } + ] + }, + { + "type": "text", + "bbox": [ + 108, + 478, + 504, + 500 + ], + "lines": [ + { + "bbox": [ + 105, + 476, + 504, + 492 + ], + "spans": [ + { + "bbox": [ + 105, + 476, + 133, + 492 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 133, + 479, + 146, + 489 + ], + "score": 0.86, + "content": "\\mathbf { \\nabla } _ { \\mathbf { { \\boldsymbol { y } } } : i }", + "type": "inline_equation" + }, + { + "bbox": [ + 146, + 476, + 294, + 492 + ], + "score": 1.0, + "content": "denotes the vector of all elements of", + "type": "text" + }, + { + "bbox": [ + 294, + 480, + 302, + 489 + ], + "score": 0.83, + "content": "\\textbf { { y } }", + "type": "inline_equation" + }, + { + "bbox": [ + 302, + 476, + 497, + 492 + ], + "score": 1.0, + "content": "preceding the ith. A common assumption is that", + "type": "text" + }, + { + "bbox": [ + 498, + 480, + 504, + 489 + ], + "score": 0.76, + "content": "p", + "type": "inline_equation" + } + ], + "index": 28 + }, + { + "bbox": [ + 104, + 487, + 381, + 502 + ], + "spans": [ + { + "bbox": [ + 104, + 487, + 269, + 502 + ], + "score": 1.0, + "content": "is a known distribution, with parameters", + "type": "text" + }, + { + "bbox": [ + 269, + 489, + 279, + 500 + ], + "score": 0.88, + "content": "\\theta _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 280, + 487, + 346, + 502 + ], + "score": 1.0, + "content": "computed by an", + "type": "text" + }, + { + "bbox": [ + 347, + 489, + 377, + 500 + ], + "score": 0.29, + "content": "\\operatorname { A N N } g", + "type": "inline_equation" + }, + { + "bbox": [ + 378, + 487, + 381, + 502 + ], + "score": 1.0, + "content": ":", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 28.5 + }, + { + "type": "interline_equation", + "bbox": [ + 214, + 501, + 396, + 527 + ], + "lines": [ + { + "bbox": [ + 214, + 501, + 396, + 527 + ], + "spans": [ + { + "bbox": [ + 214, + 501, + 396, + 527 + ], + "score": 0.92, + "content": "p ( \\pmb { y } \\mid z ) = \\prod _ { i } p ( y _ { i } \\mid \\pmb { \\theta } _ { i } ) \\operatorname { w i t h } \\pmb { \\theta } _ { i } = g ( \\pmb { y } _ { : i } , z )", + "type": "interline_equation", + "image_path": "723b71d7b3fae2ceb75f637c854496d30080baa5379bfedefff53ac018895d1f.jpg" + } + ] + } + ], + "index": 30, + "virtual_lines": [ + { + "bbox": [ + 214, + 501, + 396, + 527 + ], + "spans": [], + "index": 30 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 527, + 505, + 561 + ], + "lines": [ + { + "bbox": [ + 106, + 526, + 505, + 540 + ], + "spans": [ + { + "bbox": [ + 106, + 526, + 256, + 540 + ], + "score": 1.0, + "content": "We simply propose here to compute", + "type": "text" + }, + { + "bbox": [ + 256, + 529, + 263, + 539 + ], + "score": 0.82, + "content": "g", + "type": "inline_equation" + }, + { + "bbox": [ + 263, + 526, + 505, + 540 + ], + "score": 1.0, + "content": "deterministically using an integer network, discretizing the", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 538, + 505, + 551 + ], + "spans": [ + { + "bbox": [ + 105, + 538, + 153, + 551 + ], + "score": 1.0, + "content": "parameters", + "type": "text" + }, + { + "bbox": [ + 153, + 539, + 160, + 548 + ], + "score": 0.8, + "content": "\\pmb \\theta", + "type": "inline_equation" + }, + { + "bbox": [ + 160, + 538, + 273, + 551 + ], + "score": 1.0, + "content": "to a reasonable accuracy. If", + "type": "text" + }, + { + "bbox": [ + 274, + 538, + 312, + 550 + ], + "score": 0.94, + "content": "p ( y _ { i } \\mid \\pmb \\theta _ { i } )", + "type": "inline_equation" + }, + { + "bbox": [ + 313, + 538, + 505, + 551 + ], + "score": 1.0, + "content": "itself cannot be computed deterministically, we", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 106, + 549, + 436, + 561 + ], + "spans": [ + { + "bbox": [ + 106, + 549, + 394, + 561 + ], + "score": 1.0, + "content": "can precompute all possible values and express it as a lookup table over", + "type": "text" + }, + { + "bbox": [ + 394, + 551, + 404, + 560 + ], + "score": 0.85, + "content": "y _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 404, + 549, + 421, + 561 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 422, + 550, + 432, + 560 + ], + "score": 0.88, + "content": "\\theta _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 432, + 549, + 436, + 561 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 32 + }, + { + "type": "text", + "bbox": [ + 106, + 565, + 502, + 588 + ], + "lines": [ + { + "bbox": [ + 106, + 566, + 504, + 578 + ], + "spans": [ + { + "bbox": [ + 106, + 566, + 504, + 578 + ], + "score": 1.0, + "content": "As an example, consider the prior used in the image compression model proposed by Ballé et al.", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 106, + 577, + 502, + 588 + ], + "spans": [ + { + "bbox": [ + 106, + 577, + 502, + 588 + ], + "score": 1.0, + "content": "(2018), which is a modified Gaussian with scale parameters conditioned on another latent variable:", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 34.5 + }, + { + "type": "interline_equation", + "bbox": [ + 186, + 589, + 424, + 615 + ], + "lines": [ + { + "bbox": [ + 186, + 589, + 424, + 615 + ], + "spans": [ + { + "bbox": [ + 186, + 589, + 424, + 615 + ], + "score": 0.9, + "content": "p ( \\pmb { y } \\mid z ) = \\prod _ { i } \\left( \\mathcal { N } ( 0 , \\sigma _ { i } ^ { 2 } ) * \\mathcal { U } ( - \\textstyle \\frac { 1 } { 2 } , \\textstyle \\frac { 1 } { 2 } ) \\right) ( y _ { i } ) \\mathrm { w i t h } \\sigma = g ( z ) .", + "type": "interline_equation", + "image_path": "df784c2bf29be4c8224f794cc3a592fc4cfc5163742ff09ba5cde4b3acc2bc28.jpg" + } + ] + } + ], + "index": 36, + "virtual_lines": [ + { + "bbox": [ + 186, + 589, + 424, + 615 + ], + "spans": [], + "index": 36 + } + ] + }, + { + "type": "text", + "bbox": [ + 108, + 615, + 276, + 626 + ], + "lines": [ + { + "bbox": [ + 106, + 614, + 277, + 628 + ], + "spans": [ + { + "bbox": [ + 106, + 614, + 254, + 628 + ], + "score": 1.0, + "content": "We reformulate the scale parameters", + "type": "text" + }, + { + "bbox": [ + 254, + 618, + 263, + 625 + ], + "score": 0.81, + "content": "\\sigma", + "type": "inline_equation" + }, + { + "bbox": [ + 263, + 614, + 277, + 628 + ], + "score": 1.0, + "content": "as:", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 37 + }, + { + "type": "interline_equation", + "bbox": [ + 215, + 627, + 395, + 648 + ], + "lines": [ + { + "bbox": [ + 215, + 627, + 395, + 648 + ], + "spans": [ + { + "bbox": [ + 215, + 627, + 395, + 648 + ], + "score": 0.93, + "content": "\\begin{array} { r } { \\sigma _ { i } = \\exp \\Bigl ( \\log \\bigl ( \\sigma _ { \\operatorname* { m i n } } \\bigr ) + \\frac { \\log \\left( \\sigma _ { \\operatorname* { m a x } } \\right) - \\log \\left( \\sigma _ { \\operatorname* { m i n } } \\right) } { L - 1 } \\theta _ { i } \\Bigr ) , } \\end{array}", + "type": "interline_equation", + "image_path": "002e76f31249019d2bc4dce05d0d356ad9f4f4cec3c7e7e515eee472faad9513.jpg" + } + ] + } + ], + "index": 38, + "virtual_lines": [ + { + "bbox": [ + 215, + 627, + 395, + 648 + ], + "spans": [], + "index": 38 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 649, + 505, + 694 + ], + "lines": [ + { + "bbox": [ + 105, + 648, + 505, + 662 + ], + "spans": [ + { + "bbox": [ + 105, + 648, + 133, + 662 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 134, + 649, + 174, + 661 + ], + "score": 0.93, + "content": "\\pmb \\theta = g ( z )", + "type": "inline_equation" + }, + { + "bbox": [ + 174, + 648, + 457, + 662 + ], + "score": 1.0, + "content": "is computed using an integer network. The last activation function in", + "type": "text" + }, + { + "bbox": [ + 457, + 651, + 464, + 660 + ], + "score": 0.8, + "content": "g", + "type": "inline_equation" + }, + { + "bbox": [ + 464, + 648, + 505, + 662 + ], + "score": 1.0, + "content": "is chosen", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 660, + 506, + 673 + ], + "spans": [ + { + "bbox": [ + 105, + 660, + 213, + 673 + ], + "score": 1.0, + "content": "to have integer outputs of", + "type": "text" + }, + { + "bbox": [ + 213, + 660, + 221, + 670 + ], + "score": 0.81, + "content": "L", + "type": "inline_equation" + }, + { + "bbox": [ + 222, + 660, + 300, + 673 + ], + "score": 1.0, + "content": "levels in the range", + "type": "text" + }, + { + "bbox": [ + 300, + 660, + 340, + 672 + ], + "score": 0.92, + "content": "[ 0 , L - 1 ]", + "type": "inline_equation" + }, + { + "bbox": [ + 341, + 660, + 389, + 673 + ], + "score": 1.0, + "content": ". Constants", + "type": "text" + }, + { + "bbox": [ + 389, + 662, + 407, + 671 + ], + "score": 0.79, + "content": "\\sigma _ { \\mathrm { m i n } }", + "type": "inline_equation" + }, + { + "bbox": [ + 407, + 660, + 411, + 673 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 412, + 662, + 431, + 671 + ], + "score": 0.8, + "content": "\\sigma _ { \\mathrm { m a x } }", + "type": "inline_equation" + }, + { + "bbox": [ + 432, + 660, + 453, + 673 + ], + "score": 1.0, + "content": ", and", + "type": "text" + }, + { + "bbox": [ + 453, + 661, + 461, + 670 + ], + "score": 0.8, + "content": "L", + "type": "inline_equation" + }, + { + "bbox": [ + 461, + 660, + 506, + 673 + ], + "score": 1.0, + "content": "determine", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 671, + 505, + 683 + ], + "spans": [ + { + "bbox": [ + 105, + 671, + 505, + 683 + ], + "score": 1.0, + "content": "the discretized selection of scale parameters used in the model. The discretization is chosen to be", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 681, + 429, + 694 + ], + "spans": [ + { + "bbox": [ + 105, + 682, + 258, + 694 + ], + "score": 1.0, + "content": "logarithmic, as this choice minimizes", + "type": "text" + }, + { + "bbox": [ + 258, + 681, + 311, + 694 + ], + "score": 0.93, + "content": "\\mathbb { E } _ { \\pmb { x } } D _ { \\mathrm { K L } } [ e \\Vert p ]", + "type": "inline_equation" + }, + { + "bbox": [ + 311, + 682, + 429, + 694 + ], + "score": 1.0, + "content": "for a given number of levels.", + "type": "text" + } + ], + "index": 42 + } + ], + "index": 40.5 + }, + { + "type": "text", + "bbox": [ + 107, + 698, + 504, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 698, + 505, + 712 + ], + "spans": [ + { + "bbox": [ + 105, + 698, + 468, + 712 + ], + "score": 1.0, + "content": "During training, we can simply backpropagate through this reformulation, and through", + "type": "text" + }, + { + "bbox": [ + 469, + 701, + 476, + 711 + ], + "score": 0.78, + "content": "g", + "type": "inline_equation" + }, + { + "bbox": [ + 476, + 698, + 505, + 712 + ], + "score": 1.0, + "content": "as de-", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 709, + 506, + 723 + ], + "spans": [ + { + "bbox": [ + 105, + 709, + 443, + 723 + ], + "score": 1.0, + "content": "scribed in the previous section. After training, we precompute all possible values of", + "type": "text" + }, + { + "bbox": [ + 444, + 712, + 450, + 721 + ], + "score": 0.81, + "content": "p", + "type": "inline_equation" + }, + { + "bbox": [ + 451, + 709, + 506, + 723 + ], + "score": 1.0, + "content": "as a function", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 721, + 447, + 733 + ], + "spans": [ + { + "bbox": [ + 105, + 721, + 117, + 733 + ], + "score": 1.0, + "content": "of", + "type": "text" + }, + { + "bbox": [ + 117, + 722, + 127, + 732 + ], + "score": 0.85, + "content": "y _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 127, + 721, + 145, + 733 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 145, + 721, + 154, + 732 + ], + "score": 0.87, + "content": "\\theta _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 154, + 721, + 280, + 733 + ], + "score": 1.0, + "content": "and form a lookup table, while", + "type": "text" + }, + { + "bbox": [ + 280, + 723, + 286, + 732 + ], + "score": 0.81, + "content": "g", + "type": "inline_equation" + }, + { + "bbox": [ + 287, + 721, + 447, + 733 + ], + "score": 1.0, + "content": "is implemented with integer arithmetic.", + "type": "text" + } + ], + "index": 45 + } + ], + "index": 44 + } + ], + "page_idx": 4, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 26, + 293, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 25, + 294, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 25, + 294, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2019", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 302, + 751, + 309, + 760 + ], + "lines": [ + { + "bbox": [ + 301, + 750, + 310, + 762 + ], + "spans": [ + { + "bbox": [ + 301, + 750, + 310, + 762 + ], + "score": 1.0, + "content": "5", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 105, + 82, + 504, + 105 + ], + "lines": [], + "index": 0.5, + "bbox_fs": [ + 105, + 82, + 505, + 106 + ], + "lines_deleted": true + }, + { + "type": "text", + "bbox": [ + 105, + 110, + 503, + 132 + ], + "lines": [ + { + "bbox": [ + 106, + 111, + 504, + 122 + ], + "spans": [ + { + "bbox": [ + 106, + 111, + 258, + 122 + ], + "score": 1.0, + "content": "Further, we treat the rescaling divisor", + "type": "text" + }, + { + "bbox": [ + 258, + 113, + 264, + 120 + ], + "score": 0.77, + "content": "s", + "type": "inline_equation" + }, + { + "bbox": [ + 265, + 111, + 504, + 122 + ], + "score": 1.0, + "content": "as if it were a constant. That is, we compute the derivatives", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 120, + 503, + 135 + ], + "spans": [ + { + "bbox": [ + 105, + 120, + 247, + 135 + ], + "score": 1.0, + "content": "of the loss function with respect to", + "type": "text" + }, + { + "bbox": [ + 247, + 121, + 274, + 132 + ], + "score": 0.54, + "content": "H ^ { \\prime } , b ^ { \\prime }", + "type": "inline_equation" + }, + { + "bbox": [ + 275, + 120, + 295, + 135 + ], + "score": 1.0, + "content": ", and", + "type": "text" + }, + { + "bbox": [ + 295, + 122, + 304, + 131 + ], + "score": 0.87, + "content": "c ^ { \\prime }", + "type": "inline_equation" + }, + { + "bbox": [ + 304, + 120, + 503, + 135 + ], + "score": 1.0, + "content": "as with the chain rule of calculus, but overriding:", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 2.5, + "bbox_fs": [ + 105, + 111, + 504, + 135 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 194, + 133, + 416, + 159 + ], + "lines": [ + { + "bbox": [ + 194, + 133, + 416, + 159 + ], + "spans": [ + { + "bbox": [ + 194, + 133, + 416, + 159 + ], + "score": 0.91, + "content": "\\frac { \\partial h } { \\partial h ^ { \\prime } } : = \\frac { 1 } { s ( h ^ { \\prime } ) } , \\qquad \\frac { \\partial b } { \\partial b ^ { \\prime } } : = 2 ^ { K } , \\qquad \\frac { \\partial c } { \\partial c ^ { \\prime } } : = 2 ^ { K } r ^ { \\prime } ( c ^ { \\prime } ) ,", + "type": "interline_equation", + "image_path": "9dcdab371e0ac3c891e10b51a1ac5565b11f72012c44c2cab17a641ac3c7d56f.jpg" + } + ] + } + ], + "index": 4, + "virtual_lines": [ + { + "bbox": [ + 194, + 133, + 416, + 159 + ], + "spans": [], + "index": 4 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 160, + 505, + 205 + ], + "lines": [ + { + "bbox": [ + 105, + 159, + 506, + 173 + ], + "spans": [ + { + "bbox": [ + 105, + 159, + 133, + 173 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 134, + 160, + 143, + 170 + ], + "score": 0.85, + "content": "r ^ { \\prime }", + "type": "inline_equation" + }, + { + "bbox": [ + 143, + 159, + 308, + 173 + ], + "score": 1.0, + "content": "is the replacement gradient function for", + "type": "text" + }, + { + "bbox": [ + 308, + 163, + 314, + 170 + ], + "score": 0.77, + "content": "r", + "type": "inline_equation" + }, + { + "bbox": [ + 315, + 159, + 506, + 173 + ], + "score": 1.0, + "content": "as proposed by Ballé (2018). After training is", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 171, + 506, + 184 + ], + "spans": [ + { + "bbox": [ + 105, + 171, + 292, + 184 + ], + "score": 1.0, + "content": "completed, we compute the integer parameters", + "type": "text" + }, + { + "bbox": [ + 292, + 172, + 303, + 181 + ], + "score": 0.72, + "content": "\\pmb { H }", + "type": "inline_equation" + }, + { + "bbox": [ + 304, + 171, + 307, + 184 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 307, + 172, + 313, + 181 + ], + "score": 0.61, + "content": "^ { b }", + "type": "inline_equation" + }, + { + "bbox": [ + 314, + 171, + 330, + 184 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 330, + 173, + 337, + 181 + ], + "score": 0.72, + "content": "^ c", + "type": "inline_equation" + }, + { + "bbox": [ + 338, + 171, + 506, + 184 + ], + "score": 1.0, + "content": "one more time, and from then on use them", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 182, + 505, + 195 + ], + "spans": [ + { + "bbox": [ + 105, + 182, + 369, + 195 + ], + "score": 1.0, + "content": "for evaluation. Note that further reparameterization of the kernels", + "type": "text" + }, + { + "bbox": [ + 369, + 182, + 383, + 192 + ], + "score": 0.88, + "content": "H ^ { \\prime }", + "type": "inline_equation" + }, + { + "bbox": [ + 383, + 182, + 505, + 195 + ], + "score": 1.0, + "content": ", such as Sadam (Ballé, 2018),", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 192, + 488, + 207 + ], + "spans": [ + { + "bbox": [ + 105, + 192, + 169, + 207 + ], + "score": 1.0, + "content": "or of the biases", + "type": "text" + }, + { + "bbox": [ + 169, + 193, + 179, + 203 + ], + "score": 0.83, + "content": "\\pmb { b } ^ { \\prime }", + "type": "inline_equation" + }, + { + "bbox": [ + 179, + 192, + 268, + 207 + ], + "score": 1.0, + "content": "or scaling parameters", + "type": "text" + }, + { + "bbox": [ + 268, + 193, + 276, + 203 + ], + "score": 0.84, + "content": "c ^ { \\prime }", + "type": "inline_equation" + }, + { + "bbox": [ + 277, + 192, + 488, + 207 + ], + "score": 1.0, + "content": ", is possible by simply chaining reparameterizations.", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 6.5, + "bbox_fs": [ + 105, + 159, + 506, + 207 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 209, + 505, + 287 + ], + "lines": [ + { + "bbox": [ + 105, + 209, + 505, + 223 + ], + "spans": [ + { + "bbox": [ + 105, + 209, + 505, + 223 + ], + "score": 1.0, + "content": "In addition to rounding the parameters, it is necessary to round the activations. To obtain gradients", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 221, + 505, + 234 + ], + "spans": [ + { + "bbox": [ + 105, + 221, + 207, + 234 + ], + "score": 1.0, + "content": "for the rounding division", + "type": "text" + }, + { + "bbox": [ + 207, + 222, + 216, + 232 + ], + "score": 0.81, + "content": "\\oslash", + "type": "inline_equation" + }, + { + "bbox": [ + 217, + 221, + 505, + 234 + ], + "score": 1.0, + "content": ", we simply substitute the gradient of floating point division. To estimate", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 231, + 505, + 245 + ], + "spans": [ + { + "bbox": [ + 105, + 231, + 505, + 245 + ], + "score": 1.0, + "content": "gradients for the rounded activation functions, we replace their gradient with the corresponding non-", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 243, + 505, + 255 + ], + "spans": [ + { + "bbox": [ + 105, + 243, + 505, + 255 + ], + "score": 1.0, + "content": "rounded activation function, plotted in cyan in figure 2. In the case of QReLU, the gradient of the", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 253, + 505, + 267 + ], + "spans": [ + { + "bbox": [ + 105, + 253, + 505, + 267 + ], + "score": 1.0, + "content": "clipping operation is a box function, which can lead to training getting stuck, since if activations", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 265, + 505, + 277 + ], + "spans": [ + { + "bbox": [ + 105, + 265, + 505, + 277 + ], + "score": 1.0, + "content": "consistently hit one of the bounds, no gradients are propagated back (this is sometimes called the", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 106, + 276, + 397, + 288 + ], + "spans": [ + { + "bbox": [ + 106, + 276, + 397, + 288 + ], + "score": 1.0, + "content": "“dead unit” problem). As a remedy, we replace the gradient instead with", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 12, + "bbox_fs": [ + 105, + 209, + 505, + 288 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 217, + 288, + 393, + 313 + ], + "lines": [ + { + "bbox": [ + 217, + 288, + 393, + 313 + ], + "spans": [ + { + "bbox": [ + 217, + 288, + 393, + 313 + ], + "score": 0.94, + "content": "\\frac { \\partial g _ { \\mathrm { Q R e L U } } ( v ) } { \\partial v } : = \\exp \\Bigl ( - \\alpha ^ { \\beta } \\Bigl | \\frac { 2 v } { 2 ^ { L } - 1 } - 1 \\Bigr | ^ { \\beta } \\Bigr ) ,", + "type": "interline_equation", + "image_path": "8bd5e5b014f1b8ecea4471bd1b8419a80013ba1ea95ef323be837e2024dba8c0.jpg" + } + ] + } + ], + "index": 16, + "virtual_lines": [ + { + "bbox": [ + 217, + 288, + 393, + 313 + ], + "spans": [], + "index": 16 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 314, + 505, + 383 + ], + "lines": [ + { + "bbox": [ + 106, + 313, + 506, + 329 + ], + "spans": [ + { + "bbox": [ + 106, + 313, + 133, + 329 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 134, + 313, + 185, + 329 + ], + "score": 0.94, + "content": "\\begin{array} { r } { \\alpha = \\frac { 1 } { \\beta } \\Gamma \\left( \\frac { 1 } { \\beta } \\right) } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 185, + 313, + 206, + 329 + ], + "score": 1.0, + "content": ", and", + "type": "text" + }, + { + "bbox": [ + 206, + 315, + 214, + 324 + ], + "score": 0.83, + "content": "L", + "type": "inline_equation" + }, + { + "bbox": [ + 215, + 313, + 289, + 329 + ], + "score": 1.0, + "content": "is the bit width of", + "type": "text" + }, + { + "bbox": [ + 290, + 316, + 299, + 325 + ], + "score": 0.74, + "content": "\\textbf { \\em w }", + "type": "inline_equation" + }, + { + "bbox": [ + 299, + 313, + 506, + 329 + ], + "score": 1.0, + "content": ". This function corresponds to a scaled generalized", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 106, + 327, + 505, + 340 + ], + "spans": [ + { + "bbox": [ + 106, + 327, + 313, + 340 + ], + "score": 1.0, + "content": "Gaussian probability density with shape parameter", + "type": "text" + }, + { + "bbox": [ + 314, + 327, + 321, + 339 + ], + "score": 0.83, + "content": "\\beta", + "type": "inline_equation" + }, + { + "bbox": [ + 321, + 327, + 456, + 340 + ], + "score": 1.0, + "content": ". In this context, we can think of", + "type": "text" + }, + { + "bbox": [ + 456, + 327, + 464, + 338 + ], + "score": 0.85, + "content": "\\beta", + "type": "inline_equation" + }, + { + "bbox": [ + 464, + 327, + 505, + 340 + ], + "score": 1.0, + "content": "as a tem-", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 338, + 504, + 351 + ], + "spans": [ + { + "bbox": [ + 105, + 338, + 496, + 351 + ], + "score": 1.0, + "content": "perature parameter that makes the function converge to the gradient of the clipping operation as", + "type": "text" + }, + { + "bbox": [ + 496, + 339, + 504, + 349 + ], + "score": 0.83, + "content": "\\beta", + "type": "inline_equation" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 349, + 506, + 361 + ], + "spans": [ + { + "bbox": [ + 105, + 349, + 459, + 361 + ], + "score": 1.0, + "content": "goes to infinity. Although this setting permits an annealing schedule, we simply chose", + "type": "text" + }, + { + "bbox": [ + 459, + 349, + 487, + 360 + ], + "score": 0.91, + "content": "\\beta = 4", + "type": "inline_equation" + }, + { + "bbox": [ + 487, + 349, + 506, + 361 + ], + "score": 1.0, + "content": "and", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 360, + 505, + 373 + ], + "spans": [ + { + "bbox": [ + 105, + 360, + 505, + 373 + ], + "score": 1.0, + "content": "obtained good results. The integral of this function is plotted in figure 2 (left) in cyan, along with", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 369, + 213, + 384 + ], + "spans": [ + { + "bbox": [ + 105, + 369, + 172, + 384 + ], + "score": 1.0, + "content": "other choices of", + "type": "text" + }, + { + "bbox": [ + 173, + 371, + 180, + 382 + ], + "score": 0.85, + "content": "\\beta", + "type": "inline_equation" + }, + { + "bbox": [ + 181, + 369, + 213, + 384 + ], + "score": 1.0, + "content": "in gray.", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 19.5, + "bbox_fs": [ + 105, + 313, + 506, + 384 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 394, + 387, + 406 + ], + "lines": [ + { + "bbox": [ + 105, + 393, + 388, + 408 + ], + "spans": [ + { + "bbox": [ + 105, + 393, + 388, + 408 + ], + "score": 1.0, + "content": "4 COMPUTING THE PRIOR WITH INTEGER NETWORKS", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 23 + }, + { + "type": "text", + "bbox": [ + 106, + 417, + 505, + 451 + ], + "lines": [ + { + "bbox": [ + 105, + 417, + 505, + 430 + ], + "spans": [ + { + "bbox": [ + 105, + 417, + 297, + 430 + ], + "score": 1.0, + "content": "Suppose our prior on the latent representation is", + "type": "text" + }, + { + "bbox": [ + 298, + 417, + 332, + 430 + ], + "score": 0.93, + "content": "p ( \\pmb { y } \\mid z )", + "type": "inline_equation" + }, + { + "bbox": [ + 332, + 417, + 362, + 430 + ], + "score": 1.0, + "content": ", where", + "type": "text" + }, + { + "bbox": [ + 362, + 420, + 369, + 428 + ], + "score": 0.77, + "content": "_ z", + "type": "inline_equation" + }, + { + "bbox": [ + 370, + 417, + 505, + 430 + ], + "score": 1.0, + "content": "summarizes other latent variables", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 427, + 505, + 443 + ], + "spans": [ + { + "bbox": [ + 105, + 427, + 505, + 443 + ], + "score": 1.0, + "content": "of the representation (it may be empty). To apply range coding, we need to impose a total ordering", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 439, + 345, + 451 + ], + "spans": [ + { + "bbox": [ + 105, + 439, + 182, + 451 + ], + "score": 1.0, + "content": "on the elements of", + "type": "text" + }, + { + "bbox": [ + 182, + 442, + 190, + 451 + ], + "score": 0.82, + "content": "\\textbf { { y } }", + "type": "inline_equation" + }, + { + "bbox": [ + 190, + 439, + 345, + 451 + ], + "score": 1.0, + "content": "and write it as a chain of conditionals:", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 25, + "bbox_fs": [ + 105, + 417, + 505, + 451 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 246, + 452, + 363, + 477 + ], + "lines": [ + { + "bbox": [ + 246, + 452, + 363, + 477 + ], + "spans": [ + { + "bbox": [ + 246, + 452, + 363, + 477 + ], + "score": 0.94, + "content": "p ( \\pmb { y } \\mid z ) = \\prod _ { i } p ( y _ { i } \\mid \\pmb { y } _ { : i } , z ) ,", + "type": "interline_equation", + "image_path": "3b81a38a72d7a4a93351af7c7855836877083f200b8973e92fd9c159877db3f8.jpg" + } + ] + } + ], + "index": 27, + "virtual_lines": [ + { + "bbox": [ + 246, + 452, + 363, + 477 + ], + "spans": [], + "index": 27 + } + ] + }, + { + "type": "text", + "bbox": [ + 108, + 478, + 504, + 500 + ], + "lines": [ + { + "bbox": [ + 105, + 476, + 504, + 492 + ], + "spans": [ + { + "bbox": [ + 105, + 476, + 133, + 492 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 133, + 479, + 146, + 489 + ], + "score": 0.86, + "content": "\\mathbf { \\nabla } _ { \\mathbf { { \\boldsymbol { y } } } : i }", + "type": "inline_equation" + }, + { + "bbox": [ + 146, + 476, + 294, + 492 + ], + "score": 1.0, + "content": "denotes the vector of all elements of", + "type": "text" + }, + { + "bbox": [ + 294, + 480, + 302, + 489 + ], + "score": 0.83, + "content": "\\textbf { { y } }", + "type": "inline_equation" + }, + { + "bbox": [ + 302, + 476, + 497, + 492 + ], + "score": 1.0, + "content": "preceding the ith. A common assumption is that", + "type": "text" + }, + { + "bbox": [ + 498, + 480, + 504, + 489 + ], + "score": 0.76, + "content": "p", + "type": "inline_equation" + } + ], + "index": 28 + }, + { + "bbox": [ + 104, + 487, + 381, + 502 + ], + "spans": [ + { + "bbox": [ + 104, + 487, + 269, + 502 + ], + "score": 1.0, + "content": "is a known distribution, with parameters", + "type": "text" + }, + { + "bbox": [ + 269, + 489, + 279, + 500 + ], + "score": 0.88, + "content": "\\theta _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 280, + 487, + 346, + 502 + ], + "score": 1.0, + "content": "computed by an", + "type": "text" + }, + { + "bbox": [ + 347, + 489, + 377, + 500 + ], + "score": 0.29, + "content": "\\operatorname { A N N } g", + "type": "inline_equation" + }, + { + "bbox": [ + 378, + 487, + 381, + 502 + ], + "score": 1.0, + "content": ":", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 28.5, + "bbox_fs": [ + 104, + 476, + 504, + 502 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 214, + 501, + 396, + 527 + ], + "lines": [ + { + "bbox": [ + 214, + 501, + 396, + 527 + ], + "spans": [ + { + "bbox": [ + 214, + 501, + 396, + 527 + ], + "score": 0.92, + "content": "p ( \\pmb { y } \\mid z ) = \\prod _ { i } p ( y _ { i } \\mid \\pmb { \\theta } _ { i } ) \\operatorname { w i t h } \\pmb { \\theta } _ { i } = g ( \\pmb { y } _ { : i } , z )", + "type": "interline_equation", + "image_path": "723b71d7b3fae2ceb75f637c854496d30080baa5379bfedefff53ac018895d1f.jpg" + } + ] + } + ], + "index": 30, + "virtual_lines": [ + { + "bbox": [ + 214, + 501, + 396, + 527 + ], + "spans": [], + "index": 30 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 527, + 505, + 561 + ], + "lines": [ + { + "bbox": [ + 106, + 526, + 505, + 540 + ], + "spans": [ + { + "bbox": [ + 106, + 526, + 256, + 540 + ], + "score": 1.0, + "content": "We simply propose here to compute", + "type": "text" + }, + { + "bbox": [ + 256, + 529, + 263, + 539 + ], + "score": 0.82, + "content": "g", + "type": "inline_equation" + }, + { + "bbox": [ + 263, + 526, + 505, + 540 + ], + "score": 1.0, + "content": "deterministically using an integer network, discretizing the", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 538, + 505, + 551 + ], + "spans": [ + { + "bbox": [ + 105, + 538, + 153, + 551 + ], + "score": 1.0, + "content": "parameters", + "type": "text" + }, + { + "bbox": [ + 153, + 539, + 160, + 548 + ], + "score": 0.8, + "content": "\\pmb \\theta", + "type": "inline_equation" + }, + { + "bbox": [ + 160, + 538, + 273, + 551 + ], + "score": 1.0, + "content": "to a reasonable accuracy. If", + "type": "text" + }, + { + "bbox": [ + 274, + 538, + 312, + 550 + ], + "score": 0.94, + "content": "p ( y _ { i } \\mid \\pmb \\theta _ { i } )", + "type": "inline_equation" + }, + { + "bbox": [ + 313, + 538, + 505, + 551 + ], + "score": 1.0, + "content": "itself cannot be computed deterministically, we", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 106, + 549, + 436, + 561 + ], + "spans": [ + { + "bbox": [ + 106, + 549, + 394, + 561 + ], + "score": 1.0, + "content": "can precompute all possible values and express it as a lookup table over", + "type": "text" + }, + { + "bbox": [ + 394, + 551, + 404, + 560 + ], + "score": 0.85, + "content": "y _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 404, + 549, + 421, + 561 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 422, + 550, + 432, + 560 + ], + "score": 0.88, + "content": "\\theta _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 432, + 549, + 436, + 561 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 32, + "bbox_fs": [ + 105, + 526, + 505, + 561 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 565, + 502, + 588 + ], + "lines": [ + { + "bbox": [ + 106, + 566, + 504, + 578 + ], + "spans": [ + { + "bbox": [ + 106, + 566, + 504, + 578 + ], + "score": 1.0, + "content": "As an example, consider the prior used in the image compression model proposed by Ballé et al.", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 106, + 577, + 502, + 588 + ], + "spans": [ + { + "bbox": [ + 106, + 577, + 502, + 588 + ], + "score": 1.0, + "content": "(2018), which is a modified Gaussian with scale parameters conditioned on another latent variable:", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 34.5, + "bbox_fs": [ + 106, + 566, + 504, + 588 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 186, + 589, + 424, + 615 + ], + "lines": [ + { + "bbox": [ + 186, + 589, + 424, + 615 + ], + "spans": [ + { + "bbox": [ + 186, + 589, + 424, + 615 + ], + "score": 0.9, + "content": "p ( \\pmb { y } \\mid z ) = \\prod _ { i } \\left( \\mathcal { N } ( 0 , \\sigma _ { i } ^ { 2 } ) * \\mathcal { U } ( - \\textstyle \\frac { 1 } { 2 } , \\textstyle \\frac { 1 } { 2 } ) \\right) ( y _ { i } ) \\mathrm { w i t h } \\sigma = g ( z ) .", + "type": "interline_equation", + "image_path": "df784c2bf29be4c8224f794cc3a592fc4cfc5163742ff09ba5cde4b3acc2bc28.jpg" + } + ] + } + ], + "index": 36, + "virtual_lines": [ + { + "bbox": [ + 186, + 589, + 424, + 615 + ], + "spans": [], + "index": 36 + } + ] + }, + { + "type": "text", + "bbox": [ + 108, + 615, + 276, + 626 + ], + "lines": [ + { + "bbox": [ + 106, + 614, + 277, + 628 + ], + "spans": [ + { + "bbox": [ + 106, + 614, + 254, + 628 + ], + "score": 1.0, + "content": "We reformulate the scale parameters", + "type": "text" + }, + { + "bbox": [ + 254, + 618, + 263, + 625 + ], + "score": 0.81, + "content": "\\sigma", + "type": "inline_equation" + }, + { + "bbox": [ + 263, + 614, + 277, + 628 + ], + "score": 1.0, + "content": "as:", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 37, + "bbox_fs": [ + 106, + 614, + 277, + 628 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 215, + 627, + 395, + 648 + ], + "lines": [ + { + "bbox": [ + 215, + 627, + 395, + 648 + ], + "spans": [ + { + "bbox": [ + 215, + 627, + 395, + 648 + ], + "score": 0.93, + "content": "\\begin{array} { r } { \\sigma _ { i } = \\exp \\Bigl ( \\log \\bigl ( \\sigma _ { \\operatorname* { m i n } } \\bigr ) + \\frac { \\log \\left( \\sigma _ { \\operatorname* { m a x } } \\right) - \\log \\left( \\sigma _ { \\operatorname* { m i n } } \\right) } { L - 1 } \\theta _ { i } \\Bigr ) , } \\end{array}", + "type": "interline_equation", + "image_path": "002e76f31249019d2bc4dce05d0d356ad9f4f4cec3c7e7e515eee472faad9513.jpg" + } + ] + } + ], + "index": 38, + "virtual_lines": [ + { + "bbox": [ + 215, + 627, + 395, + 648 + ], + "spans": [], + "index": 38 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 649, + 505, + 694 + ], + "lines": [ + { + "bbox": [ + 105, + 648, + 505, + 662 + ], + "spans": [ + { + "bbox": [ + 105, + 648, + 133, + 662 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 134, + 649, + 174, + 661 + ], + "score": 0.93, + "content": "\\pmb \\theta = g ( z )", + "type": "inline_equation" + }, + { + "bbox": [ + 174, + 648, + 457, + 662 + ], + "score": 1.0, + "content": "is computed using an integer network. The last activation function in", + "type": "text" + }, + { + "bbox": [ + 457, + 651, + 464, + 660 + ], + "score": 0.8, + "content": "g", + "type": "inline_equation" + }, + { + "bbox": [ + 464, + 648, + 505, + 662 + ], + "score": 1.0, + "content": "is chosen", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 660, + 506, + 673 + ], + "spans": [ + { + "bbox": [ + 105, + 660, + 213, + 673 + ], + "score": 1.0, + "content": "to have integer outputs of", + "type": "text" + }, + { + "bbox": [ + 213, + 660, + 221, + 670 + ], + "score": 0.81, + "content": "L", + "type": "inline_equation" + }, + { + "bbox": [ + 222, + 660, + 300, + 673 + ], + "score": 1.0, + "content": "levels in the range", + "type": "text" + }, + { + "bbox": [ + 300, + 660, + 340, + 672 + ], + "score": 0.92, + "content": "[ 0 , L - 1 ]", + "type": "inline_equation" + }, + { + "bbox": [ + 341, + 660, + 389, + 673 + ], + "score": 1.0, + "content": ". Constants", + "type": "text" + }, + { + "bbox": [ + 389, + 662, + 407, + 671 + ], + "score": 0.79, + "content": "\\sigma _ { \\mathrm { m i n } }", + "type": "inline_equation" + }, + { + "bbox": [ + 407, + 660, + 411, + 673 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 412, + 662, + 431, + 671 + ], + "score": 0.8, + "content": "\\sigma _ { \\mathrm { m a x } }", + "type": "inline_equation" + }, + { + "bbox": [ + 432, + 660, + 453, + 673 + ], + "score": 1.0, + "content": ", and", + "type": "text" + }, + { + "bbox": [ + 453, + 661, + 461, + 670 + ], + "score": 0.8, + "content": "L", + "type": "inline_equation" + }, + { + "bbox": [ + 461, + 660, + 506, + 673 + ], + "score": 1.0, + "content": "determine", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 671, + 505, + 683 + ], + "spans": [ + { + "bbox": [ + 105, + 671, + 505, + 683 + ], + "score": 1.0, + "content": "the discretized selection of scale parameters used in the model. The discretization is chosen to be", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 681, + 429, + 694 + ], + "spans": [ + { + "bbox": [ + 105, + 682, + 258, + 694 + ], + "score": 1.0, + "content": "logarithmic, as this choice minimizes", + "type": "text" + }, + { + "bbox": [ + 258, + 681, + 311, + 694 + ], + "score": 0.93, + "content": "\\mathbb { E } _ { \\pmb { x } } D _ { \\mathrm { K L } } [ e \\Vert p ]", + "type": "inline_equation" + }, + { + "bbox": [ + 311, + 682, + 429, + 694 + ], + "score": 1.0, + "content": "for a given number of levels.", + "type": "text" + } + ], + "index": 42 + } + ], + "index": 40.5, + "bbox_fs": [ + 105, + 648, + 506, + 694 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 698, + 504, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 698, + 505, + 712 + ], + "spans": [ + { + "bbox": [ + 105, + 698, + 468, + 712 + ], + "score": 1.0, + "content": "During training, we can simply backpropagate through this reformulation, and through", + "type": "text" + }, + { + "bbox": [ + 469, + 701, + 476, + 711 + ], + "score": 0.78, + "content": "g", + "type": "inline_equation" + }, + { + "bbox": [ + 476, + 698, + 505, + 712 + ], + "score": 1.0, + "content": "as de-", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 709, + 506, + 723 + ], + "spans": [ + { + "bbox": [ + 105, + 709, + 443, + 723 + ], + "score": 1.0, + "content": "scribed in the previous section. After training, we precompute all possible values of", + "type": "text" + }, + { + "bbox": [ + 444, + 712, + 450, + 721 + ], + "score": 0.81, + "content": "p", + "type": "inline_equation" + }, + { + "bbox": [ + 451, + 709, + 506, + 723 + ], + "score": 1.0, + "content": "as a function", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 721, + 447, + 733 + ], + "spans": [ + { + "bbox": [ + 105, + 721, + 117, + 733 + ], + "score": 1.0, + "content": "of", + "type": "text" + }, + { + "bbox": [ + 117, + 722, + 127, + 732 + ], + "score": 0.85, + "content": "y _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 127, + 721, + 145, + 733 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 145, + 721, + 154, + 732 + ], + "score": 0.87, + "content": "\\theta _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 154, + 721, + 280, + 733 + ], + "score": 1.0, + "content": "and form a lookup table, while", + "type": "text" + }, + { + "bbox": [ + 280, + 723, + 286, + 732 + ], + "score": 0.81, + "content": "g", + "type": "inline_equation" + }, + { + "bbox": [ + 287, + 721, + 447, + 733 + ], + "score": 1.0, + "content": "is implemented with integer arithmetic.", + "type": "text" + } + ], + "index": 45 + } + ], + "index": 44, + "bbox_fs": [ + 105, + 698, + 506, + 733 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 106, + 103, + 505, + 204 + ], + "lines": [ + { + "bbox": [ + 106, + 104, + 505, + 116 + ], + "spans": [ + { + "bbox": [ + 106, + 104, + 505, + 116 + ], + "score": 1.0, + "content": "For certain applications, it can be useful not only to be able to deploy a compression model across", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 114, + 506, + 128 + ], + "spans": [ + { + "bbox": [ + 105, + 114, + 506, + 128 + ], + "score": 1.0, + "content": "heterogenous platforms, but to go even further in also ensuring identical reconstructions of the data", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 106, + 126, + 505, + 138 + ], + "spans": [ + { + "bbox": [ + 106, + 126, + 505, + 138 + ], + "score": 1.0, + "content": "across platforms. To this end, it can be attractive to make the entire model robust to non-determinism.", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 135, + 505, + 150 + ], + "spans": [ + { + "bbox": [ + 105, + 135, + 505, + 150 + ], + "score": 1.0, + "content": "To use integer networks in the encoder or decoder, one can use the equivalent construction as in (13):", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 147, + 505, + 160 + ], + "spans": [ + { + "bbox": [ + 105, + 147, + 133, + 160 + ], + "score": 1.0, + "content": "define", + "type": "text" + }, + { + "bbox": [ + 134, + 150, + 140, + 158 + ], + "score": 0.61, + "content": "e", + "type": "inline_equation" + }, + { + "bbox": [ + 140, + 147, + 153, + 160 + ], + "score": 1.0, + "content": "or", + "type": "text" + }, + { + "bbox": [ + 153, + 148, + 160, + 158 + ], + "score": 0.75, + "content": "d", + "type": "inline_equation" + }, + { + "bbox": [ + 160, + 147, + 505, + 160 + ], + "score": 1.0, + "content": "as a known distribution, with parameters computed by an integer network. To allow", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 106, + 159, + 505, + 171 + ], + "spans": [ + { + "bbox": [ + 106, + 159, + 505, + 171 + ], + "score": 1.0, + "content": "the use of range coding, we’re especially interested in discrete-valued representations here, such", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 170, + 505, + 183 + ], + "spans": [ + { + "bbox": [ + 105, + 170, + 505, + 183 + ], + "score": 1.0, + "content": "as studied in van den Oord et al. (2017), Jang et al. (2017), Theis et al. (2017), Ágústsson et al.", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 181, + 506, + 195 + ], + "spans": [ + { + "bbox": [ + 105, + 181, + 506, + 195 + ], + "score": 1.0, + "content": "(2017), and Ballé et al. (2018), among others. These approaches typically employ biased gradient", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 106, + 193, + 152, + 204 + ], + "spans": [ + { + "bbox": [ + 106, + 193, + 152, + 204 + ], + "score": 1.0, + "content": "estimators.", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 4 + }, + { + "type": "text", + "bbox": [ + 107, + 209, + 505, + 275 + ], + "lines": [ + { + "bbox": [ + 105, + 209, + 505, + 222 + ], + "spans": [ + { + "bbox": [ + 105, + 209, + 505, + 222 + ], + "score": 1.0, + "content": "Jang et al. (2017) and Ágústsson et al. (2017) are concerned with producing gradients for categorical", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 220, + 505, + 233 + ], + "spans": [ + { + "bbox": [ + 105, + 220, + 505, + 233 + ], + "score": 1.0, + "content": "distributions and vector quantization (VQ), respectively. In both methods, the representation is found", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 231, + 505, + 244 + ], + "spans": [ + { + "bbox": [ + 105, + 231, + 505, + 244 + ], + "score": 1.0, + "content": "by evaluating an ANN followed by an arg max function, while useful gradients are obtained by", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 241, + 505, + 255 + ], + "spans": [ + { + "bbox": [ + 105, + 241, + 505, + 255 + ], + "score": 1.0, + "content": "substituting the arg max with a softmax function. Since arg max can be evaluated deterministically", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 106, + 254, + 505, + 265 + ], + "spans": [ + { + "bbox": [ + 106, + 254, + 505, + 265 + ], + "score": 1.0, + "content": "in a platform-independent way, and evaluating a softmax function with rounded inputs is feasible,", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 264, + 455, + 276 + ], + "spans": [ + { + "bbox": [ + 105, + 264, + 455, + 276 + ], + "score": 1.0, + "content": "integer networks can be combined with these models without additional modifications.", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 11.5 + }, + { + "type": "text", + "bbox": [ + 106, + 280, + 505, + 414 + ], + "lines": [ + { + "bbox": [ + 106, + 281, + 505, + 293 + ], + "spans": [ + { + "bbox": [ + 106, + 281, + 505, + 293 + ], + "score": 1.0, + "content": "Theis et al. (2017) and Ballé et al. (2018) differ mostly in the details of interaction between the", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 106, + 292, + 506, + 305 + ], + "spans": [ + { + "bbox": [ + 106, + 292, + 506, + 305 + ], + "score": 1.0, + "content": "encoder and the prior. These two approaches are particularly interesting for image compression, as", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 106, + 303, + 506, + 316 + ], + "spans": [ + { + "bbox": [ + 106, + 303, + 506, + 316 + ], + "score": 1.0, + "content": "they scale well: Image compression models are often trained with a rate–distortion objective with a", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 314, + 506, + 327 + ], + "spans": [ + { + "bbox": [ + 105, + 314, + 190, + 327 + ], + "score": 1.0, + "content": "Lagrange parameter", + "type": "text" + }, + { + "bbox": [ + 190, + 315, + 197, + 324 + ], + "score": 0.75, + "content": "\\lambda", + "type": "inline_equation" + }, + { + "bbox": [ + 198, + 314, + 256, + 327 + ], + "score": 1.0, + "content": ", equivalent to", + "type": "text" + }, + { + "bbox": [ + 256, + 315, + 264, + 325 + ], + "score": 0.85, + "content": "\\beta", + "type": "inline_equation" + }, + { + "bbox": [ + 264, + 314, + 291, + 327 + ], + "score": 1.0, + "content": "in the", + "type": "text" + }, + { + "bbox": [ + 292, + 315, + 299, + 325 + ], + "score": 0.83, + "content": "\\beta", + "type": "inline_equation" + }, + { + "bbox": [ + 299, + 314, + 506, + 327 + ], + "score": 1.0, + "content": "-VAE objective (Higgins et al., 2017; Alemi et al.,", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 324, + 506, + 338 + ], + "spans": [ + { + "bbox": [ + 105, + 324, + 506, + 338 + ], + "score": 1.0, + "content": "2018). Depending on the parameter, the latent representation carries vastly different amounts of", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 336, + 506, + 348 + ], + "spans": [ + { + "bbox": [ + 105, + 336, + 506, + 348 + ], + "score": 1.0, + "content": "information, and the optimal number of latent states in turn varies with that. While the number of", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 347, + 505, + 360 + ], + "spans": [ + { + "bbox": [ + 105, + 347, + 505, + 360 + ], + "score": 1.0, + "content": "latent states is a hyperparameter that needs to be chosen ahead of time in the categorical/VQ case, the", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 106, + 358, + 505, + 370 + ], + "spans": [ + { + "bbox": [ + 106, + 358, + 505, + 370 + ], + "score": 1.0, + "content": "latter two approaches can extend it as needed during training, because the latent states are organized", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 369, + 505, + 382 + ], + "spans": [ + { + "bbox": [ + 105, + 369, + 505, + 382 + ], + "score": 1.0, + "content": "along the real line. Further, for categorical distributions as well as VQ, the required dimensionality", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 106, + 380, + 505, + 392 + ], + "spans": [ + { + "bbox": [ + 106, + 380, + 505, + 392 + ], + "score": 1.0, + "content": "of the function computing the parameters grows linearly with the number of latent states due to their", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 106, + 391, + 504, + 403 + ], + "spans": [ + { + "bbox": [ + 106, + 391, + 504, + 403 + ], + "score": 1.0, + "content": "use of the arg max function. In the latter two models, the number of states can grow arbitrarily", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 106, + 401, + 280, + 415 + ], + "spans": [ + { + "bbox": [ + 106, + 401, + 270, + 415 + ], + "score": 1.0, + "content": "without increasing the dimensionality of", + "type": "text" + }, + { + "bbox": [ + 270, + 404, + 276, + 414 + ], + "score": 0.76, + "content": "g", + "type": "inline_equation" + }, + { + "bbox": [ + 277, + 401, + 280, + 415 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 20.5 + }, + { + "type": "text", + "bbox": [ + 107, + 418, + 504, + 462 + ], + "lines": [ + { + "bbox": [ + 105, + 419, + 505, + 430 + ], + "spans": [ + { + "bbox": [ + 105, + 419, + 505, + 430 + ], + "score": 1.0, + "content": "Both Theis et al. (2017) and Ballé et al. (2018) use deterministic encoder distributions (i.e. de-", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 104, + 429, + 506, + 442 + ], + "spans": [ + { + "bbox": [ + 104, + 429, + 506, + 442 + ], + "score": 1.0, + "content": "generating to delta distributions) during evaluation, but replace them with probabilistic versions for", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 441, + 506, + 453 + ], + "spans": [ + { + "bbox": [ + 105, + 441, + 198, + 453 + ], + "score": 1.0, + "content": "purposes of estimating", + "type": "text" + }, + { + "bbox": [ + 198, + 441, + 251, + 453 + ], + "score": 0.93, + "content": "\\mathbb { E } _ { \\pmb { x } } D _ { \\mathrm { K L } } [ e \\Vert p ]", + "type": "inline_equation" + }, + { + "bbox": [ + 252, + 441, + 506, + 453 + ], + "score": 1.0, + "content": "during training. Theis et al. (2017) propose to use the following", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 452, + 192, + 463 + ], + "spans": [ + { + "bbox": [ + 105, + 452, + 192, + 463 + ], + "score": 1.0, + "content": "encoder distribution:", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 28.5 + }, + { + "type": "interline_equation", + "bbox": [ + 209, + 461, + 401, + 476 + ], + "lines": [ + { + "bbox": [ + 209, + 461, + 401, + 476 + ], + "spans": [ + { + "bbox": [ + 209, + 461, + 401, + 476 + ], + "score": 0.9, + "content": "\\begin{array} { r } { e ( \\pmb { y } \\mid \\pmb { x } ) = \\mathcal { U } ( \\pmb { y } \\mid Q ( g ( \\pmb { x } ) ) - \\frac { 1 } { 2 } , Q ( g ( \\pmb { x } ) ) + \\frac { 1 } { 2 } ) , } \\end{array}", + "type": "interline_equation", + "image_path": "4018eb58a2925f4a556ccf5ddf500c6b355fec0471e7bc348858809e61666513.jpg" + } + ] + } + ], + "index": 31, + "virtual_lines": [ + { + "bbox": [ + 209, + 461, + 401, + 476 + ], + "spans": [], + "index": 31 + } + ] + }, + { + "type": "text", + "bbox": [ + 109, + 476, + 504, + 509 + ], + "lines": [ + { + "bbox": [ + 106, + 475, + 505, + 489 + ], + "spans": [ + { + "bbox": [ + 106, + 475, + 132, + 489 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 133, + 477, + 141, + 486 + ], + "score": 0.76, + "content": "\\mathcal { U }", + "type": "inline_equation" + }, + { + "bbox": [ + 142, + 475, + 264, + 489 + ], + "score": 1.0, + "content": "is the uniform distribution and", + "type": "text" + }, + { + "bbox": [ + 264, + 478, + 271, + 487 + ], + "score": 0.81, + "content": "g", + "type": "inline_equation" + }, + { + "bbox": [ + 271, + 475, + 505, + 489 + ], + "score": 1.0, + "content": "is an ANN. They replace the gradient of the quantizer with", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 106, + 487, + 506, + 500 + ], + "spans": [ + { + "bbox": [ + 106, + 487, + 235, + 500 + ], + "score": 1.0, + "content": "the identity. During evaluation,", + "type": "text" + }, + { + "bbox": [ + 236, + 487, + 292, + 499 + ], + "score": 0.93, + "content": "\\pmb { y } = Q ( g ( \\pmb { x } ) )", + "type": "inline_equation" + }, + { + "bbox": [ + 292, + 487, + 506, + 500 + ], + "score": 1.0, + "content": "is used as the representation. Ballé et al. (2018) use", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 106, + 497, + 275, + 511 + ], + "spans": [ + { + "bbox": [ + 106, + 497, + 275, + 511 + ], + "score": 1.0, + "content": "the following distribution during training:", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 33 + }, + { + "type": "interline_equation", + "bbox": [ + 224, + 511, + 386, + 527 + ], + "lines": [ + { + "bbox": [ + 224, + 511, + 386, + 527 + ], + "spans": [ + { + "bbox": [ + 224, + 511, + 386, + 527 + ], + "score": 0.94, + "content": "\\begin{array} { r } { e ( \\pmb { y } \\mid \\pmb { x } ) = \\mathcal { U } ( \\pmb { y } \\mid g ( \\pmb { x } ) - \\frac { 1 } { 2 } , g ( \\pmb { x } ) + \\frac { 1 } { 2 } ) , } \\end{array}", + "type": "interline_equation", + "image_path": "2896319ede8c255b82cd7a7f3de1996e7edb3bb2da063222a41b0132c3e9bb4d.jpg" + } + ] + } + ], + "index": 35, + "virtual_lines": [ + { + "bbox": [ + 224, + 511, + 386, + 527 + ], + "spans": [], + "index": 35 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 529, + 505, + 562 + ], + "lines": [ + { + "bbox": [ + 105, + 527, + 505, + 542 + ], + "spans": [ + { + "bbox": [ + 105, + 527, + 165, + 542 + ], + "score": 1.0, + "content": "which makes", + "type": "text" + }, + { + "bbox": [ + 165, + 531, + 173, + 540 + ], + "score": 0.78, + "content": "\\textbf { { y } }", + "type": "inline_equation" + }, + { + "bbox": [ + 174, + 527, + 482, + 542 + ], + "score": 1.0, + "content": "shift-invariant. During evaluation, they determine the representation as", + "type": "text" + }, + { + "bbox": [ + 482, + 531, + 505, + 541 + ], + "score": 0.83, + "content": "{ \\textbf { 3 } } =", + "type": "inline_equation" + } + ], + "index": 36 + }, + { + "bbox": [ + 107, + 540, + 505, + 553 + ], + "spans": [ + { + "bbox": [ + 107, + 540, + 162, + 552 + ], + "score": 0.93, + "content": "Q ( g ( \\pmb { x } ) - \\pmb { o } )", + "type": "inline_equation" + }, + { + "bbox": [ + 162, + 540, + 194, + 553 + ], + "score": 1.0, + "content": ", where", + "type": "text" + }, + { + "bbox": [ + 195, + 542, + 202, + 550 + ], + "score": 0.73, + "content": "^ o", + "type": "inline_equation" + }, + { + "bbox": [ + 202, + 540, + 505, + 553 + ], + "score": 1.0, + "content": "is a sub-integer offset chosen such that the mode (or, if it cannot be esti-", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 106, + 551, + 458, + 563 + ], + "spans": [ + { + "bbox": [ + 106, + 551, + 458, + 563 + ], + "score": 1.0, + "content": "mated easily, the median) of the distribution is centered on one of the quantization bins.", + "type": "text" + } + ], + "index": 38 + } + ], + "index": 37 + }, + { + "type": "text", + "bbox": [ + 106, + 567, + 505, + 678 + ], + "lines": [ + { + "bbox": [ + 105, + 568, + 505, + 581 + ], + "spans": [ + { + "bbox": [ + 105, + 568, + 116, + 581 + ], + "score": 1.0, + "content": "If", + "type": "text" + }, + { + "bbox": [ + 116, + 570, + 123, + 579 + ], + "score": 0.8, + "content": "g", + "type": "inline_equation" + }, + { + "bbox": [ + 123, + 568, + 505, + 581 + ], + "score": 1.0, + "content": "is implemented with integer networks, the latter approach becomes equivalent to the former,", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 106, + 579, + 504, + 591 + ], + "spans": [ + { + "bbox": [ + 106, + 579, + 140, + 591 + ], + "score": 1.0, + "content": "because", + "type": "text" + }, + { + "bbox": [ + 141, + 581, + 147, + 590 + ], + "score": 0.79, + "content": "g", + "type": "inline_equation" + }, + { + "bbox": [ + 148, + 579, + 504, + 591 + ], + "score": 1.0, + "content": "then inherently computes integer outputs, and this is effectively equivalent to the quanti-", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 589, + 505, + 602 + ], + "spans": [ + { + "bbox": [ + 105, + 589, + 505, + 602 + ], + "score": 1.0, + "content": "zation in (16). However, we’ve found that training with this construction leads to instabilities, such", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 600, + 506, + 613 + ], + "spans": [ + { + "bbox": [ + 105, + 600, + 506, + 613 + ], + "score": 1.0, + "content": "that the prior distribution never converges to a stable set of parameters. The reason may be that", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 611, + 506, + 625 + ], + "spans": [ + { + "bbox": [ + 105, + 611, + 189, + 625 + ], + "score": 1.0, + "content": "with quantization in", + "type": "text" + }, + { + "bbox": [ + 189, + 613, + 195, + 621 + ], + "score": 0.68, + "content": "e", + "type": "inline_equation" + }, + { + "bbox": [ + 195, + 611, + 252, + 625 + ], + "score": 1.0, + "content": ", the marginal", + "type": "text" + }, + { + "bbox": [ + 252, + 611, + 338, + 623 + ], + "score": 0.94, + "content": "m ( \\bar { \\pmb { y } } ) = \\mathbb { E } _ { \\pmb { x } } e ( \\pmb { y } \\mid \\pmb { x } )", + "type": "inline_equation" + }, + { + "bbox": [ + 339, + 611, + 506, + 625 + ], + "score": 1.0, + "content": "resembles a piecewise constant function,", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 622, + 506, + 636 + ], + "spans": [ + { + "bbox": [ + 105, + 622, + 167, + 636 + ], + "score": 1.0, + "content": "while the prior", + "type": "text" + }, + { + "bbox": [ + 167, + 624, + 173, + 634 + ], + "score": 0.77, + "content": "p", + "type": "inline_equation" + }, + { + "bbox": [ + 174, + 622, + 302, + 636 + ], + "score": 1.0, + "content": "must be forced to be smooth, or", + "type": "text" + }, + { + "bbox": [ + 302, + 623, + 355, + 635 + ], + "score": 0.92, + "content": "\\mathbb { E } _ { \\pmb { x } } D _ { \\mathrm { K L } } [ e \\Vert p ]", + "type": "inline_equation" + }, + { + "bbox": [ + 355, + 622, + 506, + 636 + ], + "score": 1.0, + "content": "would not yield any useful gradients.", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 106, + 634, + 505, + 645 + ], + "spans": [ + { + "bbox": [ + 106, + 634, + 505, + 645 + ], + "score": 1.0, + "content": "Because the prior is a variational approximation of the marginal, this means that the prior must be", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 105, + 645, + 506, + 657 + ], + "spans": [ + { + "bbox": [ + 105, + 645, + 506, + 657 + ], + "score": 1.0, + "content": "regularized (which we did not attempt here – we used the nonparametric density model described in", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 105, + 655, + 504, + 668 + ], + "spans": [ + { + "bbox": [ + 105, + 655, + 504, + 668 + ], + "score": 1.0, + "content": "Ballé et al. (2018)). On the other hand, when using (17) without quantization, the marginal is typi-", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 106, + 667, + 504, + 680 + ], + "spans": [ + { + "bbox": [ + 106, + 667, + 504, + 680 + ], + "score": 1.0, + "content": "cally a smooth density, and the prior can approximate it closely without the need for regularization.", + "type": "text" + } + ], + "index": 48 + } + ], + "index": 43.5 + }, + { + "type": "text", + "bbox": [ + 107, + 683, + 505, + 717 + ], + "lines": [ + { + "bbox": [ + 105, + 681, + 505, + 697 + ], + "spans": [ + { + "bbox": [ + 105, + 681, + 505, + 697 + ], + "score": 1.0, + "content": "As a remedy for the instabilities, we propose the following trick: We simply use (17) during training,", + "type": "text" + } + ], + "index": 49 + }, + { + "bbox": [ + 105, + 694, + 505, + 706 + ], + "spans": [ + { + "bbox": [ + 105, + 694, + 216, + 706 + ], + "score": 1.0, + "content": "but define the last layer of", + "type": "text" + }, + { + "bbox": [ + 217, + 696, + 223, + 705 + ], + "score": 0.83, + "content": "g", + "type": "inline_equation" + }, + { + "bbox": [ + 223, + 694, + 505, + 706 + ], + "score": 1.0, + "content": "without a nonlinearity and with floating point division, such that the", + "type": "text" + } + ], + "index": 50 + }, + { + "bbox": [ + 105, + 706, + 175, + 717 + ], + "spans": [ + { + "bbox": [ + 105, + 706, + 175, + 717 + ], + "score": 1.0, + "content": "representation is", + "type": "text" + } + ], + "index": 51 + } + ], + "index": 50 + }, + { + "type": "interline_equation", + "bbox": [ + 191, + 718, + 419, + 734 + ], + "lines": [ + { + "bbox": [ + 191, + 718, + 419, + 734 + ], + "spans": [ + { + "bbox": [ + 191, + 718, + 419, + 734 + ], + "score": 0.9, + "content": "\\begin{array} { r } { e ( \\pmb { y } \\mid \\pmb { x } ) = \\mathcal { U } ( \\pmb { y } \\mid ( \\pmb { H } \\pmb { u } + \\pmb { b } ) / c - \\frac { 1 } { 2 } , ( \\pmb { H } \\pmb { u } + \\pmb { b } ) / c + \\frac { 1 } { 2 } ) , } \\end{array}", + "type": "interline_equation", + "image_path": "dd15f528d275a906ce34c1944e5d748cc721f84d236c3274ac353e4e1fdc1e1e.jpg" + } + ] + } + ], + "index": 52, + "virtual_lines": [ + { + "bbox": [ + 191, + 718, + 419, + 734 + ], + "spans": [], + "index": 52 + } + ] + } + ], + "page_idx": 5, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 27, + 293, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 25, + 294, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 25, + 294, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2019", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 302, + 752, + 309, + 760 + ], + "lines": [ + { + "bbox": [ + 302, + 751, + 310, + 762 + ], + "spans": [ + { + "bbox": [ + 302, + 751, + 310, + 762 + ], + "score": 1.0, + "content": "6", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 107, + 82, + 445, + 93 + ], + "lines": [ + { + "bbox": [ + 105, + 81, + 447, + 96 + ], + "spans": [ + { + "bbox": [ + 105, + 81, + 447, + 96 + ], + "score": 1.0, + "content": "5 COMPUTING THE REPRESENTATION WITH INTEGER NETWORKS", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 106, + 103, + 505, + 204 + ], + "lines": [ + { + "bbox": [ + 106, + 104, + 505, + 116 + ], + "spans": [ + { + "bbox": [ + 106, + 104, + 505, + 116 + ], + "score": 1.0, + "content": "For certain applications, it can be useful not only to be able to deploy a compression model across", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 114, + 506, + 128 + ], + "spans": [ + { + "bbox": [ + 105, + 114, + 506, + 128 + ], + "score": 1.0, + "content": "heterogenous platforms, but to go even further in also ensuring identical reconstructions of the data", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 106, + 126, + 505, + 138 + ], + "spans": [ + { + "bbox": [ + 106, + 126, + 505, + 138 + ], + "score": 1.0, + "content": "across platforms. To this end, it can be attractive to make the entire model robust to non-determinism.", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 135, + 505, + 150 + ], + "spans": [ + { + "bbox": [ + 105, + 135, + 505, + 150 + ], + "score": 1.0, + "content": "To use integer networks in the encoder or decoder, one can use the equivalent construction as in (13):", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 147, + 505, + 160 + ], + "spans": [ + { + "bbox": [ + 105, + 147, + 133, + 160 + ], + "score": 1.0, + "content": "define", + "type": "text" + }, + { + "bbox": [ + 134, + 150, + 140, + 158 + ], + "score": 0.61, + "content": "e", + "type": "inline_equation" + }, + { + "bbox": [ + 140, + 147, + 153, + 160 + ], + "score": 1.0, + "content": "or", + "type": "text" + }, + { + "bbox": [ + 153, + 148, + 160, + 158 + ], + "score": 0.75, + "content": "d", + "type": "inline_equation" + }, + { + "bbox": [ + 160, + 147, + 505, + 160 + ], + "score": 1.0, + "content": "as a known distribution, with parameters computed by an integer network. To allow", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 106, + 159, + 505, + 171 + ], + "spans": [ + { + "bbox": [ + 106, + 159, + 505, + 171 + ], + "score": 1.0, + "content": "the use of range coding, we’re especially interested in discrete-valued representations here, such", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 170, + 505, + 183 + ], + "spans": [ + { + "bbox": [ + 105, + 170, + 505, + 183 + ], + "score": 1.0, + "content": "as studied in van den Oord et al. (2017), Jang et al. (2017), Theis et al. (2017), Ágústsson et al.", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 181, + 506, + 195 + ], + "spans": [ + { + "bbox": [ + 105, + 181, + 506, + 195 + ], + "score": 1.0, + "content": "(2017), and Ballé et al. (2018), among others. These approaches typically employ biased gradient", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 106, + 193, + 152, + 204 + ], + "spans": [ + { + "bbox": [ + 106, + 193, + 152, + 204 + ], + "score": 1.0, + "content": "estimators.", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 4, + "bbox_fs": [ + 105, + 104, + 506, + 204 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 209, + 505, + 275 + ], + "lines": [ + { + "bbox": [ + 105, + 209, + 505, + 222 + ], + "spans": [ + { + "bbox": [ + 105, + 209, + 505, + 222 + ], + "score": 1.0, + "content": "Jang et al. (2017) and Ágústsson et al. (2017) are concerned with producing gradients for categorical", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 220, + 505, + 233 + ], + "spans": [ + { + "bbox": [ + 105, + 220, + 505, + 233 + ], + "score": 1.0, + "content": "distributions and vector quantization (VQ), respectively. In both methods, the representation is found", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 231, + 505, + 244 + ], + "spans": [ + { + "bbox": [ + 105, + 231, + 505, + 244 + ], + "score": 1.0, + "content": "by evaluating an ANN followed by an arg max function, while useful gradients are obtained by", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 241, + 505, + 255 + ], + "spans": [ + { + "bbox": [ + 105, + 241, + 505, + 255 + ], + "score": 1.0, + "content": "substituting the arg max with a softmax function. Since arg max can be evaluated deterministically", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 106, + 254, + 505, + 265 + ], + "spans": [ + { + "bbox": [ + 106, + 254, + 505, + 265 + ], + "score": 1.0, + "content": "in a platform-independent way, and evaluating a softmax function with rounded inputs is feasible,", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 264, + 455, + 276 + ], + "spans": [ + { + "bbox": [ + 105, + 264, + 455, + 276 + ], + "score": 1.0, + "content": "integer networks can be combined with these models without additional modifications.", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 11.5, + "bbox_fs": [ + 105, + 209, + 505, + 276 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 280, + 505, + 414 + ], + "lines": [ + { + "bbox": [ + 106, + 281, + 505, + 293 + ], + "spans": [ + { + "bbox": [ + 106, + 281, + 505, + 293 + ], + "score": 1.0, + "content": "Theis et al. (2017) and Ballé et al. (2018) differ mostly in the details of interaction between the", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 106, + 292, + 506, + 305 + ], + "spans": [ + { + "bbox": [ + 106, + 292, + 506, + 305 + ], + "score": 1.0, + "content": "encoder and the prior. These two approaches are particularly interesting for image compression, as", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 106, + 303, + 506, + 316 + ], + "spans": [ + { + "bbox": [ + 106, + 303, + 506, + 316 + ], + "score": 1.0, + "content": "they scale well: Image compression models are often trained with a rate–distortion objective with a", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 314, + 506, + 327 + ], + "spans": [ + { + "bbox": [ + 105, + 314, + 190, + 327 + ], + "score": 1.0, + "content": "Lagrange parameter", + "type": "text" + }, + { + "bbox": [ + 190, + 315, + 197, + 324 + ], + "score": 0.75, + "content": "\\lambda", + "type": "inline_equation" + }, + { + "bbox": [ + 198, + 314, + 256, + 327 + ], + "score": 1.0, + "content": ", equivalent to", + "type": "text" + }, + { + "bbox": [ + 256, + 315, + 264, + 325 + ], + "score": 0.85, + "content": "\\beta", + "type": "inline_equation" + }, + { + "bbox": [ + 264, + 314, + 291, + 327 + ], + "score": 1.0, + "content": "in the", + "type": "text" + }, + { + "bbox": [ + 292, + 315, + 299, + 325 + ], + "score": 0.83, + "content": "\\beta", + "type": "inline_equation" + }, + { + "bbox": [ + 299, + 314, + 506, + 327 + ], + "score": 1.0, + "content": "-VAE objective (Higgins et al., 2017; Alemi et al.,", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 324, + 506, + 338 + ], + "spans": [ + { + "bbox": [ + 105, + 324, + 506, + 338 + ], + "score": 1.0, + "content": "2018). Depending on the parameter, the latent representation carries vastly different amounts of", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 336, + 506, + 348 + ], + "spans": [ + { + "bbox": [ + 105, + 336, + 506, + 348 + ], + "score": 1.0, + "content": "information, and the optimal number of latent states in turn varies with that. While the number of", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 347, + 505, + 360 + ], + "spans": [ + { + "bbox": [ + 105, + 347, + 505, + 360 + ], + "score": 1.0, + "content": "latent states is a hyperparameter that needs to be chosen ahead of time in the categorical/VQ case, the", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 106, + 358, + 505, + 370 + ], + "spans": [ + { + "bbox": [ + 106, + 358, + 505, + 370 + ], + "score": 1.0, + "content": "latter two approaches can extend it as needed during training, because the latent states are organized", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 369, + 505, + 382 + ], + "spans": [ + { + "bbox": [ + 105, + 369, + 505, + 382 + ], + "score": 1.0, + "content": "along the real line. Further, for categorical distributions as well as VQ, the required dimensionality", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 106, + 380, + 505, + 392 + ], + "spans": [ + { + "bbox": [ + 106, + 380, + 505, + 392 + ], + "score": 1.0, + "content": "of the function computing the parameters grows linearly with the number of latent states due to their", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 106, + 391, + 504, + 403 + ], + "spans": [ + { + "bbox": [ + 106, + 391, + 504, + 403 + ], + "score": 1.0, + "content": "use of the arg max function. In the latter two models, the number of states can grow arbitrarily", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 106, + 401, + 280, + 415 + ], + "spans": [ + { + "bbox": [ + 106, + 401, + 270, + 415 + ], + "score": 1.0, + "content": "without increasing the dimensionality of", + "type": "text" + }, + { + "bbox": [ + 270, + 404, + 276, + 414 + ], + "score": 0.76, + "content": "g", + "type": "inline_equation" + }, + { + "bbox": [ + 277, + 401, + 280, + 415 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 20.5, + "bbox_fs": [ + 105, + 281, + 506, + 415 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 418, + 504, + 462 + ], + "lines": [ + { + "bbox": [ + 105, + 419, + 505, + 430 + ], + "spans": [ + { + "bbox": [ + 105, + 419, + 505, + 430 + ], + "score": 1.0, + "content": "Both Theis et al. (2017) and Ballé et al. (2018) use deterministic encoder distributions (i.e. de-", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 104, + 429, + 506, + 442 + ], + "spans": [ + { + "bbox": [ + 104, + 429, + 506, + 442 + ], + "score": 1.0, + "content": "generating to delta distributions) during evaluation, but replace them with probabilistic versions for", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 441, + 506, + 453 + ], + "spans": [ + { + "bbox": [ + 105, + 441, + 198, + 453 + ], + "score": 1.0, + "content": "purposes of estimating", + "type": "text" + }, + { + "bbox": [ + 198, + 441, + 251, + 453 + ], + "score": 0.93, + "content": "\\mathbb { E } _ { \\pmb { x } } D _ { \\mathrm { K L } } [ e \\Vert p ]", + "type": "inline_equation" + }, + { + "bbox": [ + 252, + 441, + 506, + 453 + ], + "score": 1.0, + "content": "during training. Theis et al. (2017) propose to use the following", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 452, + 192, + 463 + ], + "spans": [ + { + "bbox": [ + 105, + 452, + 192, + 463 + ], + "score": 1.0, + "content": "encoder distribution:", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 28.5, + "bbox_fs": [ + 104, + 419, + 506, + 463 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 209, + 461, + 401, + 476 + ], + "lines": [ + { + "bbox": [ + 209, + 461, + 401, + 476 + ], + "spans": [ + { + "bbox": [ + 209, + 461, + 401, + 476 + ], + "score": 0.9, + "content": "\\begin{array} { r } { e ( \\pmb { y } \\mid \\pmb { x } ) = \\mathcal { U } ( \\pmb { y } \\mid Q ( g ( \\pmb { x } ) ) - \\frac { 1 } { 2 } , Q ( g ( \\pmb { x } ) ) + \\frac { 1 } { 2 } ) , } \\end{array}", + "type": "interline_equation", + "image_path": "4018eb58a2925f4a556ccf5ddf500c6b355fec0471e7bc348858809e61666513.jpg" + } + ] + } + ], + "index": 31, + "virtual_lines": [ + { + "bbox": [ + 209, + 461, + 401, + 476 + ], + "spans": [], + "index": 31 + } + ] + }, + { + "type": "text", + "bbox": [ + 109, + 476, + 504, + 509 + ], + "lines": [ + { + "bbox": [ + 106, + 475, + 505, + 489 + ], + "spans": [ + { + "bbox": [ + 106, + 475, + 132, + 489 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 133, + 477, + 141, + 486 + ], + "score": 0.76, + "content": "\\mathcal { U }", + "type": "inline_equation" + }, + { + "bbox": [ + 142, + 475, + 264, + 489 + ], + "score": 1.0, + "content": "is the uniform distribution and", + "type": "text" + }, + { + "bbox": [ + 264, + 478, + 271, + 487 + ], + "score": 0.81, + "content": "g", + "type": "inline_equation" + }, + { + "bbox": [ + 271, + 475, + 505, + 489 + ], + "score": 1.0, + "content": "is an ANN. They replace the gradient of the quantizer with", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 106, + 487, + 506, + 500 + ], + "spans": [ + { + "bbox": [ + 106, + 487, + 235, + 500 + ], + "score": 1.0, + "content": "the identity. During evaluation,", + "type": "text" + }, + { + "bbox": [ + 236, + 487, + 292, + 499 + ], + "score": 0.93, + "content": "\\pmb { y } = Q ( g ( \\pmb { x } ) )", + "type": "inline_equation" + }, + { + "bbox": [ + 292, + 487, + 506, + 500 + ], + "score": 1.0, + "content": "is used as the representation. Ballé et al. (2018) use", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 106, + 497, + 275, + 511 + ], + "spans": [ + { + "bbox": [ + 106, + 497, + 275, + 511 + ], + "score": 1.0, + "content": "the following distribution during training:", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 33, + "bbox_fs": [ + 106, + 475, + 506, + 511 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 224, + 511, + 386, + 527 + ], + "lines": [ + { + "bbox": [ + 224, + 511, + 386, + 527 + ], + "spans": [ + { + "bbox": [ + 224, + 511, + 386, + 527 + ], + "score": 0.94, + "content": "\\begin{array} { r } { e ( \\pmb { y } \\mid \\pmb { x } ) = \\mathcal { U } ( \\pmb { y } \\mid g ( \\pmb { x } ) - \\frac { 1 } { 2 } , g ( \\pmb { x } ) + \\frac { 1 } { 2 } ) , } \\end{array}", + "type": "interline_equation", + "image_path": "2896319ede8c255b82cd7a7f3de1996e7edb3bb2da063222a41b0132c3e9bb4d.jpg" + } + ] + } + ], + "index": 35, + "virtual_lines": [ + { + "bbox": [ + 224, + 511, + 386, + 527 + ], + "spans": [], + "index": 35 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 529, + 505, + 562 + ], + "lines": [ + { + "bbox": [ + 105, + 527, + 505, + 542 + ], + "spans": [ + { + "bbox": [ + 105, + 527, + 165, + 542 + ], + "score": 1.0, + "content": "which makes", + "type": "text" + }, + { + "bbox": [ + 165, + 531, + 173, + 540 + ], + "score": 0.78, + "content": "\\textbf { { y } }", + "type": "inline_equation" + }, + { + "bbox": [ + 174, + 527, + 482, + 542 + ], + "score": 1.0, + "content": "shift-invariant. During evaluation, they determine the representation as", + "type": "text" + }, + { + "bbox": [ + 482, + 531, + 505, + 541 + ], + "score": 0.83, + "content": "{ \\textbf { 3 } } =", + "type": "inline_equation" + } + ], + "index": 36 + }, + { + "bbox": [ + 107, + 540, + 505, + 553 + ], + "spans": [ + { + "bbox": [ + 107, + 540, + 162, + 552 + ], + "score": 0.93, + "content": "Q ( g ( \\pmb { x } ) - \\pmb { o } )", + "type": "inline_equation" + }, + { + "bbox": [ + 162, + 540, + 194, + 553 + ], + "score": 1.0, + "content": ", where", + "type": "text" + }, + { + "bbox": [ + 195, + 542, + 202, + 550 + ], + "score": 0.73, + "content": "^ o", + "type": "inline_equation" + }, + { + "bbox": [ + 202, + 540, + 505, + 553 + ], + "score": 1.0, + "content": "is a sub-integer offset chosen such that the mode (or, if it cannot be esti-", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 106, + 551, + 458, + 563 + ], + "spans": [ + { + "bbox": [ + 106, + 551, + 458, + 563 + ], + "score": 1.0, + "content": "mated easily, the median) of the distribution is centered on one of the quantization bins.", + "type": "text" + } + ], + "index": 38 + } + ], + "index": 37, + "bbox_fs": [ + 105, + 527, + 505, + 563 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 567, + 505, + 678 + ], + "lines": [ + { + "bbox": [ + 105, + 568, + 505, + 581 + ], + "spans": [ + { + "bbox": [ + 105, + 568, + 116, + 581 + ], + "score": 1.0, + "content": "If", + "type": "text" + }, + { + "bbox": [ + 116, + 570, + 123, + 579 + ], + "score": 0.8, + "content": "g", + "type": "inline_equation" + }, + { + "bbox": [ + 123, + 568, + 505, + 581 + ], + "score": 1.0, + "content": "is implemented with integer networks, the latter approach becomes equivalent to the former,", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 106, + 579, + 504, + 591 + ], + "spans": [ + { + "bbox": [ + 106, + 579, + 140, + 591 + ], + "score": 1.0, + "content": "because", + "type": "text" + }, + { + "bbox": [ + 141, + 581, + 147, + 590 + ], + "score": 0.79, + "content": "g", + "type": "inline_equation" + }, + { + "bbox": [ + 148, + 579, + 504, + 591 + ], + "score": 1.0, + "content": "then inherently computes integer outputs, and this is effectively equivalent to the quanti-", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 589, + 505, + 602 + ], + "spans": [ + { + "bbox": [ + 105, + 589, + 505, + 602 + ], + "score": 1.0, + "content": "zation in (16). However, we’ve found that training with this construction leads to instabilities, such", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 600, + 506, + 613 + ], + "spans": [ + { + "bbox": [ + 105, + 600, + 506, + 613 + ], + "score": 1.0, + "content": "that the prior distribution never converges to a stable set of parameters. The reason may be that", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 611, + 506, + 625 + ], + "spans": [ + { + "bbox": [ + 105, + 611, + 189, + 625 + ], + "score": 1.0, + "content": "with quantization in", + "type": "text" + }, + { + "bbox": [ + 189, + 613, + 195, + 621 + ], + "score": 0.68, + "content": "e", + "type": "inline_equation" + }, + { + "bbox": [ + 195, + 611, + 252, + 625 + ], + "score": 1.0, + "content": ", the marginal", + "type": "text" + }, + { + "bbox": [ + 252, + 611, + 338, + 623 + ], + "score": 0.94, + "content": "m ( \\bar { \\pmb { y } } ) = \\mathbb { E } _ { \\pmb { x } } e ( \\pmb { y } \\mid \\pmb { x } )", + "type": "inline_equation" + }, + { + "bbox": [ + 339, + 611, + 506, + 625 + ], + "score": 1.0, + "content": "resembles a piecewise constant function,", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 622, + 506, + 636 + ], + "spans": [ + { + "bbox": [ + 105, + 622, + 167, + 636 + ], + "score": 1.0, + "content": "while the prior", + "type": "text" + }, + { + "bbox": [ + 167, + 624, + 173, + 634 + ], + "score": 0.77, + "content": "p", + "type": "inline_equation" + }, + { + "bbox": [ + 174, + 622, + 302, + 636 + ], + "score": 1.0, + "content": "must be forced to be smooth, or", + "type": "text" + }, + { + "bbox": [ + 302, + 623, + 355, + 635 + ], + "score": 0.92, + "content": "\\mathbb { E } _ { \\pmb { x } } D _ { \\mathrm { K L } } [ e \\Vert p ]", + "type": "inline_equation" + }, + { + "bbox": [ + 355, + 622, + 506, + 636 + ], + "score": 1.0, + "content": "would not yield any useful gradients.", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 106, + 634, + 505, + 645 + ], + "spans": [ + { + "bbox": [ + 106, + 634, + 505, + 645 + ], + "score": 1.0, + "content": "Because the prior is a variational approximation of the marginal, this means that the prior must be", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 105, + 645, + 506, + 657 + ], + "spans": [ + { + "bbox": [ + 105, + 645, + 506, + 657 + ], + "score": 1.0, + "content": "regularized (which we did not attempt here – we used the nonparametric density model described in", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 105, + 655, + 504, + 668 + ], + "spans": [ + { + "bbox": [ + 105, + 655, + 504, + 668 + ], + "score": 1.0, + "content": "Ballé et al. (2018)). On the other hand, when using (17) without quantization, the marginal is typi-", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 106, + 667, + 504, + 680 + ], + "spans": [ + { + "bbox": [ + 106, + 667, + 504, + 680 + ], + "score": 1.0, + "content": "cally a smooth density, and the prior can approximate it closely without the need for regularization.", + "type": "text" + } + ], + "index": 48 + } + ], + "index": 43.5, + "bbox_fs": [ + 105, + 568, + 506, + 680 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 683, + 505, + 717 + ], + "lines": [ + { + "bbox": [ + 105, + 681, + 505, + 697 + ], + "spans": [ + { + "bbox": [ + 105, + 681, + 505, + 697 + ], + "score": 1.0, + "content": "As a remedy for the instabilities, we propose the following trick: We simply use (17) during training,", + "type": "text" + } + ], + "index": 49 + }, + { + "bbox": [ + 105, + 694, + 505, + 706 + ], + "spans": [ + { + "bbox": [ + 105, + 694, + 216, + 706 + ], + "score": 1.0, + "content": "but define the last layer of", + "type": "text" + }, + { + "bbox": [ + 217, + 696, + 223, + 705 + ], + "score": 0.83, + "content": "g", + "type": "inline_equation" + }, + { + "bbox": [ + 223, + 694, + 505, + 706 + ], + "score": 1.0, + "content": "without a nonlinearity and with floating point division, such that the", + "type": "text" + } + ], + "index": 50 + }, + { + "bbox": [ + 105, + 706, + 175, + 717 + ], + "spans": [ + { + "bbox": [ + 105, + 706, + 175, + 717 + ], + "score": 1.0, + "content": "representation is", + "type": "text" + } + ], + "index": 51 + } + ], + "index": 50, + "bbox_fs": [ + 105, + 681, + 505, + 717 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 191, + 718, + 419, + 734 + ], + "lines": [ + { + "bbox": [ + 191, + 718, + 419, + 734 + ], + "spans": [ + { + "bbox": [ + 191, + 718, + 419, + 734 + ], + "score": 0.9, + "content": "\\begin{array} { r } { e ( \\pmb { y } \\mid \\pmb { x } ) = \\mathcal { U } ( \\pmb { y } \\mid ( \\pmb { H } \\pmb { u } + \\pmb { b } ) / c - \\frac { 1 } { 2 } , ( \\pmb { H } \\pmb { u } + \\pmb { b } ) / c + \\frac { 1 } { 2 } ) , } \\end{array}", + "type": "interline_equation", + "image_path": "dd15f528d275a906ce34c1944e5d748cc721f84d236c3274ac353e4e1fdc1e1e.jpg" + } + ] + } + ], + "index": 52, + "virtual_lines": [ + { + "bbox": [ + 191, + 718, + 419, + 734 + ], + "spans": [], + "index": 52 + } + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "image", + "bbox": [ + 107, + 78, + 506, + 239 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 107, + 78, + 506, + 239 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 107, + 78, + 506, + 239 + ], + "spans": [ + { + "bbox": [ + 107, + 78, + 506, + 239 + ], + "score": 0.967, + "type": "image", + "image_path": "4169eee3870fc1b30ed28c0ec26e0fa7b41d213ef75cb24efacfc3951184acc1.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 107, + 78, + 506, + 131.66666666666666 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 107, + 131.66666666666666, + 506, + 185.33333333333331 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 107, + 185.33333333333331, + 506, + 238.99999999999997 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 250, + 506, + 328 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 250, + 506, + 263 + ], + "spans": [ + { + "bbox": [ + 105, + 250, + 506, + 263 + ], + "score": 1.0, + "content": "Figure 3: Rate–distortion performance of image compression models with integer priors (left and", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 261, + 506, + 275 + ], + "spans": [ + { + "bbox": [ + 105, + 261, + 506, + 275 + ], + "score": 1.0, + "content": "up is better). Left: performance of Ballé et al. (2018) model vs. the same model with an integer", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 272, + 506, + 285 + ], + "spans": [ + { + "bbox": [ + 105, + 272, + 506, + 285 + ], + "score": 1.0, + "content": "prior. The performance is identical, but the latter can be reliably deployed across different hardware", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 283, + 506, + 297 + ], + "spans": [ + { + "bbox": [ + 105, + 283, + 506, + 297 + ], + "score": 1.0, + "content": "platforms. Right: performance of Ballé (2018) ReLU model with 128 filters per layer vs. the same", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 294, + 505, + 307 + ], + "spans": [ + { + "bbox": [ + 105, + 294, + 505, + 307 + ], + "score": 1.0, + "content": "model, with integer transforms and QReLU activation functions and 128 or 256 filters per layer. The", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 305, + 506, + 318 + ], + "spans": [ + { + "bbox": [ + 105, + 305, + 506, + 318 + ], + "score": 1.0, + "content": "approximation capacity of integer networks is diminished vs. floating point networks, but doubling", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 316, + 372, + 329 + ], + "spans": [ + { + "bbox": [ + 105, + 316, + 372, + 329 + ], + "score": 1.0, + "content": "the number of filters per layer more than compensates for the loss.", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 6 + } + ], + "index": 3.5 + }, + { + "type": "table", + "bbox": [ + 105, + 338, + 506, + 437 + ], + "blocks": [ + { + "type": "table_body", + "bbox": [ + 105, + 338, + 506, + 437 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 338, + 506, + 437 + ], + "spans": [ + { + "bbox": [ + 105, + 338, + 506, + 437 + ], + "score": 0.942, + "html": "
compressed ondecompressed onCPU 1CPU 1CPU 1GPU 1CPU 1CPU 2CPU 1GPU 2GPU 1CPU 1GPU 1GPU 1GPU 1CPU 2GPU 1GPU 2
Tecnick dataset:100 RGB i3 images of 1200 × 1200 pixels
Ballé et al. (2018)ditto, integer prior0%0%71%0%54%0%66%0%63%0%41%0%59%0%34%0%
CLIC dataset: 2021 RGB images of various pixel sizes
Ballé et al. (2018)ditto, integer prior0%0%78%0%68%0%78%0%77%0%52%0%78%0%54%0%
", + "type": "table", + "image_path": "de3d5491ab19c9ba29340ad9eca07f4406914fc7c8869f9143cf02cb37d1a068.jpg" + } + ] + } + ], + "index": 11, + "virtual_lines": [ + { + "bbox": [ + 105, + 338, + 506, + 371.0 + ], + "spans": [], + "index": 10 + }, + { + "bbox": [ + 105, + 371.0, + 506, + 404.0 + ], + "spans": [], + "index": 11 + }, + { + "bbox": [ + 105, + 404.0, + 506, + 437.0 + ], + "spans": [], + "index": 12 + } + ] + }, + { + "type": "table_footnote", + "bbox": [ + 225, + 439, + 500, + 463 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 227, + 439, + 489, + 452 + ], + "spans": [ + { + "bbox": [ + 227, + 440, + 342, + 452 + ], + "score": 1.0, + "content": "CPU 1: Intel Xeon E5-1650", + "type": "text" + }, + { + "bbox": [ + 349, + 439, + 489, + 452 + ], + "score": 1.0, + "content": "GPU 1: NVIDIA Titan X (Pascal)", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 226, + 450, + 498, + 464 + ], + "spans": [ + { + "bbox": [ + 226, + 450, + 498, + 464 + ], + "score": 1.0, + "content": "CPU 2: Intel Xeon E5-2690 GPU 2: NVIDIA Titan X (Maxwell)", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 13.5 + } + ], + "index": 12.25 + }, + { + "type": "text", + "bbox": [ + 106, + 471, + 505, + 538 + ], + "lines": [ + { + "bbox": [ + 105, + 471, + 506, + 484 + ], + "spans": [ + { + "bbox": [ + 105, + 471, + 506, + 484 + ], + "score": 1.0, + "content": "Table 1: Decompression failure rates due to floating point round-off error on Tecnick and CLIC", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 482, + 505, + 496 + ], + "spans": [ + { + "bbox": [ + 105, + 482, + 505, + 496 + ], + "score": 1.0, + "content": "image datasets. When compressing and decompressing on the same CPU platform (first column),", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 493, + 505, + 507 + ], + "spans": [ + { + "bbox": [ + 105, + 493, + 505, + 507 + ], + "score": 1.0, + "content": "the Ballé et al. (2018) model decompresses all images correctly. However, when compressing on", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 505, + 505, + 517 + ], + "spans": [ + { + "bbox": [ + 105, + 505, + 505, + 517 + ], + "score": 1.0, + "content": "a GPU or decompressing on a different platform, a large percentage of the images fail to be de-", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 515, + 506, + 528 + ], + "spans": [ + { + "bbox": [ + 105, + 515, + 506, + 528 + ], + "score": 1.0, + "content": "coded correctly. Implementing the prior of the same model using integer networks ensures correct", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 526, + 278, + 540 + ], + "spans": [ + { + "bbox": [ + 105, + 526, + 278, + 540 + ], + "score": 1.0, + "content": "decompression across all tested platforms.", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 17.5 + }, + { + "type": "text", + "bbox": [ + 105, + 559, + 504, + 581 + ], + "lines": [ + { + "bbox": [ + 105, + 558, + 505, + 572 + ], + "spans": [ + { + "bbox": [ + 105, + 558, + 200, + 572 + ], + "score": 1.0, + "content": "during training, where", + "type": "text" + }, + { + "bbox": [ + 200, + 562, + 208, + 569 + ], + "score": 0.77, + "content": "\\textbf { \\em u }", + "type": "inline_equation" + }, + { + "bbox": [ + 209, + 558, + 343, + 572 + ], + "score": 1.0, + "content": "is the input to the last layer and", + "type": "text" + }, + { + "bbox": [ + 343, + 560, + 350, + 572 + ], + "score": 0.57, + "content": "/", + "type": "inline_equation" + }, + { + "bbox": [ + 351, + 558, + 505, + 572 + ], + "score": 1.0, + "content": "represents elementwise floating point", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 106, + 570, + 161, + 582 + ], + "spans": [ + { + "bbox": [ + 106, + 570, + 161, + 582 + ], + "score": 1.0, + "content": "division, and", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 21.5 + }, + { + "type": "interline_equation", + "bbox": [ + 250, + 579, + 360, + 595 + ], + "lines": [ + { + "bbox": [ + 250, + 579, + 360, + 595 + ], + "spans": [ + { + "bbox": [ + 250, + 579, + 360, + 595 + ], + "score": 0.93, + "content": "{ \\pmb y } = Q \\big ( ( { \\pmb H } { \\pmb u } + { \\pmb b } ) / c - o \\big )", + "type": "interline_equation", + "image_path": "04fafd8d6ad8dbb52c1f821552ac363dfe9dae5846aa8167bb2cfaafc5fbd817.jpg" + } + ] + } + ], + "index": 23, + "virtual_lines": [ + { + "bbox": [ + 250, + 579, + 360, + 595 + ], + "spans": [], + "index": 23 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 596, + 409, + 608 + ], + "lines": [ + { + "bbox": [ + 105, + 595, + 409, + 610 + ], + "spans": [ + { + "bbox": [ + 105, + 595, + 409, + 610 + ], + "score": 1.0, + "content": "during evaluation. This can be rewritten strictly using integer arithmetic as:", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 24 + }, + { + "type": "interline_equation", + "bbox": [ + 237, + 612, + 373, + 627 + ], + "lines": [ + { + "bbox": [ + 237, + 612, + 373, + 627 + ], + "spans": [ + { + "bbox": [ + 237, + 612, + 373, + 627 + ], + "score": 0.93, + "content": "\\pmb { y } = \\left( \\pmb { H } \\pmb { u } + \\pmb { b } - \\pmb { Q } ( \\pmb { o } \\odot \\pmb { c } ) \\right) \\oslash \\pmb { c } ,", + "type": "interline_equation", + "image_path": "a63f5230a7295667dafce708a4401fd4832872f60756398bec1621b656ecb170.jpg" + } + ] + } + ], + "index": 25, + "virtual_lines": [ + { + "bbox": [ + 237, + 612, + 373, + 627 + ], + "spans": [], + "index": 25 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 631, + 505, + 676 + ], + "lines": [ + { + "bbox": [ + 105, + 630, + 505, + 643 + ], + "spans": [ + { + "bbox": [ + 105, + 630, + 133, + 643 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 133, + 633, + 142, + 641 + ], + "score": 0.83, + "content": "\\odot", + "type": "inline_equation" + }, + { + "bbox": [ + 143, + 630, + 505, + 643 + ], + "score": 1.0, + "content": "represents elementwise multiplication, and the rounded product can be folded into the bias", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 107, + 643, + 505, + 655 + ], + "spans": [ + { + "bbox": [ + 107, + 643, + 113, + 652 + ], + "score": 0.68, + "content": "^ { b }", + "type": "inline_equation" + }, + { + "bbox": [ + 113, + 643, + 505, + 655 + ], + "score": 1.0, + "content": "as an optimization. This way, the representation is computed deterministically during evaluation,", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 653, + 506, + 666 + ], + "spans": [ + { + "bbox": [ + 105, + 653, + 506, + 666 + ], + "score": 1.0, + "content": "while during training, the marginal still resembles a smooth function, such that no regularization of", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 663, + 196, + 678 + ], + "spans": [ + { + "bbox": [ + 105, + 663, + 196, + 678 + ], + "score": 1.0, + "content": "the prior is necessary.", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 27.5 + }, + { + "type": "title", + "bbox": [ + 108, + 687, + 255, + 700 + ], + "lines": [ + { + "bbox": [ + 105, + 686, + 256, + 702 + ], + "spans": [ + { + "bbox": [ + 105, + 686, + 256, + 702 + ], + "score": 1.0, + "content": "6 EXPERIMENTAL RESULTS", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 30 + }, + { + "type": "text", + "bbox": [ + 106, + 709, + 504, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 710, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 106, + 710, + 505, + 722 + ], + "score": 1.0, + "content": "In order to assess the efficacy of integer networks to enable platform-independent compression and", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 106, + 720, + 505, + 732 + ], + "spans": [ + { + "bbox": [ + 106, + 720, + 505, + 732 + ], + "score": 1.0, + "content": "decompression, we re-implemented the image compression model described in Ballé et al. (2018),", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 31.5 + } + ], + "page_idx": 6, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 27, + 293, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 26, + 293, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 26, + 293, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2019", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 302, + 751, + 309, + 759 + ], + "lines": [ + { + "bbox": [ + 302, + 750, + 309, + 762 + ], + "spans": [ + { + "bbox": [ + 302, + 750, + 309, + 762 + ], + "score": 1.0, + "content": "7", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "image", + "bbox": [ + 107, + 78, + 506, + 239 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 107, + 78, + 506, + 239 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 107, + 78, + 506, + 239 + ], + "spans": [ + { + "bbox": [ + 107, + 78, + 506, + 239 + ], + "score": 0.967, + "type": "image", + "image_path": "4169eee3870fc1b30ed28c0ec26e0fa7b41d213ef75cb24efacfc3951184acc1.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 107, + 78, + 506, + 131.66666666666666 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 107, + 131.66666666666666, + 506, + 185.33333333333331 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 107, + 185.33333333333331, + 506, + 238.99999999999997 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 250, + 506, + 328 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 250, + 506, + 263 + ], + "spans": [ + { + "bbox": [ + 105, + 250, + 506, + 263 + ], + "score": 1.0, + "content": "Figure 3: Rate–distortion performance of image compression models with integer priors (left and", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 261, + 506, + 275 + ], + "spans": [ + { + "bbox": [ + 105, + 261, + 506, + 275 + ], + "score": 1.0, + "content": "up is better). Left: performance of Ballé et al. (2018) model vs. the same model with an integer", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 272, + 506, + 285 + ], + "spans": [ + { + "bbox": [ + 105, + 272, + 506, + 285 + ], + "score": 1.0, + "content": "prior. The performance is identical, but the latter can be reliably deployed across different hardware", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 283, + 506, + 297 + ], + "spans": [ + { + "bbox": [ + 105, + 283, + 506, + 297 + ], + "score": 1.0, + "content": "platforms. Right: performance of Ballé (2018) ReLU model with 128 filters per layer vs. the same", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 294, + 505, + 307 + ], + "spans": [ + { + "bbox": [ + 105, + 294, + 505, + 307 + ], + "score": 1.0, + "content": "model, with integer transforms and QReLU activation functions and 128 or 256 filters per layer. The", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 305, + 506, + 318 + ], + "spans": [ + { + "bbox": [ + 105, + 305, + 506, + 318 + ], + "score": 1.0, + "content": "approximation capacity of integer networks is diminished vs. floating point networks, but doubling", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 316, + 372, + 329 + ], + "spans": [ + { + "bbox": [ + 105, + 316, + 372, + 329 + ], + "score": 1.0, + "content": "the number of filters per layer more than compensates for the loss.", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 6 + } + ], + "index": 3.5 + }, + { + "type": "table", + "bbox": [ + 105, + 338, + 506, + 437 + ], + "blocks": [ + { + "type": "table_body", + "bbox": [ + 105, + 338, + 506, + 437 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 338, + 506, + 437 + ], + "spans": [ + { + "bbox": [ + 105, + 338, + 506, + 437 + ], + "score": 0.942, + "html": "
compressed ondecompressed onCPU 1CPU 1CPU 1GPU 1CPU 1CPU 2CPU 1GPU 2GPU 1CPU 1GPU 1GPU 1GPU 1CPU 2GPU 1GPU 2
Tecnick dataset:100 RGB i3 images of 1200 × 1200 pixels
Ballé et al. (2018)ditto, integer prior0%0%71%0%54%0%66%0%63%0%41%0%59%0%34%0%
CLIC dataset: 2021 RGB images of various pixel sizes
Ballé et al. (2018)ditto, integer prior0%0%78%0%68%0%78%0%77%0%52%0%78%0%54%0%
", + "type": "table", + "image_path": "de3d5491ab19c9ba29340ad9eca07f4406914fc7c8869f9143cf02cb37d1a068.jpg" + } + ] + } + ], + "index": 11, + "virtual_lines": [ + { + "bbox": [ + 105, + 338, + 506, + 371.0 + ], + "spans": [], + "index": 10 + }, + { + "bbox": [ + 105, + 371.0, + 506, + 404.0 + ], + "spans": [], + "index": 11 + }, + { + "bbox": [ + 105, + 404.0, + 506, + 437.0 + ], + "spans": [], + "index": 12 + } + ] + }, + { + "type": "table_footnote", + "bbox": [ + 225, + 439, + 500, + 463 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 227, + 439, + 489, + 452 + ], + "spans": [ + { + "bbox": [ + 227, + 440, + 342, + 452 + ], + "score": 1.0, + "content": "CPU 1: Intel Xeon E5-1650", + "type": "text" + }, + { + "bbox": [ + 349, + 439, + 489, + 452 + ], + "score": 1.0, + "content": "GPU 1: NVIDIA Titan X (Pascal)", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 226, + 450, + 498, + 464 + ], + "spans": [ + { + "bbox": [ + 226, + 450, + 498, + 464 + ], + "score": 1.0, + "content": "CPU 2: Intel Xeon E5-2690 GPU 2: NVIDIA Titan X (Maxwell)", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 13.5 + } + ], + "index": 12.25 + }, + { + "type": "text", + "bbox": [ + 106, + 471, + 505, + 538 + ], + "lines": [ + { + "bbox": [ + 105, + 471, + 506, + 484 + ], + "spans": [ + { + "bbox": [ + 105, + 471, + 506, + 484 + ], + "score": 1.0, + "content": "Table 1: Decompression failure rates due to floating point round-off error on Tecnick and CLIC", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 482, + 505, + 496 + ], + "spans": [ + { + "bbox": [ + 105, + 482, + 505, + 496 + ], + "score": 1.0, + "content": "image datasets. When compressing and decompressing on the same CPU platform (first column),", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 493, + 505, + 507 + ], + "spans": [ + { + "bbox": [ + 105, + 493, + 505, + 507 + ], + "score": 1.0, + "content": "the Ballé et al. (2018) model decompresses all images correctly. However, when compressing on", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 505, + 505, + 517 + ], + "spans": [ + { + "bbox": [ + 105, + 505, + 505, + 517 + ], + "score": 1.0, + "content": "a GPU or decompressing on a different platform, a large percentage of the images fail to be de-", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 515, + 506, + 528 + ], + "spans": [ + { + "bbox": [ + 105, + 515, + 506, + 528 + ], + "score": 1.0, + "content": "coded correctly. Implementing the prior of the same model using integer networks ensures correct", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 526, + 278, + 540 + ], + "spans": [ + { + "bbox": [ + 105, + 526, + 278, + 540 + ], + "score": 1.0, + "content": "decompression across all tested platforms.", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 17.5, + "bbox_fs": [ + 105, + 471, + 506, + 540 + ] + }, + { + "type": "text", + "bbox": [ + 105, + 559, + 504, + 581 + ], + "lines": [ + { + "bbox": [ + 105, + 558, + 505, + 572 + ], + "spans": [ + { + "bbox": [ + 105, + 558, + 200, + 572 + ], + "score": 1.0, + "content": "during training, where", + "type": "text" + }, + { + "bbox": [ + 200, + 562, + 208, + 569 + ], + "score": 0.77, + "content": "\\textbf { \\em u }", + "type": "inline_equation" + }, + { + "bbox": [ + 209, + 558, + 343, + 572 + ], + "score": 1.0, + "content": "is the input to the last layer and", + "type": "text" + }, + { + "bbox": [ + 343, + 560, + 350, + 572 + ], + "score": 0.57, + "content": "/", + "type": "inline_equation" + }, + { + "bbox": [ + 351, + 558, + 505, + 572 + ], + "score": 1.0, + "content": "represents elementwise floating point", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 106, + 570, + 161, + 582 + ], + "spans": [ + { + "bbox": [ + 106, + 570, + 161, + 582 + ], + "score": 1.0, + "content": "division, and", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 21.5, + "bbox_fs": [ + 105, + 558, + 505, + 582 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 250, + 579, + 360, + 595 + ], + "lines": [ + { + "bbox": [ + 250, + 579, + 360, + 595 + ], + "spans": [ + { + "bbox": [ + 250, + 579, + 360, + 595 + ], + "score": 0.93, + "content": "{ \\pmb y } = Q \\big ( ( { \\pmb H } { \\pmb u } + { \\pmb b } ) / c - o \\big )", + "type": "interline_equation", + "image_path": "04fafd8d6ad8dbb52c1f821552ac363dfe9dae5846aa8167bb2cfaafc5fbd817.jpg" + } + ] + } + ], + "index": 23, + "virtual_lines": [ + { + "bbox": [ + 250, + 579, + 360, + 595 + ], + "spans": [], + "index": 23 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 596, + 409, + 608 + ], + "lines": [ + { + "bbox": [ + 105, + 595, + 409, + 610 + ], + "spans": [ + { + "bbox": [ + 105, + 595, + 409, + 610 + ], + "score": 1.0, + "content": "during evaluation. This can be rewritten strictly using integer arithmetic as:", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 24, + "bbox_fs": [ + 105, + 595, + 409, + 610 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 237, + 612, + 373, + 627 + ], + "lines": [ + { + "bbox": [ + 237, + 612, + 373, + 627 + ], + "spans": [ + { + "bbox": [ + 237, + 612, + 373, + 627 + ], + "score": 0.93, + "content": "\\pmb { y } = \\left( \\pmb { H } \\pmb { u } + \\pmb { b } - \\pmb { Q } ( \\pmb { o } \\odot \\pmb { c } ) \\right) \\oslash \\pmb { c } ,", + "type": "interline_equation", + "image_path": "a63f5230a7295667dafce708a4401fd4832872f60756398bec1621b656ecb170.jpg" + } + ] + } + ], + "index": 25, + "virtual_lines": [ + { + "bbox": [ + 237, + 612, + 373, + 627 + ], + "spans": [], + "index": 25 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 631, + 505, + 676 + ], + "lines": [ + { + "bbox": [ + 105, + 630, + 505, + 643 + ], + "spans": [ + { + "bbox": [ + 105, + 630, + 133, + 643 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 133, + 633, + 142, + 641 + ], + "score": 0.83, + "content": "\\odot", + "type": "inline_equation" + }, + { + "bbox": [ + 143, + 630, + 505, + 643 + ], + "score": 1.0, + "content": "represents elementwise multiplication, and the rounded product can be folded into the bias", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 107, + 643, + 505, + 655 + ], + "spans": [ + { + "bbox": [ + 107, + 643, + 113, + 652 + ], + "score": 0.68, + "content": "^ { b }", + "type": "inline_equation" + }, + { + "bbox": [ + 113, + 643, + 505, + 655 + ], + "score": 1.0, + "content": "as an optimization. This way, the representation is computed deterministically during evaluation,", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 653, + 506, + 666 + ], + "spans": [ + { + "bbox": [ + 105, + 653, + 506, + 666 + ], + "score": 1.0, + "content": "while during training, the marginal still resembles a smooth function, such that no regularization of", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 663, + 196, + 678 + ], + "spans": [ + { + "bbox": [ + 105, + 663, + 196, + 678 + ], + "score": 1.0, + "content": "the prior is necessary.", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 27.5, + "bbox_fs": [ + 105, + 630, + 506, + 678 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 687, + 255, + 700 + ], + "lines": [ + { + "bbox": [ + 105, + 686, + 256, + 702 + ], + "spans": [ + { + "bbox": [ + 105, + 686, + 256, + 702 + ], + "score": 1.0, + "content": "6 EXPERIMENTAL RESULTS", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 30 + }, + { + "type": "text", + "bbox": [ + 106, + 709, + 504, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 710, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 106, + 710, + 505, + 722 + ], + "score": 1.0, + "content": "In order to assess the efficacy of integer networks to enable platform-independent compression and", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 106, + 720, + 505, + 732 + ], + "spans": [ + { + "bbox": [ + 106, + 720, + 505, + 732 + ], + "score": 1.0, + "content": "decompression, we re-implemented the image compression model described in Ballé et al. (2018),", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 106, + 341, + 505, + 353 + ], + "spans": [ + { + "bbox": [ + 106, + 341, + 505, + 353 + ], + "score": 1.0, + "content": "which is defined with a hyperprior. We compare the original model with a version in which the", + "type": "text", + "cross_page": true + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 352, + 506, + 365 + ], + "spans": [ + { + "bbox": [ + 105, + 352, + 142, + 365 + ], + "score": 1.0, + "content": "network", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 142, + 352, + 154, + 363 + ], + "score": 0.88, + "content": "h _ { s }", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 154, + 352, + 506, + 365 + ], + "score": 1.0, + "content": "computing the prior is replaced with an integer network. We used the same network", + "type": "text", + "cross_page": true + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 362, + 505, + 375 + ], + "spans": [ + { + "bbox": [ + 105, + 362, + 505, + 375 + ], + "score": 1.0, + "content": "architectures in terms of number of layers, filters, etc., and the same training parameters as in the", + "type": "text", + "cross_page": true + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 374, + 506, + 387 + ], + "spans": [ + { + "bbox": [ + 105, + 374, + 506, + 387 + ], + "score": 1.0, + "content": "original paper. The rate–distortion performance of the model was assessed on Kodak (1993) and", + "type": "text", + "cross_page": true + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 385, + 506, + 397 + ], + "spans": [ + { + "bbox": [ + 105, + 385, + 506, + 397 + ], + "score": 1.0, + "content": "is shown in figure 3 (left). The modified model performs identically to the original model, as it", + "type": "text", + "cross_page": true + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 397, + 505, + 408 + ], + "spans": [ + { + "bbox": [ + 105, + 397, + 505, + 408 + ], + "score": 1.0, + "content": "maps out the same rate–distortion frontier. However, it is much more robust to cross-platform com-", + "type": "text", + "cross_page": true + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 407, + 505, + 419 + ], + "spans": [ + { + "bbox": [ + 105, + 407, + 505, + 419 + ], + "score": 1.0, + "content": "pression and decompression (table 1). We tested compression and decompression on four different", + "type": "text", + "cross_page": true + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 418, + 505, + 430 + ], + "spans": [ + { + "bbox": [ + 105, + 418, + 505, + 430 + ], + "score": 1.0, + "content": "platforms (two CPU platforms and two GPU platforms) and two different datasets, Tecnick (Asuni", + "type": "text", + "cross_page": true + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 429, + 505, + 441 + ], + "spans": [ + { + "bbox": [ + 105, + 429, + 505, + 441 + ], + "score": 1.0, + "content": "and Giachetti, 2014) and CLIC (2018). The original model fails to correctly decompress more than", + "type": "text", + "cross_page": true + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 440, + 505, + 452 + ], + "spans": [ + { + "bbox": [ + 105, + 440, + 505, + 452 + ], + "score": 1.0, + "content": "half of the images on average when compression and decompression occurs on different platforms.", + "type": "text", + "cross_page": true + } + ], + "index": 19 + }, + { + "bbox": [ + 106, + 451, + 376, + 462 + ], + "spans": [ + { + "bbox": [ + 106, + 451, + 312, + 462 + ], + "score": 1.0, + "content": "The modified model brings the failure rate down to", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 312, + 451, + 327, + 461 + ], + "score": 0.86, + "content": "0 \\%", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 327, + 451, + 376, + 462 + ], + "score": 1.0, + "content": "in all cases.", + "type": "text", + "cross_page": true + } + ], + "index": 20 + } + ], + "index": 31.5, + "bbox_fs": [ + 106, + 710, + 505, + 732 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "image", + "bbox": [ + 108, + 78, + 507, + 227 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 108, + 78, + 507, + 227 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 108, + 78, + 507, + 227 + ], + "spans": [ + { + "bbox": [ + 108, + 78, + 507, + 227 + ], + "score": 0.967, + "type": "image", + "image_path": "a865c9ab4174bfbf3d830d1396893dbffeb412c482ec838ff0e3400b2afccbbb.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 108, + 78, + 507, + 127.66666666666666 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 108, + 127.66666666666666, + 507, + 177.33333333333331 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 108, + 177.33333333333331, + 507, + 226.99999999999997 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 236, + 505, + 315 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 237, + 505, + 250 + ], + "spans": [ + { + "bbox": [ + 106, + 237, + 505, + 250 + ], + "score": 1.0, + "content": "Figure 4: Loss function across training of Ballé (2018) model, evaluated on Kodak (1993), corre-", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 106, + 249, + 505, + 261 + ], + "spans": [ + { + "bbox": [ + 106, + 249, + 505, + 261 + ], + "score": 1.0, + "content": "sponding to the rate point at approximately 0.7 bits per pixel in figure 3, right panel. Generally,", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 258, + 506, + 273 + ], + "spans": [ + { + "bbox": [ + 105, + 258, + 506, + 273 + ], + "score": 1.0, + "content": "training of integer models takes somewhat longer and is somewhat noisier than training of floating", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 106, + 271, + 505, + 283 + ], + "spans": [ + { + "bbox": [ + 106, + 271, + 505, + 283 + ], + "score": 1.0, + "content": "point models. When matching floating point and integer networks for asymptotic performance (128", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 106, + 281, + 505, + 294 + ], + "spans": [ + { + "bbox": [ + 106, + 281, + 505, + 294 + ], + "score": 1.0, + "content": "vs. 256 filters, respectively), integer networks take longer to converge (likely due to their larger", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 106, + 292, + 505, + 304 + ], + "spans": [ + { + "bbox": [ + 106, + 292, + 505, + 304 + ], + "score": 1.0, + "content": "number of filters). When matching by number of filters (128), it appears that the training time to", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 106, + 304, + 377, + 316 + ], + "spans": [ + { + "bbox": [ + 106, + 304, + 377, + 316 + ], + "score": 1.0, + "content": "convergence is about the same, but the performance ends up worse.", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 6 + } + ], + "index": 3.5 + }, + { + "type": "text", + "bbox": [ + 107, + 341, + 505, + 462 + ], + "lines": [ + { + "bbox": [ + 106, + 341, + 505, + 353 + ], + "spans": [ + { + "bbox": [ + 106, + 341, + 505, + 353 + ], + "score": 1.0, + "content": "which is defined with a hyperprior. We compare the original model with a version in which the", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 352, + 506, + 365 + ], + "spans": [ + { + "bbox": [ + 105, + 352, + 142, + 365 + ], + "score": 1.0, + "content": "network", + "type": "text" + }, + { + "bbox": [ + 142, + 352, + 154, + 363 + ], + "score": 0.88, + "content": "h _ { s }", + "type": "inline_equation" + }, + { + "bbox": [ + 154, + 352, + 506, + 365 + ], + "score": 1.0, + "content": "computing the prior is replaced with an integer network. We used the same network", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 362, + 505, + 375 + ], + "spans": [ + { + "bbox": [ + 105, + 362, + 505, + 375 + ], + "score": 1.0, + "content": "architectures in terms of number of layers, filters, etc., and the same training parameters as in the", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 374, + 506, + 387 + ], + "spans": [ + { + "bbox": [ + 105, + 374, + 506, + 387 + ], + "score": 1.0, + "content": "original paper. The rate–distortion performance of the model was assessed on Kodak (1993) and", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 385, + 506, + 397 + ], + "spans": [ + { + "bbox": [ + 105, + 385, + 506, + 397 + ], + "score": 1.0, + "content": "is shown in figure 3 (left). The modified model performs identically to the original model, as it", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 397, + 505, + 408 + ], + "spans": [ + { + "bbox": [ + 105, + 397, + 505, + 408 + ], + "score": 1.0, + "content": "maps out the same rate–distortion frontier. However, it is much more robust to cross-platform com-", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 407, + 505, + 419 + ], + "spans": [ + { + "bbox": [ + 105, + 407, + 505, + 419 + ], + "score": 1.0, + "content": "pression and decompression (table 1). We tested compression and decompression on four different", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 418, + 505, + 430 + ], + "spans": [ + { + "bbox": [ + 105, + 418, + 505, + 430 + ], + "score": 1.0, + "content": "platforms (two CPU platforms and two GPU platforms) and two different datasets, Tecnick (Asuni", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 429, + 505, + 441 + ], + "spans": [ + { + "bbox": [ + 105, + 429, + 505, + 441 + ], + "score": 1.0, + "content": "and Giachetti, 2014) and CLIC (2018). The original model fails to correctly decompress more than", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 440, + 505, + 452 + ], + "spans": [ + { + "bbox": [ + 105, + 440, + 505, + 452 + ], + "score": 1.0, + "content": "half of the images on average when compression and decompression occurs on different platforms.", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 106, + 451, + 376, + 462 + ], + "spans": [ + { + "bbox": [ + 106, + 451, + 312, + 462 + ], + "score": 1.0, + "content": "The modified model brings the failure rate down to", + "type": "text" + }, + { + "bbox": [ + 312, + 451, + 327, + 461 + ], + "score": 0.86, + "content": "0 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 327, + 451, + 376, + 462 + ], + "score": 1.0, + "content": "in all cases.", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 15 + }, + { + "type": "text", + "bbox": [ + 107, + 468, + 505, + 567 + ], + "lines": [ + { + "bbox": [ + 105, + 467, + 505, + 480 + ], + "spans": [ + { + "bbox": [ + 105, + 467, + 505, + 480 + ], + "score": 1.0, + "content": "It should be noted that the decreased accuracy of integer arithmetic generally leads to a lower approx-", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 106, + 479, + 505, + 491 + ], + "spans": [ + { + "bbox": [ + 106, + 479, + 505, + 491 + ], + "score": 1.0, + "content": "imation capacity than with floating point networks. We found that when implementing the models", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 106, + 489, + 505, + 503 + ], + "spans": [ + { + "bbox": [ + 106, + 489, + 505, + 503 + ], + "score": 1.0, + "content": "described in Ballé (2018) using integer networks throughout, the rate–distortion performance de-", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 500, + 505, + 515 + ], + "spans": [ + { + "bbox": [ + 105, + 500, + 505, + 515 + ], + "score": 1.0, + "content": "creased (figure 3, right). The loss in approximation capacity can be compensated for by increasing", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 511, + 505, + 524 + ], + "spans": [ + { + "bbox": [ + 105, + 511, + 505, + 524 + ], + "score": 1.0, + "content": "the number of filters per layer. Note that this appears to increase the training time necessary for", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 523, + 505, + 536 + ], + "spans": [ + { + "bbox": [ + 105, + 523, + 505, + 536 + ], + "score": 1.0, + "content": "convergence (figure 4). However, note that increasing the number of parameters may not necessar-", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 533, + 505, + 547 + ], + "spans": [ + { + "bbox": [ + 105, + 533, + 505, + 547 + ], + "score": 1.0, + "content": "ily increase the size of the model parameters or the runtime, as the storage requirements for integer", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 544, + 506, + 558 + ], + "spans": [ + { + "bbox": [ + 105, + 544, + 506, + 558 + ], + "score": 1.0, + "content": "parameters (kernels, biases, etc.) are lower than for floating point parameters, and integer arithmetic", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 556, + 399, + 568 + ], + "spans": [ + { + "bbox": [ + 105, + 556, + 399, + 568 + ], + "score": 1.0, + "content": "is computationally less complex than floating point arithmetic in general.", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 25 + }, + { + "type": "title", + "bbox": [ + 108, + 581, + 190, + 594 + ], + "lines": [ + { + "bbox": [ + 104, + 579, + 192, + 597 + ], + "spans": [ + { + "bbox": [ + 104, + 579, + 192, + 597 + ], + "score": 1.0, + "content": "7 DISCUSSION", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 30 + }, + { + "type": "text", + "bbox": [ + 107, + 604, + 505, + 693 + ], + "lines": [ + { + "bbox": [ + 105, + 604, + 505, + 618 + ], + "spans": [ + { + "bbox": [ + 105, + 604, + 505, + 618 + ], + "score": 1.0, + "content": "There is a large body of recent research considering quantization of ANNs mostly targeted at image", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 616, + 505, + 628 + ], + "spans": [ + { + "bbox": [ + 105, + 616, + 505, + 628 + ], + "score": 1.0, + "content": "recognition applications. Courbariaux et al. (2015) train classification networks on lower precision", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 627, + 505, + 639 + ], + "spans": [ + { + "bbox": [ + 105, + 627, + 505, + 639 + ], + "score": 1.0, + "content": "multiplication. Hubara et al. (2016) and Rastegari et al. (2016) perform quantization down to bi-", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 638, + 505, + 650 + ], + "spans": [ + { + "bbox": [ + 105, + 638, + 505, + 650 + ], + "score": 1.0, + "content": "level (i.e., 1-bit integers) at inference time to reduce computation in classification networks. More", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 648, + 505, + 662 + ], + "spans": [ + { + "bbox": [ + 105, + 648, + 505, + 662 + ], + "score": 1.0, + "content": "recently, Wu et al. (2018) and others have used quantization during training as well as inference,", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 660, + 505, + 672 + ], + "spans": [ + { + "bbox": [ + 105, + 660, + 505, + 672 + ], + "score": 1.0, + "content": "to reduce computation on gradients as well as activations, and Baluja et al. (2018) use non-uniform", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 671, + 506, + 684 + ], + "spans": [ + { + "bbox": [ + 105, + 671, + 506, + 684 + ], + "score": 1.0, + "content": "quantization to remove floating point computation, replacing it completely with integer offsets into", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 682, + 203, + 694 + ], + "spans": [ + { + "bbox": [ + 105, + 682, + 203, + 694 + ], + "score": 1.0, + "content": "an integer lookup table.", + "type": "text" + } + ], + "index": 38 + } + ], + "index": 34.5 + }, + { + "type": "text", + "bbox": [ + 108, + 699, + 504, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 698, + 506, + 712 + ], + "spans": [ + { + "bbox": [ + 106, + 698, + 506, + 712 + ], + "score": 1.0, + "content": "While the quantization of neural networks is not a new topic, the results from the above techniques", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 106, + 711, + 505, + 721 + ], + "spans": [ + { + "bbox": [ + 106, + 711, + 505, + 721 + ], + "score": 1.0, + "content": "focus almost exclusively on classification networks. Denton et al. (2014), Han et al. (2016), and", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 106, + 720, + 504, + 734 + ], + "spans": [ + { + "bbox": [ + 106, + 720, + 504, + 734 + ], + "score": 1.0, + "content": "others have demonstrated that these types of networks are particularly robust to capacity reduction.", + "type": "text" + } + ], + "index": 41 + } + ], + "index": 40 + } + ], + "page_idx": 7, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 27, + 293, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 26, + 294, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 26, + 294, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2019", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 302, + 752, + 308, + 759 + ], + "lines": [ + { + "bbox": [ + 302, + 750, + 309, + 761 + ], + "spans": [ + { + "bbox": [ + 302, + 750, + 309, + 761 + ], + "score": 1.0, + "content": "8", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "image", + "bbox": [ + 108, + 78, + 507, + 227 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 108, + 78, + 507, + 227 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 108, + 78, + 507, + 227 + ], + "spans": [ + { + "bbox": [ + 108, + 78, + 507, + 227 + ], + "score": 0.967, + "type": "image", + "image_path": "a865c9ab4174bfbf3d830d1396893dbffeb412c482ec838ff0e3400b2afccbbb.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 108, + 78, + 507, + 127.66666666666666 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 108, + 127.66666666666666, + 507, + 177.33333333333331 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 108, + 177.33333333333331, + 507, + 226.99999999999997 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 236, + 505, + 315 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 237, + 505, + 250 + ], + "spans": [ + { + "bbox": [ + 106, + 237, + 505, + 250 + ], + "score": 1.0, + "content": "Figure 4: Loss function across training of Ballé (2018) model, evaluated on Kodak (1993), corre-", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 106, + 249, + 505, + 261 + ], + "spans": [ + { + "bbox": [ + 106, + 249, + 505, + 261 + ], + "score": 1.0, + "content": "sponding to the rate point at approximately 0.7 bits per pixel in figure 3, right panel. Generally,", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 258, + 506, + 273 + ], + "spans": [ + { + "bbox": [ + 105, + 258, + 506, + 273 + ], + "score": 1.0, + "content": "training of integer models takes somewhat longer and is somewhat noisier than training of floating", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 106, + 271, + 505, + 283 + ], + "spans": [ + { + "bbox": [ + 106, + 271, + 505, + 283 + ], + "score": 1.0, + "content": "point models. When matching floating point and integer networks for asymptotic performance (128", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 106, + 281, + 505, + 294 + ], + "spans": [ + { + "bbox": [ + 106, + 281, + 505, + 294 + ], + "score": 1.0, + "content": "vs. 256 filters, respectively), integer networks take longer to converge (likely due to their larger", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 106, + 292, + 505, + 304 + ], + "spans": [ + { + "bbox": [ + 106, + 292, + 505, + 304 + ], + "score": 1.0, + "content": "number of filters). When matching by number of filters (128), it appears that the training time to", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 106, + 304, + 377, + 316 + ], + "spans": [ + { + "bbox": [ + 106, + 304, + 377, + 316 + ], + "score": 1.0, + "content": "convergence is about the same, but the performance ends up worse.", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 6 + } + ], + "index": 3.5 + }, + { + "type": "text", + "bbox": [ + 107, + 341, + 505, + 462 + ], + "lines": [], + "index": 15, + "bbox_fs": [ + 105, + 341, + 506, + 462 + ], + "lines_deleted": true + }, + { + "type": "text", + "bbox": [ + 107, + 468, + 505, + 567 + ], + "lines": [ + { + "bbox": [ + 105, + 467, + 505, + 480 + ], + "spans": [ + { + "bbox": [ + 105, + 467, + 505, + 480 + ], + "score": 1.0, + "content": "It should be noted that the decreased accuracy of integer arithmetic generally leads to a lower approx-", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 106, + 479, + 505, + 491 + ], + "spans": [ + { + "bbox": [ + 106, + 479, + 505, + 491 + ], + "score": 1.0, + "content": "imation capacity than with floating point networks. We found that when implementing the models", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 106, + 489, + 505, + 503 + ], + "spans": [ + { + "bbox": [ + 106, + 489, + 505, + 503 + ], + "score": 1.0, + "content": "described in Ballé (2018) using integer networks throughout, the rate–distortion performance de-", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 500, + 505, + 515 + ], + "spans": [ + { + "bbox": [ + 105, + 500, + 505, + 515 + ], + "score": 1.0, + "content": "creased (figure 3, right). The loss in approximation capacity can be compensated for by increasing", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 511, + 505, + 524 + ], + "spans": [ + { + "bbox": [ + 105, + 511, + 505, + 524 + ], + "score": 1.0, + "content": "the number of filters per layer. Note that this appears to increase the training time necessary for", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 523, + 505, + 536 + ], + "spans": [ + { + "bbox": [ + 105, + 523, + 505, + 536 + ], + "score": 1.0, + "content": "convergence (figure 4). However, note that increasing the number of parameters may not necessar-", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 533, + 505, + 547 + ], + "spans": [ + { + "bbox": [ + 105, + 533, + 505, + 547 + ], + "score": 1.0, + "content": "ily increase the size of the model parameters or the runtime, as the storage requirements for integer", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 544, + 506, + 558 + ], + "spans": [ + { + "bbox": [ + 105, + 544, + 506, + 558 + ], + "score": 1.0, + "content": "parameters (kernels, biases, etc.) are lower than for floating point parameters, and integer arithmetic", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 556, + 399, + 568 + ], + "spans": [ + { + "bbox": [ + 105, + 556, + 399, + 568 + ], + "score": 1.0, + "content": "is computationally less complex than floating point arithmetic in general.", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 25, + "bbox_fs": [ + 105, + 467, + 506, + 568 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 581, + 190, + 594 + ], + "lines": [ + { + "bbox": [ + 104, + 579, + 192, + 597 + ], + "spans": [ + { + "bbox": [ + 104, + 579, + 192, + 597 + ], + "score": 1.0, + "content": "7 DISCUSSION", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 30 + }, + { + "type": "text", + "bbox": [ + 107, + 604, + 505, + 693 + ], + "lines": [ + { + "bbox": [ + 105, + 604, + 505, + 618 + ], + "spans": [ + { + "bbox": [ + 105, + 604, + 505, + 618 + ], + "score": 1.0, + "content": "There is a large body of recent research considering quantization of ANNs mostly targeted at image", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 616, + 505, + 628 + ], + "spans": [ + { + "bbox": [ + 105, + 616, + 505, + 628 + ], + "score": 1.0, + "content": "recognition applications. Courbariaux et al. (2015) train classification networks on lower precision", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 627, + 505, + 639 + ], + "spans": [ + { + "bbox": [ + 105, + 627, + 505, + 639 + ], + "score": 1.0, + "content": "multiplication. Hubara et al. (2016) and Rastegari et al. (2016) perform quantization down to bi-", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 638, + 505, + 650 + ], + "spans": [ + { + "bbox": [ + 105, + 638, + 505, + 650 + ], + "score": 1.0, + "content": "level (i.e., 1-bit integers) at inference time to reduce computation in classification networks. More", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 648, + 505, + 662 + ], + "spans": [ + { + "bbox": [ + 105, + 648, + 505, + 662 + ], + "score": 1.0, + "content": "recently, Wu et al. (2018) and others have used quantization during training as well as inference,", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 660, + 505, + 672 + ], + "spans": [ + { + "bbox": [ + 105, + 660, + 505, + 672 + ], + "score": 1.0, + "content": "to reduce computation on gradients as well as activations, and Baluja et al. (2018) use non-uniform", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 671, + 506, + 684 + ], + "spans": [ + { + "bbox": [ + 105, + 671, + 506, + 684 + ], + "score": 1.0, + "content": "quantization to remove floating point computation, replacing it completely with integer offsets into", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 682, + 203, + 694 + ], + "spans": [ + { + "bbox": [ + 105, + 682, + 203, + 694 + ], + "score": 1.0, + "content": "an integer lookup table.", + "type": "text" + } + ], + "index": 38 + } + ], + "index": 34.5, + "bbox_fs": [ + 105, + 604, + 506, + 694 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 699, + 504, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 698, + 506, + 712 + ], + "spans": [ + { + "bbox": [ + 106, + 698, + 506, + 712 + ], + "score": 1.0, + "content": "While the quantization of neural networks is not a new topic, the results from the above techniques", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 106, + 711, + 505, + 721 + ], + "spans": [ + { + "bbox": [ + 106, + 711, + 505, + 721 + ], + "score": 1.0, + "content": "focus almost exclusively on classification networks. Denton et al. (2014), Han et al. (2016), and", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 106, + 720, + 504, + 734 + ], + "spans": [ + { + "bbox": [ + 106, + 720, + 504, + 734 + ], + "score": 1.0, + "content": "others have demonstrated that these types of networks are particularly robust to capacity reduction.", + "type": "text" + } + ], + "index": 41 + } + ], + "index": 40, + "bbox_fs": [ + 106, + 698, + 506, + 734 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 107, + 82, + 505, + 148 + ], + "lines": [ + { + "bbox": [ + 105, + 82, + 505, + 95 + ], + "spans": [ + { + "bbox": [ + 105, + 82, + 505, + 95 + ], + "score": 1.0, + "content": "Models used for image compression, like many generative models, are much more sensitive to ca-", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 93, + 505, + 106 + ], + "spans": [ + { + "bbox": [ + 105, + 93, + 505, + 106 + ], + "score": 1.0, + "content": "pacity constraints since they tend to underfit. As illustrated in Ballé (2018) and in figure 3 (right),", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 104, + 505, + 117 + ], + "spans": [ + { + "bbox": [ + 105, + 104, + 505, + 117 + ], + "score": 1.0, + "content": "this class of models is much more sensitive to reductions of capacity, both in terms of network size", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 115, + 505, + 127 + ], + "spans": [ + { + "bbox": [ + 105, + 115, + 505, + 127 + ], + "score": 1.0, + "content": "and the expressive power of the activation function. This may explain why our experiments with", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 126, + 506, + 139 + ], + "spans": [ + { + "bbox": [ + 105, + 126, + 506, + 139 + ], + "score": 1.0, + "content": "post-hoc quantization of network activations have never yielded competitive results for this class of", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 106, + 137, + 186, + 149 + ], + "spans": [ + { + "bbox": [ + 106, + 137, + 186, + 149 + ], + "score": 1.0, + "content": "model (not shown).", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 2.5 + }, + { + "type": "text", + "bbox": [ + 106, + 154, + 505, + 254 + ], + "lines": [ + { + "bbox": [ + 106, + 155, + 505, + 166 + ], + "spans": [ + { + "bbox": [ + 106, + 155, + 505, + 166 + ], + "score": 1.0, + "content": "As illustrated in figure 1 and table 1, small floating point inconsistencies in variational latent-variable", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 165, + 505, + 178 + ], + "spans": [ + { + "bbox": [ + 105, + 165, + 505, + 178 + ], + "score": 1.0, + "content": "models can have disastrous effects when we use range coding to employ the models for data com-", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 175, + 506, + 190 + ], + "spans": [ + { + "bbox": [ + 105, + 175, + 506, + 190 + ], + "score": 1.0, + "content": "pression across different hardware or software platforms. The reader may wonder whether there", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 106, + 187, + 504, + 199 + ], + "spans": [ + { + "bbox": [ + 106, + 187, + 504, + 199 + ], + "score": 1.0, + "content": "exists other entropy coding algorithms that can convert discrete latent-variable representations into", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 198, + 504, + 211 + ], + "spans": [ + { + "bbox": [ + 105, + 198, + 504, + 211 + ], + "score": 1.0, + "content": "a binary representation, and which do not suffer from a sensitivity to perturbations in the probability", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 209, + 505, + 222 + ], + "spans": [ + { + "bbox": [ + 105, + 209, + 505, + 222 + ], + "score": 1.0, + "content": "model. Unfortunately, such an algorithm would always produce suboptimal results for the follow-", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 219, + 506, + 234 + ], + "spans": [ + { + "bbox": [ + 105, + 219, + 506, + 234 + ], + "score": 1.0, + "content": "ing reason. The source coding theorem (Shannon, 1948) establishes a lower bound on the average", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 231, + 506, + 244 + ], + "spans": [ + { + "bbox": [ + 105, + 231, + 506, + 244 + ], + "score": 1.0, + "content": "length of the resulting bit sequences, which range coding achieves asymptotically (i.e. for long bit", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 106, + 242, + 486, + 255 + ], + "spans": [ + { + "bbox": [ + 106, + 242, + 486, + 255 + ], + "score": 1.0, + "content": "sequences). The lower bound is given by the cross entropy between the marginal and the prior:", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 10 + }, + { + "type": "interline_equation", + "bbox": [ + 222, + 256, + 388, + 270 + ], + "lines": [ + { + "bbox": [ + 222, + 256, + 388, + 270 + ], + "spans": [ + { + "bbox": [ + 222, + 256, + 388, + 270 + ], + "score": 0.92, + "content": "\\mathbb { E } _ { { \\pmb { y } } \\sim m } [ | b ( { \\pmb { y } } ) | ] \\geq \\mathbb { E } _ { { \\pmb { y } } \\sim m } [ - \\log _ { 2 } p ( { \\pmb { y } } \\mid { \\pmb { \\theta } } ) ] ,", + "type": "interline_equation", + "image_path": "786031a35590cd81be96ba2593d76313da6cd3b82795e6b00aa6db14c740d1e3.jpg" + } + ] + } + ], + "index": 15, + "virtual_lines": [ + { + "bbox": [ + 222, + 256, + 388, + 270 + ], + "spans": [], + "index": 15 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 271, + 505, + 393 + ], + "lines": [ + { + "bbox": [ + 106, + 271, + 505, + 284 + ], + "spans": [ + { + "bbox": [ + 106, + 271, + 133, + 284 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 133, + 271, + 158, + 284 + ], + "score": 0.92, + "content": "\\left| b ( \\boldsymbol { y } ) \\right|", + "type": "inline_equation" + }, + { + "bbox": [ + 158, + 271, + 333, + 284 + ], + "score": 1.0, + "content": "is the length of the binary representation of", + "type": "text" + }, + { + "bbox": [ + 333, + 273, + 340, + 283 + ], + "score": 0.79, + "content": "\\textbf { { y } }", + "type": "inline_equation" + }, + { + "bbox": [ + 341, + 271, + 505, + 284 + ], + "score": 1.0, + "content": ". If an entropy coding algorithm tolerates", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 106, + 282, + 504, + 295 + ], + "spans": [ + { + "bbox": [ + 106, + 284, + 192, + 295 + ], + "score": 1.0, + "content": "error in the values of", + "type": "text" + }, + { + "bbox": [ + 193, + 282, + 228, + 295 + ], + "score": 0.93, + "content": "p ( \\pmb { y } \\mid \\pmb { \\theta } )", + "type": "inline_equation" + }, + { + "bbox": [ + 228, + 284, + 504, + 295 + ], + "score": 1.0, + "content": ", this means it must operate under the assumption of identical proba-", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 106, + 293, + 505, + 306 + ], + "spans": [ + { + "bbox": [ + 106, + 293, + 253, + 306 + ], + "score": 1.0, + "content": "bility values for a range of values of", + "type": "text" + }, + { + "bbox": [ + 254, + 294, + 270, + 304 + ], + "score": 0.61, + "content": "\\pmb { \\theta } -", + "type": "inline_equation" + }, + { + "bbox": [ + 270, + 293, + 505, + 306 + ], + "score": 1.0, + "content": "in other words, discretize the probability values. Since the", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 304, + 505, + 317 + ], + "spans": [ + { + "bbox": [ + 105, + 304, + 239, + 317 + ], + "score": 1.0, + "content": "cross entropy is minimal only for", + "type": "text" + }, + { + "bbox": [ + 239, + 304, + 309, + 317 + ], + "score": 0.93, + "content": "p ( \\pmb { y } \\mid \\pmb { \\theta } ) = m ( \\pmb { y } )", + "type": "inline_equation" + }, + { + "bbox": [ + 309, + 304, + 339, + 317 + ], + "score": 1.0, + "content": "(for all", + "type": "text" + }, + { + "bbox": [ + 340, + 306, + 347, + 316 + ], + "score": 0.72, + "content": "\\textbf { { y } }", + "type": "inline_equation" + }, + { + "bbox": [ + 348, + 304, + 505, + 317 + ], + "score": 1.0, + "content": "), this would impose a new lower bound", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 315, + 506, + 329 + ], + "spans": [ + { + "bbox": [ + 105, + 315, + 119, + 329 + ], + "score": 1.0, + "content": "on", + "type": "text" + }, + { + "bbox": [ + 119, + 315, + 145, + 327 + ], + "score": 0.92, + "content": "\\left| b ( \\pmb { y } ) \\right|", + "type": "inline_equation" + }, + { + "bbox": [ + 145, + 315, + 506, + 329 + ], + "score": 1.0, + "content": "given by the cross entropy with the discretized probabilities, which is greater or equal to", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 104, + 326, + 506, + 340 + ], + "spans": [ + { + "bbox": [ + 104, + 326, + 495, + 340 + ], + "score": 1.0, + "content": "the cross entropy given above. Thus, the more tolerant the entropy coding method is to errors in", + "type": "text" + }, + { + "bbox": [ + 495, + 329, + 501, + 338 + ], + "score": 0.71, + "content": "p", + "type": "inline_equation" + }, + { + "bbox": [ + 502, + 326, + 506, + 340 + ], + "score": 1.0, + "content": ",", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 337, + 505, + 350 + ], + "spans": [ + { + "bbox": [ + 105, + 337, + 505, + 350 + ], + "score": 1.0, + "content": "the further it deviates from optimal performance. Moreover, it is hard to establish tolerance intervals", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 348, + 505, + 362 + ], + "spans": [ + { + "bbox": [ + 105, + 348, + 505, + 362 + ], + "score": 1.0, + "content": "for probability values computed with floating point arithmetic, in particular when ANNs are used,", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 360, + 505, + 372 + ], + "spans": [ + { + "bbox": [ + 105, + 360, + 505, + 372 + ], + "score": 1.0, + "content": "due to error propagation. Hence, it is generally difficult to provide guarantees that a given toler-", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 370, + 505, + 383 + ], + "spans": [ + { + "bbox": [ + 105, + 370, + 505, + 383 + ], + "score": 1.0, + "content": "ance will not be exceeded. For similar reasons, current commercial compression methods model", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 381, + 483, + 394 + ], + "spans": [ + { + "bbox": [ + 105, + 381, + 483, + 394 + ], + "score": 1.0, + "content": "probabilities exclusively in the discrete domain (e.g., using lookup tables; Marpe et al., 2003).", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 21 + }, + { + "type": "text", + "bbox": [ + 107, + 398, + 505, + 464 + ], + "lines": [ + { + "bbox": [ + 105, + 398, + 505, + 411 + ], + "spans": [ + { + "bbox": [ + 105, + 398, + 505, + 411 + ], + "score": 1.0, + "content": "Our approach to neural network quantization is the first we are aware of which specifically ad-", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 408, + 505, + 421 + ], + "spans": [ + { + "bbox": [ + 105, + 408, + 505, + 421 + ], + "score": 1.0, + "content": "dresses non-deterministic computation, as opposed to computational complexity. It enables a vari-", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 420, + 505, + 432 + ], + "spans": [ + { + "bbox": [ + 105, + 420, + 505, + 432 + ], + "score": 1.0, + "content": "ety of possible variational model architectures and distributions to be effectively used for platform-", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 430, + 505, + 444 + ], + "spans": [ + { + "bbox": [ + 105, + 430, + 505, + 444 + ], + "score": 1.0, + "content": "independent data compression. While we aren’t assessing its effects on computational complexity", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 442, + 505, + 455 + ], + "spans": [ + { + "bbox": [ + 105, + 442, + 505, + 455 + ], + "score": 1.0, + "content": "here, it is conceivable that complexity reductions can also be achieved with the same approach; this", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 453, + 211, + 466 + ], + "spans": [ + { + "bbox": [ + 105, + 453, + 211, + 466 + ], + "score": 1.0, + "content": "is a topic for future work.", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 29.5 + }, + { + "type": "title", + "bbox": [ + 107, + 476, + 175, + 488 + ], + "lines": [ + { + "bbox": [ + 106, + 477, + 176, + 489 + ], + "spans": [ + { + "bbox": [ + 106, + 477, + 176, + 489 + ], + "score": 1.0, + "content": "REFERENCES", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 33 + }, + { + "type": "text", + "bbox": [ + 106, + 500, + 506, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 500, + 505, + 515 + ], + "spans": [ + { + "bbox": [ + 105, + 500, + 505, + 515 + ], + "score": 1.0, + "content": "Ágústsson, Eiríkur Þór et al. (2017). “Soft-to-Hard Vector Quantization for End-to-End Learn-", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 114, + 512, + 505, + 526 + ], + "spans": [ + { + "bbox": [ + 114, + 512, + 505, + 526 + ], + "score": 1.0, + "content": "ing Compressible Representations”. In: Advances in Neural Information Processing Systems 30,", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 114, + 524, + 181, + 535 + ], + "spans": [ + { + "bbox": [ + 114, + 524, + 181, + 535 + ], + "score": 1.0, + "content": "pp. 1141–1151.", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 533, + 504, + 548 + ], + "spans": [ + { + "bbox": [ + 105, + 533, + 504, + 548 + ], + "score": 1.0, + "content": "Alemi, Alexander A. et al. (2018). “Fixing a Broken ELBO”. In: arXiv e-prints. arXiv: 1711 .", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 117, + 546, + 151, + 556 + ], + "spans": [ + { + "bbox": [ + 117, + 546, + 151, + 556 + ], + "score": 1.0, + "content": "00464.", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 555, + 505, + 570 + ], + "spans": [ + { + "bbox": [ + 105, + 555, + 505, + 570 + ], + "score": 1.0, + "content": "Asuni, N. and A. Giachetti (2014). “TESTIMAGES: A large-scale archive for testing visual devices", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 115, + 567, + 505, + 581 + ], + "spans": [ + { + "bbox": [ + 115, + 567, + 505, + 581 + ], + "score": 1.0, + "content": "and basic image processing algorithms”. In: Proc. of STAG: Smart Tools and Apps for Graphics.", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 115, + 578, + 269, + 591 + ], + "spans": [ + { + "bbox": [ + 115, + 578, + 269, + 591 + ], + "score": 1.0, + "content": "DOI: 10.2312/stag.20141242.", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 588, + 505, + 603 + ], + "spans": [ + { + "bbox": [ + 105, + 588, + 505, + 603 + ], + "score": 1.0, + "content": "Ballé, Johannes (2018). “Efficient Nonlinear Transforms for Lossy Image Compression”. In: Picture", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 116, + 600, + 250, + 613 + ], + "spans": [ + { + "bbox": [ + 116, + 600, + 250, + 613 + ], + "score": 1.0, + "content": "Coding Symposium (PCS), 2018.", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 610, + 506, + 624 + ], + "spans": [ + { + "bbox": [ + 105, + 610, + 506, + 624 + ], + "score": 1.0, + "content": "Ballé, Johannes et al. (2018). “Variational image compression with a scale hyperprior”. In: Proc. of", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 115, + 621, + 505, + 636 + ], + "spans": [ + { + "bbox": [ + 115, + 621, + 505, + 636 + ], + "score": 1.0, + "content": "6th Int. Conf. on Learning Representations. URL: https://openreview.net/forum?", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 115, + 633, + 193, + 646 + ], + "spans": [ + { + "bbox": [ + 115, + 633, + 129, + 646 + ], + "score": 1.0, + "content": "id", + "type": "text" + }, + { + "bbox": [ + 129, + 634, + 136, + 642 + ], + "score": 0.51, + "content": "=", + "type": "inline_equation" + }, + { + "bbox": [ + 136, + 633, + 193, + 646 + ], + "score": 1.0, + "content": "rkcQFMZRb.", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 105, + 642, + 505, + 657 + ], + "spans": [ + { + "bbox": [ + 105, + 642, + 505, + 657 + ], + "score": 1.0, + "content": "Baluja, Shumeet et al. (2018). “No Multiplication? No Floating Point? No Problem! Training Net-", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 115, + 655, + 408, + 668 + ], + "spans": [ + { + "bbox": [ + 115, + 655, + 408, + 668 + ], + "score": 1.0, + "content": "works for Efficient Inference”. In: arXiv e-prints. arXiv: 1809.09244.", + "type": "text" + } + ], + "index": 48 + }, + { + "bbox": [ + 105, + 665, + 505, + 680 + ], + "spans": [ + { + "bbox": [ + 105, + 665, + 505, + 680 + ], + "score": 1.0, + "content": "CLIC: Challenge on Learned Image Compression (2018). Mobile and Professional Datasets. URL:", + "type": "text" + } + ], + "index": 49 + }, + { + "bbox": [ + 115, + 676, + 361, + 691 + ], + "spans": [ + { + "bbox": [ + 115, + 676, + 361, + 691 + ], + "score": 1.0, + "content": "http://www.compression.cc/2018/challenge.", + "type": "text" + } + ], + "index": 50 + }, + { + "bbox": [ + 106, + 687, + 505, + 700 + ], + "spans": [ + { + "bbox": [ + 106, + 687, + 505, + 700 + ], + "score": 1.0, + "content": "Courbariaux, Matthieu, Jean-Pierre David, and Yoshua Bengio (2015). “Training deep neural net-", + "type": "text" + } + ], + "index": 51 + }, + { + "bbox": [ + 115, + 698, + 505, + 712 + ], + "spans": [ + { + "bbox": [ + 115, + 698, + 505, + 712 + ], + "score": 1.0, + "content": "works with low precision multiplications”. In: arXiv e-prints. Presented as a workshop contribu-", + "type": "text" + } + ], + "index": 52 + }, + { + "bbox": [ + 115, + 709, + 423, + 723 + ], + "spans": [ + { + "bbox": [ + 115, + 709, + 423, + 723 + ], + "score": 1.0, + "content": "tion at the 3rd Int. Conf. on Learning Representations. arXiv: 1412.7024.", + "type": "text" + } + ], + "index": 53 + }, + { + "bbox": [ + 105, + 719, + 489, + 735 + ], + "spans": [ + { + "bbox": [ + 105, + 719, + 489, + 735 + ], + "score": 1.0, + "content": "Cover, Thomas M. and Joy A. Thomas (2006). Elements of Information Theory. 2nd ed. Wiley.", + "type": "text" + } + ], + "index": 54 + } + ], + "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 2019", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 302, + 751, + 308, + 759 + ], + "lines": [ + { + "bbox": [ + 302, + 751, + 309, + 762 + ], + "spans": [ + { + "bbox": [ + 302, + 751, + 309, + 762 + ], + "score": 1.0, + "content": "9", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 107, + 82, + 505, + 148 + ], + "lines": [ + { + "bbox": [ + 105, + 82, + 505, + 95 + ], + "spans": [ + { + "bbox": [ + 105, + 82, + 505, + 95 + ], + "score": 1.0, + "content": "Models used for image compression, like many generative models, are much more sensitive to ca-", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 93, + 505, + 106 + ], + "spans": [ + { + "bbox": [ + 105, + 93, + 505, + 106 + ], + "score": 1.0, + "content": "pacity constraints since they tend to underfit. As illustrated in Ballé (2018) and in figure 3 (right),", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 104, + 505, + 117 + ], + "spans": [ + { + "bbox": [ + 105, + 104, + 505, + 117 + ], + "score": 1.0, + "content": "this class of models is much more sensitive to reductions of capacity, both in terms of network size", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 115, + 505, + 127 + ], + "spans": [ + { + "bbox": [ + 105, + 115, + 505, + 127 + ], + "score": 1.0, + "content": "and the expressive power of the activation function. This may explain why our experiments with", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 126, + 506, + 139 + ], + "spans": [ + { + "bbox": [ + 105, + 126, + 506, + 139 + ], + "score": 1.0, + "content": "post-hoc quantization of network activations have never yielded competitive results for this class of", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 106, + 137, + 186, + 149 + ], + "spans": [ + { + "bbox": [ + 106, + 137, + 186, + 149 + ], + "score": 1.0, + "content": "model (not shown).", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 2.5, + "bbox_fs": [ + 105, + 82, + 506, + 149 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 154, + 505, + 254 + ], + "lines": [ + { + "bbox": [ + 106, + 155, + 505, + 166 + ], + "spans": [ + { + "bbox": [ + 106, + 155, + 505, + 166 + ], + "score": 1.0, + "content": "As illustrated in figure 1 and table 1, small floating point inconsistencies in variational latent-variable", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 165, + 505, + 178 + ], + "spans": [ + { + "bbox": [ + 105, + 165, + 505, + 178 + ], + "score": 1.0, + "content": "models can have disastrous effects when we use range coding to employ the models for data com-", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 175, + 506, + 190 + ], + "spans": [ + { + "bbox": [ + 105, + 175, + 506, + 190 + ], + "score": 1.0, + "content": "pression across different hardware or software platforms. The reader may wonder whether there", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 106, + 187, + 504, + 199 + ], + "spans": [ + { + "bbox": [ + 106, + 187, + 504, + 199 + ], + "score": 1.0, + "content": "exists other entropy coding algorithms that can convert discrete latent-variable representations into", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 198, + 504, + 211 + ], + "spans": [ + { + "bbox": [ + 105, + 198, + 504, + 211 + ], + "score": 1.0, + "content": "a binary representation, and which do not suffer from a sensitivity to perturbations in the probability", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 209, + 505, + 222 + ], + "spans": [ + { + "bbox": [ + 105, + 209, + 505, + 222 + ], + "score": 1.0, + "content": "model. Unfortunately, such an algorithm would always produce suboptimal results for the follow-", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 219, + 506, + 234 + ], + "spans": [ + { + "bbox": [ + 105, + 219, + 506, + 234 + ], + "score": 1.0, + "content": "ing reason. The source coding theorem (Shannon, 1948) establishes a lower bound on the average", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 231, + 506, + 244 + ], + "spans": [ + { + "bbox": [ + 105, + 231, + 506, + 244 + ], + "score": 1.0, + "content": "length of the resulting bit sequences, which range coding achieves asymptotically (i.e. for long bit", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 106, + 242, + 486, + 255 + ], + "spans": [ + { + "bbox": [ + 106, + 242, + 486, + 255 + ], + "score": 1.0, + "content": "sequences). The lower bound is given by the cross entropy between the marginal and the prior:", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 10, + "bbox_fs": [ + 105, + 155, + 506, + 255 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 222, + 256, + 388, + 270 + ], + "lines": [ + { + "bbox": [ + 222, + 256, + 388, + 270 + ], + "spans": [ + { + "bbox": [ + 222, + 256, + 388, + 270 + ], + "score": 0.92, + "content": "\\mathbb { E } _ { { \\pmb { y } } \\sim m } [ | b ( { \\pmb { y } } ) | ] \\geq \\mathbb { E } _ { { \\pmb { y } } \\sim m } [ - \\log _ { 2 } p ( { \\pmb { y } } \\mid { \\pmb { \\theta } } ) ] ,", + "type": "interline_equation", + "image_path": "786031a35590cd81be96ba2593d76313da6cd3b82795e6b00aa6db14c740d1e3.jpg" + } + ] + } + ], + "index": 15, + "virtual_lines": [ + { + "bbox": [ + 222, + 256, + 388, + 270 + ], + "spans": [], + "index": 15 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 271, + 505, + 393 + ], + "lines": [ + { + "bbox": [ + 106, + 271, + 505, + 284 + ], + "spans": [ + { + "bbox": [ + 106, + 271, + 133, + 284 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 133, + 271, + 158, + 284 + ], + "score": 0.92, + "content": "\\left| b ( \\boldsymbol { y } ) \\right|", + "type": "inline_equation" + }, + { + "bbox": [ + 158, + 271, + 333, + 284 + ], + "score": 1.0, + "content": "is the length of the binary representation of", + "type": "text" + }, + { + "bbox": [ + 333, + 273, + 340, + 283 + ], + "score": 0.79, + "content": "\\textbf { { y } }", + "type": "inline_equation" + }, + { + "bbox": [ + 341, + 271, + 505, + 284 + ], + "score": 1.0, + "content": ". If an entropy coding algorithm tolerates", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 106, + 282, + 504, + 295 + ], + "spans": [ + { + "bbox": [ + 106, + 284, + 192, + 295 + ], + "score": 1.0, + "content": "error in the values of", + "type": "text" + }, + { + "bbox": [ + 193, + 282, + 228, + 295 + ], + "score": 0.93, + "content": "p ( \\pmb { y } \\mid \\pmb { \\theta } )", + "type": "inline_equation" + }, + { + "bbox": [ + 228, + 284, + 504, + 295 + ], + "score": 1.0, + "content": ", this means it must operate under the assumption of identical proba-", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 106, + 293, + 505, + 306 + ], + "spans": [ + { + "bbox": [ + 106, + 293, + 253, + 306 + ], + "score": 1.0, + "content": "bility values for a range of values of", + "type": "text" + }, + { + "bbox": [ + 254, + 294, + 270, + 304 + ], + "score": 0.61, + "content": "\\pmb { \\theta } -", + "type": "inline_equation" + }, + { + "bbox": [ + 270, + 293, + 505, + 306 + ], + "score": 1.0, + "content": "in other words, discretize the probability values. Since the", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 304, + 505, + 317 + ], + "spans": [ + { + "bbox": [ + 105, + 304, + 239, + 317 + ], + "score": 1.0, + "content": "cross entropy is minimal only for", + "type": "text" + }, + { + "bbox": [ + 239, + 304, + 309, + 317 + ], + "score": 0.93, + "content": "p ( \\pmb { y } \\mid \\pmb { \\theta } ) = m ( \\pmb { y } )", + "type": "inline_equation" + }, + { + "bbox": [ + 309, + 304, + 339, + 317 + ], + "score": 1.0, + "content": "(for all", + "type": "text" + }, + { + "bbox": [ + 340, + 306, + 347, + 316 + ], + "score": 0.72, + "content": "\\textbf { { y } }", + "type": "inline_equation" + }, + { + "bbox": [ + 348, + 304, + 505, + 317 + ], + "score": 1.0, + "content": "), this would impose a new lower bound", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 315, + 506, + 329 + ], + "spans": [ + { + "bbox": [ + 105, + 315, + 119, + 329 + ], + "score": 1.0, + "content": "on", + "type": "text" + }, + { + "bbox": [ + 119, + 315, + 145, + 327 + ], + "score": 0.92, + "content": "\\left| b ( \\pmb { y } ) \\right|", + "type": "inline_equation" + }, + { + "bbox": [ + 145, + 315, + 506, + 329 + ], + "score": 1.0, + "content": "given by the cross entropy with the discretized probabilities, which is greater or equal to", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 104, + 326, + 506, + 340 + ], + "spans": [ + { + "bbox": [ + 104, + 326, + 495, + 340 + ], + "score": 1.0, + "content": "the cross entropy given above. Thus, the more tolerant the entropy coding method is to errors in", + "type": "text" + }, + { + "bbox": [ + 495, + 329, + 501, + 338 + ], + "score": 0.71, + "content": "p", + "type": "inline_equation" + }, + { + "bbox": [ + 502, + 326, + 506, + 340 + ], + "score": 1.0, + "content": ",", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 337, + 505, + 350 + ], + "spans": [ + { + "bbox": [ + 105, + 337, + 505, + 350 + ], + "score": 1.0, + "content": "the further it deviates from optimal performance. Moreover, it is hard to establish tolerance intervals", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 348, + 505, + 362 + ], + "spans": [ + { + "bbox": [ + 105, + 348, + 505, + 362 + ], + "score": 1.0, + "content": "for probability values computed with floating point arithmetic, in particular when ANNs are used,", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 360, + 505, + 372 + ], + "spans": [ + { + "bbox": [ + 105, + 360, + 505, + 372 + ], + "score": 1.0, + "content": "due to error propagation. Hence, it is generally difficult to provide guarantees that a given toler-", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 370, + 505, + 383 + ], + "spans": [ + { + "bbox": [ + 105, + 370, + 505, + 383 + ], + "score": 1.0, + "content": "ance will not be exceeded. For similar reasons, current commercial compression methods model", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 381, + 483, + 394 + ], + "spans": [ + { + "bbox": [ + 105, + 381, + 483, + 394 + ], + "score": 1.0, + "content": "probabilities exclusively in the discrete domain (e.g., using lookup tables; Marpe et al., 2003).", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 21, + "bbox_fs": [ + 104, + 271, + 506, + 394 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 398, + 505, + 464 + ], + "lines": [ + { + "bbox": [ + 105, + 398, + 505, + 411 + ], + "spans": [ + { + "bbox": [ + 105, + 398, + 505, + 411 + ], + "score": 1.0, + "content": "Our approach to neural network quantization is the first we are aware of which specifically ad-", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 408, + 505, + 421 + ], + "spans": [ + { + "bbox": [ + 105, + 408, + 505, + 421 + ], + "score": 1.0, + "content": "dresses non-deterministic computation, as opposed to computational complexity. It enables a vari-", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 420, + 505, + 432 + ], + "spans": [ + { + "bbox": [ + 105, + 420, + 505, + 432 + ], + "score": 1.0, + "content": "ety of possible variational model architectures and distributions to be effectively used for platform-", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 430, + 505, + 444 + ], + "spans": [ + { + "bbox": [ + 105, + 430, + 505, + 444 + ], + "score": 1.0, + "content": "independent data compression. While we aren’t assessing its effects on computational complexity", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 442, + 505, + 455 + ], + "spans": [ + { + "bbox": [ + 105, + 442, + 505, + 455 + ], + "score": 1.0, + "content": "here, it is conceivable that complexity reductions can also be achieved with the same approach; this", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 453, + 211, + 466 + ], + "spans": [ + { + "bbox": [ + 105, + 453, + 211, + 466 + ], + "score": 1.0, + "content": "is a topic for future work.", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 29.5, + "bbox_fs": [ + 105, + 398, + 505, + 466 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 476, + 175, + 488 + ], + "lines": [ + { + "bbox": [ + 106, + 477, + 176, + 489 + ], + "spans": [ + { + "bbox": [ + 106, + 477, + 176, + 489 + ], + "score": 1.0, + "content": "REFERENCES", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 33 + }, + { + "type": "list", + "bbox": [ + 106, + 500, + 506, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 500, + 505, + 515 + ], + "spans": [ + { + "bbox": [ + 105, + 500, + 505, + 515 + ], + "score": 1.0, + "content": "Ágústsson, Eiríkur Þór et al. (2017). “Soft-to-Hard Vector Quantization for End-to-End Learn-", + "type": "text" + } + ], + "index": 34, + "is_list_start_line": true + }, + { + "bbox": [ + 114, + 512, + 505, + 526 + ], + "spans": [ + { + "bbox": [ + 114, + 512, + 505, + 526 + ], + "score": 1.0, + "content": "ing Compressible Representations”. In: Advances in Neural Information Processing Systems 30,", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 114, + 524, + 181, + 535 + ], + "spans": [ + { + "bbox": [ + 114, + 524, + 181, + 535 + ], + "score": 1.0, + "content": "pp. 1141–1151.", + "type": "text" + } + ], + "index": 36, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 533, + 504, + 548 + ], + "spans": [ + { + "bbox": [ + 105, + 533, + 504, + 548 + ], + "score": 1.0, + "content": "Alemi, Alexander A. et al. (2018). “Fixing a Broken ELBO”. In: arXiv e-prints. arXiv: 1711 .", + "type": "text" + } + ], + "index": 37, + "is_list_start_line": true + }, + { + "bbox": [ + 117, + 546, + 151, + 556 + ], + "spans": [ + { + "bbox": [ + 117, + 546, + 151, + 556 + ], + "score": 1.0, + "content": "00464.", + "type": "text" + } + ], + "index": 38, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 555, + 505, + 570 + ], + "spans": [ + { + "bbox": [ + 105, + 555, + 505, + 570 + ], + "score": 1.0, + "content": "Asuni, N. and A. Giachetti (2014). “TESTIMAGES: A large-scale archive for testing visual devices", + "type": "text" + } + ], + "index": 39, + "is_list_start_line": true + }, + { + "bbox": [ + 115, + 567, + 505, + 581 + ], + "spans": [ + { + "bbox": [ + 115, + 567, + 505, + 581 + ], + "score": 1.0, + "content": "and basic image processing algorithms”. In: Proc. of STAG: Smart Tools and Apps for Graphics.", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 115, + 578, + 269, + 591 + ], + "spans": [ + { + "bbox": [ + 115, + 578, + 269, + 591 + ], + "score": 1.0, + "content": "DOI: 10.2312/stag.20141242.", + "type": "text" + } + ], + "index": 41, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 588, + 505, + 603 + ], + "spans": [ + { + "bbox": [ + 105, + 588, + 505, + 603 + ], + "score": 1.0, + "content": "Ballé, Johannes (2018). “Efficient Nonlinear Transforms for Lossy Image Compression”. In: Picture", + "type": "text" + } + ], + "index": 42, + "is_list_start_line": true + }, + { + "bbox": [ + 116, + 600, + 250, + 613 + ], + "spans": [ + { + "bbox": [ + 116, + 600, + 250, + 613 + ], + "score": 1.0, + "content": "Coding Symposium (PCS), 2018.", + "type": "text" + } + ], + "index": 43, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 610, + 506, + 624 + ], + "spans": [ + { + "bbox": [ + 105, + 610, + 506, + 624 + ], + "score": 1.0, + "content": "Ballé, Johannes et al. (2018). “Variational image compression with a scale hyperprior”. In: Proc. of", + "type": "text" + } + ], + "index": 44, + "is_list_start_line": true + }, + { + "bbox": [ + 115, + 621, + 505, + 636 + ], + "spans": [ + { + "bbox": [ + 115, + 621, + 505, + 636 + ], + "score": 1.0, + "content": "6th Int. Conf. on Learning Representations. URL: https://openreview.net/forum?", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 115, + 633, + 193, + 646 + ], + "spans": [ + { + "bbox": [ + 115, + 633, + 129, + 646 + ], + "score": 1.0, + "content": "id", + "type": "text" + }, + { + "bbox": [ + 129, + 634, + 136, + 642 + ], + "score": 0.51, + "content": "=", + "type": "inline_equation" + }, + { + "bbox": [ + 136, + 633, + 193, + 646 + ], + "score": 1.0, + "content": "rkcQFMZRb.", + "type": "text" + } + ], + "index": 46, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 642, + 505, + 657 + ], + "spans": [ + { + "bbox": [ + 105, + 642, + 505, + 657 + ], + "score": 1.0, + "content": "Baluja, Shumeet et al. (2018). “No Multiplication? No Floating Point? No Problem! Training Net-", + "type": "text" + } + ], + "index": 47, + "is_list_start_line": true + }, + { + "bbox": [ + 115, + 655, + 408, + 668 + ], + "spans": [ + { + "bbox": [ + 115, + 655, + 408, + 668 + ], + "score": 1.0, + "content": "works for Efficient Inference”. In: arXiv e-prints. arXiv: 1809.09244.", + "type": "text" + } + ], + "index": 48, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 665, + 505, + 680 + ], + "spans": [ + { + "bbox": [ + 105, + 665, + 505, + 680 + ], + "score": 1.0, + "content": "CLIC: Challenge on Learned Image Compression (2018). Mobile and Professional Datasets. URL:", + "type": "text" + } + ], + "index": 49, + "is_list_start_line": true + }, + { + "bbox": [ + 115, + 676, + 361, + 691 + ], + "spans": [ + { + "bbox": [ + 115, + 676, + 361, + 691 + ], + "score": 1.0, + "content": "http://www.compression.cc/2018/challenge.", + "type": "text" + } + ], + "index": 50, + "is_list_end_line": true + }, + { + "bbox": [ + 106, + 687, + 505, + 700 + ], + "spans": [ + { + "bbox": [ + 106, + 687, + 505, + 700 + ], + "score": 1.0, + "content": "Courbariaux, Matthieu, Jean-Pierre David, and Yoshua Bengio (2015). “Training deep neural net-", + "type": "text" + } + ], + "index": 51, + "is_list_start_line": true + }, + { + "bbox": [ + 115, + 698, + 505, + 712 + ], + "spans": [ + { + "bbox": [ + 115, + 698, + 505, + 712 + ], + "score": 1.0, + "content": "works with low precision multiplications”. In: arXiv e-prints. Presented as a workshop contribu-", + "type": "text" + } + ], + "index": 52 + }, + { + "bbox": [ + 115, + 709, + 423, + 723 + ], + "spans": [ + { + "bbox": [ + 115, + 709, + 423, + 723 + ], + "score": 1.0, + "content": "tion at the 3rd Int. Conf. on Learning Representations. arXiv: 1412.7024.", + "type": "text" + } + ], + "index": 53, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 719, + 489, + 735 + ], + "spans": [ + { + "bbox": [ + 105, + 719, + 489, + 735 + ], + "score": 1.0, + "content": "Cover, Thomas M. and Joy A. Thomas (2006). Elements of Information Theory. 2nd ed. Wiley.", + "type": "text" + } + ], + "index": 54, + "is_list_start_line": true, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 82, + 505, + 96 + ], + "spans": [ + { + "bbox": [ + 105, + 82, + 505, + 96 + ], + "score": 1.0, + "content": "Denton, Emily et al. (2014). “Exploiting Linear Structure Within Convolutional Networks for Effi-", + "type": "text", + "cross_page": true + } + ], + "index": 0, + "is_list_start_line": true + }, + { + "bbox": [ + 115, + 93, + 495, + 106 + ], + "spans": [ + { + "bbox": [ + 115, + 93, + 495, + 106 + ], + "score": 1.0, + "content": "cient Evaluation”. In: Advances in Neural Information Processing Systems 27, pp. 1269–1277.", + "type": "text", + "cross_page": true + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 104, + 506, + 119 + ], + "spans": [ + { + "bbox": [ + 105, + 104, + 506, + 119 + ], + "score": 1.0, + "content": "Han, Song, Huizi Mao, and William J. Dally (2016). “Deep Compression: Compressing Deep Neural", + "type": "text", + "cross_page": true + } + ], + "index": 2, + "is_list_start_line": true + }, + { + "bbox": [ + 114, + 113, + 506, + 129 + ], + "spans": [ + { + "bbox": [ + 114, + 113, + 506, + 129 + ], + "score": 1.0, + "content": "Network with Pruning, Trained Quantization and Huffman Coding”. In: arXiv e-prints. Presented", + "type": "text", + "cross_page": true + } + ], + "index": 3 + }, + { + "bbox": [ + 115, + 126, + 409, + 140 + ], + "spans": [ + { + "bbox": [ + 115, + 126, + 409, + 140 + ], + "score": 1.0, + "content": "at the 4th Int. Conf. on Learning Representations. arXiv: 1510.00149.", + "type": "text", + "cross_page": true + } + ], + "index": 4, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 137, + 505, + 150 + ], + "spans": [ + { + "bbox": [ + 105, + 137, + 229, + 150 + ], + "score": 1.0, + "content": "Higgins, Irina et al. (2017). “", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 230, + 138, + 236, + 149 + ], + "score": 0.83, + "content": "\\beta", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 237, + 137, + 505, + 150 + ], + "score": 1.0, + "content": "-VAE: Learning Basic Visual Concepts with a Constrained Vari-", + "type": "text", + "cross_page": true + } + ], + "index": 5, + "is_list_start_line": true + }, + { + "bbox": [ + 114, + 146, + 505, + 164 + ], + "spans": [ + { + "bbox": [ + 114, + 146, + 505, + 164 + ], + "score": 1.0, + "content": "ational Framework”. In: Proc. of 5th Int. Conf. on Learning Representations. URL: https :", + "type": "text", + "cross_page": true + } + ], + "index": 6 + }, + { + "bbox": [ + 117, + 160, + 330, + 172 + ], + "spans": [ + { + "bbox": [ + 117, + 160, + 266, + 172 + ], + "score": 1.0, + "content": "//openreview.net/forum?id", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 267, + 161, + 273, + 169 + ], + "score": 0.46, + "content": "=", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 273, + 160, + 330, + 172 + ], + "score": 1.0, + "content": "Sy2fzU9gl.", + "type": "text", + "cross_page": true + } + ], + "index": 7, + "is_list_end_line": true + }, + { + "bbox": [ + 104, + 169, + 505, + 185 + ], + "spans": [ + { + "bbox": [ + 104, + 169, + 505, + 185 + ], + "score": 1.0, + "content": "Hubara, Itay et al. (2016). “Binarized Neural Networks”. In: Advances in Neural Information Pro-", + "type": "text", + "cross_page": true + } + ], + "index": 8, + "is_list_start_line": true + }, + { + "bbox": [ + 114, + 181, + 263, + 195 + ], + "spans": [ + { + "bbox": [ + 114, + 181, + 263, + 195 + ], + "score": 1.0, + "content": "cessing Systems 29, pp. 4107–4115.", + "type": "text", + "cross_page": true + } + ], + "index": 9, + "is_list_end_line": true + }, + { + "bbox": [ + 104, + 191, + 505, + 206 + ], + "spans": [ + { + "bbox": [ + 104, + 191, + 505, + 206 + ], + "score": 1.0, + "content": "Jang, Eric, Shixiang Gu, and Ben Poole (2017). “Categorical Reparameterization with Gumbel-", + "type": "text", + "cross_page": true + } + ], + "index": 10, + "is_list_start_line": true + }, + { + "bbox": [ + 114, + 202, + 505, + 218 + ], + "spans": [ + { + "bbox": [ + 114, + 202, + 505, + 218 + ], + "score": 1.0, + "content": "Softmax”. In: Proc. of 5th Int. Conf. on Learning Representations. URL: https : / /", + "type": "text", + "cross_page": true + } + ], + "index": 11 + }, + { + "bbox": [ + 115, + 214, + 320, + 228 + ], + "spans": [ + { + "bbox": [ + 115, + 214, + 254, + 228 + ], + "score": 1.0, + "content": "openreview.net/forum?id", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 254, + 215, + 261, + 223 + ], + "score": 0.58, + "content": "\\underline { { \\underline { { \\mathbf { \\Pi } } } } } =", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 261, + 214, + 320, + 228 + ], + "score": 1.0, + "content": "rkE3y85ee.", + "type": "text", + "cross_page": true + } + ], + "index": 12, + "is_list_end_line": true + }, + { + "bbox": [ + 106, + 225, + 505, + 239 + ], + "spans": [ + { + "bbox": [ + 106, + 225, + 505, + 239 + ], + "score": 1.0, + "content": "Kingma, Diederik P. and Max Welling (2014). “Auto-Encoding Variational Bayes”. In: arXiv e-", + "type": "text", + "cross_page": true + } + ], + "index": 13, + "is_list_start_line": true + }, + { + "bbox": [ + 113, + 235, + 477, + 249 + ], + "spans": [ + { + "bbox": [ + 113, + 235, + 477, + 249 + ], + "score": 1.0, + "content": "prints. Presented at the 2nd Int. Conf. on Learning Representations. arXiv: 1312.6114.", + "type": "text", + "cross_page": true + } + ], + "index": 14, + "is_list_end_line": true + }, + { + "bbox": [ + 104, + 246, + 504, + 262 + ], + "spans": [ + { + "bbox": [ + 104, + 246, + 504, + 262 + ], + "score": 1.0, + "content": "Klopp, Jan P. et al. (2018). “Learning a Code-Space Predictor by Exploiting Intra-Image-", + "type": "text", + "cross_page": true + } + ], + "index": 15, + "is_list_start_line": true + }, + { + "bbox": [ + 114, + 257, + 395, + 272 + ], + "spans": [ + { + "bbox": [ + 114, + 257, + 395, + 272 + ], + "score": 1.0, + "content": "Dependencies”. In: Proc. of 29th British Machine Vision Conference.", + "type": "text", + "cross_page": true + } + ], + "index": 16, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 268, + 505, + 282 + ], + "spans": [ + { + "bbox": [ + 105, + 268, + 505, + 282 + ], + "score": 1.0, + "content": "Kodak, Eastman (1993). Kodak Lossless True Color Image Suite (PhotoCD PCD0992). URL:", + "type": "text", + "cross_page": true + } + ], + "index": 17, + "is_list_start_line": true + }, + { + "bbox": [ + 114, + 279, + 295, + 294 + ], + "spans": [ + { + "bbox": [ + 114, + 279, + 295, + 294 + ], + "score": 1.0, + "content": "http://r0k.us/graphics/kodak/.", + "type": "text", + "cross_page": true + } + ], + "index": 18, + "is_list_end_line": true + }, + { + "bbox": [ + 104, + 288, + 506, + 306 + ], + "spans": [ + { + "bbox": [ + 104, + 288, + 506, + 306 + ], + "score": 1.0, + "content": "Marpe, Detlev, Heiko Schwarz, and Thomas Wiegand (2003). “Context-Based Adaptive Binary", + "type": "text", + "cross_page": true + } + ], + "index": 19, + "is_list_start_line": true + }, + { + "bbox": [ + 115, + 300, + 506, + 316 + ], + "spans": [ + { + "bbox": [ + 115, + 300, + 506, + 316 + ], + "score": 1.0, + "content": "Arithmetic Coding in the H.264/AVC Video Compression Standard”. In: IEEE Transactions on", + "type": "text", + "cross_page": true + } + ], + "index": 20 + }, + { + "bbox": [ + 116, + 312, + 488, + 326 + ], + "spans": [ + { + "bbox": [ + 116, + 312, + 488, + 326 + ], + "score": 1.0, + "content": "Circuits and Systems for Video Technology 13.7. DOI: 10.1109/TCSVT.2003.815173.", + "type": "text", + "cross_page": true + } + ], + "index": 21, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 324, + 505, + 337 + ], + "spans": [ + { + "bbox": [ + 105, + 324, + 505, + 337 + ], + "score": 1.0, + "content": "Minnen, David, Johannes Ballé, and George Toderici (2018). “Joint Autoregressive and Hierarchical", + "type": "text", + "cross_page": true + } + ], + "index": 22, + "is_list_start_line": true + }, + { + "bbox": [ + 114, + 333, + 506, + 349 + ], + "spans": [ + { + "bbox": [ + 114, + 333, + 506, + 349 + ], + "score": 1.0, + "content": "Priors for Learned Image Compression”. In: Advances in Neural Information Processing Systems", + "type": "text", + "cross_page": true + } + ], + "index": 23 + }, + { + "bbox": [ + 115, + 345, + 206, + 358 + ], + "spans": [ + { + "bbox": [ + 115, + 345, + 206, + 358 + ], + "score": 1.0, + "content": "31, pp. 10771–10780.", + "type": "text", + "cross_page": true + } + ], + "index": 24, + "is_list_end_line": true + }, + { + "bbox": [ + 104, + 355, + 505, + 371 + ], + "spans": [ + { + "bbox": [ + 104, + 355, + 505, + 371 + ], + "score": 1.0, + "content": "Oord, Aäron van den, Oriol Vinyals, and Koray Kavukcuoglu (2017). “Neural Discrete Representa-", + "type": "text", + "cross_page": true + } + ], + "index": 25, + "is_list_start_line": true + }, + { + "bbox": [ + 114, + 366, + 485, + 381 + ], + "spans": [ + { + "bbox": [ + 114, + 366, + 485, + 381 + ], + "score": 1.0, + "content": "tion Learning”. In: Advances in Neural Information Processing Systems 30, pp. 6306–6315.", + "type": "text", + "cross_page": true + } + ], + "index": 26, + "is_list_end_line": true + }, + { + "bbox": [ + 104, + 377, + 505, + 393 + ], + "spans": [ + { + "bbox": [ + 104, + 377, + 505, + 393 + ], + "score": 1.0, + "content": "Rastegari, Mohammad et al. (2016). “XNOR-Net: ImageNet Classification Using Binary Convolu-", + "type": "text", + "cross_page": true + } + ], + "index": 27, + "is_list_start_line": true + }, + { + "bbox": [ + 114, + 388, + 506, + 403 + ], + "spans": [ + { + "bbox": [ + 114, + 388, + 506, + 403 + ], + "score": 1.0, + "content": "tional Neural Networks”. In: ECCV 2016. Lecture Notes in Computer Science. Vol. 9908. DOI:", + "type": "text", + "cross_page": true + } + ], + "index": 28 + }, + { + "bbox": [ + 115, + 399, + 292, + 414 + ], + "spans": [ + { + "bbox": [ + 115, + 399, + 292, + 414 + ], + "score": 1.0, + "content": "10.1007/978-3-319-46493-0_32.", + "type": "text", + "cross_page": true + } + ], + "index": 29, + "is_list_end_line": true + }, + { + "bbox": [ + 104, + 409, + 505, + 426 + ], + "spans": [ + { + "bbox": [ + 104, + 409, + 505, + 426 + ], + "score": 1.0, + "content": "Rissanen, Jorma and Glen G. Langdon Jr. (1981). “Universal modeling and coding”. In: IEEE Trans-", + "type": "text", + "cross_page": true + } + ], + "index": 30, + "is_list_start_line": true + }, + { + "bbox": [ + 114, + 422, + 433, + 435 + ], + "spans": [ + { + "bbox": [ + 114, + 422, + 433, + 435 + ], + "score": 1.0, + "content": "actions on Information Theory 27.1. DOI: 10.1109/TIT.1981.1056282.", + "type": "text", + "cross_page": true + } + ], + "index": 31, + "is_list_end_line": true + }, + { + "bbox": [ + 104, + 432, + 505, + 447 + ], + "spans": [ + { + "bbox": [ + 104, + 432, + 505, + 447 + ], + "score": 1.0, + "content": "Shannon, Claude E. (1948). “A Mathematical Theory of Communication”. In: The Bell System Tech-", + "type": "text", + "cross_page": true + } + ], + "index": 32, + "is_list_start_line": true + }, + { + "bbox": [ + 115, + 444, + 424, + 457 + ], + "spans": [ + { + "bbox": [ + 115, + 444, + 424, + 457 + ], + "score": 1.0, + "content": "nical Journal 27.3. DOI: 10.1002/j.1538-7305.1948.tb01338.x.", + "type": "text", + "cross_page": true + } + ], + "index": 33, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 455, + 506, + 468 + ], + "spans": [ + { + "bbox": [ + 105, + 455, + 506, + 468 + ], + "score": 1.0, + "content": "Sønderby, Casper Kaae et al. (2016). “Ladder variational autoencoders”. In: Advances in Neural", + "type": "text", + "cross_page": true + } + ], + "index": 34, + "is_list_start_line": true + }, + { + "bbox": [ + 115, + 466, + 327, + 480 + ], + "spans": [ + { + "bbox": [ + 115, + 466, + 327, + 480 + ], + "score": 1.0, + "content": "Information Processing Systems 29, pp. 3738–3746.", + "type": "text", + "cross_page": true + } + ], + "index": 35, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 475, + 505, + 492 + ], + "spans": [ + { + "bbox": [ + 105, + 475, + 505, + 492 + ], + "score": 1.0, + "content": "Theis, Lucas et al. (2017). “Lossy Image Compression with Compressive Autoencoders”. In: Proc.", + "type": "text", + "cross_page": true + } + ], + "index": 36, + "is_list_start_line": true + }, + { + "bbox": [ + 114, + 487, + 505, + 503 + ], + "spans": [ + { + "bbox": [ + 114, + 487, + 505, + 503 + ], + "score": 1.0, + "content": "of 5th Int. Conf. on Learning Representations. URL: https://openreview.net/forum?", + "type": "text", + "cross_page": true + } + ], + "index": 37 + }, + { + "bbox": [ + 114, + 498, + 194, + 513 + ], + "spans": [ + { + "bbox": [ + 114, + 498, + 129, + 513 + ], + "score": 1.0, + "content": "id", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 129, + 501, + 136, + 508 + ], + "score": 0.3, + "content": "=", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 136, + 498, + 194, + 513 + ], + "score": 1.0, + "content": "rJiNwv9gg.", + "type": "text", + "cross_page": true + } + ], + "index": 38, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 509, + 506, + 524 + ], + "spans": [ + { + "bbox": [ + 105, + 509, + 506, + 524 + ], + "score": 1.0, + "content": "Wu, Shuang et al. (2018). “Training and Inference with Integers in Deep Neural Networks”. In:", + "type": "text", + "cross_page": true + } + ], + "index": 39, + "is_list_start_line": true + }, + { + "bbox": [ + 114, + 520, + 505, + 536 + ], + "spans": [ + { + "bbox": [ + 114, + 520, + 505, + 536 + ], + "score": 1.0, + "content": "Proc. of 6th Int. Conf. on Learning Representations. URL: https://openreview.net/", + "type": "text", + "cross_page": true + } + ], + "index": 40 + }, + { + "bbox": [ + 115, + 531, + 229, + 546 + ], + "spans": [ + { + "bbox": [ + 115, + 531, + 164, + 546 + ], + "score": 1.0, + "content": "forum?id", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 165, + 533, + 172, + 541 + ], + "score": 0.48, + "content": "\\underline { { \\underline { { \\mathbf { \\Pi } } } } } =", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 172, + 531, + 229, + 546 + ], + "score": 1.0, + "content": "HJGXzmspb.", + "type": "text", + "cross_page": true + } + ], + "index": 41, + "is_list_end_line": true + } + ], + "index": 44, + "bbox_fs": [ + 105, + 500, + 506, + 735 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 105, + 76, + 506, + 548 + ], + "lines": [ + { + "bbox": [ + 105, + 82, + 505, + 96 + ], + "spans": [ + { + "bbox": [ + 105, + 82, + 505, + 96 + ], + "score": 1.0, + "content": "Denton, Emily et al. (2014). “Exploiting Linear Structure Within Convolutional Networks for Effi-", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 115, + 93, + 495, + 106 + ], + "spans": [ + { + "bbox": [ + 115, + 93, + 495, + 106 + ], + "score": 1.0, + "content": "cient Evaluation”. In: Advances in Neural Information Processing Systems 27, pp. 1269–1277.", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 104, + 506, + 119 + ], + "spans": [ + { + "bbox": [ + 105, + 104, + 506, + 119 + ], + "score": 1.0, + "content": "Han, Song, Huizi Mao, and William J. Dally (2016). “Deep Compression: Compressing Deep Neural", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 114, + 113, + 506, + 129 + ], + "spans": [ + { + "bbox": [ + 114, + 113, + 506, + 129 + ], + "score": 1.0, + "content": "Network with Pruning, Trained Quantization and Huffman Coding”. In: arXiv e-prints. Presented", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 115, + 126, + 409, + 140 + ], + "spans": [ + { + "bbox": [ + 115, + 126, + 409, + 140 + ], + "score": 1.0, + "content": "at the 4th Int. Conf. on Learning Representations. arXiv: 1510.00149.", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 137, + 505, + 150 + ], + "spans": [ + { + "bbox": [ + 105, + 137, + 229, + 150 + ], + "score": 1.0, + "content": "Higgins, Irina et al. (2017). “", + "type": "text" + }, + { + "bbox": [ + 230, + 138, + 236, + 149 + ], + "score": 0.83, + "content": "\\beta", + "type": "inline_equation" + }, + { + "bbox": [ + 237, + 137, + 505, + 150 + ], + "score": 1.0, + "content": "-VAE: Learning Basic Visual Concepts with a Constrained Vari-", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 114, + 146, + 505, + 164 + ], + "spans": [ + { + "bbox": [ + 114, + 146, + 505, + 164 + ], + "score": 1.0, + "content": "ational Framework”. In: Proc. of 5th Int. Conf. on Learning Representations. URL: https :", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 117, + 160, + 330, + 172 + ], + "spans": [ + { + "bbox": [ + 117, + 160, + 266, + 172 + ], + "score": 1.0, + "content": "//openreview.net/forum?id", + "type": "text" + }, + { + "bbox": [ + 267, + 161, + 273, + 169 + ], + "score": 0.46, + "content": "=", + "type": "inline_equation" + }, + { + "bbox": [ + 273, + 160, + 330, + 172 + ], + "score": 1.0, + "content": "Sy2fzU9gl.", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 104, + 169, + 505, + 185 + ], + "spans": [ + { + "bbox": [ + 104, + 169, + 505, + 185 + ], + "score": 1.0, + "content": "Hubara, Itay et al. (2016). “Binarized Neural Networks”. In: Advances in Neural Information Pro-", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 114, + 181, + 263, + 195 + ], + "spans": [ + { + "bbox": [ + 114, + 181, + 263, + 195 + ], + "score": 1.0, + "content": "cessing Systems 29, pp. 4107–4115.", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 104, + 191, + 505, + 206 + ], + "spans": [ + { + "bbox": [ + 104, + 191, + 505, + 206 + ], + "score": 1.0, + "content": "Jang, Eric, Shixiang Gu, and Ben Poole (2017). “Categorical Reparameterization with Gumbel-", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 114, + 202, + 505, + 218 + ], + "spans": [ + { + "bbox": [ + 114, + 202, + 505, + 218 + ], + "score": 1.0, + "content": "Softmax”. In: Proc. of 5th Int. Conf. on Learning Representations. URL: https : / /", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 115, + 214, + 320, + 228 + ], + "spans": [ + { + "bbox": [ + 115, + 214, + 254, + 228 + ], + "score": 1.0, + "content": "openreview.net/forum?id", + "type": "text" + }, + { + "bbox": [ + 254, + 215, + 261, + 223 + ], + "score": 0.58, + "content": "\\underline { { \\underline { { \\mathbf { \\Pi } } } } } =", + "type": "inline_equation" + }, + { + "bbox": [ + 261, + 214, + 320, + 228 + ], + "score": 1.0, + "content": "rkE3y85ee.", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 106, + 225, + 505, + 239 + ], + "spans": [ + { + "bbox": [ + 106, + 225, + 505, + 239 + ], + "score": 1.0, + "content": "Kingma, Diederik P. and Max Welling (2014). “Auto-Encoding Variational Bayes”. In: arXiv e-", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 113, + 235, + 477, + 249 + ], + "spans": [ + { + "bbox": [ + 113, + 235, + 477, + 249 + ], + "score": 1.0, + "content": "prints. Presented at the 2nd Int. Conf. on Learning Representations. arXiv: 1312.6114.", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 104, + 246, + 504, + 262 + ], + "spans": [ + { + "bbox": [ + 104, + 246, + 504, + 262 + ], + "score": 1.0, + "content": "Klopp, Jan P. et al. (2018). “Learning a Code-Space Predictor by Exploiting Intra-Image-", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 114, + 257, + 395, + 272 + ], + "spans": [ + { + "bbox": [ + 114, + 257, + 395, + 272 + ], + "score": 1.0, + "content": "Dependencies”. In: Proc. of 29th British Machine Vision Conference.", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 268, + 505, + 282 + ], + "spans": [ + { + "bbox": [ + 105, + 268, + 505, + 282 + ], + "score": 1.0, + "content": "Kodak, Eastman (1993). Kodak Lossless True Color Image Suite (PhotoCD PCD0992). URL:", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 114, + 279, + 295, + 294 + ], + "spans": [ + { + "bbox": [ + 114, + 279, + 295, + 294 + ], + "score": 1.0, + "content": "http://r0k.us/graphics/kodak/.", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 104, + 288, + 506, + 306 + ], + "spans": [ + { + "bbox": [ + 104, + 288, + 506, + 306 + ], + "score": 1.0, + "content": "Marpe, Detlev, Heiko Schwarz, and Thomas Wiegand (2003). “Context-Based Adaptive Binary", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 115, + 300, + 506, + 316 + ], + "spans": [ + { + "bbox": [ + 115, + 300, + 506, + 316 + ], + "score": 1.0, + "content": "Arithmetic Coding in the H.264/AVC Video Compression Standard”. In: IEEE Transactions on", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 116, + 312, + 488, + 326 + ], + "spans": [ + { + "bbox": [ + 116, + 312, + 488, + 326 + ], + "score": 1.0, + "content": "Circuits and Systems for Video Technology 13.7. DOI: 10.1109/TCSVT.2003.815173.", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 324, + 505, + 337 + ], + "spans": [ + { + "bbox": [ + 105, + 324, + 505, + 337 + ], + "score": 1.0, + "content": "Minnen, David, Johannes Ballé, and George Toderici (2018). “Joint Autoregressive and Hierarchical", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 114, + 333, + 506, + 349 + ], + "spans": [ + { + "bbox": [ + 114, + 333, + 506, + 349 + ], + "score": 1.0, + "content": "Priors for Learned Image Compression”. In: Advances in Neural Information Processing Systems", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 115, + 345, + 206, + 358 + ], + "spans": [ + { + "bbox": [ + 115, + 345, + 206, + 358 + ], + "score": 1.0, + "content": "31, pp. 10771–10780.", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 104, + 355, + 505, + 371 + ], + "spans": [ + { + "bbox": [ + 104, + 355, + 505, + 371 + ], + "score": 1.0, + "content": "Oord, Aäron van den, Oriol Vinyals, and Koray Kavukcuoglu (2017). “Neural Discrete Representa-", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 114, + 366, + 485, + 381 + ], + "spans": [ + { + "bbox": [ + 114, + 366, + 485, + 381 + ], + "score": 1.0, + "content": "tion Learning”. In: Advances in Neural Information Processing Systems 30, pp. 6306–6315.", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 104, + 377, + 505, + 393 + ], + "spans": [ + { + "bbox": [ + 104, + 377, + 505, + 393 + ], + "score": 1.0, + "content": "Rastegari, Mohammad et al. (2016). “XNOR-Net: ImageNet Classification Using Binary Convolu-", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 114, + 388, + 506, + 403 + ], + "spans": [ + { + "bbox": [ + 114, + 388, + 506, + 403 + ], + "score": 1.0, + "content": "tional Neural Networks”. In: ECCV 2016. Lecture Notes in Computer Science. Vol. 9908. DOI:", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 115, + 399, + 292, + 414 + ], + "spans": [ + { + "bbox": [ + 115, + 399, + 292, + 414 + ], + "score": 1.0, + "content": "10.1007/978-3-319-46493-0_32.", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 104, + 409, + 505, + 426 + ], + "spans": [ + { + "bbox": [ + 104, + 409, + 505, + 426 + ], + "score": 1.0, + "content": "Rissanen, Jorma and Glen G. Langdon Jr. (1981). “Universal modeling and coding”. In: IEEE Trans-", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 114, + 422, + 433, + 435 + ], + "spans": [ + { + "bbox": [ + 114, + 422, + 433, + 435 + ], + "score": 1.0, + "content": "actions on Information Theory 27.1. DOI: 10.1109/TIT.1981.1056282.", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 104, + 432, + 505, + 447 + ], + "spans": [ + { + "bbox": [ + 104, + 432, + 505, + 447 + ], + "score": 1.0, + "content": "Shannon, Claude E. (1948). “A Mathematical Theory of Communication”. In: The Bell System Tech-", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 115, + 444, + 424, + 457 + ], + "spans": [ + { + "bbox": [ + 115, + 444, + 424, + 457 + ], + "score": 1.0, + "content": "nical Journal 27.3. DOI: 10.1002/j.1538-7305.1948.tb01338.x.", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 455, + 506, + 468 + ], + "spans": [ + { + "bbox": [ + 105, + 455, + 506, + 468 + ], + "score": 1.0, + "content": "Sønderby, Casper Kaae et al. (2016). “Ladder variational autoencoders”. In: Advances in Neural", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 115, + 466, + 327, + 480 + ], + "spans": [ + { + "bbox": [ + 115, + 466, + 327, + 480 + ], + "score": 1.0, + "content": "Information Processing Systems 29, pp. 3738–3746.", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 475, + 505, + 492 + ], + "spans": [ + { + "bbox": [ + 105, + 475, + 505, + 492 + ], + "score": 1.0, + "content": "Theis, Lucas et al. (2017). “Lossy Image Compression with Compressive Autoencoders”. In: Proc.", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 114, + 487, + 505, + 503 + ], + "spans": [ + { + "bbox": [ + 114, + 487, + 505, + 503 + ], + "score": 1.0, + "content": "of 5th Int. Conf. on Learning Representations. URL: https://openreview.net/forum?", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 114, + 498, + 194, + 513 + ], + "spans": [ + { + "bbox": [ + 114, + 498, + 129, + 513 + ], + "score": 1.0, + "content": "id", + "type": "text" + }, + { + "bbox": [ + 129, + 501, + 136, + 508 + ], + "score": 0.3, + "content": "=", + "type": "inline_equation" + }, + { + "bbox": [ + 136, + 498, + 194, + 513 + ], + "score": 1.0, + "content": "rJiNwv9gg.", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 509, + 506, + 524 + ], + "spans": [ + { + "bbox": [ + 105, + 509, + 506, + 524 + ], + "score": 1.0, + "content": "Wu, Shuang et al. (2018). “Training and Inference with Integers in Deep Neural Networks”. In:", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 114, + 520, + 505, + 536 + ], + "spans": [ + { + "bbox": [ + 114, + 520, + 505, + 536 + ], + "score": 1.0, + "content": "Proc. of 6th Int. Conf. on Learning Representations. URL: https://openreview.net/", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 115, + 531, + 229, + 546 + ], + "spans": [ + { + "bbox": [ + 115, + 531, + 164, + 546 + ], + "score": 1.0, + "content": "forum?id", + "type": "text" + }, + { + "bbox": [ + 165, + 533, + 172, + 541 + ], + "score": 0.48, + "content": "\\underline { { \\underline { { \\mathbf { \\Pi } } } } } =", + "type": "inline_equation" + }, + { + "bbox": [ + 172, + 531, + 229, + 546 + ], + "score": 1.0, + "content": "HJGXzmspb.", + "type": "text" + } + ], + "index": 41 + } + ], + "index": 20.5 + } + ], + "page_idx": 9, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 27, + 293, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 25, + 294, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 25, + 294, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2019", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 300, + 751, + 311, + 760 + ], + "lines": [ + { + "bbox": [ + 299, + 750, + 313, + 764 + ], + "spans": [ + { + "bbox": [ + 299, + 750, + 313, + 764 + ], + "score": 1.0, + "content": "10", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "list", + "bbox": [ + 105, + 76, + 506, + 548 + ], + "lines": [], + "index": 20.5, + "bbox_fs": [ + 104, + 82, + 506, + 546 + ], + "lines_deleted": true + } + ] + } + ], + "_backend": "pipeline", + "_version_name": "2.2.2" +} \ No newline at end of file diff --git a/parse/train/S1zz2i0cY7/S1zz2i0cY7_model.json b/parse/train/S1zz2i0cY7/S1zz2i0cY7_model.json new file mode 100644 index 0000000000000000000000000000000000000000..7c6fe64cfcc43a352b42d7fe7a4e083a3d97cf09 --- /dev/null +++ b/parse/train/S1zz2i0cY7/S1zz2i0cY7_model.json @@ -0,0 +1,16081 @@ +[ + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 297, + 1143, + 1403, + 1143, + 1403, + 1421, + 297, + 1421 + ], + "score": 0.984 + }, + { + "category_id": 1, + "poly": [ + 398, + 660, + 1302, + 660, + 1302, + 997, + 398, + 997 + ], + "score": 0.983 + }, + { + "category_id": 1, + "poly": [ + 297, + 1758, + 1404, + 1758, + 1404, + 2034, + 297, + 2034 + ], + "score": 0.982 + }, + { + "category_id": 1, + "poly": [ + 297, + 1435, + 1403, + 1435, + 1403, + 1744, + 297, + 1744 + ], + "score": 0.982 + }, + { + "category_id": 0, + "poly": [ + 300, + 219, + 1261, + 219, + 1261, + 324, + 300, + 324 + ], + "score": 0.965 + }, + { + "category_id": 0, + "poly": [ + 302, + 1078, + 573, + 1078, + 573, + 1113, + 302, + 1113 + ], + "score": 0.901 + }, + { + "category_id": 2, + "poly": [ + 299, + 75, + 816, + 75, + 816, + 105, + 299, + 105 + ], + "score": 0.878 + }, + { + "category_id": 0, + "poly": [ + 773, + 580, + 927, + 580, + 927, + 613, + 773, + 613 + ], + "score": 0.86 + }, + { + "category_id": 1, + "poly": [ + 314, + 374, + 883, + 374, + 883, + 499, + 314, + 499 + ], + "score": 0.71 + }, + { + "category_id": 2, + "poly": [ + 842, + 2088, + 857, + 2088, + 857, + 2112, + 842, + 2112 + ], + "score": 0.653 + }, + { + "category_id": 13, + "poly": [ + 405, + 1850, + 561, + 1850, + 561, + 1884, + 405, + 1884 + ], + "score": 0.93, + "latex": "\\begin{array} { r } { \\mathbb { E } _ { \\pmb { x } } D _ { \\mathrm { K L } } [ e \\| p ] ) } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 903, + 1651, + 1147, + 1651, + 1147, + 1685, + 903, + 1685 + ], + "score": 0.93, + "latex": "m ( \\pmb { y } ) = \\mathbb { E } _ { \\pmb { x } } [ e ( \\pmb { y } \\mid \\pmb { x } ) ]" + }, + { + "category_id": 13, + "poly": [ + 432, + 1621, + 530, + 1621, + 530, + 1654, + 432, + 1654 + ], + "score": 0.92, + "latex": "d ( { \\pmb x } \\mid { \\pmb y } )" + }, + { + "category_id": 13, + "poly": [ + 508, + 1590, + 606, + 1590, + 606, + 1623, + 508, + 1623 + ], + "score": 0.92, + "latex": "e ( \\pmb { y } \\mid \\pmb { x } )" + }, + { + "category_id": 13, + "poly": [ + 893, + 1683, + 948, + 1683, + 948, + 1715, + 893, + 1715 + ], + "score": 0.91, + "latex": "p ( \\pmb { y } )" + }, + { + "category_id": 13, + "poly": [ + 754, + 1386, + 773, + 1386, + 773, + 1424, + 754, + 1424 + ], + "score": 0.85, + "latex": "\\textstyle { \\frac { 1 } { 2 } }" + }, + { + "category_id": 13, + "poly": [ + 1135, + 1596, + 1155, + 1596, + 1155, + 1622, + 1135, + 1622 + ], + "score": 0.78, + "latex": "\\textbf { { y } }" + }, + { + "category_id": 13, + "poly": [ + 806, + 1596, + 827, + 1596, + 827, + 1618, + 806, + 1618 + ], + "score": 0.76, + "latex": "_ { \\textbf { \\em x } }" + }, + { + "category_id": 13, + "poly": [ + 364, + 1658, + 380, + 1658, + 380, + 1679, + 364, + 1679 + ], + "score": 0.63, + "latex": "e" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 218.0, + 1270.0, + 218.0, + 1270.0, + 270.0, + 294.0, + 270.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 273.0, + 1009.0, + 273.0, + 1009.0, + 326.0, + 295.0, + 326.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1075.0, + 579.0, + 1075.0, + 579.0, + 1122.0, + 294.0, + 1122.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": [ + 768.0, + 576.0, + 934.0, + 576.0, + 934.0, + 619.0, + 768.0, + 619.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": [ + 297.0, + 1144.0, + 1403.0, + 1144.0, + 1403.0, + 1177.0, + 297.0, + 1177.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1176.0, + 1403.0, + 1176.0, + 1403.0, + 1210.0, + 292.0, + 1210.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1207.0, + 1404.0, + 1207.0, + 1404.0, + 1240.0, + 295.0, + 1240.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1231.0, + 1405.0, + 1231.0, + 1405.0, + 1274.0, + 291.0, + 1274.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1265.0, + 1401.0, + 1265.0, + 1401.0, + 1302.0, + 293.0, + 1302.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1295.0, + 1405.0, + 1295.0, + 1405.0, + 1335.0, + 294.0, + 1335.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1327.0, + 1402.0, + 1327.0, + 1402.0, + 1363.0, + 294.0, + 1363.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1357.0, + 1405.0, + 1357.0, + 1405.0, + 1394.0, + 293.0, + 1394.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1388.0, + 753.0, + 1388.0, + 753.0, + 1425.0, + 295.0, + 1425.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 774.0, + 1388.0, + 1130.0, + 1388.0, + 1130.0, + 1425.0, + 774.0, + 1425.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 396.0, + 661.0, + 1305.0, + 661.0, + 1305.0, + 695.0, + 396.0, + 695.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 693.0, + 1305.0, + 693.0, + 1305.0, + 727.0, + 393.0, + 727.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 395.0, + 723.0, + 1305.0, + 723.0, + 1305.0, + 756.0, + 395.0, + 756.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 753.0, + 1305.0, + 753.0, + 1305.0, + 788.0, + 394.0, + 788.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 783.0, + 1306.0, + 783.0, + 1306.0, + 819.0, + 394.0, + 819.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 395.0, + 815.0, + 1306.0, + 815.0, + 1306.0, + 847.0, + 395.0, + 847.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 845.0, + 1306.0, + 845.0, + 1306.0, + 878.0, + 393.0, + 878.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 876.0, + 1305.0, + 876.0, + 1305.0, + 908.0, + 394.0, + 908.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 905.0, + 1306.0, + 905.0, + 1306.0, + 941.0, + 394.0, + 941.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 935.0, + 1305.0, + 935.0, + 1305.0, + 971.0, + 394.0, + 971.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 395.0, + 968.0, + 905.0, + 968.0, + 905.0, + 1001.0, + 395.0, + 1001.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1758.0, + 1404.0, + 1758.0, + 1404.0, + 1795.0, + 294.0, + 1795.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1788.0, + 1404.0, + 1788.0, + 1404.0, + 1825.0, + 292.0, + 1825.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1820.0, + 1406.0, + 1820.0, + 1406.0, + 1854.0, + 292.0, + 1854.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1850.0, + 404.0, + 1850.0, + 404.0, + 1887.0, + 295.0, + 1887.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 562.0, + 1850.0, + 1406.0, + 1850.0, + 1406.0, + 1887.0, + 562.0, + 1887.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1878.0, + 1407.0, + 1878.0, + 1407.0, + 1920.0, + 291.0, + 1920.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1910.0, + 1404.0, + 1910.0, + 1404.0, + 1947.0, + 292.0, + 1947.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1940.0, + 1407.0, + 1940.0, + 1407.0, + 1980.0, + 291.0, + 1980.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1969.0, + 1405.0, + 1969.0, + 1405.0, + 2012.0, + 292.0, + 2012.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 2003.0, + 1387.0, + 2003.0, + 1387.0, + 2037.0, + 293.0, + 2037.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1435.0, + 1405.0, + 1435.0, + 1405.0, + 1471.0, + 295.0, + 1471.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1467.0, + 1405.0, + 1467.0, + 1405.0, + 1499.0, + 295.0, + 1499.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1495.0, + 1406.0, + 1495.0, + 1406.0, + 1533.0, + 292.0, + 1533.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1528.0, + 1404.0, + 1528.0, + 1404.0, + 1564.0, + 293.0, + 1564.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1560.0, + 1405.0, + 1560.0, + 1405.0, + 1596.0, + 295.0, + 1596.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1591.0, + 507.0, + 1591.0, + 507.0, + 1627.0, + 293.0, + 1627.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 607.0, + 1591.0, + 805.0, + 1591.0, + 805.0, + 1627.0, + 607.0, + 1627.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 828.0, + 1591.0, + 1134.0, + 1591.0, + 1134.0, + 1627.0, + 828.0, + 1627.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1156.0, + 1591.0, + 1405.0, + 1591.0, + 1405.0, + 1627.0, + 1156.0, + 1627.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1621.0, + 431.0, + 1621.0, + 431.0, + 1653.0, + 296.0, + 1653.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 531.0, + 1621.0, + 1404.0, + 1621.0, + 1404.0, + 1653.0, + 531.0, + 1653.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1647.0, + 363.0, + 1647.0, + 363.0, + 1689.0, + 292.0, + 1689.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 381.0, + 1647.0, + 902.0, + 1647.0, + 902.0, + 1689.0, + 381.0, + 1689.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1148.0, + 1647.0, + 1407.0, + 1647.0, + 1407.0, + 1689.0, + 1148.0, + 1689.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1682.0, + 892.0, + 1682.0, + 892.0, + 1717.0, + 292.0, + 1717.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 949.0, + 1682.0, + 1405.0, + 1682.0, + 1405.0, + 1717.0, + 949.0, + 1717.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1712.0, + 526.0, + 1712.0, + 526.0, + 1744.0, + 296.0, + 1744.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 311.0, + 375.0, + 886.0, + 375.0, + 886.0, + 411.0, + 311.0, + 411.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 311.0, + 406.0, + 405.0, + 406.0, + 405.0, + 443.0, + 311.0, + 443.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 310.0, + 437.0, + 688.0, + 437.0, + 688.0, + 470.0, + 310.0, + 470.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 316.0, + 469.0, + 868.0, + 469.0, + 868.0, + 504.0, + 316.0, + 504.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 0, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 298, + 1128, + 1404, + 1128, + 1404, + 1495, + 298, + 1495 + ], + "score": 0.984 + }, + { + "category_id": 1, + "poly": [ + 298, + 1510, + 1404, + 1510, + 1404, + 1726, + 298, + 1726 + ], + "score": 0.982 + }, + { + "category_id": 1, + "poly": [ + 298, + 1819, + 1403, + 1819, + 1403, + 2034, + 298, + 2034 + ], + "score": 0.979 + }, + { + "category_id": 3, + "poly": [ + 299, + 225, + 1406, + 225, + 1406, + 594, + 299, + 594 + ], + "score": 0.973 + }, + { + "category_id": 4, + "poly": [ + 297, + 618, + 1404, + 618, + 1404, + 742, + 297, + 742 + ], + "score": 0.955 + }, + { + "category_id": 8, + "poly": [ + 687, + 879, + 1112, + 879, + 1112, + 919, + 687, + 919 + ], + "score": 0.937 + }, + { + "category_id": 1, + "poly": [ + 368, + 802, + 1401, + 802, + 1401, + 864, + 368, + 864 + ], + "score": 0.931 + }, + { + "category_id": 2, + "poly": [ + 299, + 76, + 815, + 76, + 815, + 104, + 299, + 104 + ], + "score": 0.894 + }, + { + "category_id": 0, + "poly": [ + 302, + 1758, + 773, + 1758, + 773, + 1792, + 302, + 1792 + ], + "score": 0.887 + }, + { + "category_id": 9, + "poly": [ + 1366, + 884, + 1399, + 884, + 1399, + 913, + 1366, + 913 + ], + "score": 0.874 + }, + { + "category_id": 2, + "poly": [ + 841, + 2088, + 858, + 2088, + 858, + 2112, + 841, + 2112 + ], + "score": 0.711 + }, + { + "category_id": 1, + "poly": [ + 369, + 938, + 1404, + 938, + 1404, + 1030, + 369, + 1030 + ], + "score": 0.639 + }, + { + "category_id": 1, + "poly": [ + 368, + 1040, + 1401, + 1040, + 1401, + 1103, + 368, + 1103 + ], + "score": 0.604 + }, + { + "category_id": 2, + "poly": [ + 841, + 2088, + 859, + 2088, + 859, + 2112, + 841, + 2112 + ], + "score": 0.167 + }, + { + "category_id": 14, + "poly": [ + 684, + 879, + 1115, + 879, + 1115, + 918, + 684, + 918 + ], + "score": 0.91, + "latex": "H [ e ] = \\mathbb { E } _ { \\pmb { x } } \\mathbb { E } _ { \\pmb { y } \\sim e } [ - \\log e ( \\pmb { y } \\mid \\pmb { x } ) ] = 0 ." + }, + { + "category_id": 13, + "poly": [ + 859, + 944, + 881, + 944, + 881, + 971, + 859, + 971 + ], + "score": 0.8, + "latex": "\\textbf { { y } }" + }, + { + "category_id": 13, + "poly": [ + 1204, + 1135, + 1223, + 1135, + 1223, + 1162, + 1204, + 1162 + ], + "score": 0.79, + "latex": "p" + }, + { + "category_id": 13, + "poly": [ + 1315, + 1287, + 1334, + 1287, + 1334, + 1314, + 1315, + 1314 + ], + "score": 0.78, + "latex": "p" + }, + { + "category_id": 15, + "poly": [ + 893.0, + 296.0, + 905.0, + 296.0, + 905.0, + 304.0, + 893.0, + 304.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1151.0, + 427.0, + 1295.0, + 427.0, + 1295.0, + 497.0, + 1151.0, + 497.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1285.0, + 446.0, + 1310.0, + 446.0, + 1310.0, + 463.0, + 1285.0, + 463.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1212.0, + 450.0, + 1222.0, + 450.0, + 1222.0, + 458.0, + 1212.0, + 458.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1178.0, + 452.0, + 1221.0, + 452.0, + 1221.0, + 474.0, + 1178.0, + 474.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1215.0, + 466.0, + 1231.0, + 466.0, + 1231.0, + 474.0, + 1215.0, + 474.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 417.0, + 482.0, + 449.0, + 482.0, + 449.0, + 490.0, + 417.0, + 490.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 391.0, + 488.0, + 411.0, + 488.0, + 411.0, + 501.0, + 391.0, + 501.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 407.0, + 490.0, + 423.0, + 490.0, + 423.0, + 500.0, + 407.0, + 500.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1239.0, + 451.0, + 1359.0, + 451.0, + 1359.0, + 540.0, + 1239.0, + 540.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 619.0, + 1404.0, + 619.0, + 1404.0, + 652.0, + 296.0, + 652.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 648.0, + 1405.0, + 648.0, + 1405.0, + 685.0, + 294.0, + 685.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 680.0, + 1405.0, + 680.0, + 1405.0, + 716.0, + 295.0, + 716.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 708.0, + 1404.0, + 708.0, + 1404.0, + 747.0, + 292.0, + 747.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": [ + 292.0, + 1753.0, + 778.0, + 1753.0, + 778.0, + 1798.0, + 292.0, + 1798.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 839.0, + 2085.0, + 862.0, + 2085.0, + 862.0, + 2120.0, + 839.0, + 2120.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 838.0, + 2085.0, + 862.0, + 2085.0, + 862.0, + 2120.0, + 838.0, + 2120.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1128.0, + 1203.0, + 1128.0, + 1203.0, + 1166.0, + 293.0, + 1166.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1224.0, + 1128.0, + 1406.0, + 1128.0, + 1406.0, + 1166.0, + 1224.0, + 1166.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1158.0, + 1408.0, + 1158.0, + 1408.0, + 1195.0, + 291.0, + 1195.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1191.0, + 1404.0, + 1191.0, + 1404.0, + 1225.0, + 294.0, + 1225.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1218.0, + 1405.0, + 1218.0, + 1405.0, + 1258.0, + 292.0, + 1258.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1252.0, + 1406.0, + 1252.0, + 1406.0, + 1286.0, + 294.0, + 1286.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1279.0, + 1314.0, + 1279.0, + 1314.0, + 1320.0, + 292.0, + 1320.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1335.0, + 1279.0, + 1405.0, + 1279.0, + 1405.0, + 1320.0, + 1335.0, + 1320.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1311.0, + 1404.0, + 1311.0, + 1404.0, + 1347.0, + 293.0, + 1347.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1342.0, + 1405.0, + 1342.0, + 1405.0, + 1377.0, + 293.0, + 1377.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1370.0, + 1406.0, + 1370.0, + 1406.0, + 1410.0, + 292.0, + 1410.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": [ + 294.0, + 1434.0, + 1405.0, + 1434.0, + 1405.0, + 1468.0, + 294.0, + 1468.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1466.0, + 1217.0, + 1466.0, + 1217.0, + 1500.0, + 294.0, + 1500.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1512.0, + 1405.0, + 1512.0, + 1405.0, + 1546.0, + 296.0, + 1546.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1543.0, + 1406.0, + 1543.0, + 1406.0, + 1576.0, + 293.0, + 1576.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1572.0, + 1405.0, + 1572.0, + 1405.0, + 1608.0, + 292.0, + 1608.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1606.0, + 1404.0, + 1606.0, + 1404.0, + 1637.0, + 294.0, + 1637.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1635.0, + 1404.0, + 1635.0, + 1404.0, + 1666.0, + 296.0, + 1666.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1661.0, + 1406.0, + 1661.0, + 1406.0, + 1701.0, + 292.0, + 1701.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1693.0, + 1267.0, + 1693.0, + 1267.0, + 1727.0, + 293.0, + 1727.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1818.0, + 1403.0, + 1818.0, + 1403.0, + 1858.0, + 294.0, + 1858.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1850.0, + 1405.0, + 1850.0, + 1405.0, + 1883.0, + 292.0, + 1883.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1883.0, + 1402.0, + 1883.0, + 1402.0, + 1914.0, + 294.0, + 1914.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1914.0, + 1403.0, + 1914.0, + 1403.0, + 1945.0, + 294.0, + 1945.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1942.0, + 1405.0, + 1942.0, + 1405.0, + 1977.0, + 294.0, + 1977.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1972.0, + 1404.0, + 1972.0, + 1404.0, + 2006.0, + 294.0, + 2006.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 2004.0, + 1405.0, + 2004.0, + 1405.0, + 2038.0, + 294.0, + 2038.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 370.0, + 801.0, + 1401.0, + 801.0, + 1401.0, + 833.0, + 370.0, + 833.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 832.0, + 1151.0, + 832.0, + 1151.0, + 867.0, + 394.0, + 867.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 369.0, + 937.0, + 858.0, + 937.0, + 858.0, + 974.0, + 369.0, + 974.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 882.0, + 937.0, + 1406.0, + 937.0, + 1406.0, + 974.0, + 882.0, + 974.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 395.0, + 970.0, + 1406.0, + 970.0, + 1406.0, + 1002.0, + 395.0, + 1002.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 396.0, + 1000.0, + 1270.0, + 1000.0, + 1270.0, + 1033.0, + 396.0, + 1033.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 368.0, + 1037.0, + 1404.0, + 1037.0, + 1404.0, + 1074.0, + 368.0, + 1074.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 1072.0, + 953.0, + 1072.0, + 953.0, + 1105.0, + 393.0, + 1105.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 1, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 297, + 1337, + 1404, + 1337, + 1404, + 1554, + 297, + 1554 + ], + "score": 0.982 + }, + { + "category_id": 1, + "poly": [ + 297, + 1568, + 1404, + 1568, + 1404, + 1752, + 297, + 1752 + ], + "score": 0.98 + }, + { + "category_id": 1, + "poly": [ + 297, + 1151, + 1404, + 1151, + 1404, + 1276, + 297, + 1276 + ], + "score": 0.975 + }, + { + "category_id": 1, + "poly": [ + 298, + 1042, + 1400, + 1042, + 1400, + 1136, + 298, + 1136 + ], + "score": 0.973 + }, + { + "category_id": 4, + "poly": [ + 296, + 603, + 1406, + 603, + 1406, + 851, + 296, + 851 + ], + "score": 0.969 + }, + { + "category_id": 3, + "poly": [ + 303, + 222, + 1408, + 222, + 1408, + 575, + 303, + 575 + ], + "score": 0.967 + }, + { + "category_id": 8, + "poly": [ + 639, + 1288, + 1060, + 1288, + 1060, + 1329, + 639, + 1329 + ], + "score": 0.945 + }, + { + "category_id": 1, + "poly": [ + 297, + 1971, + 1403, + 1971, + 1403, + 2036, + 297, + 2036 + ], + "score": 0.942 + }, + { + "category_id": 8, + "poly": [ + 731, + 954, + 969, + 954, + 969, + 1030, + 731, + 1030 + ], + "score": 0.933 + }, + { + "category_id": 1, + "poly": [ + 294, + 908, + 1262, + 908, + 1262, + 942, + 294, + 942 + ], + "score": 0.925 + }, + { + "category_id": 8, + "poly": [ + 578, + 1767, + 1120, + 1767, + 1120, + 1961, + 578, + 1961 + ], + "score": 0.92 + }, + { + "category_id": 2, + "poly": [ + 299, + 76, + 815, + 76, + 815, + 104, + 299, + 104 + ], + "score": 0.894 + }, + { + "category_id": 9, + "poly": [ + 1366, + 1293, + 1399, + 1293, + 1399, + 1322, + 1366, + 1322 + ], + "score": 0.887 + }, + { + "category_id": 9, + "poly": [ + 1367, + 998, + 1399, + 998, + 1399, + 1026, + 1367, + 1026 + ], + "score": 0.864 + }, + { + "category_id": 9, + "poly": [ + 1367, + 959, + 1399, + 959, + 1399, + 988, + 1367, + 988 + ], + "score": 0.834 + }, + { + "category_id": 2, + "poly": [ + 841, + 2088, + 858, + 2088, + 858, + 2112, + 841, + 2112 + ], + "score": 0.669 + }, + { + "category_id": 2, + "poly": [ + 841, + 2088, + 859, + 2088, + 859, + 2112, + 841, + 2112 + ], + "score": 0.412 + }, + { + "category_id": 14, + "poly": [ + 639, + 1288, + 1059, + 1288, + 1059, + 1328, + 639, + 1328 + ], + "score": 0.92, + "latex": "\\begin{array} { r } { m \\oslash n = Q ( \\frac { m } { n } ) = ( m + n / / 2 ) \\ / / n , } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 812, + 757, + 1115, + 757, + 1115, + 794, + 812, + 794 + ], + "score": 0.92, + "latex": "\\begin{array} { r } { g _ { \\mathrm { Q t a n h } } ( v ) = Q ( 7 \\operatorname { t a n h } ( \\frac { v } { 1 5 } ) ) } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 501, + 635, + 881, + 635, + 881, + 669, + 501, + 669 + ], + "score": 0.91, + "latex": "g _ { \\mathrm { Q R e L U } } ( v ) = \\mathrm { m a x } ( \\mathrm { m i n } ( v , 1 5 ) , 0 )" + }, + { + "category_id": 14, + "poly": [ + 727, + 952, + 969, + 952, + 969, + 1035, + 727, + 1035 + ], + "score": 0.91, + "latex": "\\begin{array} { r } { \\pmb { v } = ( \\pmb { H } \\pmb { u } + \\pmb { b } ) \\oslash \\pmb { c } , } \\\\ { \\pmb { w } = g ( \\pmb { v } ) . } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 855, + 697, + 928, + 697, + 928, + 728, + 855, + 728 + ], + "score": 0.91, + "latex": "\\beta = 4" + }, + { + "category_id": 14, + "poly": [ + 571, + 1763, + 1122, + 1763, + 1122, + 1963, + 571, + 1963 + ], + "score": 0.89, + "latex": "\\begin{array} { c } { { H : 8 \\mathrm { - b i t ~ s i g n e d ~ } } } \\\\ { { b , v : 3 2 \\mathrm { - b i t ~ s i g n e d ~ ( s a m e ~ a s ~ a c c u m u l a t o r ) } } } \\\\ { { c : 3 2 \\mathrm { - b i t ~ u n s i g n e d ~ } } } \\\\ { { w : 8 \\mathrm { - b i t ~ u n s i g n e d ~ } } } \\\\ { { g _ { \\mathrm { Q R e L U } } ( v ) = \\mathrm { m a x } ( \\mathrm { m i n } ( v , 2 5 5 ) , 0 ) } } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 1215, + 1249, + 1272, + 1249, + 1272, + 1275, + 1215, + 1275 + ], + "score": 0.88, + "latex": "m , n" + }, + { + "category_id": 13, + "poly": [ + 373, + 1341, + 398, + 1341, + 398, + 1371, + 373, + 1371 + ], + "score": 0.85, + "latex": "Q" + }, + { + "category_id": 13, + "poly": [ + 602, + 727, + 623, + 727, + 623, + 758, + 602, + 758 + ], + "score": 0.84, + "latex": "\\beta" + }, + { + "category_id": 13, + "poly": [ + 1322, + 1185, + 1348, + 1185, + 1348, + 1212, + 1322, + 1212 + ], + "score": 0.83, + "latex": "\\oslash" + }, + { + "category_id": 13, + "poly": [ + 897, + 916, + 918, + 916, + 918, + 937, + 897, + 937 + ], + "score": 0.8, + "latex": "\\textbf { \\em u }" + }, + { + "category_id": 13, + "poly": [ + 1066, + 1110, + 1085, + 1110, + 1085, + 1137, + 1066, + 1137 + ], + "score": 0.79, + "latex": "g" + }, + { + "category_id": 13, + "poly": [ + 776, + 1339, + 797, + 1339, + 797, + 1373, + 776, + 1373 + ], + "score": 0.79, + "latex": "/ /" + }, + { + "category_id": 14, + "poly": [ + 577, + 1922, + 968, + 1922, + 968, + 1960, + 577, + 1960 + ], + "score": 0.78, + "latex": "g _ { \\mathrm { Q R e L U } } ( v ) = \\operatorname* { m a x } ( \\operatorname* { m i n } ( v , 2 5 5 ) , 0 )" + }, + { + "category_id": 13, + "poly": [ + 1059, + 916, + 1084, + 916, + 1084, + 937, + 1059, + 937 + ], + "score": 0.78, + "latex": "\\pmb { w }" + }, + { + "category_id": 13, + "poly": [ + 1230, + 1111, + 1249, + 1111, + 1249, + 1132, + 1230, + 1132 + ], + "score": 0.78, + "latex": "\\pmb { v }" + }, + { + "category_id": 13, + "poly": [ + 1029, + 1188, + 1049, + 1188, + 1049, + 1210, + 1029, + 1210 + ], + "score": 0.77, + "latex": "\\pmb { v }" + }, + { + "category_id": 13, + "poly": [ + 642, + 1576, + 661, + 1576, + 661, + 1602, + 642, + 1602 + ], + "score": 0.77, + "latex": "g" + }, + { + "category_id": 13, + "poly": [ + 587, + 1111, + 606, + 1111, + 606, + 1132, + 587, + 1132 + ], + "score": 0.77, + "latex": "\\textbf { { v } }" + }, + { + "category_id": 13, + "poly": [ + 964, + 1044, + 998, + 1044, + 998, + 1072, + 964, + 1072 + ], + "score": 0.76, + "latex": "\\pmb { H }" + }, + { + "category_id": 13, + "poly": [ + 529, + 1050, + 551, + 1050, + 551, + 1071, + 529, + 1071 + ], + "score": 0.76, + "latex": "\\textbf { \\em u }" + }, + { + "category_id": 13, + "poly": [ + 574, + 1076, + 593, + 1076, + 593, + 1102, + 574, + 1102 + ], + "score": 0.76, + "latex": "^ { b }" + }, + { + "category_id": 13, + "poly": [ + 473, + 1157, + 500, + 1157, + 500, + 1179, + 473, + 1179 + ], + "score": 0.75, + "latex": "\\textbf { \\em w }" + }, + { + "category_id": 13, + "poly": [ + 1098, + 1371, + 1131, + 1371, + 1131, + 1398, + 1098, + 1398 + ], + "score": 0.75, + "latex": "\\pmb { H }" + }, + { + "category_id": 13, + "poly": [ + 1219, + 1158, + 1238, + 1158, + 1238, + 1179, + 1219, + 1179 + ], + "score": 0.75, + "latex": "^ c" + }, + { + "category_id": 13, + "poly": [ + 1102, + 1498, + 1121, + 1498, + 1121, + 1519, + 1102, + 1519 + ], + "score": 0.72, + "latex": "\\pmb { v }" + }, + { + "category_id": 13, + "poly": [ + 392, + 1372, + 410, + 1372, + 410, + 1397, + 392, + 1397 + ], + "score": 0.71, + "latex": "^ { b }" + }, + { + "category_id": 13, + "poly": [ + 886, + 1406, + 904, + 1406, + 904, + 1428, + 886, + 1428 + ], + "score": 0.7, + "latex": "^ c" + }, + { + "category_id": 13, + "poly": [ + 1354, + 1371, + 1372, + 1371, + 1372, + 1397, + 1354, + 1397 + ], + "score": 0.7, + "latex": "^ { b }" + }, + { + "category_id": 13, + "poly": [ + 1238, + 1081, + 1256, + 1081, + 1256, + 1102, + 1238, + 1102 + ], + "score": 0.69, + "latex": "^ c" + }, + { + "category_id": 13, + "poly": [ + 1057, + 1634, + 1083, + 1634, + 1083, + 1658, + 1057, + 1658 + ], + "score": 0.67, + "latex": "\\pmb { w }" + }, + { + "category_id": 13, + "poly": [ + 1316, + 1666, + 1343, + 1666, + 1343, + 1689, + 1316, + 1689 + ], + "score": 0.63, + "latex": "\\textbf { \\em w }" + }, + { + "category_id": 13, + "poly": [ + 1101, + 1152, + 1163, + 1152, + 1163, + 1182, + 1101, + 1182 + ], + "score": 0.52, + "latex": "H , b" + }, + { + "category_id": 13, + "poly": [ + 667, + 1887, + 732, + 1887, + 732, + 1914, + 667, + 1914 + ], + "score": 0.45, + "latex": "w : 8" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 603.0, + 1406.0, + 603.0, + 1406.0, + 642.0, + 293.0, + 642.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 635.0, + 500.0, + 635.0, + 500.0, + 673.0, + 295.0, + 673.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 882.0, + 635.0, + 1406.0, + 635.0, + 1406.0, + 673.0, + 882.0, + 673.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 667.0, + 1406.0, + 667.0, + 1406.0, + 704.0, + 293.0, + 704.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 697.0, + 854.0, + 697.0, + 854.0, + 731.0, + 294.0, + 731.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 929.0, + 697.0, + 1403.0, + 697.0, + 1403.0, + 731.0, + 929.0, + 731.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 725.0, + 601.0, + 725.0, + 601.0, + 763.0, + 293.0, + 763.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 624.0, + 725.0, + 1406.0, + 725.0, + 1406.0, + 763.0, + 624.0, + 763.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 755.0, + 811.0, + 755.0, + 811.0, + 796.0, + 293.0, + 796.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1116.0, + 755.0, + 1407.0, + 755.0, + 1407.0, + 796.0, + 1116.0, + 796.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 787.0, + 1407.0, + 787.0, + 1407.0, + 825.0, + 295.0, + 825.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 816.0, + 830.0, + 816.0, + 830.0, + 856.0, + 293.0, + 856.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 342.0, + 222.0, + 412.0, + 222.0, + 412.0, + 267.0, + 342.0, + 267.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 922.0, + 225.0, + 971.0, + 225.0, + 971.0, + 265.0, + 922.0, + 265.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1240.0, + 279.0, + 1250.0, + 279.0, + 1250.0, + 290.0, + 1240.0, + 290.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 308.0, + 391.0, + 308.0, + 391.0, + 432.0, + 297.0, + 432.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 854.0, + 319.0, + 900.0, + 319.0, + 900.0, + 424.0, + 854.0, + 424.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 921.0, + 296.0, + 955.0, + 296.0, + 955.0, + 389.0, + 921.0, + 389.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 358.0, + 395.0, + 390.0, + 395.0, + 390.0, + 431.0, + 358.0, + 431.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 550.0, + 420.0, + 564.0, + 420.0, + 564.0, + 437.0, + 550.0, + 437.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 906.0, + 404.0, + 953.0, + 404.0, + 953.0, + 445.0, + 906.0, + 445.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1088.0, + 467.0, + 1104.0, + 467.0, + 1104.0, + 485.0, + 1088.0, + 485.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 361.0, + 483.0, + 387.0, + 483.0, + 387.0, + 510.0, + 361.0, + 510.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 395.0, + 490.0, + 411.0, + 490.0, + 411.0, + 505.0, + 395.0, + 505.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 480.0, + 486.0, + 497.0, + 486.0, + 497.0, + 504.0, + 480.0, + 504.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 904.0, + 477.0, + 956.0, + 477.0, + 956.0, + 514.0, + 904.0, + 514.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 386.0, + 512.0, + 429.0, + 512.0, + 429.0, + 548.0, + 386.0, + 548.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 475.0, + 516.0, + 502.0, + 516.0, + 502.0, + 545.0, + 475.0, + 545.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 561.0, + 514.0, + 586.0, + 514.0, + 586.0, + 546.0, + 561.0, + 546.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 637.0, + 510.0, + 681.0, + 510.0, + 681.0, + 550.0, + 637.0, + 550.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 721.0, + 510.0, + 765.0, + 510.0, + 765.0, + 550.0, + 721.0, + 550.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 807.0, + 512.0, + 849.0, + 512.0, + 849.0, + 548.0, + 807.0, + 548.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 938.0, + 509.0, + 1001.0, + 509.0, + 1001.0, + 550.0, + 938.0, + 550.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1044.0, + 509.0, + 1108.0, + 509.0, + 1108.0, + 550.0, + 1044.0, + 550.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1166.0, + 513.0, + 1194.0, + 513.0, + 1194.0, + 549.0, + 1166.0, + 549.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1262.0, + 509.0, + 1309.0, + 509.0, + 1309.0, + 550.0, + 1262.0, + 550.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1370.0, + 509.0, + 1414.0, + 509.0, + 1414.0, + 549.0, + 1370.0, + 549.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 603.0, + 550.0, + 630.0, + 550.0, + 630.0, + 579.0, + 603.0, + 579.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1167.0, + 552.0, + 1193.0, + 552.0, + 1193.0, + 580.0, + 1167.0, + 580.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 722.0, + 252.0, + 726.0, + 252.0, + 726.0, + 276.0, + 722.0, + 276.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 704.75, + 270.5, + 710.75, + 270.5, + 710.75, + 294.0, + 704.75, + 294.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 556.25, + 412.0, + 584.25, + 412.0, + 584.25, + 420.5, + 556.25, + 420.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1097.0, + 365.0, + 1256.0, + 365.0, + 1256.0, + 386.5, + 1097.0, + 386.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 485.25, + 454.5, + 555.25, + 454.5, + 555.25, + 471.5, + 485.25, + 471.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": [ + 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, + 1339.0, + 372.0, + 1339.0, + 372.0, + 1374.0, + 296.0, + 1374.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 399.0, + 1339.0, + 775.0, + 1339.0, + 775.0, + 1374.0, + 399.0, + 1374.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 798.0, + 1339.0, + 1406.0, + 1339.0, + 1406.0, + 1374.0, + 798.0, + 1374.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1371.0, + 391.0, + 1371.0, + 391.0, + 1402.0, + 296.0, + 1402.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 411.0, + 1371.0, + 1097.0, + 1371.0, + 1097.0, + 1402.0, + 411.0, + 1402.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1132.0, + 1371.0, + 1353.0, + 1371.0, + 1353.0, + 1402.0, + 1132.0, + 1402.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1373.0, + 1371.0, + 1404.0, + 1371.0, + 1404.0, + 1402.0, + 1373.0, + 1402.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1401.0, + 885.0, + 1401.0, + 885.0, + 1436.0, + 294.0, + 1436.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 905.0, + 1401.0, + 1404.0, + 1401.0, + 1404.0, + 1436.0, + 905.0, + 1436.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1428.0, + 1407.0, + 1428.0, + 1407.0, + 1468.0, + 291.0, + 1468.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1462.0, + 1404.0, + 1462.0, + 1404.0, + 1496.0, + 294.0, + 1496.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1490.0, + 1101.0, + 1490.0, + 1101.0, + 1526.0, + 292.0, + 1526.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1122.0, + 1490.0, + 1404.0, + 1490.0, + 1404.0, + 1526.0, + 1122.0, + 1526.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1524.0, + 530.0, + 1524.0, + 530.0, + 1554.0, + 295.0, + 1554.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1569.0, + 641.0, + 1569.0, + 641.0, + 1604.0, + 295.0, + 1604.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 662.0, + 1569.0, + 1405.0, + 1569.0, + 1405.0, + 1604.0, + 662.0, + 1604.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1599.0, + 1406.0, + 1599.0, + 1406.0, + 1635.0, + 295.0, + 1635.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1631.0, + 1056.0, + 1631.0, + 1056.0, + 1663.0, + 296.0, + 1663.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1084.0, + 1631.0, + 1405.0, + 1631.0, + 1405.0, + 1663.0, + 1084.0, + 1663.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1659.0, + 1315.0, + 1659.0, + 1315.0, + 1697.0, + 292.0, + 1697.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1344.0, + 1659.0, + 1404.0, + 1659.0, + 1404.0, + 1697.0, + 1344.0, + 1697.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1690.0, + 1406.0, + 1690.0, + 1406.0, + 1725.0, + 292.0, + 1725.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1724.0, + 552.0, + 1724.0, + 552.0, + 1754.0, + 293.0, + 1754.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1151.0, + 472.0, + 1151.0, + 472.0, + 1184.0, + 296.0, + 1184.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 501.0, + 1151.0, + 1100.0, + 1151.0, + 1100.0, + 1184.0, + 501.0, + 1184.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1164.0, + 1151.0, + 1218.0, + 1151.0, + 1218.0, + 1184.0, + 1164.0, + 1184.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1239.0, + 1151.0, + 1405.0, + 1151.0, + 1405.0, + 1184.0, + 1239.0, + 1184.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1183.0, + 1028.0, + 1183.0, + 1028.0, + 1216.0, + 294.0, + 1216.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1050.0, + 1183.0, + 1321.0, + 1183.0, + 1321.0, + 1216.0, + 1050.0, + 1216.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1349.0, + 1183.0, + 1405.0, + 1183.0, + 1405.0, + 1216.0, + 1349.0, + 1216.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1214.0, + 1404.0, + 1214.0, + 1404.0, + 1246.0, + 294.0, + 1246.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1244.0, + 1214.0, + 1244.0, + 1214.0, + 1279.0, + 292.0, + 1279.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1273.0, + 1244.0, + 1308.0, + 1244.0, + 1308.0, + 1279.0, + 1273.0, + 1279.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1042.0, + 528.0, + 1042.0, + 528.0, + 1078.0, + 294.0, + 1078.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 552.0, + 1042.0, + 963.0, + 1042.0, + 963.0, + 1078.0, + 552.0, + 1078.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 999.0, + 1042.0, + 1402.0, + 1042.0, + 1402.0, + 1078.0, + 999.0, + 1078.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1073.0, + 573.0, + 1073.0, + 573.0, + 1110.0, + 294.0, + 1110.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 594.0, + 1073.0, + 1237.0, + 1073.0, + 1237.0, + 1110.0, + 594.0, + 1110.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1257.0, + 1073.0, + 1404.0, + 1073.0, + 1404.0, + 1110.0, + 1257.0, + 1110.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1104.0, + 586.0, + 1104.0, + 586.0, + 1141.0, + 293.0, + 1141.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 607.0, + 1104.0, + 1065.0, + 1104.0, + 1065.0, + 1141.0, + 607.0, + 1141.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1086.0, + 1104.0, + 1229.0, + 1104.0, + 1229.0, + 1141.0, + 1086.0, + 1141.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1250.0, + 1104.0, + 1263.0, + 1104.0, + 1263.0, + 1141.0, + 1250.0, + 1141.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1971.0, + 1405.0, + 1971.0, + 1405.0, + 2007.0, + 295.0, + 2007.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 2002.0, + 1405.0, + 2002.0, + 1405.0, + 2038.0, + 296.0, + 2038.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 905.0, + 896.0, + 905.0, + 896.0, + 947.0, + 294.0, + 947.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 919.0, + 905.0, + 1058.0, + 905.0, + 1058.0, + 947.0, + 919.0, + 947.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1085.0, + 905.0, + 1266.0, + 905.0, + 1266.0, + 947.0, + 1085.0, + 947.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 2, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 297, + 492, + 1406, + 492, + 1406, + 830, + 297, + 830 + ], + "score": 0.983 + }, + { + "category_id": 1, + "poly": [ + 298, + 1771, + 1404, + 1771, + 1404, + 1927, + 298, + 1927 + ], + "score": 0.978 + }, + { + "category_id": 1, + "poly": [ + 297, + 924, + 1403, + 924, + 1403, + 1049, + 297, + 1049 + ], + "score": 0.976 + }, + { + "category_id": 1, + "poly": [ + 297, + 1485, + 1404, + 1485, + 1404, + 1610, + 297, + 1610 + ], + "score": 0.976 + }, + { + "category_id": 1, + "poly": [ + 299, + 1941, + 1403, + 1941, + 1403, + 2035, + 299, + 2035 + ], + "score": 0.974 + }, + { + "category_id": 1, + "poly": [ + 297, + 1295, + 1403, + 1295, + 1403, + 1390, + 297, + 1390 + ], + "score": 0.972 + }, + { + "category_id": 8, + "poly": [ + 654, + 1407, + 1042, + 1407, + 1042, + 1471, + 654, + 1471 + ], + "score": 0.955 + }, + { + "category_id": 8, + "poly": [ + 499, + 1698, + 1199, + 1698, + 1199, + 1756, + 499, + 1756 + ], + "score": 0.952 + }, + { + "category_id": 1, + "poly": [ + 297, + 1621, + 1401, + 1621, + 1401, + 1686, + 297, + 1686 + ], + "score": 0.946 + }, + { + "category_id": 0, + "poly": [ + 300, + 862, + 928, + 862, + 928, + 897, + 300, + 897 + ], + "score": 0.936 + }, + { + "category_id": 1, + "poly": [ + 300, + 230, + 524, + 230, + 524, + 262, + 300, + 262 + ], + "score": 0.925 + }, + { + "category_id": 8, + "poly": [ + 703, + 1063, + 994, + 1063, + 994, + 1191, + 703, + 1191 + ], + "score": 0.914 + }, + { + "category_id": 8, + "poly": [ + 717, + 1194, + 889, + 1194, + 889, + 1233, + 717, + 1233 + ], + "score": 0.909 + }, + { + "category_id": 8, + "poly": [ + 584, + 279, + 1114, + 279, + 1114, + 480, + 584, + 480 + ], + "score": 0.905 + }, + { + "category_id": 2, + "poly": [ + 298, + 74, + 816, + 74, + 816, + 105, + 298, + 105 + ], + "score": 0.904 + }, + { + "category_id": 8, + "poly": [ + 717, + 1239, + 924, + 1239, + 924, + 1280, + 717, + 1280 + ], + "score": 0.897 + }, + { + "category_id": 9, + "poly": [ + 1366, + 1427, + 1400, + 1427, + 1400, + 1456, + 1366, + 1456 + ], + "score": 0.893 + }, + { + "category_id": 9, + "poly": [ + 1366, + 1113, + 1400, + 1113, + 1400, + 1143, + 1366, + 1143 + ], + "score": 0.877 + }, + { + "category_id": 9, + "poly": [ + 1366, + 1200, + 1400, + 1200, + 1400, + 1229, + 1366, + 1229 + ], + "score": 0.873 + }, + { + "category_id": 9, + "poly": [ + 1366, + 1245, + 1400, + 1245, + 1400, + 1275, + 1366, + 1275 + ], + "score": 0.867 + }, + { + "category_id": 9, + "poly": [ + 1366, + 1711, + 1399, + 1711, + 1399, + 1741, + 1366, + 1741 + ], + "score": 0.866 + }, + { + "category_id": 2, + "poly": [ + 841, + 2089, + 858, + 2089, + 858, + 2111, + 841, + 2111 + ], + "score": 0.771 + }, + { + "category_id": 8, + "poly": [ + 587, + 437, + 895, + 437, + 895, + 479, + 587, + 479 + ], + "score": 0.238 + }, + { + "category_id": 8, + "poly": [ + 771, + 1147, + 973, + 1147, + 973, + 1190, + 771, + 1190 + ], + "score": 0.138 + }, + { + "category_id": 14, + "poly": [ + 700, + 1064, + 995, + 1064, + 995, + 1286, + 700, + 1286 + ], + "score": 0.94, + "latex": "\\begin{array} { r l } & { \\boldsymbol { H } = \\left[ \\begin{array} { c } { Q ( h _ { 1 } ^ { \\prime } / s ( h _ { 1 } ^ { \\prime } ) ) ) } \\\\ { \\vdots } \\\\ { Q ( h _ { N } ^ { \\prime } / s ( h _ { N } ^ { \\prime } ) ) } \\end{array} \\right] , } \\\\ & { ~ b = Q \\big ( 2 ^ { K } b ^ { \\prime } \\big ) , } \\\\ & { \\boldsymbol { c } = Q \\big ( 2 ^ { K } r ( \\boldsymbol { c } ^ { \\prime } ) \\big ) . } \\end{array}" + }, + { + "category_id": 14, + "poly": [ + 654, + 1405, + 1047, + 1405, + 1047, + 1471, + 654, + 1471 + ], + "score": 0.94, + "latex": "r ( c ^ { \\prime } ) = \\mathrm { m a x } \\Big ( c ^ { \\prime } , \\sqrt { 1 + \\epsilon ^ { 2 } } \\Big ) ^ { 2 } - \\epsilon ^ { 2 } ." + }, + { + "category_id": 13, + "poly": [ + 826, + 1620, + 1071, + 1620, + 1071, + 1659, + 826, + 1659 + ], + "score": 0.92, + "latex": "\\pmb { H } ^ { \\prime } = [ h _ { 1 } ^ { \\prime } , \\ldots , h _ { N } ^ { \\prime } ] ^ { \\top }" + }, + { + "category_id": 14, + "poly": [ + 500, + 1695, + 1199, + 1695, + 1199, + 1757, + 500, + 1757 + ], + "score": 0.92, + "latex": "s ( h ^ { \\prime } ) = \\mathrm { m a x } \\Big ( ( - 2 ^ { K - 1 } ) ^ { - 1 } \\operatorname* { m i n } _ { i } h _ { i } ^ { \\prime } , ( 2 ^ { K - 1 } - 1 ) ^ { - 1 } \\operatorname* { m a x } _ { i } h _ { i } ^ { \\prime } , \\epsilon \\Big ) ." + }, + { + "category_id": 14, + "poly": [ + 585, + 437, + 897, + 437, + 897, + 480, + 585, + 480 + ], + "score": 0.91, + "latex": "\\begin{array} { r } { g _ { \\mathrm { Q t a n h } } ( v ) = Q \\bigl ( 7 \\operatorname { t a n h } ( \\frac { v } { 1 5 } ) \\bigr ) } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 405, + 1892, + 523, + 1892, + 523, + 1923, + 405, + 1923 + ], + "score": 0.9, + "latex": "\\epsilon = 1 0 ^ { - \\tilde { 2 } 0 }" + }, + { + "category_id": 13, + "poly": [ + 559, + 1801, + 648, + 1801, + 648, + 1834, + 559, + 1834 + ], + "score": 0.89, + "latex": "( - 2 ^ { K - 1 }" + }, + { + "category_id": 13, + "poly": [ + 698, + 1802, + 807, + 1802, + 807, + 1834, + 698, + 1834 + ], + "score": 0.89, + "latex": "2 ^ { K - 1 } - 1 )" + }, + { + "category_id": 13, + "poly": [ + 636, + 1655, + 664, + 1655, + 664, + 1682, + 636, + 1682 + ], + "score": 0.87, + "latex": "\\mathbf { { } } h ^ { \\prime }" + }, + { + "category_id": 13, + "poly": [ + 754, + 1298, + 779, + 1298, + 779, + 1326, + 754, + 1326 + ], + "score": 0.86, + "latex": "\\pmb { b } ^ { \\prime }" + }, + { + "category_id": 13, + "poly": [ + 969, + 1299, + 997, + 1299, + 997, + 1325, + 969, + 1325 + ], + "score": 0.84, + "latex": "K" + }, + { + "category_id": 13, + "poly": [ + 801, + 1974, + 824, + 1974, + 824, + 2000, + 801, + 2000 + ], + "score": 0.84, + "latex": "c ^ { \\prime }" + }, + { + "category_id": 13, + "poly": [ + 1160, + 1974, + 1187, + 1974, + 1187, + 2005, + 1160, + 2005 + ], + "score": 0.84, + "latex": "Q" + }, + { + "category_id": 13, + "poly": [ + 1014, + 1016, + 1038, + 1016, + 1038, + 1044, + 1014, + 1044 + ], + "score": 0.84, + "latex": "c ^ { \\prime }" + }, + { + "category_id": 13, + "poly": [ + 660, + 399, + 724, + 399, + 724, + 427, + 660, + 427 + ], + "score": 0.8, + "latex": "\\pmb { w } : 4" + }, + { + "category_id": 13, + "poly": [ + 795, + 559, + 821, + 559, + 821, + 582, + 795, + 582 + ], + "score": 0.77, + "latex": "\\pmb { w }" + }, + { + "category_id": 13, + "poly": [ + 401, + 1365, + 418, + 1365, + 418, + 1386, + 401, + 1386 + ], + "score": 0.75, + "latex": "r" + }, + { + "category_id": 13, + "poly": [ + 397, + 1662, + 413, + 1662, + 413, + 1682, + 397, + 1682 + ], + "score": 0.74, + "latex": "s" + }, + { + "category_id": 13, + "poly": [ + 1335, + 1871, + 1350, + 1871, + 1350, + 1892, + 1335, + 1892 + ], + "score": 0.72, + "latex": "\\epsilon" + }, + { + "category_id": 13, + "poly": [ + 1067, + 1523, + 1084, + 1523, + 1084, + 1544, + 1067, + 1544 + ], + "score": 0.71, + "latex": "r" + }, + { + "category_id": 13, + "poly": [ + 298, + 1329, + 331, + 1329, + 331, + 1357, + 298, + 1357 + ], + "score": 0.71, + "latex": "\\pmb { H }" + }, + { + "category_id": 13, + "poly": [ + 298, + 1781, + 314, + 1781, + 314, + 1801, + 298, + 1801 + ], + "score": 0.7, + "latex": "s" + }, + { + "category_id": 13, + "poly": [ + 345, + 1021, + 363, + 1021, + 363, + 1044, + 345, + 1044 + ], + "score": 0.69, + "latex": "^ c" + }, + { + "category_id": 13, + "poly": [ + 555, + 651, + 574, + 651, + 574, + 673, + 555, + 673 + ], + "score": 0.69, + "latex": "\\pmb { v }" + }, + { + "category_id": 13, + "poly": [ + 1341, + 1523, + 1359, + 1523, + 1359, + 1544, + 1341, + 1544 + ], + "score": 0.69, + "latex": "^ c" + }, + { + "category_id": 13, + "poly": [ + 682, + 590, + 702, + 590, + 702, + 612, + 682, + 612 + ], + "score": 0.68, + "latex": "\\pmb { v }" + }, + { + "category_id": 13, + "poly": [ + 372, + 1493, + 391, + 1493, + 391, + 1514, + 372, + 1514 + ], + "score": 0.68, + "latex": "^ c" + }, + { + "category_id": 13, + "poly": [ + 434, + 1584, + 452, + 1584, + 452, + 1605, + 434, + 1605 + ], + "score": 0.68, + "latex": "^ c" + }, + { + "category_id": 13, + "poly": [ + 683, + 1492, + 702, + 1492, + 702, + 1514, + 683, + 1514 + ], + "score": 0.65, + "latex": "^ c" + }, + { + "category_id": 13, + "poly": [ + 1086, + 1583, + 1105, + 1583, + 1105, + 1606, + 1086, + 1606 + ], + "score": 0.65, + "latex": "^ c" + }, + { + "category_id": 13, + "poly": [ + 1090, + 1553, + 1108, + 1553, + 1108, + 1574, + 1090, + 1574 + ], + "score": 0.6, + "latex": "^ c" + }, + { + "category_id": 13, + "poly": [ + 1333, + 987, + 1364, + 987, + 1364, + 1014, + 1333, + 1014 + ], + "score": 0.58, + "latex": "\\pmb { H }" + }, + { + "category_id": 13, + "poly": [ + 640, + 320, + 738, + 320, + 738, + 353, + 640, + 353 + ], + "score": 0.57, + "latex": "b , v : 1 6" + }, + { + "category_id": 13, + "poly": [ + 1006, + 589, + 1033, + 589, + 1033, + 612, + 1006, + 612 + ], + "score": 0.5, + "latex": "\\pmb { w }" + }, + { + "category_id": 13, + "poly": [ + 930, + 1016, + 955, + 1016, + 955, + 1045, + 930, + 1045 + ], + "score": 0.47, + "latex": "\\pmb { b } ^ { \\prime }" + }, + { + "category_id": 13, + "poly": [ + 674, + 1973, + 713, + 1973, + 713, + 2001, + 674, + 2001 + ], + "score": 0.47, + "latex": "H ^ { \\prime }" + }, + { + "category_id": 13, + "poly": [ + 881, + 1016, + 956, + 1016, + 956, + 1047, + 881, + 1047 + ], + "score": 0.46, + "latex": "H ^ { \\prime } , b ^ { \\prime }" + }, + { + "category_id": 13, + "poly": [ + 1377, + 988, + 1394, + 988, + 1394, + 1013, + 1377, + 1013 + ], + "score": 0.42, + "latex": "^ { b }" + }, + { + "category_id": 13, + "poly": [ + 1374, + 589, + 1401, + 589, + 1401, + 613, + 1374, + 613 + ], + "score": 0.42, + "latex": "\\pmb { w }" + }, + { + "category_id": 13, + "poly": [ + 728, + 1973, + 753, + 1973, + 753, + 2001, + 728, + 2001 + ], + "score": 0.41, + "latex": "\\pmb { b } ^ { \\prime }" + }, + { + "category_id": 13, + "poly": [ + 1332, + 986, + 1397, + 986, + 1397, + 1016, + 1332, + 1016 + ], + "score": 0.27, + "latex": "H , b ," + }, + { + "category_id": 15, + "poly": [ + 291.0, + 858.0, + 930.0, + 858.0, + 930.0, + 907.0, + 291.0, + 907.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 72.0, + 818.0, + 72.0, + 818.0, + 108.0, + 296.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 838.0, + 2086.0, + 862.0, + 2086.0, + 862.0, + 2118.0, + 838.0, + 2118.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 492.0, + 1406.0, + 492.0, + 1406.0, + 530.0, + 294.0, + 530.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 524.0, + 1406.0, + 524.0, + 1406.0, + 559.0, + 294.0, + 559.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 554.0, + 794.0, + 554.0, + 794.0, + 589.0, + 295.0, + 589.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 822.0, + 554.0, + 1406.0, + 554.0, + 1406.0, + 589.0, + 822.0, + 589.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 586.0, + 681.0, + 586.0, + 681.0, + 617.0, + 295.0, + 617.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 703.0, + 586.0, + 1005.0, + 586.0, + 1005.0, + 617.0, + 703.0, + 617.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1034.0, + 586.0, + 1373.0, + 586.0, + 1373.0, + 617.0, + 1034.0, + 617.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 611.0, + 1406.0, + 611.0, + 1406.0, + 654.0, + 292.0, + 654.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 646.0, + 554.0, + 646.0, + 554.0, + 681.0, + 294.0, + 681.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 575.0, + 646.0, + 1404.0, + 646.0, + 1404.0, + 681.0, + 575.0, + 681.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 673.0, + 1404.0, + 673.0, + 1404.0, + 711.0, + 295.0, + 711.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 706.0, + 1403.0, + 706.0, + 1403.0, + 742.0, + 294.0, + 742.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 737.0, + 1404.0, + 737.0, + 1404.0, + 772.0, + 294.0, + 772.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 767.0, + 1406.0, + 767.0, + 1406.0, + 805.0, + 294.0, + 805.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 798.0, + 454.0, + 798.0, + 454.0, + 834.0, + 294.0, + 834.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1773.0, + 297.0, + 1773.0, + 297.0, + 1806.0, + 294.0, + 1806.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 315.0, + 1773.0, + 1405.0, + 1773.0, + 1405.0, + 1806.0, + 315.0, + 1806.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1794.0, + 558.0, + 1794.0, + 558.0, + 1840.0, + 292.0, + 1840.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 649.0, + 1794.0, + 697.0, + 1794.0, + 697.0, + 1840.0, + 649.0, + 1840.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 808.0, + 1794.0, + 1408.0, + 1794.0, + 1408.0, + 1840.0, + 808.0, + 1840.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1834.0, + 1406.0, + 1834.0, + 1406.0, + 1869.0, + 293.0, + 1869.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1862.0, + 1334.0, + 1862.0, + 1334.0, + 1901.0, + 292.0, + 1901.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1351.0, + 1862.0, + 1407.0, + 1862.0, + 1407.0, + 1901.0, + 1351.0, + 1901.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1889.0, + 404.0, + 1889.0, + 404.0, + 1929.0, + 292.0, + 1929.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 524.0, + 1889.0, + 545.0, + 1889.0, + 545.0, + 1929.0, + 524.0, + 1929.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 923.0, + 1407.0, + 923.0, + 1407.0, + 961.0, + 292.0, + 961.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 957.0, + 1405.0, + 957.0, + 1405.0, + 990.0, + 295.0, + 990.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 985.0, + 1331.0, + 985.0, + 1331.0, + 1022.0, + 292.0, + 1022.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1398.0, + 985.0, + 1407.0, + 985.0, + 1407.0, + 1022.0, + 1398.0, + 1022.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1013.0, + 344.0, + 1013.0, + 344.0, + 1053.0, + 292.0, + 1053.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 364.0, + 1013.0, + 880.0, + 1013.0, + 880.0, + 1053.0, + 364.0, + 1053.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 957.0, + 1013.0, + 1013.0, + 1013.0, + 1013.0, + 1053.0, + 957.0, + 1053.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1039.0, + 1013.0, + 1198.0, + 1013.0, + 1198.0, + 1053.0, + 1039.0, + 1053.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1484.0, + 371.0, + 1484.0, + 371.0, + 1521.0, + 295.0, + 1521.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 392.0, + 1484.0, + 682.0, + 1484.0, + 682.0, + 1521.0, + 392.0, + 1521.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 703.0, + 1484.0, + 1406.0, + 1484.0, + 1406.0, + 1521.0, + 703.0, + 1521.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1516.0, + 1066.0, + 1516.0, + 1066.0, + 1552.0, + 294.0, + 1552.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1085.0, + 1516.0, + 1340.0, + 1516.0, + 1340.0, + 1552.0, + 1085.0, + 1552.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1360.0, + 1516.0, + 1407.0, + 1516.0, + 1407.0, + 1552.0, + 1360.0, + 1552.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1547.0, + 1089.0, + 1547.0, + 1089.0, + 1580.0, + 295.0, + 1580.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1109.0, + 1547.0, + 1404.0, + 1547.0, + 1404.0, + 1580.0, + 1109.0, + 1580.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1578.0, + 433.0, + 1578.0, + 433.0, + 1612.0, + 292.0, + 1612.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 453.0, + 1578.0, + 1085.0, + 1578.0, + 1085.0, + 1612.0, + 453.0, + 1612.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1106.0, + 1578.0, + 1268.0, + 1578.0, + 1268.0, + 1612.0, + 1106.0, + 1612.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1941.0, + 1408.0, + 1941.0, + 1408.0, + 1977.0, + 293.0, + 1977.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1975.0, + 673.0, + 1975.0, + 673.0, + 2005.0, + 297.0, + 2005.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 714.0, + 1975.0, + 727.0, + 1975.0, + 727.0, + 2005.0, + 714.0, + 2005.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 754.0, + 1975.0, + 800.0, + 1975.0, + 800.0, + 2005.0, + 754.0, + 2005.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 825.0, + 1975.0, + 1159.0, + 1975.0, + 1159.0, + 2005.0, + 825.0, + 2005.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1188.0, + 1975.0, + 1404.0, + 1975.0, + 1404.0, + 2005.0, + 1188.0, + 2005.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 2004.0, + 1404.0, + 2004.0, + 1404.0, + 2038.0, + 297.0, + 2038.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1296.0, + 753.0, + 1296.0, + 753.0, + 1330.0, + 295.0, + 1330.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 780.0, + 1296.0, + 968.0, + 1296.0, + 968.0, + 1330.0, + 780.0, + 1330.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 998.0, + 1296.0, + 1404.0, + 1296.0, + 1404.0, + 1330.0, + 998.0, + 1330.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 332.0, + 1327.0, + 1405.0, + 1327.0, + 1405.0, + 1363.0, + 332.0, + 1363.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1358.0, + 400.0, + 1358.0, + 400.0, + 1392.0, + 293.0, + 1392.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 419.0, + 1358.0, + 774.0, + 1358.0, + 774.0, + 1392.0, + 419.0, + 1392.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1616.0, + 825.0, + 1616.0, + 825.0, + 1664.0, + 292.0, + 1664.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1072.0, + 1616.0, + 1407.0, + 1616.0, + 1407.0, + 1664.0, + 1072.0, + 1664.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1651.0, + 396.0, + 1651.0, + 396.0, + 1687.0, + 295.0, + 1687.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 414.0, + 1651.0, + 635.0, + 1651.0, + 635.0, + 1687.0, + 414.0, + 1687.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 665.0, + 1651.0, + 677.0, + 1651.0, + 677.0, + 1687.0, + 665.0, + 1687.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 225.0, + 530.0, + 225.0, + 530.0, + 267.0, + 295.0, + 267.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 3, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 296, + 583, + 1404, + 583, + 1404, + 799, + 296, + 799 + ], + "score": 0.984 + }, + { + "category_id": 1, + "poly": [ + 297, + 873, + 1405, + 873, + 1405, + 1064, + 297, + 1064 + ], + "score": 0.983 + }, + { + "category_id": 1, + "poly": [ + 297, + 446, + 1403, + 446, + 1403, + 570, + 297, + 570 + ], + "score": 0.979 + }, + { + "category_id": 1, + "poly": [ + 298, + 1803, + 1403, + 1803, + 1403, + 1929, + 298, + 1929 + ], + "score": 0.976 + }, + { + "category_id": 1, + "poly": [ + 298, + 1941, + 1402, + 1941, + 1402, + 2036, + 298, + 2036 + ], + "score": 0.973 + }, + { + "category_id": 1, + "poly": [ + 297, + 1465, + 1404, + 1465, + 1404, + 1559, + 297, + 1559 + ], + "score": 0.96 + }, + { + "category_id": 1, + "poly": [ + 296, + 1160, + 1405, + 1160, + 1405, + 1253, + 296, + 1253 + ], + "score": 0.957 + }, + { + "category_id": 8, + "poly": [ + 538, + 372, + 1160, + 372, + 1160, + 441, + 538, + 441 + ], + "score": 0.957 + }, + { + "category_id": 1, + "poly": [ + 293, + 228, + 1402, + 228, + 1402, + 293, + 293, + 293 + ], + "score": 0.954 + }, + { + "category_id": 1, + "poly": [ + 294, + 307, + 1399, + 307, + 1399, + 369, + 294, + 369 + ], + "score": 0.948 + }, + { + "category_id": 1, + "poly": [ + 300, + 1328, + 1400, + 1328, + 1400, + 1390, + 300, + 1390 + ], + "score": 0.948 + }, + { + "category_id": 1, + "poly": [ + 296, + 1572, + 1397, + 1572, + 1397, + 1634, + 296, + 1634 + ], + "score": 0.944 + }, + { + "category_id": 8, + "poly": [ + 597, + 1745, + 1099, + 1745, + 1099, + 1798, + 597, + 1798 + ], + "score": 0.942 + }, + { + "category_id": 8, + "poly": [ + 608, + 803, + 1093, + 803, + 1093, + 869, + 608, + 869 + ], + "score": 0.932 + }, + { + "category_id": 0, + "poly": [ + 299, + 1096, + 1076, + 1096, + 1076, + 1130, + 299, + 1130 + ], + "score": 0.93 + }, + { + "category_id": 8, + "poly": [ + 593, + 1395, + 1102, + 1395, + 1102, + 1462, + 593, + 1462 + ], + "score": 0.928 + }, + { + "category_id": 1, + "poly": [ + 301, + 1710, + 768, + 1710, + 768, + 1741, + 301, + 1741 + ], + "score": 0.924 + }, + { + "category_id": 2, + "poly": [ + 299, + 74, + 816, + 74, + 816, + 105, + 299, + 105 + ], + "score": 0.919 + }, + { + "category_id": 9, + "poly": [ + 1352, + 822, + 1399, + 822, + 1399, + 852, + 1352, + 852 + ], + "score": 0.908 + }, + { + "category_id": 9, + "poly": [ + 1352, + 1757, + 1400, + 1757, + 1400, + 1787, + 1352, + 1787 + ], + "score": 0.905 + }, + { + "category_id": 8, + "poly": [ + 686, + 1257, + 1009, + 1257, + 1009, + 1313, + 686, + 1313 + ], + "score": 0.899 + }, + { + "category_id": 9, + "poly": [ + 1352, + 1265, + 1399, + 1265, + 1399, + 1296, + 1352, + 1296 + ], + "score": 0.898 + }, + { + "category_id": 9, + "poly": [ + 1352, + 1403, + 1399, + 1403, + 1399, + 1433, + 1352, + 1433 + ], + "score": 0.897 + }, + { + "category_id": 9, + "poly": [ + 1352, + 1649, + 1400, + 1649, + 1400, + 1678, + 1352, + 1678 + ], + "score": 0.896 + }, + { + "category_id": 9, + "poly": [ + 1352, + 391, + 1400, + 391, + 1400, + 421, + 1352, + 421 + ], + "score": 0.886 + }, + { + "category_id": 8, + "poly": [ + 513, + 1641, + 1180, + 1641, + 1180, + 1684, + 513, + 1684 + ], + "score": 0.883 + }, + { + "category_id": 2, + "poly": [ + 841, + 2088, + 859, + 2088, + 859, + 2112, + 841, + 2112 + ], + "score": 0.757 + }, + { + "category_id": 8, + "poly": [ + 512, + 1640, + 1180, + 1640, + 1180, + 1707, + 512, + 1707 + ], + "score": 0.136 + }, + { + "category_id": 14, + "poly": [ + 686, + 1256, + 1011, + 1256, + 1011, + 1327, + 686, + 1327 + ], + "score": 0.94, + "latex": "p ( \\pmb { y } \\mid z ) = \\prod _ { i } p ( y _ { i } \\mid \\pmb { y } _ { : i } , z ) ," + }, + { + "category_id": 14, + "poly": [ + 605, + 800, + 1092, + 800, + 1092, + 870, + 605, + 870 + ], + "score": 0.94, + "latex": "\\frac { \\partial g _ { \\mathrm { Q R e L U } } ( v ) } { \\partial v } : = \\exp \\Bigl ( - \\alpha ^ { \\beta } \\Bigl | \\frac { 2 v } { 2 ^ { L } - 1 } - 1 \\Bigr | ^ { \\beta } \\Bigr ) ," + }, + { + "category_id": 13, + "poly": [ + 762, + 1495, + 869, + 1495, + 869, + 1529, + 762, + 1529 + ], + "score": 0.94, + "latex": "p ( y _ { i } \\mid \\pmb \\theta _ { i } )" + }, + { + "category_id": 13, + "poly": [ + 373, + 872, + 514, + 872, + 514, + 915, + 373, + 915 + ], + "score": 0.94, + "latex": "\\begin{array} { r } { \\alpha = \\frac { 1 } { \\beta } \\Gamma \\left( \\frac { 1 } { \\beta } \\right) } \\end{array}" + }, + { + "category_id": 14, + "poly": [ + 598, + 1743, + 1098, + 1743, + 1098, + 1802, + 598, + 1802 + ], + "score": 0.93, + "latex": "\\begin{array} { r } { \\sigma _ { i } = \\exp \\Bigl ( \\log \\bigl ( \\sigma _ { \\operatorname* { m i n } } \\bigr ) + \\frac { \\log \\left( \\sigma _ { \\operatorname* { m a x } } \\right) - \\log \\left( \\sigma _ { \\operatorname* { m i n } } \\right) } { L - 1 } \\theta _ { i } \\Bigr ) , } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 828, + 1161, + 923, + 1161, + 923, + 1195, + 828, + 1195 + ], + "score": 0.93, + "latex": "p ( \\pmb { y } \\mid z )" + }, + { + "category_id": 13, + "poly": [ + 373, + 1804, + 485, + 1804, + 485, + 1837, + 373, + 1837 + ], + "score": 0.93, + "latex": "\\pmb \\theta = g ( z )" + }, + { + "category_id": 13, + "poly": [ + 718, + 1894, + 865, + 1894, + 865, + 1928, + 718, + 1928 + ], + "score": 0.93, + "latex": "\\mathbb { E } _ { \\pmb { x } } D _ { \\mathrm { K L } } [ e \\Vert p ]" + }, + { + "category_id": 13, + "poly": [ + 835, + 1834, + 947, + 1834, + 947, + 1868, + 835, + 1868 + ], + "score": 0.92, + "latex": "[ 0 , L - 1 ]" + }, + { + "category_id": 14, + "poly": [ + 597, + 1394, + 1102, + 1394, + 1102, + 1465, + 597, + 1465 + ], + "score": 0.92, + "latex": "p ( \\pmb { y } \\mid z ) = \\prod _ { i } p ( y _ { i } \\mid \\pmb { \\theta } _ { i } ) \\operatorname { w i t h } \\pmb { \\theta } _ { i } = g ( \\pmb { y } _ { : i } , z )" + }, + { + "category_id": 13, + "poly": [ + 1277, + 971, + 1353, + 971, + 1353, + 1002, + 1277, + 1002 + ], + "score": 0.91, + "latex": "\\beta = 4" + }, + { + "category_id": 14, + "poly": [ + 541, + 372, + 1157, + 372, + 1157, + 444, + 541, + 444 + ], + "score": 0.91, + "latex": "\\frac { \\partial h } { \\partial h ^ { \\prime } } : = \\frac { 1 } { s ( h ^ { \\prime } ) } , \\qquad \\frac { \\partial b } { \\partial b ^ { \\prime } } : = 2 ^ { K } , \\qquad \\frac { \\partial c } { \\partial c ^ { \\prime } } : = 2 ^ { K } r ^ { \\prime } ( c ^ { \\prime } ) ," + }, + { + "category_id": 14, + "poly": [ + 518, + 1637, + 1179, + 1637, + 1179, + 1709, + 518, + 1709 + ], + "score": 0.9, + "latex": "p ( \\pmb { y } \\mid z ) = \\prod _ { i } \\left( \\mathcal { N } ( 0 , \\sigma _ { i } ^ { 2 } ) * \\mathcal { U } ( - \\textstyle \\frac { 1 } { 2 } , \\textstyle \\frac { 1 } { 2 } ) \\right) ( y _ { i } ) \\mathrm { w i t h } \\sigma = g ( z ) ." + }, + { + "category_id": 13, + "poly": [ + 1173, + 1528, + 1201, + 1528, + 1201, + 1557, + 1173, + 1557 + ], + "score": 0.88, + "latex": "\\theta _ { i }" + }, + { + "category_id": 13, + "poly": [ + 1026, + 507, + 1065, + 507, + 1065, + 536, + 1026, + 536 + ], + "score": 0.88, + "latex": "H ^ { \\prime }" + }, + { + "category_id": 13, + "poly": [ + 749, + 1360, + 777, + 1360, + 777, + 1390, + 749, + 1390 + ], + "score": 0.88, + "latex": "\\theta _ { i }" + }, + { + "category_id": 13, + "poly": [ + 404, + 2004, + 429, + 2004, + 429, + 2034, + 404, + 2034 + ], + "score": 0.87, + "latex": "\\theta _ { i }" + }, + { + "category_id": 13, + "poly": [ + 821, + 339, + 846, + 339, + 846, + 366, + 821, + 366 + ], + "score": 0.87, + "latex": "c ^ { \\prime }" + }, + { + "category_id": 13, + "poly": [ + 792, + 232, + 818, + 232, + 818, + 262, + 792, + 262 + ], + "score": 0.86, + "latex": "Q" + }, + { + "category_id": 13, + "poly": [ + 372, + 1333, + 407, + 1333, + 407, + 1361, + 372, + 1361 + ], + "score": 0.86, + "latex": "\\mathbf { \\nabla } _ { \\mathbf { { \\boldsymbol { y } } } : i }" + }, + { + "category_id": 13, + "poly": [ + 481, + 1033, + 502, + 1033, + 502, + 1063, + 481, + 1063 + ], + "score": 0.85, + "latex": "\\beta" + }, + { + "category_id": 13, + "poly": [ + 327, + 2006, + 353, + 2006, + 353, + 2035, + 327, + 2035 + ], + "score": 0.85, + "latex": "y _ { i }" + }, + { + "category_id": 13, + "poly": [ + 373, + 447, + 398, + 447, + 398, + 474, + 373, + 474 + ], + "score": 0.85, + "latex": "r ^ { \\prime }" + }, + { + "category_id": 13, + "poly": [ + 1097, + 1531, + 1123, + 1531, + 1123, + 1558, + 1097, + 1558 + ], + "score": 0.85, + "latex": "y _ { i }" + }, + { + "category_id": 13, + "poly": [ + 1269, + 910, + 1290, + 910, + 1290, + 941, + 1269, + 941 + ], + "score": 0.85, + "latex": "\\beta" + }, + { + "category_id": 13, + "poly": [ + 746, + 538, + 769, + 538, + 769, + 565, + 746, + 565 + ], + "score": 0.84, + "latex": "c ^ { \\prime }" + }, + { + "category_id": 13, + "poly": [ + 472, + 538, + 498, + 538, + 498, + 565, + 472, + 565 + ], + "score": 0.83, + "latex": "\\pmb { b } ^ { \\prime }" + }, + { + "category_id": 13, + "poly": [ + 873, + 910, + 893, + 910, + 893, + 942, + 873, + 942 + ], + "score": 0.83, + "latex": "\\beta" + }, + { + "category_id": 13, + "poly": [ + 1380, + 942, + 1401, + 942, + 1401, + 972, + 1380, + 972 + ], + "score": 0.83, + "latex": "\\beta" + }, + { + "category_id": 13, + "poly": [ + 818, + 1334, + 839, + 1334, + 839, + 1360, + 818, + 1360 + ], + "score": 0.83, + "latex": "\\textbf { { y } }" + }, + { + "category_id": 13, + "poly": [ + 574, + 876, + 597, + 876, + 597, + 902, + 574, + 902 + ], + "score": 0.83, + "latex": "L" + }, + { + "category_id": 13, + "poly": [ + 508, + 1228, + 529, + 1228, + 529, + 1254, + 508, + 1254 + ], + "score": 0.82, + "latex": "\\textbf { { y } }" + }, + { + "category_id": 13, + "poly": [ + 713, + 1471, + 732, + 1471, + 732, + 1498, + 713, + 1498 + ], + "score": 0.82, + "latex": "g" + }, + { + "category_id": 13, + "poly": [ + 708, + 1717, + 731, + 1717, + 731, + 1737, + 708, + 1737 + ], + "score": 0.81, + "latex": "\\sigma" + }, + { + "category_id": 13, + "poly": [ + 593, + 1836, + 616, + 1836, + 616, + 1862, + 593, + 1862 + ], + "score": 0.81, + "latex": "L" + }, + { + "category_id": 13, + "poly": [ + 1234, + 1978, + 1252, + 1978, + 1252, + 2005, + 1234, + 2005 + ], + "score": 0.81, + "latex": "p" + }, + { + "category_id": 13, + "poly": [ + 780, + 2010, + 797, + 2010, + 797, + 2035, + 780, + 2035 + ], + "score": 0.81, + "latex": "g" + }, + { + "category_id": 13, + "poly": [ + 577, + 619, + 602, + 619, + 602, + 645, + 577, + 645 + ], + "score": 0.81, + "latex": "\\oslash" + }, + { + "category_id": 13, + "poly": [ + 427, + 1498, + 446, + 1498, + 446, + 1523, + 427, + 1523 + ], + "score": 0.8, + "latex": "\\pmb \\theta" + }, + { + "category_id": 13, + "poly": [ + 1260, + 1837, + 1282, + 1837, + 1282, + 1862, + 1260, + 1862 + ], + "score": 0.8, + "latex": "L" + }, + { + "category_id": 13, + "poly": [ + 1145, + 1839, + 1199, + 1839, + 1199, + 1866, + 1145, + 1866 + ], + "score": 0.8, + "latex": "\\sigma _ { \\mathrm { m a x } }" + }, + { + "category_id": 13, + "poly": [ + 1272, + 1809, + 1290, + 1809, + 1290, + 1835, + 1272, + 1835 + ], + "score": 0.8, + "latex": "g" + }, + { + "category_id": 13, + "poly": [ + 1082, + 1839, + 1132, + 1839, + 1132, + 1866, + 1082, + 1866 + ], + "score": 0.79, + "latex": "\\sigma _ { \\mathrm { m i n } }" + }, + { + "category_id": 13, + "poly": [ + 1303, + 1948, + 1323, + 1948, + 1323, + 1975, + 1303, + 1975 + ], + "score": 0.78, + "latex": "g" + }, + { + "category_id": 13, + "poly": [ + 1007, + 1168, + 1027, + 1168, + 1027, + 1189, + 1007, + 1189 + ], + "score": 0.77, + "latex": "_ z" + }, + { + "category_id": 13, + "poly": [ + 719, + 315, + 736, + 315, + 736, + 336, + 719, + 336 + ], + "score": 0.77, + "latex": "s" + }, + { + "category_id": 13, + "poly": [ + 857, + 454, + 874, + 454, + 874, + 474, + 857, + 474 + ], + "score": 0.77, + "latex": "r" + }, + { + "category_id": 13, + "poly": [ + 1384, + 1335, + 1401, + 1335, + 1401, + 1361, + 1384, + 1361 + ], + "score": 0.76, + "latex": "p" + }, + { + "category_id": 13, + "poly": [ + 806, + 879, + 832, + 879, + 832, + 903, + 806, + 903 + ], + "score": 0.74, + "latex": "\\textbf { \\em w }" + }, + { + "category_id": 13, + "poly": [ + 919, + 482, + 938, + 482, + 938, + 504, + 919, + 504 + ], + "score": 0.72, + "latex": "^ c" + }, + { + "category_id": 13, + "poly": [ + 813, + 478, + 844, + 478, + 844, + 505, + 813, + 505 + ], + "score": 0.72, + "latex": "\\pmb { H }" + }, + { + "category_id": 13, + "poly": [ + 855, + 479, + 872, + 479, + 872, + 504, + 855, + 504 + ], + "score": 0.61, + "latex": "^ { b }" + }, + { + "category_id": 13, + "poly": [ + 738, + 339, + 763, + 339, + 763, + 367, + 738, + 367 + ], + "score": 0.57, + "latex": "\\pmb { b } ^ { \\prime }" + }, + { + "category_id": 13, + "poly": [ + 1031, + 1363, + 1049, + 1363, + 1049, + 1391, + 1031, + 1391 + ], + "score": 0.57, + "latex": "g" + }, + { + "category_id": 13, + "poly": [ + 688, + 338, + 763, + 338, + 763, + 368, + 688, + 368 + ], + "score": 0.54, + "latex": "H ^ { \\prime } , b ^ { \\prime }" + }, + { + "category_id": 13, + "poly": [ + 964, + 1359, + 1048, + 1359, + 1048, + 1391, + 964, + 1391 + ], + "score": 0.29, + "latex": "\\operatorname { A N N } g" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1093.0, + 1078.0, + 1093.0, + 1078.0, + 1135.0, + 293.0, + 1135.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 72.0, + 817.0, + 72.0, + 817.0, + 108.0, + 295.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 838.0, + 2085.0, + 862.0, + 2085.0, + 862.0, + 2119.0, + 838.0, + 2119.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 581.0, + 1405.0, + 581.0, + 1405.0, + 621.0, + 293.0, + 621.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 616.0, + 576.0, + 616.0, + 576.0, + 650.0, + 294.0, + 650.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 603.0, + 616.0, + 1405.0, + 616.0, + 1405.0, + 650.0, + 603.0, + 650.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 644.0, + 1405.0, + 644.0, + 1405.0, + 682.0, + 293.0, + 682.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 676.0, + 1404.0, + 676.0, + 1404.0, + 711.0, + 293.0, + 711.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 705.0, + 1405.0, + 705.0, + 1405.0, + 743.0, + 293.0, + 743.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 737.0, + 1405.0, + 737.0, + 1405.0, + 771.0, + 294.0, + 771.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 768.0, + 1105.0, + 768.0, + 1105.0, + 802.0, + 296.0, + 802.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 870.0, + 372.0, + 870.0, + 372.0, + 914.0, + 295.0, + 914.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 515.0, + 870.0, + 573.0, + 870.0, + 573.0, + 914.0, + 515.0, + 914.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 598.0, + 870.0, + 805.0, + 870.0, + 805.0, + 914.0, + 598.0, + 914.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 833.0, + 870.0, + 1408.0, + 870.0, + 1408.0, + 914.0, + 833.0, + 914.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 909.0, + 872.0, + 909.0, + 872.0, + 945.0, + 296.0, + 945.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 894.0, + 909.0, + 1268.0, + 909.0, + 1268.0, + 945.0, + 894.0, + 945.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1291.0, + 909.0, + 1405.0, + 909.0, + 1405.0, + 945.0, + 1291.0, + 945.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 940.0, + 1379.0, + 940.0, + 1379.0, + 975.0, + 292.0, + 975.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1402.0, + 940.0, + 1406.0, + 940.0, + 1406.0, + 975.0, + 1402.0, + 975.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 970.0, + 1276.0, + 970.0, + 1276.0, + 1005.0, + 292.0, + 1005.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1354.0, + 970.0, + 1407.0, + 970.0, + 1407.0, + 1005.0, + 1354.0, + 1005.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1001.0, + 1405.0, + 1001.0, + 1405.0, + 1037.0, + 294.0, + 1037.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1027.0, + 480.0, + 1027.0, + 480.0, + 1069.0, + 294.0, + 1069.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 503.0, + 1027.0, + 594.0, + 1027.0, + 594.0, + 1069.0, + 503.0, + 1069.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 444.0, + 372.0, + 444.0, + 372.0, + 482.0, + 294.0, + 482.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 399.0, + 444.0, + 856.0, + 444.0, + 856.0, + 482.0, + 399.0, + 482.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 875.0, + 444.0, + 1407.0, + 444.0, + 1407.0, + 482.0, + 875.0, + 482.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 476.0, + 812.0, + 476.0, + 812.0, + 513.0, + 293.0, + 513.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 845.0, + 476.0, + 854.0, + 476.0, + 854.0, + 513.0, + 845.0, + 513.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 873.0, + 476.0, + 918.0, + 476.0, + 918.0, + 513.0, + 873.0, + 513.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 939.0, + 476.0, + 1407.0, + 476.0, + 1407.0, + 513.0, + 939.0, + 513.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 507.0, + 1025.0, + 507.0, + 1025.0, + 542.0, + 294.0, + 542.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1066.0, + 507.0, + 1405.0, + 507.0, + 1405.0, + 542.0, + 1066.0, + 542.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 536.0, + 471.0, + 536.0, + 471.0, + 575.0, + 292.0, + 575.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 499.0, + 536.0, + 745.0, + 536.0, + 745.0, + 575.0, + 499.0, + 575.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 770.0, + 536.0, + 1356.0, + 536.0, + 1356.0, + 575.0, + 770.0, + 575.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1802.0, + 372.0, + 1802.0, + 372.0, + 1839.0, + 294.0, + 1839.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 486.0, + 1802.0, + 1271.0, + 1802.0, + 1271.0, + 1839.0, + 486.0, + 1839.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1291.0, + 1802.0, + 1405.0, + 1802.0, + 1405.0, + 1839.0, + 1291.0, + 1839.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1834.0, + 592.0, + 1834.0, + 592.0, + 1871.0, + 293.0, + 1871.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 617.0, + 1834.0, + 834.0, + 1834.0, + 834.0, + 1871.0, + 617.0, + 1871.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 948.0, + 1834.0, + 1081.0, + 1834.0, + 1081.0, + 1871.0, + 948.0, + 1871.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1133.0, + 1834.0, + 1144.0, + 1834.0, + 1144.0, + 1871.0, + 1133.0, + 1871.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1200.0, + 1834.0, + 1259.0, + 1834.0, + 1259.0, + 1871.0, + 1200.0, + 1871.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1283.0, + 1834.0, + 1407.0, + 1834.0, + 1407.0, + 1871.0, + 1283.0, + 1871.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1865.0, + 1404.0, + 1865.0, + 1404.0, + 1898.0, + 294.0, + 1898.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1895.0, + 717.0, + 1895.0, + 717.0, + 1928.0, + 294.0, + 1928.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 866.0, + 1895.0, + 1192.0, + 1895.0, + 1192.0, + 1928.0, + 866.0, + 1928.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1941.0, + 1302.0, + 1941.0, + 1302.0, + 1979.0, + 294.0, + 1979.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1324.0, + 1941.0, + 1404.0, + 1941.0, + 1404.0, + 1979.0, + 1324.0, + 1979.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1971.0, + 1233.0, + 1971.0, + 1233.0, + 2009.0, + 293.0, + 2009.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1253.0, + 1971.0, + 1406.0, + 1971.0, + 1406.0, + 2009.0, + 1253.0, + 2009.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 2003.0, + 326.0, + 2003.0, + 326.0, + 2037.0, + 294.0, + 2037.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 354.0, + 2003.0, + 403.0, + 2003.0, + 403.0, + 2037.0, + 354.0, + 2037.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 430.0, + 2003.0, + 779.0, + 2003.0, + 779.0, + 2037.0, + 430.0, + 2037.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 798.0, + 2003.0, + 1244.0, + 2003.0, + 1244.0, + 2037.0, + 798.0, + 2037.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1462.0, + 712.0, + 1462.0, + 712.0, + 1502.0, + 295.0, + 1502.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 733.0, + 1462.0, + 1405.0, + 1462.0, + 1405.0, + 1502.0, + 733.0, + 1502.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1495.0, + 426.0, + 1495.0, + 426.0, + 1531.0, + 292.0, + 1531.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 447.0, + 1495.0, + 761.0, + 1495.0, + 761.0, + 1531.0, + 447.0, + 1531.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 870.0, + 1495.0, + 1405.0, + 1495.0, + 1405.0, + 1531.0, + 870.0, + 1531.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1527.0, + 1096.0, + 1527.0, + 1096.0, + 1560.0, + 295.0, + 1560.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1124.0, + 1527.0, + 1172.0, + 1527.0, + 1172.0, + 1560.0, + 1124.0, + 1560.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1202.0, + 1527.0, + 1213.0, + 1527.0, + 1213.0, + 1560.0, + 1202.0, + 1560.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1159.0, + 827.0, + 1159.0, + 827.0, + 1196.0, + 294.0, + 1196.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 924.0, + 1159.0, + 1006.0, + 1159.0, + 1006.0, + 1196.0, + 924.0, + 1196.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1028.0, + 1159.0, + 1405.0, + 1159.0, + 1405.0, + 1196.0, + 1028.0, + 1196.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1188.0, + 1405.0, + 1188.0, + 1405.0, + 1231.0, + 293.0, + 1231.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1222.0, + 507.0, + 1222.0, + 507.0, + 1255.0, + 294.0, + 1255.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 530.0, + 1222.0, + 961.0, + 1222.0, + 961.0, + 1255.0, + 530.0, + 1255.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 228.0, + 791.0, + 228.0, + 791.0, + 264.0, + 296.0, + 264.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 819.0, + 228.0, + 1405.0, + 228.0, + 1405.0, + 264.0, + 819.0, + 264.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 262.0, + 687.0, + 262.0, + 687.0, + 295.0, + 293.0, + 295.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 309.0, + 718.0, + 309.0, + 718.0, + 341.0, + 297.0, + 341.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 737.0, + 309.0, + 1401.0, + 309.0, + 1401.0, + 341.0, + 737.0, + 341.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 334.0, + 687.0, + 334.0, + 687.0, + 376.0, + 293.0, + 376.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 764.0, + 334.0, + 820.0, + 334.0, + 820.0, + 376.0, + 764.0, + 376.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 847.0, + 334.0, + 1399.0, + 334.0, + 1399.0, + 376.0, + 847.0, + 376.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1324.0, + 371.0, + 1324.0, + 371.0, + 1367.0, + 294.0, + 1367.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 408.0, + 1324.0, + 817.0, + 1324.0, + 817.0, + 1367.0, + 408.0, + 1367.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 840.0, + 1324.0, + 1383.0, + 1324.0, + 1383.0, + 1367.0, + 840.0, + 1367.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1402.0, + 1324.0, + 1406.0, + 1324.0, + 1406.0, + 1367.0, + 1402.0, + 1367.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1354.0, + 748.0, + 1354.0, + 748.0, + 1397.0, + 291.0, + 1397.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 778.0, + 1354.0, + 963.0, + 1354.0, + 963.0, + 1397.0, + 778.0, + 1397.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1050.0, + 1354.0, + 1060.0, + 1354.0, + 1060.0, + 1397.0, + 1050.0, + 1397.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1573.0, + 1402.0, + 1573.0, + 1402.0, + 1608.0, + 296.0, + 1608.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1604.0, + 1396.0, + 1604.0, + 1396.0, + 1636.0, + 297.0, + 1636.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1706.0, + 707.0, + 1706.0, + 707.0, + 1746.0, + 296.0, + 1746.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 732.0, + 1706.0, + 772.0, + 1706.0, + 772.0, + 1746.0, + 732.0, + 1746.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 4, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 297, + 780, + 1405, + 780, + 1405, + 1150, + 297, + 1150 + ], + "score": 0.984 + }, + { + "category_id": 1, + "poly": [ + 297, + 1577, + 1404, + 1577, + 1404, + 1886, + 297, + 1886 + ], + "score": 0.984 + }, + { + "category_id": 1, + "poly": [ + 297, + 288, + 1404, + 288, + 1404, + 569, + 297, + 569 + ], + "score": 0.981 + }, + { + "category_id": 1, + "poly": [ + 298, + 581, + 1403, + 581, + 1403, + 766, + 298, + 766 + ], + "score": 0.98 + }, + { + "category_id": 1, + "poly": [ + 298, + 1163, + 1402, + 1163, + 1402, + 1284, + 298, + 1284 + ], + "score": 0.974 + }, + { + "category_id": 1, + "poly": [ + 299, + 1470, + 1403, + 1470, + 1403, + 1563, + 299, + 1563 + ], + "score": 0.966 + }, + { + "category_id": 1, + "poly": [ + 299, + 1898, + 1403, + 1898, + 1403, + 1992, + 299, + 1992 + ], + "score": 0.965 + }, + { + "category_id": 1, + "poly": [ + 303, + 1324, + 1401, + 1324, + 1401, + 1416, + 303, + 1416 + ], + "score": 0.958 + }, + { + "category_id": 8, + "poly": [ + 625, + 1424, + 1073, + 1424, + 1073, + 1464, + 625, + 1464 + ], + "score": 0.942 + }, + { + "category_id": 8, + "poly": [ + 579, + 1283, + 1119, + 1283, + 1119, + 1322, + 579, + 1322 + ], + "score": 0.935 + }, + { + "category_id": 8, + "poly": [ + 531, + 1998, + 1168, + 1998, + 1168, + 2039, + 531, + 2039 + ], + "score": 0.933 + }, + { + "category_id": 9, + "poly": [ + 1352, + 1428, + 1399, + 1428, + 1399, + 1458, + 1352, + 1458 + ], + "score": 0.899 + }, + { + "category_id": 2, + "poly": [ + 299, + 75, + 816, + 75, + 816, + 104, + 299, + 104 + ], + "score": 0.89 + }, + { + "category_id": 9, + "poly": [ + 1352, + 2004, + 1400, + 2004, + 1400, + 2033, + 1352, + 2033 + ], + "score": 0.889 + }, + { + "category_id": 9, + "poly": [ + 1352, + 1287, + 1399, + 1287, + 1399, + 1316, + 1352, + 1316 + ], + "score": 0.833 + }, + { + "category_id": 2, + "poly": [ + 840, + 2089, + 859, + 2089, + 859, + 2112, + 840, + 2112 + ], + "score": 0.792 + }, + { + "category_id": 0, + "poly": [ + 299, + 229, + 1237, + 229, + 1237, + 261, + 299, + 261 + ], + "score": 0.703 + }, + { + "category_id": 2, + "poly": [ + 299, + 229, + 1237, + 229, + 1237, + 261, + 299, + 261 + ], + "score": 0.188 + }, + { + "category_id": 13, + "poly": [ + 702, + 1699, + 941, + 1699, + 941, + 1733, + 702, + 1733 + ], + "score": 0.94, + "latex": "m ( \\bar { \\pmb { y } } ) = \\mathbb { E } _ { \\pmb { x } } e ( \\pmb { y } \\mid \\pmb { x } )" + }, + { + "category_id": 14, + "poly": [ + 623, + 1422, + 1073, + 1422, + 1073, + 1464, + 623, + 1464 + ], + "score": 0.94, + "latex": "\\begin{array} { r } { e ( \\pmb { y } \\mid \\pmb { x } ) = \\mathcal { U } ( \\pmb { y } \\mid g ( \\pmb { x } ) - \\frac { 1 } { 2 } , g ( \\pmb { x } ) + \\frac { 1 } { 2 } ) , } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 552, + 1225, + 699, + 1225, + 699, + 1259, + 552, + 1259 + ], + "score": 0.93, + "latex": "\\mathbb { E } _ { \\pmb { x } } D _ { \\mathrm { K L } } [ e \\Vert p ]" + }, + { + "category_id": 13, + "poly": [ + 656, + 1354, + 812, + 1354, + 812, + 1387, + 656, + 1387 + ], + "score": 0.93, + "latex": "\\pmb { y } = Q ( g ( \\pmb { x } ) )" + }, + { + "category_id": 13, + "poly": [ + 298, + 1500, + 450, + 1500, + 450, + 1534, + 298, + 1534 + ], + "score": 0.93, + "latex": "Q ( g ( \\pmb { x } ) - \\pmb { o } )" + }, + { + "category_id": 13, + "poly": [ + 841, + 1731, + 987, + 1731, + 987, + 1764, + 841, + 1764 + ], + "score": 0.92, + "latex": "\\mathbb { E } _ { \\pmb { x } } D _ { \\mathrm { K L } } [ e \\Vert p ]" + }, + { + "category_id": 14, + "poly": [ + 581, + 1281, + 1116, + 1281, + 1116, + 1323, + 581, + 1323 + ], + "score": 0.9, + "latex": "\\begin{array} { r } { e ( \\pmb { y } \\mid \\pmb { x } ) = \\mathcal { U } ( \\pmb { y } \\mid Q ( g ( \\pmb { x } ) ) - \\frac { 1 } { 2 } , Q ( g ( \\pmb { x } ) ) + \\frac { 1 } { 2 } ) , } \\end{array}" + }, + { + "category_id": 14, + "poly": [ + 532, + 1997, + 1165, + 1997, + 1165, + 2040, + 532, + 2040 + ], + "score": 0.9, + "latex": "\\begin{array} { r } { e ( \\pmb { y } \\mid \\pmb { x } ) = \\mathcal { U } ( \\pmb { y } \\mid ( \\pmb { H } \\pmb { u } + \\pmb { b } ) / c - \\frac { 1 } { 2 } , ( \\pmb { H } \\pmb { u } + \\pmb { b } ) / c + \\frac { 1 } { 2 } ) , } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 713, + 875, + 735, + 875, + 735, + 905, + 713, + 905 + ], + "score": 0.85, + "latex": "\\beta" + }, + { + "category_id": 13, + "poly": [ + 1340, + 1475, + 1403, + 1475, + 1403, + 1503, + 1340, + 1503 + ], + "score": 0.83, + "latex": "{ \\textbf { 3 } } =" + }, + { + "category_id": 13, + "poly": [ + 603, + 1935, + 621, + 1935, + 621, + 1961, + 603, + 1961 + ], + "score": 0.83, + "latex": "g" + }, + { + "category_id": 13, + "poly": [ + 812, + 875, + 832, + 875, + 832, + 905, + 812, + 905 + ], + "score": 0.83, + "latex": "\\beta" + }, + { + "category_id": 13, + "poly": [ + 736, + 1329, + 753, + 1329, + 753, + 1355, + 736, + 1355 + ], + "score": 0.81, + "latex": "g" + }, + { + "category_id": 13, + "poly": [ + 324, + 1584, + 343, + 1584, + 343, + 1611, + 324, + 1611 + ], + "score": 0.8, + "latex": "g" + }, + { + "category_id": 13, + "poly": [ + 392, + 1614, + 411, + 1614, + 411, + 1641, + 392, + 1641 + ], + "score": 0.79, + "latex": "g" + }, + { + "category_id": 13, + "poly": [ + 460, + 1476, + 483, + 1476, + 483, + 1502, + 460, + 1502 + ], + "score": 0.78, + "latex": "\\textbf { { y } }" + }, + { + "category_id": 13, + "poly": [ + 465, + 1735, + 483, + 1735, + 483, + 1762, + 465, + 1762 + ], + "score": 0.77, + "latex": "p" + }, + { + "category_id": 13, + "poly": [ + 370, + 1325, + 394, + 1325, + 394, + 1352, + 370, + 1352 + ], + "score": 0.76, + "latex": "\\mathcal { U }" + }, + { + "category_id": 13, + "poly": [ + 752, + 1124, + 769, + 1124, + 769, + 1150, + 752, + 1150 + ], + "score": 0.76, + "latex": "g" + }, + { + "category_id": 13, + "poly": [ + 529, + 875, + 549, + 875, + 549, + 902, + 529, + 902 + ], + "score": 0.75, + "latex": "\\lambda" + }, + { + "category_id": 13, + "poly": [ + 427, + 413, + 446, + 413, + 446, + 439, + 427, + 439 + ], + "score": 0.75, + "latex": "d" + }, + { + "category_id": 13, + "poly": [ + 542, + 1506, + 562, + 1506, + 562, + 1528, + 542, + 1528 + ], + "score": 0.73, + "latex": "^ o" + }, + { + "category_id": 13, + "poly": [ + 527, + 1705, + 543, + 1705, + 543, + 1727, + 527, + 1727 + ], + "score": 0.68, + "latex": "e" + }, + { + "category_id": 13, + "poly": [ + 373, + 417, + 390, + 417, + 390, + 439, + 373, + 439 + ], + "score": 0.61, + "latex": "e" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 72.0, + 817.0, + 72.0, + 817.0, + 108.0, + 295.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 840.0, + 2087.0, + 862.0, + 2087.0, + 862.0, + 2118.0, + 840.0, + 2118.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 225.0, + 1242.0, + 225.0, + 1242.0, + 268.0, + 292.0, + 268.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 225.0, + 1242.0, + 225.0, + 1242.0, + 268.0, + 292.0, + 268.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 781.0, + 1405.0, + 781.0, + 1405.0, + 816.0, + 295.0, + 816.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 813.0, + 1406.0, + 813.0, + 1406.0, + 848.0, + 295.0, + 848.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 844.0, + 1407.0, + 844.0, + 1407.0, + 878.0, + 295.0, + 878.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 873.0, + 528.0, + 873.0, + 528.0, + 909.0, + 292.0, + 909.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 550.0, + 873.0, + 712.0, + 873.0, + 712.0, + 909.0, + 550.0, + 909.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 736.0, + 873.0, + 811.0, + 873.0, + 811.0, + 909.0, + 736.0, + 909.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 833.0, + 873.0, + 1406.0, + 873.0, + 1406.0, + 909.0, + 833.0, + 909.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 901.0, + 1408.0, + 901.0, + 1408.0, + 941.0, + 292.0, + 941.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 934.0, + 1406.0, + 934.0, + 1406.0, + 969.0, + 294.0, + 969.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 966.0, + 1405.0, + 966.0, + 1405.0, + 1000.0, + 294.0, + 1000.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 996.0, + 1405.0, + 996.0, + 1405.0, + 1030.0, + 295.0, + 1030.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1025.0, + 1403.0, + 1025.0, + 1403.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, + 1091.0, + 295.0, + 1091.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1087.0, + 1402.0, + 1087.0, + 1402.0, + 1122.0, + 295.0, + 1122.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1115.0, + 751.0, + 1115.0, + 751.0, + 1154.0, + 295.0, + 1154.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 770.0, + 1115.0, + 779.0, + 1115.0, + 779.0, + 1154.0, + 770.0, + 1154.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1578.0, + 323.0, + 1578.0, + 323.0, + 1614.0, + 294.0, + 1614.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 344.0, + 1578.0, + 1405.0, + 1578.0, + 1405.0, + 1614.0, + 344.0, + 1614.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1610.0, + 391.0, + 1610.0, + 391.0, + 1642.0, + 295.0, + 1642.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 412.0, + 1610.0, + 1402.0, + 1610.0, + 1402.0, + 1642.0, + 412.0, + 1642.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1638.0, + 1405.0, + 1638.0, + 1405.0, + 1674.0, + 294.0, + 1674.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1669.0, + 1406.0, + 1669.0, + 1406.0, + 1705.0, + 294.0, + 1705.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1698.0, + 526.0, + 1698.0, + 526.0, + 1738.0, + 294.0, + 1738.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 544.0, + 1698.0, + 701.0, + 1698.0, + 701.0, + 1738.0, + 544.0, + 1738.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 942.0, + 1698.0, + 1406.0, + 1698.0, + 1406.0, + 1738.0, + 942.0, + 1738.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1729.0, + 464.0, + 1729.0, + 464.0, + 1769.0, + 294.0, + 1769.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 484.0, + 1729.0, + 840.0, + 1729.0, + 840.0, + 1769.0, + 484.0, + 1769.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 988.0, + 1729.0, + 1406.0, + 1729.0, + 1406.0, + 1769.0, + 988.0, + 1769.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1762.0, + 1405.0, + 1762.0, + 1405.0, + 1794.0, + 295.0, + 1794.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1792.0, + 1406.0, + 1792.0, + 1406.0, + 1825.0, + 292.0, + 1825.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1820.0, + 1402.0, + 1820.0, + 1402.0, + 1857.0, + 292.0, + 1857.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1853.0, + 1402.0, + 1853.0, + 1402.0, + 1889.0, + 295.0, + 1889.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 291.0, + 1405.0, + 291.0, + 1405.0, + 324.0, + 296.0, + 324.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 319.0, + 1406.0, + 319.0, + 1406.0, + 356.0, + 294.0, + 356.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 352.0, + 1405.0, + 352.0, + 1405.0, + 385.0, + 296.0, + 385.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 377.0, + 1404.0, + 377.0, + 1404.0, + 417.0, + 294.0, + 417.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 409.0, + 372.0, + 409.0, + 372.0, + 447.0, + 294.0, + 447.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 391.0, + 409.0, + 426.0, + 409.0, + 426.0, + 447.0, + 391.0, + 447.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 447.0, + 409.0, + 1405.0, + 409.0, + 1405.0, + 447.0, + 447.0, + 447.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 442.0, + 1404.0, + 442.0, + 1404.0, + 475.0, + 295.0, + 475.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 473.0, + 1404.0, + 473.0, + 1404.0, + 511.0, + 294.0, + 511.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 503.0, + 1406.0, + 503.0, + 1406.0, + 542.0, + 294.0, + 542.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 538.0, + 424.0, + 538.0, + 424.0, + 569.0, + 296.0, + 569.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 582.0, + 1404.0, + 582.0, + 1404.0, + 618.0, + 293.0, + 618.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 612.0, + 1405.0, + 612.0, + 1405.0, + 648.0, + 294.0, + 648.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 644.0, + 1404.0, + 644.0, + 1404.0, + 680.0, + 294.0, + 680.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 672.0, + 1404.0, + 672.0, + 1404.0, + 710.0, + 293.0, + 710.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 707.0, + 1404.0, + 707.0, + 1404.0, + 738.0, + 296.0, + 738.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 735.0, + 1265.0, + 735.0, + 1265.0, + 769.0, + 293.0, + 769.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1165.0, + 1404.0, + 1165.0, + 1404.0, + 1197.0, + 294.0, + 1197.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1192.0, + 1408.0, + 1192.0, + 1408.0, + 1229.0, + 291.0, + 1229.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1226.0, + 551.0, + 1226.0, + 551.0, + 1261.0, + 293.0, + 1261.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 700.0, + 1226.0, + 1407.0, + 1226.0, + 1407.0, + 1261.0, + 700.0, + 1261.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1256.0, + 534.0, + 1256.0, + 534.0, + 1288.0, + 294.0, + 1288.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1466.0, + 459.0, + 1466.0, + 459.0, + 1508.0, + 293.0, + 1508.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 484.0, + 1466.0, + 1339.0, + 1466.0, + 1339.0, + 1508.0, + 484.0, + 1508.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 451.0, + 1500.0, + 541.0, + 1500.0, + 541.0, + 1537.0, + 451.0, + 1537.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 563.0, + 1500.0, + 1404.0, + 1500.0, + 1404.0, + 1537.0, + 563.0, + 1537.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1532.0, + 1274.0, + 1532.0, + 1274.0, + 1566.0, + 295.0, + 1566.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1894.0, + 1404.0, + 1894.0, + 1404.0, + 1937.0, + 293.0, + 1937.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1928.0, + 602.0, + 1928.0, + 602.0, + 1963.0, + 293.0, + 1963.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 622.0, + 1928.0, + 1404.0, + 1928.0, + 1404.0, + 1963.0, + 622.0, + 1963.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1962.0, + 488.0, + 1962.0, + 488.0, + 1993.0, + 293.0, + 1993.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1322.0, + 369.0, + 1322.0, + 369.0, + 1359.0, + 297.0, + 1359.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 395.0, + 1322.0, + 735.0, + 1322.0, + 735.0, + 1359.0, + 395.0, + 1359.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 754.0, + 1322.0, + 1405.0, + 1322.0, + 1405.0, + 1359.0, + 754.0, + 1359.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1353.0, + 655.0, + 1353.0, + 655.0, + 1390.0, + 295.0, + 1390.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 813.0, + 1353.0, + 1406.0, + 1353.0, + 1406.0, + 1390.0, + 813.0, + 1390.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1383.0, + 765.0, + 1383.0, + 765.0, + 1422.0, + 296.0, + 1422.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 5, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 298, + 1753, + 1404, + 1753, + 1404, + 1879, + 298, + 1879 + ], + "score": 0.978 + }, + { + "category_id": 3, + "poly": [ + 299, + 218, + 1407, + 218, + 1407, + 665, + 299, + 665 + ], + "score": 0.967 + }, + { + "category_id": 1, + "poly": [ + 296, + 1971, + 1402, + 1971, + 1402, + 2035, + 296, + 2035 + ], + "score": 0.949 + }, + { + "category_id": 8, + "poly": [ + 660, + 1701, + 1039, + 1701, + 1039, + 1743, + 660, + 1743 + ], + "score": 0.944 + }, + { + "category_id": 5, + "poly": [ + 294, + 939, + 1406, + 939, + 1406, + 1214, + 294, + 1214 + ], + "score": 0.942, + "html": "
compressed ondecompressed onCPU 1CPU 1CPU 1GPU 1CPU 1CPU 2CPU 1GPU 2GPU 1CPU 1GPU 1GPU 1GPU 1CPU 2GPU 1GPU 2
Tecnick dataset:100 RGB i3 images of 1200 × 1200 pixels
Ballé et al. (2018)ditto, integer prior0%0%71%0%54%0%66%0%63%0%41%0%59%0%34%0%
CLIC dataset: 2021 RGB images of various pixel sizes
Ballé et al. (2018)ditto, integer prior0%0%78%0%68%0%78%0%77%0%52%0%78%0%54%0%
" + }, + { + "category_id": 4, + "poly": [ + 295, + 695, + 1406, + 695, + 1406, + 912, + 295, + 912 + ], + "score": 0.933 + }, + { + "category_id": 1, + "poly": [ + 293, + 1553, + 1400, + 1553, + 1400, + 1614, + 293, + 1614 + ], + "score": 0.931 + }, + { + "category_id": 8, + "poly": [ + 697, + 1614, + 1002, + 1614, + 1002, + 1652, + 697, + 1652 + ], + "score": 0.921 + }, + { + "category_id": 1, + "poly": [ + 297, + 1657, + 1137, + 1657, + 1137, + 1690, + 297, + 1690 + ], + "score": 0.916 + }, + { + "category_id": 0, + "poly": [ + 301, + 1910, + 709, + 1910, + 709, + 1945, + 301, + 1945 + ], + "score": 0.914 + }, + { + "category_id": 9, + "poly": [ + 1352, + 1707, + 1399, + 1707, + 1399, + 1737, + 1352, + 1737 + ], + "score": 0.896 + }, + { + "category_id": 9, + "poly": [ + 1352, + 1617, + 1399, + 1617, + 1399, + 1647, + 1352, + 1647 + ], + "score": 0.896 + }, + { + "category_id": 2, + "poly": [ + 299, + 76, + 815, + 76, + 815, + 104, + 299, + 104 + ], + "score": 0.891 + }, + { + "category_id": 1, + "poly": [ + 295, + 1311, + 1405, + 1311, + 1405, + 1497, + 295, + 1497 + ], + "score": 0.862 + }, + { + "category_id": 7, + "poly": [ + 625, + 1221, + 1389, + 1221, + 1389, + 1287, + 625, + 1287 + ], + "score": 0.852 + }, + { + "category_id": 2, + "poly": [ + 842, + 2087, + 858, + 2087, + 858, + 2111, + 842, + 2111 + ], + "score": 0.688 + }, + { + "category_id": 2, + "poly": [ + 841, + 2087, + 859, + 2087, + 859, + 2111, + 841, + 2111 + ], + "score": 0.209 + }, + { + "category_id": 6, + "poly": [ + 493, + 1116, + 1169, + 1116, + 1169, + 1144, + 493, + 1144 + ], + "score": 0.123 + }, + { + "category_id": 6, + "poly": [ + 295, + 1311, + 1405, + 1311, + 1405, + 1497, + 295, + 1497 + ], + "score": 0.109 + }, + { + "category_id": 14, + "poly": [ + 697, + 1611, + 1001, + 1611, + 1001, + 1654, + 697, + 1654 + ], + "score": 0.93, + "latex": "{ \\pmb y } = Q \\big ( ( { \\pmb H } { \\pmb u } + { \\pmb b } ) / c - o \\big )" + }, + { + "category_id": 14, + "poly": [ + 659, + 1700, + 1038, + 1700, + 1038, + 1743, + 659, + 1743 + ], + "score": 0.93, + "latex": "\\pmb { y } = \\left( \\pmb { H } \\pmb { u } + \\pmb { b } - \\pmb { Q } ( \\pmb { o } \\odot \\pmb { c } ) \\right) \\oslash \\pmb { c } ," + }, + { + "category_id": 13, + "poly": [ + 947, + 1013, + 1095, + 1013, + 1095, + 1042, + 947, + 1042 + ], + "score": 0.85, + "latex": "1 2 0 0 \\times 1 2 0 0" + }, + { + "category_id": 13, + "poly": [ + 372, + 1759, + 397, + 1759, + 397, + 1783, + 372, + 1783 + ], + "score": 0.83, + "latex": "\\odot" + }, + { + "category_id": 13, + "poly": [ + 558, + 1562, + 580, + 1562, + 580, + 1583, + 558, + 1583 + ], + "score": 0.77, + "latex": "\\textbf { \\em u }" + }, + { + "category_id": 13, + "poly": [ + 298, + 1788, + 315, + 1788, + 315, + 1813, + 298, + 1813 + ], + "score": 0.68, + "latex": "^ { b }" + }, + { + "category_id": 13, + "poly": [ + 781, + 1148, + 834, + 1148, + 834, + 1174, + 781, + 1174 + ], + "score": 0.61, + "latex": "6 8 \\%" + }, + { + "category_id": 13, + "poly": [ + 672, + 1147, + 726, + 1147, + 726, + 1174, + 672, + 1174 + ], + "score": 0.58, + "latex": "78 \\%" + }, + { + "category_id": 13, + "poly": [ + 672, + 1044, + 726, + 1044, + 726, + 1072, + 672, + 1072 + ], + "score": 0.57, + "latex": "71 \\%" + }, + { + "category_id": 13, + "poly": [ + 1111, + 1147, + 1164, + 1147, + 1164, + 1174, + 1111, + 1174 + ], + "score": 0.57, + "latex": "52 \\%" + }, + { + "category_id": 13, + "poly": [ + 955, + 1556, + 974, + 1556, + 974, + 1589, + 955, + 1589 + ], + "score": 0.57, + "latex": "/" + }, + { + "category_id": 13, + "poly": [ + 576, + 1147, + 616, + 1147, + 616, + 1174, + 576, + 1174 + ], + "score": 0.56, + "latex": "\\overline { { \\mathbf { 0 \\% } } }" + }, + { + "category_id": 13, + "poly": [ + 576, + 1044, + 616, + 1044, + 616, + 1072, + 576, + 1072 + ], + "score": 0.55, + "latex": "\\overline { { \\mathbf { 0 \\% } } }" + }, + { + "category_id": 13, + "poly": [ + 891, + 1147, + 944, + 1147, + 944, + 1174, + 891, + 1174 + ], + "score": 0.54, + "latex": "78 \\%" + }, + { + "category_id": 13, + "poly": [ + 1000, + 1147, + 1054, + 1147, + 1054, + 1174, + 1000, + 1174 + ], + "score": 0.53, + "latex": "7 7 \\%" + }, + { + "category_id": 13, + "poly": [ + 575, + 1178, + 617, + 1178, + 617, + 1206, + 575, + 1206 + ], + "score": 0.53, + "latex": "0 \\%" + }, + { + "category_id": 13, + "poly": [ + 890, + 1044, + 944, + 1044, + 944, + 1072, + 890, + 1072 + ], + "score": 0.53, + "latex": "66 \\%" + }, + { + "category_id": 13, + "poly": [ + 781, + 1044, + 834, + 1044, + 834, + 1072, + 781, + 1072 + ], + "score": 0.53, + "latex": "54 \\%" + }, + { + "category_id": 13, + "poly": [ + 1110, + 1044, + 1164, + 1044, + 1164, + 1072, + 1110, + 1072 + ], + "score": 0.5, + "latex": "41 \\%" + }, + { + "category_id": 13, + "poly": [ + 903, + 1178, + 944, + 1178, + 944, + 1205, + 903, + 1205 + ], + "score": 0.48, + "latex": "{ \\bf0 \\% }" + }, + { + "category_id": 13, + "poly": [ + 1000, + 1046, + 1054, + 1046, + 1054, + 1072, + 1000, + 1072 + ], + "score": 0.47, + "latex": "6 3 \\%" + }, + { + "category_id": 13, + "poly": [ + 684, + 1178, + 727, + 1178, + 727, + 1206, + 684, + 1206 + ], + "score": 0.46, + "latex": "0 \\%" + }, + { + "category_id": 13, + "poly": [ + 793, + 1178, + 835, + 1178, + 835, + 1206, + 793, + 1206 + ], + "score": 0.46, + "latex": "{ \\bf0 \\% }" + }, + { + "category_id": 13, + "poly": [ + 1013, + 1178, + 1054, + 1178, + 1054, + 1206, + 1013, + 1206 + ], + "score": 0.45, + "latex": "0 \\%" + }, + { + "category_id": 13, + "poly": [ + 1331, + 1149, + 1383, + 1149, + 1383, + 1174, + 1331, + 1174 + ], + "score": 0.44, + "latex": "54 \\%" + }, + { + "category_id": 13, + "poly": [ + 574, + 1075, + 616, + 1075, + 616, + 1104, + 574, + 1104 + ], + "score": 0.4, + "latex": "0 \\%" + }, + { + "category_id": 13, + "poly": [ + 1122, + 1178, + 1165, + 1178, + 1165, + 1206, + 1122, + 1206 + ], + "score": 0.4, + "latex": "0 \\%" + }, + { + "category_id": 13, + "poly": [ + 1221, + 1151, + 1274, + 1151, + 1274, + 1174, + 1221, + 1174 + ], + "score": 0.39, + "latex": "78 \\%" + }, + { + "category_id": 13, + "poly": [ + 1331, + 1047, + 1383, + 1047, + 1383, + 1072, + 1331, + 1072 + ], + "score": 0.34, + "latex": "34 \\%" + }, + { + "category_id": 13, + "poly": [ + 1232, + 1178, + 1275, + 1178, + 1275, + 1206, + 1232, + 1206 + ], + "score": 0.33, + "latex": "0 \\%" + }, + { + "category_id": 13, + "poly": [ + 1221, + 1048, + 1273, + 1048, + 1273, + 1072, + 1221, + 1072 + ], + "score": 0.31, + "latex": "59 \\%" + }, + { + "category_id": 13, + "poly": [ + 684, + 1075, + 727, + 1075, + 727, + 1104, + 684, + 1104 + ], + "score": 0.3, + "latex": "0 \\%" + }, + { + "category_id": 13, + "poly": [ + 1342, + 1178, + 1384, + 1178, + 1384, + 1206, + 1342, + 1206 + ], + "score": 0.28, + "latex": "0 \\%" + }, + { + "category_id": 13, + "poly": [ + 1229, + 1149, + 1275, + 1149, + 1275, + 1208, + 1229, + 1208 + ], + "score": 0.25, + "latex": "\\mathbf { \\Delta } _ { \\mathbf { 0 } \\% } ^ { 7 8 \\% }" + }, + { + "category_id": 13, + "poly": [ + 1119, + 1146, + 1166, + 1146, + 1166, + 1208, + 1119, + 1208 + ], + "score": 0.25, + "latex": "\\bar { \\overline { { { \\bf \\Lambda } } } } 2 \\%" + }, + { + "category_id": 15, + "poly": [ + 333.0, + 229.0, + 387.0, + 229.0, + 387.0, + 278.0, + 333.0, + 278.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 800.0, + 229.0, + 828.0, + 229.0, + 828.0, + 246.0, + 800.0, + 246.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 907.0, + 228.0, + 959.0, + 228.0, + 959.0, + 273.0, + 907.0, + 273.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1380.0, + 231.0, + 1394.0, + 231.0, + 1394.0, + 240.0, + 1380.0, + 240.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 696.0, + 278.0, + 712.0, + 278.0, + 712.0, + 293.0, + 696.0, + 293.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 906.0, + 308.0, + 956.0, + 308.0, + 956.0, + 351.0, + 906.0, + 351.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1181.0, + 311.0, + 1193.0, + 311.0, + 1193.0, + 319.0, + 1181.0, + 319.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1163.0, + 352.0, + 1173.0, + 352.0, + 1173.0, + 362.0, + 1163.0, + 362.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 363.0, + 381.0, + 363.0, + 381.0, + 450.0, + 296.0, + 450.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 540.0, + 388.0, + 550.0, + 388.0, + 550.0, + 398.0, + 540.0, + 398.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 871.0, + 368.0, + 954.0, + 368.0, + 954.0, + 448.0, + 871.0, + 448.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1087.0, + 421.0, + 1097.0, + 421.0, + 1097.0, + 433.0, + 1087.0, + 433.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 478.0, + 432.0, + 498.0, + 432.0, + 498.0, + 451.0, + 478.0, + 451.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 908.0, + 468.0, + 954.0, + 468.0, + 954.0, + 507.0, + 908.0, + 507.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1175.0, + 468.0, + 1365.0, + 468.0, + 1365.0, + 507.0, + 1175.0, + 507.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 336.0, + 488.0, + 382.0, + 488.0, + 382.0, + 527.0, + 336.0, + 527.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 569.0, + 501.0, + 806.0, + 501.0, + 806.0, + 540.0, + 569.0, + 540.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1191.0, + 500.0, + 1381.0, + 500.0, + 1381.0, + 540.0, + 1191.0, + 540.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 560.0, + 534.0, + 809.0, + 534.0, + 809.0, + 573.0, + 560.0, + 573.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 910.0, + 548.0, + 952.0, + 548.0, + 952.0, + 582.0, + 910.0, + 582.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1169.0, + 533.0, + 1381.0, + 533.0, + 1381.0, + 572.0, + 1169.0, + 572.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 469.0, + 594.0, + 522.0, + 594.0, + 522.0, + 631.0, + 469.0, + 631.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 609.0, + 595.0, + 638.0, + 595.0, + 638.0, + 630.0, + 609.0, + 630.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 722.0, + 589.0, + 783.0, + 589.0, + 783.0, + 634.0, + 722.0, + 634.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 979.0, + 594.0, + 1029.0, + 594.0, + 1029.0, + 630.0, + 979.0, + 630.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1048.0, + 594.0, + 1101.0, + 594.0, + 1101.0, + 630.0, + 1048.0, + 630.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1119.0, + 593.0, + 1171.0, + 593.0, + 1171.0, + 630.0, + 1119.0, + 630.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1185.0, + 592.0, + 1243.0, + 592.0, + 1243.0, + 632.0, + 1185.0, + 632.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1271.0, + 595.0, + 1300.0, + 595.0, + 1300.0, + 627.0, + 1271.0, + 627.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1327.0, + 593.0, + 1385.0, + 593.0, + 1385.0, + 633.0, + 1327.0, + 633.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 535.0, + 630.0, + 682.0, + 630.0, + 682.0, + 669.0, + 535.0, + 669.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1104.0, + 626.0, + 1256.0, + 626.0, + 1256.0, + 674.0, + 1104.0, + 674.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 602.75, + 332.0, + 627.75, + 332.0, + 627.75, + 342.5, + 602.75, + 342.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1058.25, + 434.0, + 1093.25, + 434.0, + 1093.25, + 446.0, + 1058.25, + 446.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 423.0, + 485.5, + 464.0, + 485.5, + 464.0, + 498.0, + 423.0, + 498.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 396.25, + 535.0, + 434.25, + 535.0, + 434.25, + 544.0, + 396.25, + 544.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 396.0, + 559.0, + 400.0, + 559.0, + 400.0, + 588.0, + 396.0, + 588.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 931.25, + 501.5, + 1082.25, + 501.5, + 1082.25, + 528.5, + 931.25, + 528.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 695.0, + 1407.0, + 695.0, + 1407.0, + 732.0, + 292.0, + 732.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 725.0, + 1407.0, + 725.0, + 1407.0, + 764.0, + 292.0, + 764.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 756.0, + 1407.0, + 756.0, + 1407.0, + 794.0, + 292.0, + 794.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 787.0, + 1407.0, + 787.0, + 1407.0, + 826.0, + 293.0, + 826.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 818.0, + 1404.0, + 818.0, + 1404.0, + 853.0, + 294.0, + 853.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 848.0, + 1407.0, + 848.0, + 1407.0, + 886.0, + 294.0, + 886.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 879.0, + 1036.0, + 879.0, + 1036.0, + 915.0, + 294.0, + 915.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1907.0, + 713.0, + 1907.0, + 713.0, + 1950.0, + 293.0, + 1950.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": [ + 631.0, + 1223.0, + 952.0, + 1223.0, + 952.0, + 1256.0, + 631.0, + 1256.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 971.0, + 1220.0, + 1359.0, + 1220.0, + 1359.0, + 1258.0, + 971.0, + 1258.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 629.0, + 1250.0, + 1386.0, + 1250.0, + 1386.0, + 1289.0, + 629.0, + 1289.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": [ + 839.0, + 2086.0, + 860.0, + 2086.0, + 860.0, + 2118.0, + 839.0, + 2118.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 541.0, + 1110.0, + 1158.0, + 1110.0, + 1158.0, + 1151.0, + 541.0, + 1151.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1311.0, + 1406.0, + 1311.0, + 1406.0, + 1347.0, + 294.0, + 1347.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1341.0, + 1405.0, + 1341.0, + 1405.0, + 1378.0, + 293.0, + 1378.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1371.0, + 1405.0, + 1371.0, + 1405.0, + 1409.0, + 293.0, + 1409.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1403.0, + 1403.0, + 1403.0, + 1403.0, + 1438.0, + 293.0, + 1438.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1432.0, + 1407.0, + 1432.0, + 1407.0, + 1469.0, + 293.0, + 1469.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1463.0, + 773.0, + 1463.0, + 773.0, + 1500.0, + 294.0, + 1500.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1752.0, + 371.0, + 1752.0, + 371.0, + 1788.0, + 294.0, + 1788.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 398.0, + 1752.0, + 1404.0, + 1752.0, + 1404.0, + 1788.0, + 398.0, + 1788.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1787.0, + 297.0, + 1787.0, + 297.0, + 1820.0, + 293.0, + 1820.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 316.0, + 1787.0, + 1405.0, + 1787.0, + 1405.0, + 1820.0, + 316.0, + 1820.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1815.0, + 1406.0, + 1815.0, + 1406.0, + 1851.0, + 293.0, + 1851.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1844.0, + 545.0, + 1844.0, + 545.0, + 1886.0, + 292.0, + 1886.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1974.0, + 1403.0, + 1974.0, + 1403.0, + 2006.0, + 296.0, + 2006.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 2002.0, + 1405.0, + 2002.0, + 1405.0, + 2036.0, + 295.0, + 2036.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1552.0, + 557.0, + 1552.0, + 557.0, + 1591.0, + 293.0, + 1591.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 581.0, + 1552.0, + 954.0, + 1552.0, + 954.0, + 1591.0, + 581.0, + 1591.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 975.0, + 1552.0, + 1405.0, + 1552.0, + 1405.0, + 1591.0, + 975.0, + 1591.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1586.0, + 448.0, + 1586.0, + 448.0, + 1619.0, + 295.0, + 1619.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1653.0, + 1138.0, + 1653.0, + 1138.0, + 1696.0, + 294.0, + 1696.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1311.0, + 1406.0, + 1311.0, + 1406.0, + 1347.0, + 294.0, + 1347.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1341.0, + 1405.0, + 1341.0, + 1405.0, + 1378.0, + 293.0, + 1378.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1371.0, + 1405.0, + 1371.0, + 1405.0, + 1409.0, + 293.0, + 1409.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1403.0, + 1403.0, + 1403.0, + 1403.0, + 1438.0, + 293.0, + 1438.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1432.0, + 1407.0, + 1432.0, + 1407.0, + 1469.0, + 293.0, + 1469.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1463.0, + 773.0, + 1463.0, + 773.0, + 1500.0, + 294.0, + 1500.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 6, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 298, + 1300, + 1403, + 1300, + 1403, + 1577, + 298, + 1577 + ], + "score": 0.983 + }, + { + "category_id": 1, + "poly": [ + 298, + 948, + 1404, + 948, + 1404, + 1284, + 298, + 1284 + ], + "score": 0.981 + }, + { + "category_id": 1, + "poly": [ + 298, + 1680, + 1404, + 1680, + 1404, + 1926, + 298, + 1926 + ], + "score": 0.98 + }, + { + "category_id": 1, + "poly": [ + 301, + 1942, + 1402, + 1942, + 1402, + 2034, + 301, + 2034 + ], + "score": 0.972 + }, + { + "category_id": 4, + "poly": [ + 296, + 658, + 1405, + 658, + 1405, + 876, + 296, + 876 + ], + "score": 0.972 + }, + { + "category_id": 3, + "poly": [ + 301, + 219, + 1411, + 219, + 1411, + 631, + 301, + 631 + ], + "score": 0.967 + }, + { + "category_id": 0, + "poly": [ + 300, + 1616, + 529, + 1616, + 529, + 1651, + 300, + 1651 + ], + "score": 0.898 + }, + { + "category_id": 2, + "poly": [ + 298, + 76, + 815, + 76, + 815, + 104, + 298, + 104 + ], + "score": 0.89 + }, + { + "category_id": 2, + "poly": [ + 841, + 2089, + 858, + 2089, + 858, + 2111, + 841, + 2111 + ], + "score": 0.79 + }, + { + "category_id": 13, + "poly": [ + 396, + 980, + 428, + 980, + 428, + 1010, + 396, + 1010 + ], + "score": 0.88, + "latex": "h _ { s }" + }, + { + "category_id": 13, + "poly": [ + 868, + 1254, + 909, + 1254, + 909, + 1282, + 868, + 1282 + ], + "score": 0.86, + "latex": "0 \\%" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 660.0, + 1403.0, + 660.0, + 1403.0, + 695.0, + 295.0, + 695.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 692.0, + 1403.0, + 692.0, + 1403.0, + 727.0, + 296.0, + 727.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 719.0, + 1406.0, + 719.0, + 1406.0, + 760.0, + 293.0, + 760.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 753.0, + 1405.0, + 753.0, + 1405.0, + 788.0, + 295.0, + 788.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 783.0, + 1405.0, + 783.0, + 1405.0, + 818.0, + 295.0, + 818.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 812.0, + 1403.0, + 812.0, + 1403.0, + 846.0, + 296.0, + 846.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 845.0, + 1048.0, + 845.0, + 1048.0, + 880.0, + 296.0, + 880.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 404.0, + 229.0, + 420.0, + 229.0, + 420.0, + 315.0, + 404.0, + 315.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1211.0, + 242.0, + 1351.0, + 242.0, + 1351.0, + 277.0, + 1211.0, + 277.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 445.0, + 275.0, + 455.0, + 275.0, + 455.0, + 287.0, + 445.0, + 287.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1210.0, + 274.0, + 1369.0, + 274.0, + 1369.0, + 309.0, + 1210.0, + 309.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1171.0, + 306.0, + 1368.0, + 306.0, + 1368.0, + 341.0, + 1171.0, + 341.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 335.0, + 324.0, + 391.0, + 324.0, + 391.0, + 365.0, + 335.0, + 365.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 430.0, + 352.0, + 446.0, + 352.0, + 446.0, + 378.0, + 430.0, + 378.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 304.0, + 377.0, + 333.0, + 377.0, + 333.0, + 402.0, + 304.0, + 402.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 803.0, + 378.0, + 813.0, + 378.0, + 813.0, + 389.0, + 803.0, + 389.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 482.0, + 423.0, + 513.0, + 423.0, + 513.0, + 465.0, + 482.0, + 465.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 359.0, + 461.0, + 387.0, + 461.0, + 387.0, + 495.0, + 359.0, + 495.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 837.0, + 494.0, + 1021.0, + 494.0, + 1021.0, + 528.0, + 837.0, + 528.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1161.0, + 514.0, + 1179.0, + 514.0, + 1179.0, + 530.0, + 1161.0, + 530.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1224.0, + 512.0, + 1240.0, + 512.0, + 1240.0, + 530.0, + 1224.0, + 530.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1118.0, + 527.0, + 1160.0, + 527.0, + 1160.0, + 543.0, + 1118.0, + 543.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1166.0, + 525.0, + 1232.0, + 525.0, + 1232.0, + 549.0, + 1166.0, + 549.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1235.0, + 531.0, + 1253.0, + 531.0, + 1253.0, + 544.0, + 1235.0, + 544.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1336.0, + 533.0, + 1360.0, + 533.0, + 1360.0, + 546.0, + 1336.0, + 546.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 396.0, + 568.0, + 411.0, + 568.0, + 411.0, + 586.0, + 396.0, + 586.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 639.0, + 562.0, + 664.0, + 562.0, + 664.0, + 591.0, + 639.0, + 591.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 763.0, + 559.0, + 792.0, + 559.0, + 792.0, + 592.0, + 763.0, + 592.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 886.0, + 559.0, + 917.0, + 559.0, + 917.0, + 592.0, + 886.0, + 592.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1014.0, + 560.0, + 1039.0, + 560.0, + 1039.0, + 591.0, + 1014.0, + 591.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1136.0, + 559.0, + 1165.0, + 559.0, + 1165.0, + 592.0, + 1136.0, + 592.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1264.0, + 563.0, + 1285.0, + 563.0, + 1285.0, + 589.0, + 1264.0, + 589.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1387.0, + 560.0, + 1411.0, + 560.0, + 1411.0, + 591.0, + 1387.0, + 591.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 793.0, + 596.0, + 1010.0, + 596.0, + 1010.0, + 632.0, + 793.0, + 632.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1276.0, + 599.0, + 1336.0, + 599.0, + 1336.0, + 640.0, + 1276.0, + 640.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 455.0, + 288.5, + 466.0, + 288.5, + 466.0, + 305.0, + 455.0, + 305.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 472.0, + 322.0, + 651.0, + 322.0, + 651.0, + 377.5, + 472.0, + 377.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1197.0, + 286.0, + 1220.0, + 286.0, + 1220.0, + 298.0, + 1197.0, + 298.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 452.25, + 406.0, + 491.25, + 406.0, + 491.25, + 435.5, + 452.25, + 435.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 513.0, + 448.0, + 840.0, + 448.0, + 840.0, + 528.0, + 513.0, + 528.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 1611.0, + 536.0, + 1611.0, + 536.0, + 1661.0, + 290.0, + 1661.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 73.0, + 817.0, + 73.0, + 817.0, + 108.0, + 296.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 839.0, + 2086.0, + 860.0, + 2086.0, + 860.0, + 2116.0, + 839.0, + 2116.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1298.0, + 1404.0, + 1298.0, + 1404.0, + 1336.0, + 294.0, + 1336.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1331.0, + 1404.0, + 1331.0, + 1404.0, + 1364.0, + 296.0, + 1364.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1361.0, + 1404.0, + 1361.0, + 1404.0, + 1398.0, + 296.0, + 1398.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1390.0, + 1405.0, + 1390.0, + 1405.0, + 1431.0, + 293.0, + 1431.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1421.0, + 1404.0, + 1421.0, + 1404.0, + 1458.0, + 294.0, + 1458.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1453.0, + 1405.0, + 1453.0, + 1405.0, + 1490.0, + 294.0, + 1490.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1482.0, + 1405.0, + 1482.0, + 1405.0, + 1521.0, + 293.0, + 1521.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1512.0, + 1406.0, + 1512.0, + 1406.0, + 1551.0, + 292.0, + 1551.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1545.0, + 1110.0, + 1545.0, + 1110.0, + 1580.0, + 294.0, + 1580.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 949.0, + 1405.0, + 949.0, + 1405.0, + 983.0, + 296.0, + 983.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 980.0, + 395.0, + 980.0, + 395.0, + 1014.0, + 294.0, + 1014.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 429.0, + 980.0, + 1406.0, + 980.0, + 1406.0, + 1014.0, + 429.0, + 1014.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1008.0, + 1405.0, + 1008.0, + 1405.0, + 1044.0, + 293.0, + 1044.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1040.0, + 1406.0, + 1040.0, + 1406.0, + 1075.0, + 293.0, + 1075.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1070.0, + 1408.0, + 1070.0, + 1408.0, + 1105.0, + 293.0, + 1105.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1104.0, + 1404.0, + 1104.0, + 1404.0, + 1135.0, + 294.0, + 1135.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1132.0, + 1405.0, + 1132.0, + 1405.0, + 1166.0, + 293.0, + 1166.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1163.0, + 1404.0, + 1163.0, + 1404.0, + 1197.0, + 293.0, + 1197.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1193.0, + 1404.0, + 1193.0, + 1404.0, + 1227.0, + 294.0, + 1227.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1224.0, + 1404.0, + 1224.0, + 1404.0, + 1258.0, + 294.0, + 1258.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1255.0, + 867.0, + 1255.0, + 867.0, + 1286.0, + 297.0, + 1286.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 910.0, + 1255.0, + 1046.0, + 1255.0, + 1046.0, + 1286.0, + 910.0, + 1286.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1678.0, + 1405.0, + 1678.0, + 1405.0, + 1719.0, + 293.0, + 1719.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1713.0, + 1405.0, + 1713.0, + 1405.0, + 1747.0, + 294.0, + 1747.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1742.0, + 1404.0, + 1742.0, + 1404.0, + 1777.0, + 293.0, + 1777.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1774.0, + 1404.0, + 1774.0, + 1404.0, + 1808.0, + 294.0, + 1808.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1802.0, + 1405.0, + 1802.0, + 1405.0, + 1839.0, + 293.0, + 1839.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1835.0, + 1404.0, + 1835.0, + 1404.0, + 1869.0, + 294.0, + 1869.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1866.0, + 1406.0, + 1866.0, + 1406.0, + 1900.0, + 292.0, + 1900.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1896.0, + 564.0, + 1896.0, + 564.0, + 1929.0, + 293.0, + 1929.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1939.0, + 1406.0, + 1939.0, + 1406.0, + 1978.0, + 295.0, + 1978.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1975.0, + 1403.0, + 1975.0, + 1403.0, + 2005.0, + 296.0, + 2005.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 2000.0, + 1402.0, + 2000.0, + 1402.0, + 2040.0, + 295.0, + 2040.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 7, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 297, + 428, + 1404, + 428, + 1404, + 706, + 297, + 706 + ], + "score": 0.984 + }, + { + "category_id": 1, + "poly": [ + 298, + 1107, + 1403, + 1107, + 1403, + 1290, + 298, + 1290 + ], + "score": 0.976 + }, + { + "category_id": 1, + "poly": [ + 299, + 229, + 1403, + 229, + 1403, + 413, + 299, + 413 + ], + "score": 0.976 + }, + { + "category_id": 1, + "poly": [ + 295, + 1390, + 1407, + 1390, + 1407, + 2036, + 295, + 2036 + ], + "score": 0.964 + }, + { + "category_id": 1, + "poly": [ + 297, + 754, + 1404, + 754, + 1404, + 1093, + 297, + 1093 + ], + "score": 0.946 + }, + { + "category_id": 8, + "poly": [ + 622, + 712, + 1083, + 712, + 1083, + 751, + 622, + 751 + ], + "score": 0.941 + }, + { + "category_id": 9, + "poly": [ + 1353, + 715, + 1399, + 715, + 1399, + 745, + 1353, + 745 + ], + "score": 0.895 + }, + { + "category_id": 2, + "poly": [ + 300, + 76, + 815, + 76, + 815, + 104, + 300, + 104 + ], + "score": 0.894 + }, + { + "category_id": 0, + "poly": [ + 299, + 1324, + 487, + 1324, + 487, + 1357, + 299, + 1357 + ], + "score": 0.862 + }, + { + "category_id": 2, + "poly": [ + 840, + 2088, + 858, + 2088, + 858, + 2111, + 840, + 2111 + ], + "score": 0.777 + }, + { + "category_id": 13, + "poly": [ + 666, + 847, + 860, + 847, + 860, + 881, + 666, + 881 + ], + "score": 0.93, + "latex": "p ( \\pmb { y } \\mid \\pmb { \\theta } ) = m ( \\pmb { y } )" + }, + { + "category_id": 13, + "poly": [ + 537, + 786, + 635, + 786, + 635, + 820, + 537, + 820 + ], + "score": 0.93, + "latex": "p ( \\pmb { y } \\mid \\pmb { \\theta } )" + }, + { + "category_id": 14, + "poly": [ + 619, + 712, + 1079, + 712, + 1079, + 750, + 619, + 750 + ], + "score": 0.92, + "latex": "\\mathbb { E } _ { { \\pmb { y } } \\sim m } [ | b ( { \\pmb { y } } ) | ] \\geq \\mathbb { E } _ { { \\pmb { y } } \\sim m } [ - \\log _ { 2 } p ( { \\pmb { y } } \\mid { \\pmb { \\theta } } ) ] ," + }, + { + "category_id": 13, + "poly": [ + 372, + 755, + 440, + 755, + 440, + 789, + 372, + 789 + ], + "score": 0.92, + "latex": "\\left| b ( \\boldsymbol { y } ) \\right|" + }, + { + "category_id": 13, + "poly": [ + 333, + 877, + 403, + 877, + 403, + 911, + 333, + 911 + ], + "score": 0.92, + "latex": "\\left| b ( \\pmb { y } ) \\right|" + }, + { + "category_id": 13, + "poly": [ + 926, + 761, + 947, + 761, + 947, + 788, + 926, + 788 + ], + "score": 0.79, + "latex": "\\textbf { { y } }" + }, + { + "category_id": 13, + "poly": [ + 945, + 851, + 966, + 851, + 966, + 880, + 945, + 880 + ], + "score": 0.72, + "latex": "\\textbf { { y } }" + }, + { + "category_id": 13, + "poly": [ + 1376, + 914, + 1394, + 914, + 1394, + 940, + 1376, + 940 + ], + "score": 0.71, + "latex": "p" + }, + { + "category_id": 13, + "poly": [ + 706, + 817, + 750, + 817, + 750, + 845, + 706, + 845 + ], + "score": 0.61, + "latex": "\\pmb { \\theta } -" + }, + { + "category_id": 13, + "poly": [ + 360, + 1763, + 378, + 1763, + 378, + 1786, + 360, + 1786 + ], + "score": 0.51, + "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": [ + 297.0, + 1326.0, + 490.0, + 1326.0, + 490.0, + 1359.0, + 297.0, + 1359.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 839.0, + 2087.0, + 860.0, + 2087.0, + 860.0, + 2117.0, + 839.0, + 2117.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 431.0, + 1405.0, + 431.0, + 1405.0, + 463.0, + 296.0, + 463.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 459.0, + 1405.0, + 459.0, + 1405.0, + 495.0, + 294.0, + 495.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 488.0, + 1406.0, + 488.0, + 1406.0, + 528.0, + 292.0, + 528.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 522.0, + 1401.0, + 522.0, + 1401.0, + 555.0, + 296.0, + 555.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 551.0, + 1402.0, + 551.0, + 1402.0, + 588.0, + 294.0, + 588.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 581.0, + 1404.0, + 581.0, + 1404.0, + 617.0, + 292.0, + 617.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 610.0, + 1406.0, + 610.0, + 1406.0, + 650.0, + 292.0, + 650.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 642.0, + 1406.0, + 642.0, + 1406.0, + 679.0, + 294.0, + 679.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 673.0, + 1352.0, + 673.0, + 1352.0, + 710.0, + 295.0, + 710.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1106.0, + 1404.0, + 1106.0, + 1404.0, + 1142.0, + 294.0, + 1142.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1135.0, + 1405.0, + 1135.0, + 1405.0, + 1172.0, + 293.0, + 1172.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1168.0, + 1404.0, + 1168.0, + 1404.0, + 1202.0, + 293.0, + 1202.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1195.0, + 1404.0, + 1195.0, + 1404.0, + 1236.0, + 292.0, + 1236.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1229.0, + 1405.0, + 1229.0, + 1405.0, + 1264.0, + 294.0, + 1264.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1259.0, + 587.0, + 1259.0, + 587.0, + 1295.0, + 293.0, + 1295.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 228.0, + 1405.0, + 228.0, + 1405.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": [ + 294.0, + 289.0, + 1405.0, + 289.0, + 1405.0, + 326.0, + 294.0, + 326.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 321.0, + 1405.0, + 321.0, + 1405.0, + 355.0, + 294.0, + 355.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 351.0, + 1408.0, + 351.0, + 1408.0, + 387.0, + 292.0, + 387.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 383.0, + 517.0, + 383.0, + 517.0, + 416.0, + 295.0, + 416.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1391.0, + 1405.0, + 1391.0, + 1405.0, + 1431.0, + 294.0, + 1431.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 319.0, + 1423.0, + 1405.0, + 1423.0, + 1405.0, + 1462.0, + 319.0, + 1462.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 319.0, + 1456.0, + 504.0, + 1456.0, + 504.0, + 1487.0, + 319.0, + 1487.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1481.0, + 1401.0, + 1481.0, + 1401.0, + 1524.0, + 292.0, + 1524.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 325.0, + 1517.0, + 422.0, + 1517.0, + 422.0, + 1547.0, + 325.0, + 1547.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1543.0, + 1405.0, + 1543.0, + 1405.0, + 1585.0, + 294.0, + 1585.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1576.0, + 1405.0, + 1576.0, + 1405.0, + 1615.0, + 322.0, + 1615.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1607.0, + 748.0, + 1607.0, + 748.0, + 1644.0, + 321.0, + 1644.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1635.0, + 1405.0, + 1635.0, + 1405.0, + 1675.0, + 293.0, + 1675.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1669.0, + 697.0, + 1669.0, + 697.0, + 1705.0, + 323.0, + 1705.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1697.0, + 1407.0, + 1697.0, + 1407.0, + 1736.0, + 293.0, + 1736.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1726.0, + 1405.0, + 1726.0, + 1405.0, + 1769.0, + 321.0, + 1769.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1759.0, + 359.0, + 1759.0, + 359.0, + 1796.0, + 322.0, + 1796.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 379.0, + 1759.0, + 538.0, + 1759.0, + 538.0, + 1796.0, + 379.0, + 1796.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1786.0, + 1403.0, + 1786.0, + 1403.0, + 1826.0, + 293.0, + 1826.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1820.0, + 1135.0, + 1820.0, + 1135.0, + 1857.0, + 322.0, + 1857.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1849.0, + 1405.0, + 1849.0, + 1405.0, + 1889.0, + 294.0, + 1889.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 1880.0, + 1004.0, + 1880.0, + 1004.0, + 1920.0, + 320.0, + 1920.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1911.0, + 1404.0, + 1911.0, + 1404.0, + 1947.0, + 296.0, + 1947.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1941.0, + 1404.0, + 1941.0, + 1404.0, + 1980.0, + 322.0, + 1980.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1971.0, + 1175.0, + 1971.0, + 1175.0, + 2010.0, + 321.0, + 2010.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1999.0, + 1359.0, + 1999.0, + 1359.0, + 2042.0, + 293.0, + 2042.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 755.0, + 371.0, + 755.0, + 371.0, + 790.0, + 296.0, + 790.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 441.0, + 755.0, + 925.0, + 755.0, + 925.0, + 790.0, + 441.0, + 790.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 948.0, + 755.0, + 1404.0, + 755.0, + 1404.0, + 790.0, + 948.0, + 790.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 789.0, + 536.0, + 789.0, + 536.0, + 820.0, + 295.0, + 820.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 636.0, + 789.0, + 1402.0, + 789.0, + 1402.0, + 820.0, + 636.0, + 820.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 816.0, + 705.0, + 816.0, + 705.0, + 851.0, + 295.0, + 851.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 751.0, + 816.0, + 1404.0, + 816.0, + 1404.0, + 851.0, + 751.0, + 851.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 847.0, + 665.0, + 847.0, + 665.0, + 882.0, + 294.0, + 882.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 861.0, + 847.0, + 944.0, + 847.0, + 944.0, + 882.0, + 861.0, + 882.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 967.0, + 847.0, + 1405.0, + 847.0, + 1405.0, + 882.0, + 967.0, + 882.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 876.0, + 332.0, + 876.0, + 332.0, + 915.0, + 292.0, + 915.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 404.0, + 876.0, + 1406.0, + 876.0, + 1406.0, + 915.0, + 404.0, + 915.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 906.0, + 1375.0, + 906.0, + 1375.0, + 946.0, + 291.0, + 946.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1395.0, + 906.0, + 1406.0, + 906.0, + 1406.0, + 946.0, + 1395.0, + 946.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 938.0, + 1405.0, + 938.0, + 1405.0, + 973.0, + 294.0, + 973.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 967.0, + 1405.0, + 967.0, + 1405.0, + 1006.0, + 292.0, + 1006.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1000.0, + 1404.0, + 1000.0, + 1404.0, + 1034.0, + 294.0, + 1034.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1030.0, + 1405.0, + 1030.0, + 1405.0, + 1064.0, + 294.0, + 1064.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1061.0, + 1343.0, + 1061.0, + 1343.0, + 1096.0, + 294.0, + 1096.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 8, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 293, + 212, + 1406, + 212, + 1406, + 1524, + 293, + 1524 + ], + "score": 0.967 + }, + { + "category_id": 2, + "poly": [ + 299, + 76, + 816, + 76, + 816, + 105, + 299, + 105 + ], + "score": 0.886 + }, + { + "category_id": 2, + "poly": [ + 836, + 2088, + 866, + 2088, + 866, + 2113, + 836, + 2113 + ], + "score": 0.841 + }, + { + "category_id": 13, + "poly": [ + 639, + 384, + 658, + 384, + 658, + 415, + 639, + 415 + ], + "score": 0.83, + "latex": "\\beta" + }, + { + "category_id": 13, + "poly": [ + 708, + 599, + 726, + 599, + 726, + 622, + 708, + 622 + ], + "score": 0.58, + "latex": "\\underline { { \\underline { { \\mathbf { \\Pi } } } } } =" + }, + { + "category_id": 13, + "poly": [ + 459, + 1482, + 478, + 1482, + 478, + 1505, + 459, + 1505 + ], + "score": 0.48, + "latex": "\\underline { { \\underline { { \\mathbf { \\Pi } } } } } =" + }, + { + "category_id": 13, + "poly": [ + 742, + 448, + 760, + 448, + 760, + 470, + 742, + 470 + ], + "score": 0.46, + "latex": "=" + }, + { + "category_id": 13, + "poly": [ + 360, + 1392, + 378, + 1392, + 378, + 1413, + 360, + 1413 + ], + "score": 0.3, + "latex": "=" + }, + { + "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": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 228.0, + 1405.0, + 228.0, + 1405.0, + 269.0, + 293.0, + 269.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 261.0, + 1376.0, + 261.0, + 1376.0, + 297.0, + 320.0, + 297.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 290.0, + 1406.0, + 290.0, + 1406.0, + 331.0, + 293.0, + 331.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 319.0, + 316.0, + 1406.0, + 316.0, + 1406.0, + 361.0, + 319.0, + 361.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 352.0, + 1137.0, + 352.0, + 1137.0, + 389.0, + 320.0, + 389.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 383.0, + 638.0, + 383.0, + 638.0, + 419.0, + 294.0, + 419.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 659.0, + 383.0, + 1404.0, + 383.0, + 1404.0, + 419.0, + 659.0, + 419.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 319.0, + 408.0, + 1404.0, + 408.0, + 1404.0, + 456.0, + 319.0, + 456.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 325.0, + 446.0, + 741.0, + 446.0, + 741.0, + 478.0, + 325.0, + 478.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 761.0, + 446.0, + 919.0, + 446.0, + 919.0, + 478.0, + 761.0, + 478.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 471.0, + 1404.0, + 471.0, + 1404.0, + 514.0, + 291.0, + 514.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 317.0, + 503.0, + 731.0, + 503.0, + 731.0, + 543.0, + 317.0, + 543.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 533.0, + 1404.0, + 533.0, + 1404.0, + 574.0, + 291.0, + 574.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 319.0, + 562.0, + 1404.0, + 562.0, + 1404.0, + 606.0, + 319.0, + 606.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 597.0, + 707.0, + 597.0, + 707.0, + 634.0, + 322.0, + 634.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 727.0, + 597.0, + 889.0, + 597.0, + 889.0, + 634.0, + 727.0, + 634.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 627.0, + 1405.0, + 627.0, + 1405.0, + 664.0, + 295.0, + 664.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 316.0, + 655.0, + 1325.0, + 655.0, + 1325.0, + 693.0, + 316.0, + 693.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 684.0, + 1402.0, + 684.0, + 1402.0, + 728.0, + 291.0, + 728.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 317.0, + 715.0, + 1099.0, + 715.0, + 1099.0, + 758.0, + 317.0, + 758.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 746.0, + 1405.0, + 746.0, + 1405.0, + 786.0, + 293.0, + 786.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 319.0, + 777.0, + 822.0, + 777.0, + 822.0, + 817.0, + 319.0, + 817.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 802.0, + 1408.0, + 802.0, + 1408.0, + 852.0, + 290.0, + 852.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 836.0, + 1408.0, + 836.0, + 1408.0, + 880.0, + 320.0, + 880.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 869.0, + 1357.0, + 869.0, + 1357.0, + 906.0, + 323.0, + 906.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 900.0, + 1404.0, + 900.0, + 1404.0, + 937.0, + 294.0, + 937.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 319.0, + 927.0, + 1406.0, + 927.0, + 1406.0, + 971.0, + 319.0, + 971.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 961.0, + 574.0, + 961.0, + 574.0, + 997.0, + 320.0, + 997.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 987.0, + 1404.0, + 987.0, + 1404.0, + 1031.0, + 291.0, + 1031.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 319.0, + 1019.0, + 1348.0, + 1019.0, + 1348.0, + 1061.0, + 319.0, + 1061.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1049.0, + 1404.0, + 1049.0, + 1404.0, + 1092.0, + 291.0, + 1092.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 319.0, + 1078.0, + 1406.0, + 1078.0, + 1406.0, + 1122.0, + 319.0, + 1122.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 1111.0, + 812.0, + 1111.0, + 812.0, + 1150.0, + 320.0, + 1150.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1137.0, + 1404.0, + 1137.0, + 1404.0, + 1184.0, + 291.0, + 1184.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 319.0, + 1174.0, + 1205.0, + 1174.0, + 1205.0, + 1211.0, + 319.0, + 1211.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1200.0, + 1404.0, + 1200.0, + 1404.0, + 1243.0, + 291.0, + 1243.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 1236.0, + 1180.0, + 1236.0, + 1180.0, + 1272.0, + 320.0, + 1272.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1265.0, + 1406.0, + 1265.0, + 1406.0, + 1302.0, + 294.0, + 1302.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 1297.0, + 911.0, + 1297.0, + 911.0, + 1334.0, + 320.0, + 1334.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1322.0, + 1405.0, + 1322.0, + 1405.0, + 1367.0, + 293.0, + 1367.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 319.0, + 1355.0, + 1405.0, + 1355.0, + 1405.0, + 1398.0, + 319.0, + 1398.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 319.0, + 1384.0, + 359.0, + 1384.0, + 359.0, + 1427.0, + 319.0, + 1427.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 379.0, + 1384.0, + 541.0, + 1384.0, + 541.0, + 1427.0, + 379.0, + 1427.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1415.0, + 1406.0, + 1415.0, + 1406.0, + 1456.0, + 294.0, + 1456.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 319.0, + 1445.0, + 1405.0, + 1445.0, + 1405.0, + 1489.0, + 319.0, + 1489.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1477.0, + 458.0, + 1477.0, + 458.0, + 1517.0, + 322.0, + 1517.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 479.0, + 1477.0, + 637.0, + 1477.0, + 637.0, + 1517.0, + 479.0, + 1517.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/oyZxhRI2RiE/oyZxhRI2RiE.md b/parse/train/oyZxhRI2RiE/oyZxhRI2RiE.md new file mode 100644 index 0000000000000000000000000000000000000000..e7207d39ff5180204eeddf536c2263d86990e0a9 --- /dev/null +++ b/parse/train/oyZxhRI2RiE/oyZxhRI2RiE.md @@ -0,0 +1,417 @@ +# SCORE: PRE-TRAINING FOR CONTEXT REPRESENTATION IN CONVERSATIONAL SEMANTIC PARSING + +Tao Yu Yale University tao.yu@yale.edu + +Rui Zhang The Pennsylvania State University rmz5227@psu.edu + +Oleksandr Polozov, Christopher Meek, Ahmed Hassan Awadallah Microsoft Research {polozov,meek,hassanam}@microsoft.com + +# ABSTRACT + +Conversational Semantic Parsing (CSP) is the task of converting a sequence of natural language queries to formal language (e.g., SQL, SPARQL) that can be executed against a structured ontology (e.g. databases, knowledge bases). To accomplish this task, a CSP system needs to model the relation between the unstructured language utterance and the structured ontology while representing the multi-turn dynamics of the dialog. Pre-trained language models (LMs) are the state-of-the-art for various natural language processing tasks. However, existing pre-trained LMs that use language modeling training objectives over free-form text have limited ability to represent natural language references to contextual structural data. In this work, we present SCORE, a new pre-training approach for CSP tasks designed to induce representations that capture the alignment between the dialogue flow and the structural context. We demonstrate the broad applicability of SCORE to CSP tasks by combining SCORE with strong base systems on four different tasks (SPARC, COSQL, MWOZ, and SQA). We show that SCORE can improve the performance over all these base systems by a significant margin and achieves state-of-the-art results on three of them. + +# 1 INTRODUCTION + +The goal of task-oriented dialog systems is to assist the user in completing a certain task by performing an action or retrieving relevant information (Tur & Mori, 2011). They are often built on top of a structured ontology grounded in a knowledge base, a database, or a set of API calls. This in contrast to open-domain dialog systems (also referred to as chit-chat systems) where the goal is to maximize engagement with users in open-ended conversations (Jafarpour et al., 2010; Ritter et al., 2011). + +A key component of task-oriented conversational systems is Conversational Semantic Parsing (CSP), which converts each utterance in the dialog into a formal language query (e.g., SQL, SPARQL) that can be executed against the structured ontology. CSP has been extensively studied in several academic and industrial research settings such as dialog systems (e.g., dialog state tracking in MWOZ (Budzianowski et al., 2018)), interacting with physical agents (e.g., (Chai et al., 2018)), context-dependent semantic parsing (e.g., SPARC (Yu et al., 2019b)), SQL-grounded state tracking (e.g., COSQL (Yu et al., 2019a)), and sequential question answering (e.g., SQA (Iyyer et al., 2017)). These settings differ in some respect, but they share the same overall objective and key challenge: how to jointly represent the natural language utterances and underlying structured ontology while taking into consideration the multi-turn dynamics of the dialog. + +Similar to many other natural language tasks, recent work in CSP has significantly benefited from advances in language model pre-training. However, existing general-purpose pre-trained language models, e.g. BERT (Devlin et al., 2019), are pre-trained on free-form text data using language model objectives. This limits their ability in modeling the structural context or the multi-turn dynamics of the dialogs. This presents an opportunity to improve pre-trained LMs to specifically address these limitations for CSP tasks. Recent work has demonstrated the benefits of adapting pre-trained LMs to specific domains (Gururangan et al., 2020) or tasks (Zhang et al., 2019b) via a second phase of pre-training. For example, open-domain dialogue language models such as DialoGPT (Zhang et al., 2020) and ConveRT (Henderson et al., 2019) are pre-trained on the Reddit data and applied to dialog response generation and retrieval tasks. + +![](images/7aee0dcf05f327f0a25d0a1d95fd1e53bd5c59396766fe11cc27b236f4dec59f.jpg) +Figure 1: Examples of conversational semantic parsing tasks from SPARC and MWOZ datasets. + +In this paper, we introduce SCORE (Structured & Sequential Context Representation), a language model pre-training approach for CSP tasks. SCORE adapts general pre-trained LMs by introducing a second phase of pre-training using multiple objectives that capture both multi-turn dynamics and the structural contexts in a dialog. In contrast to open-domain dialogs, CSP datasets are usually much smaller due to the difficulty and expense of obtaining and labeling data (mapping natural language utterances to formal language). Unlike most prior work on contextualized LMs which are pre-trained on free text, according to the finding where questions in CSP tasks are more compositional than other free-text since they can be mapped into formal representations, we propose to train SCORE on synthesized conversational semantic parsing data with multiple training objectives that aim to ground utterances into the schema of the underlying ontology and to model the relationship between different utterances in the multi-turn conversation. In this way, SCORE can effectively inject structural and conversational inductive biases in LMs that can translate to many CSP tasks. SCORE uses an order of magnitude smaller dataset for the second stage of pre-training, does not require changes to the pre-trained model architecture, can be used as a drop-in replacement of general pre-trained LMs with any semantic parsing model, and can be used out-of-the-box in many CSP tasks. + +We apply SCORE to four different CSP tasks: (1) sequential text-to-SQL (SPARC), (2) conversational text-to-SQL (COSQL), (3) dialog state tracking (MWOZ), and (4) weakly-supervised sequential question answering (SQA). The fours tasks represent different scenarios, types of ontologies, supervision signals, system responses, and domains (see Table 1 for a detailed comparison and Figure 1 for examples). We demonstrate that: (1) SCORE training objectives can effectively incorporate synthesized data, (2) a single pre-trained SCORE model can be used for several CSP tasks and can be combined with many baseline systems with different model architectures and (3) SCORE significantly improve all baseline systems and achieves new state-of-the-art results on three benchmarks (SPARC, SPARC, and MWOZ) and comparable performance to state-of-the-art results on the fourth (SQA). + +# 2 APPROACH + +The key challenge of CSP is to capture the relationship between the natural language utterance and the structured ontology in the multi-turn dialog dynamics. To this end, we inject structural and conversational inductive biases in SCORE by introducing two objective functions: Column Contextual Semantics (CCS) and the Turn Contextual Switch (TCS). Because the size of existing semantic parsing datasets is limited, we produce synthesized data for pretraining SCORE by sampling from the context-free grammar induced from complex text-to-SQL examples in different domains. Moreover, to prevent SCORE from overfitting to the linguistic pattern of our synthesized data, we use the Masked Language Modeling (MLM) objective on human-generated utterances as regularization. + +# 2.1 PRELIMINARIES + +Task Definition In CSP, at each turn $t$ , we aim to produce a formal representation $q _ { t }$ given the current utterance $u _ { t }$ , the interaction history $h _ { t } = [ u _ { 1 } , u _ { 2 } , \ldots , u _ { t - 1 } ]$ , and the schema $c$ (table and column names, slots, etc.) of the target database (ontology) $d$ . To cover different problem variants, we + +
DatasetStructured OntologyAnnotation (Supervision)Cross DomainSystem Response# Dialogs# Turns
SPARCdatabaseSQL (supervised)X4,29812,726
CoSQLdatabaseSQL (supervised)3,00715,598
MWoZdomain ontologyslot-value (supervised)X8,438113,556
SQAtabledenotation (weakly-supervised)X6,06617,553
+ +Table 1: Comparison of CSP datasets. Examples from two of the datasets are shown in Figure 1. +Cross-domain means the train and test sets have different domains, so MWOZ is not cross-domain. + +consider four popular CSP tasks shown in Table 1: SPARC (sequential text-to-SQL), COSQL (conversational text-to-SQL), MWOZ (dialogue state tracking), and SQA (weakly supervised sequential question answering). They have different target formal language and structured ontology: + +• For the utterance $\textbf { \em u }$ , it is the user question for SPARC and SQA, while for COSQL and MWOZ, $u$ is the combination of a user query and a system response. +• For the database $^ d$ , SPARC and COSQL use multi-table databases; for MWOZ, the pre-defined ontology $d$ can also be viewed as a database; for SQA, $d$ is a single table. +• For the formal representation $\pmb q$ , it is the SQL query for SPARC and COSQL; in MWOZ it is the slot-value pairs that can be viewed as simple SQL queries consisting of SELECT and WHERE clauses; and for SQA, $q$ is the latent program. + +Base Architecture The base architecture of SCORE takes as input a single turn of a CSP dialog $\left. u _ { t } , h _ { t } \right.$ jointly with the underlying database schema $c$ . Given this contextualized conversational input $C _ { t } = \langle u _ { t } , h _ { t } , c \rangle$ , SCORE encodes it into contextualized conversation representations $\vec { S } _ { t }$ for each token in $C _ { t }$ . The encoder architecture follows RoBERTa (Liu et al., 2019b). It is then followed by a linear layer and normalized (Ba et al., 2016) to produce final representations $\vec { h } _ { t }$ for each token: + +$$ +C _ { t } = \langle u _ { t } , h _ { t } , c \rangle , \ \vec { S } _ { t } = \mathrm { R o B E R T A } ( C _ { t } ) , \ h _ { t , i } = \mathrm { L a y e r N o r m } ( \mathrm { G E L U } ( W _ { 1 } S _ { t , i } ) ) \ \forall S _ { t , i } \in \vec { S } _ { t } , +$$ + +where GELU is an activation by Hendrycks & Gimpel (2016) and $W _ { 1 }$ is a learned parameter matrix. + +To build $C _ { t }$ , we first concatenate current utterances $u _ { t }$ and dialog history $h _ { t }$ separated by a special token $< s >$ , as this simple strategy has been shown effective in state-of-the-art CSP systems (Zhang et al., $2 0 1 9 \mathrm { c }$ ; Wu et al., 2019; Liu et al., 2020; Heck et al., 2020). To incorporate the database schema, we follow Hwang et al. (2019) to concatenate all column names as a single sequence. Column names are separated by the special token $< / \varsigma >$ and prefixed by their corresponding table name. + +# 2.2 SCORE PRE-TRAINING + +SCORE addresses the challenges of CSP by pre-training a task-oriented language model contextualized by the conversational flow and the underlying ontology. In pre-training, the SCORE model is self-supervised by two novel objectives in addition to the established Masked Language Modeling (MLM) objective. These objectives facilitate the accurate representation of the conversational flow between dialog turns and how this flow maps to the desired columns in the ontology. + +Column Contextual Semantics The first challenge of CSP is capturing the alignment between the natural language utterance and the underlying database schema. To address it, we optimize the SCORE model with the auxiliary objective of Column Contextual Semantics (CCS). For each column in the database schema $c$ , CCS targets the operations that should be performed on this column in a given conversational turn. Specifically, each formal representation $q$ is decomposed into operations on columns and tables, e.g. GROUP BY and HAVING for SQL queries, or WHERE for the slot-value pairs. In this way, our data covers 148 column operations. We use the encoding of the special token $< / \varsigma >$ right before each column or table name to predict its corresponding operations, and then compute the CCS loss: + +$$ +{ \mathcal { L } } _ { \mathrm { C C S } } ( C _ { t } ) = \sum _ { i \in c } { \mathrm { C r o s s E n t r o p y } } _ { 1 4 8 } ( { \mathrm { L a y e r N o r m } } ( W _ { 2 } h _ { t , i } ^ { c } ) , { \mathrm { C C S } } ( q _ { t } ) ) +$$ + +where $h _ { t , i } ^ { c }$ is the contextualized representation of the $i ^ { \mathrm { { t h } } }$ column’s special token $< / \varsigma >$ in the contextualized input $C _ { t }$ , $\operatorname { C C S } ( q _ { t } )$ returns the column operation label for the current formal representation $q _ { t }$ , CrossEntropy $^ { 1 4 8 }$ computes the 148-way cross-entropy between the column operation prediction and label, and $W _ { 2 }$ is a learned parameter matrix. + +![](images/a26fd1e21b056c19bb034c1f12fdaf1d1a572af164e6b8ac9602885a9dd040ef.jpg) +Dialogs Formal Programs DatabaseFigure 2: Pre-training of a SCORE encoder on a SPARC text-to-SQL example from Figure 1. + +Usr: Also show the names of their publishers. SELECT t1.title, t1.name, t3.name FROM author AS t1 JOIN book Book: id | title | author id | … | sale_amountTurn Contextual Switch The second challenge of CSP is capturing the conversational context t3.id ORDER BY t2.sale_amount DESC LIMIT 3flow and how it is grounded into the formal representations. The TCS objective aims to capture this Usr: I am looking for a cheap restaurant in the Restaurant(Price=cheap, area=center)grounding of context flow. To this end, it targets predicting the difference in formal representations Sys: There is a cheap chinese restaurant called between dialog turns based on the natural language utterance. + +… ... Taxi: leaveAt | … | destinationBased on the context-free grammar of SQL, we identify 26 possible turn difference operations that a Usr: I also need to book a taxi between to the restaurant at 20:30. Restaurant(price=cheap, area=center, name=Dojo Noodle Bar, people=8, time=18:30, day=Thursday)conversational turn could elicit. They encode changes between different turns of user queries (the sysSys: The taxi is booked. tem response is not involved here) since we assume that most turn contextual shifts are from the user. For example, INS(WHERE) indicates inserting a new WHERE condition and DEL(SELECT.agg) indicates removing an aggregate operation from a SELECT statement (e.g. when an utterance “Show all the ages instead.” elicits a change SELECT MAX(age) ... SELECT age ...). We use the encoding of the special token $< / \varsigma >$ right before each turn to predict the context switch label between this turn and the previous history: + +$$ +\mathcal { L } _ { \mathrm { T C S } } ( C _ { t } ) = \mathrm { C r o s s E n t r o p y } _ { 2 6 } ( \mathrm { L a y e r N o r m } ( W _ { 3 } H _ { t } ^ { s } ) , \mathrm { T C S } ( q _ { t } , q _ { t - 1 } ) ) +$$ + +where $\pmb { H } _ { t } ^ { s } \in \mathbb { R } ^ { ( t - 1 ) \times d }$ is the contextualized representation of all previous turns in $C _ { t }$ with hidden dimension $d$ , $\mathrm { T C S } ( q _ { t } , q _ { t - 1 } )$ returns the turn difference operations from $q _ { t - 1 }$ to $q _ { t }$ , and $W _ { 3 }$ is a learned parameter matrix. We don’t use this objective to pre-train SCORE for MWOZ because the context switch label between turns is relatively simple in MWOZ (only select and where changes). + +Masked Language Modeling As in prior work on large-scale language models (Devlin et al., 2019), we use the Masked Language Modeling (MLM) objective to facilitate contextual representation learning for natural language utterances. Importantly for regularization, we only apply this loss on in-domain human-annotated natural language data. Namely, it includes utterances in SPARC, COSQL, and SQA as well as nine task-oriented dialog datasets processed by Wu et al. (2020) for MWOZ (see data statistics in Figure 4). Formally, the MLM loss is given by: + +$$ +\mathcal { L } _ { \mathrm { M L M } } ( C _ { t } ) = \sum _ { m } \mathrm { C r o s s E n t r o p y } _ { \mathrm { V o c a b } } ( \mathrm { L a y e r N o r m } ( W _ { 4 } h _ { t } ^ { m } ) ) +$$ + +where $\pmb { h } _ { t } ^ { m }$ are the contextualized representations of the masked $15 \%$ of tokens in $C _ { t }$ , and $W _ { 4 }$ is a learned parameter matrix. + +Pre-Training Setup and Steps To summarize the pre-training steps, we first collect a dataset $\mathcal { D } _ { \mathrm { n a t } }$ of combined human-annotated natural language questions (without labels) from existing CSP tasks (as mentioned above), and create a large synthesized conversational data $\mathcal { D } _ { \mathrm { s y n } }$ that is generated by a grammar induced from a small set of SPARC annotated examples (See 2.3). After that, we incorporate both two datasets in pre-training. More specifically, synthetic and natural examples are randomly sampled during pre-training. The total pre-training loss is the sum of the three objectives with CCS and TCS only applied to $\mathcal { D } _ { \mathrm { s y n } }$ and MLM only to $\mathcal { D } _ { \mathrm { n a t } }$ : + +$$ +\mathcal { L } = \sum _ { C _ { t } \in \mathcal { D } _ { \mathrm { s y n } } } \left( \mathcal { L } _ { \mathrm { C C S } } ( C _ { t } ) + \mathcal { L } _ { \mathrm { T C S } } ( C _ { t } ) \right) + \sum _ { C _ { t } \in \mathcal { D } _ { \mathrm { n a t } } } \mathcal { L } _ { \mathrm { M L M } } ( C _ { t } ) +$$ + +Figure 2 shows an overview of SCORE pre-training on an example SPARC dialogue from Figure 1. +We report additional implementation details for pre-training SCORE in Section 3.3 and Appendix C. + +# 2.3 DATA SYNTHESIS + +We re-use the synthetic dataset of 120k synthetic task-oriented dialogues for MWOZ, introduced by Campagna et al. (2020). In this work, we introduce a complementary procedure to synthesize data for conversational text-to-SQL dialogues. We use about $4 0 0 \mathrm { k }$ tables in WIKITABLES (Bhagavatula et al., 2015) (after filtering and cleaning), WikiSQL, and Spider datasets as underlying databases $d$ , and then synthesize about one dialog for each table. Finally, we synthesize $4 3 5 \mathrm { k }$ text-to-SQL conversations in total. Table 12 in Appendix B shows an example of the synthesized question-SQL pairs and their corresponding templates in our grammar. + +To this end, we use only 500 dev examples from SPARC to induce two utteranceSQL generation grammars: (1) a singleturn context-free grammar $G _ { s }$ for generating context-independent question-SQL pairs, and (2) a follow-up context-free grammar $G _ { c }$ for follow-up question-SQL pairs. The single-turn grammar $G _ { s }$ contains a list of synchronous question-SQL templates where typed slots (COLUMN0, OP0, VALUE0, . . . ) represent mentions of tables, columns, values, and SQL operations. The follow-up grammar $G _ { c }$ contains context switch labels and lists of follow-up question templates. For example, if the context switch label is INS(SELECT.column0), the corresponding question could be “How about show column0 too?”. To ensure generalization, we only induce the grammars from the SPARC training set. Appendix B shows examples of the grammar rules and synthesized utterances. + +# Algorithm 1 Data synthesis algorithm + +1: $\tilde { h } \emptyset$ +2: $r _ { s } \gets \mathbf { S A M P L E } ( G _ { s } )$ +3: $\tilde { u } _ { 0 } , \tilde { q } _ { 0 } \gets$ RANDASSIGNSLOTS(d, rs) +4: $\tilde { h } + = ( \tilde { u } _ { 0 } , \tilde { q } _ { 0 } )$ +5: $\tilde { u } _ { p } , \tilde { q } _ { p } \gets \tilde { u } _ { 0 } , \tilde { q } _ { 0 }$ +6: for $t \gets 1$ to $T$ do +7: if $\mathrm { R A N D } ( 0 , 1 ) < 0 . 2$ then +8: $r _ { s } \gets \mathbf { S A M P L E } ( G _ { s } )$ +9: $\tilde { u } _ { t } , \tilde { q } _ { t } \gets \mathrm { R A N D A S S I G N S L O T S } ( d , r _ { s } )$ +10: else +11: $r _ { c } \gets \mathbf { S A M P L E } ( G _ { c } )$ +12: if CONSTRAINTCHECK $( r _ { c } , \tilde { q } _ { p } )$ then +13: u˜t, q˜t ← EDITASSIGN(˜qp, rc) +14: h˜+ = (˜ut, q˜t, rc) +15: u˜p, q˜p ← u˜t, q˜t +16: return h˜ + +The data synthesis procedure using the two grammars is shown in Algorithm 1. Given a database $d$ and a sampled single-turn question-SQL template, the function RANDASSIGNSLOTS samples values (column names, cell values, and SQL operations) for typed slots in the template and returns the first synthesized question $\tilde { u } _ { 0 }$ and the corresponding SQL query $\tilde { q } _ { 0 }$ . To generate $T$ follow-up question-SQL pairs, the function CONSTRAINTCHECK $( r _ { c } , \tilde { q } _ { p } )$ checks if the previous query $\tilde { q } _ { p }$ satisfies constraints of the sampled template $r _ { c }$ (e.g. contains its mentioned nonterminal). Finally, EDITASSIGN $( \tilde { q } _ { p } , r _ { c } )$ edits the previous SQL $\tilde { q } _ { p }$ to generate the current follow-up SQL label $\tilde { q } _ { t }$ and samples values for typed slots in the template to generate the corresponding follow-up question $\tilde { u } _ { t }$ . + +# 3 EXPERIMENT SETTINGS + +# 3.1 DATASETS AND EVALUATION METRICS + +We evaluate SCORE on four popular CSP tasks: SPARC (sequential text-to-SQL), COSQL (conversational text-to-SQL), MWOZ (dialogue state tracking), and SQA (sequential question answering), summarized in Table 1. + +SPARC (Yu et al., 2019b) 1 is a large collection of sequences of inter-related context-dependent question-SQL pairs. It contains 4.3K questions sequences and $1 2 \mathrm { k } +$ questions. COSQL (Yu et al., 2019a) 2 is a large conversational text-to-SQL corpus, with 3k dialogues, collected under the Wizardof-Oz (WOZ) setting. We focus on the SQL-grounded dialogue state tracking task which maps user intents into SQL queries if possible given the interaction history. Both SPARC and COSQL cover 200 complex DBs spanning 138 domains. + +MWOZ (Budzianowski et al., 2018; Eric et al., 2019) 3 is a corpus of over 10k human-human written task-oriented dialogs created through a WOZ crowdsourcing setting. We focus on the belief state tracking task in MWOZ which maps multi-turn user utterances to slot-value annotations. + +SQA (Iyyer et al., 2017) 4 is constructed from a subset of WikiTableQuestions (Pasupat & Liang, 2015) by decomposing highly compositional questions into a sequence of simple questions. The task is weakly-supervised because each resulting decomposed question is only annotated with answers as one or more table cells, while the logic program is latent. It has 6,066 question sequences with 17,553 questions in total on 982 unique open-domain tables from Wikipedia. + +We adopt the official metrics defined for each of the tasks. For SPARC and COSQL, we report question match accuracy (QM): the exact set match accuracy (Yu et al., 2018b) over SQL templates and interaction match accuracy (IM): the ratio of interactions for which all questions are predicted correctly. For MWOZ, we report joint goal accuracy (JGA) which is similar to the IM accuracy used in SPARC and COSQL. Finally, for SQA, we report denotation QM and IM accuracies. + +# 3.2 BASE MODELS AND OTHER BASELINES + +For SPARC and COSQL, we use RAT-SQL (Wang et al., 2020) as our base model. Since it is originally developed for single-turn text-to-SQL, we extend it to a multi-turn setting by concatenating current utterances and dialog history (see Section 2.2). Note that RAT-SQL alone, without SCORE, achieves better or comparable results to state-of-the-art models developed for SPARC and COSQL. + +For MWOZ, we employ Trippy (Heck et al., 2020). It achieves state-of-the-art performance on MWOZ and uses $\mathbf { B E R T _ { b a s e } }$ to encode user and system utterances and dialog history. We report higher results (around $2 \%$ ) for Trippy than reported by Heck et al. (2020) since we train it for more epochs (25 vs. 10). To show the improvement of SCORE is not tied to specific base systems, we also experiment with another strong base model SOM-DST (Kim et al., 2020) for MWOZ and follow the same experimental details to train it. + +For SQA, we use the weakly-supervised semantic parser proposed by Wang et al. (2019). The model first generates an abstract program given an input question and then instantiates it by searching for alignments between slots in the abstract program and question spans. As it is originally developed for single-turn questions, we extend it to the multi-turn setting in the same way as RAT-SQL. + +We report additional implementation details for all base models in Appendix C. In addition to reporting results for all base models with SCORE, we also report original base models results (with BERT and/or ROBERTA) and several other state-of-the-art baselines for each task. + +# 3.3 DATASET USAGE IN PRE-TRAINING + +In our experiments and ablation study, we train several versions of SCORE with different objectives and datasets: (1) SCORE (MLM): pre-trained on annotated natural questions using MLM. (2) SCORE $( \mathrm { C C S + T C S } )$ ): pre-trained on only synthesized data, which achieves the best results on SParC, CoSQL, and SQA. (3) SCORE $\mathbf { C C S + T C S + M L M } )$ : pre-trained on the synthesized data using $\mathrm { C C S + T C S }$ and annotated natural questions using MLM. + +Furthermore, note that the synthesized data is generated using grammar induced by about 500 examples from only SPARC. Therefore, no COSQL or SQA data are seen in any pre-training steps. For MWOZ, Campagna et al. (2020) study only the dev examples to induce the data synthesis grammar. + +# 4 RESULTS AND ANALYSIS + +Overall Results The results of SPARC and COSQL, MWOZ, and SQA are in Table 2, 3, and 4 respectively. We run each main experiment three times with different random seeds and report the mean. Overall, SCORE gains significant improvements over BERT and ROBERTA on all tasks, achieving state-of-the-art performances on SPARC, COSQL, and MWOZ. + +Table 2: The SPARC and COSQL accuracy over all questions (QM) and all interactions (IM). The scores of IGSQL $^ +$ BERT and $\mathrm { R ^ { 2 } S Q L + }$ BERT are from the official leaderboards. + +
SPARCCoSQL
DevTestDevTest
QMIMQMIMQMIMQMIM
SyntaxSQL (Yu et al.,2018a)18.54.320.25.21-14.22.2
GAZP + BERT (Zhong et al., 2020)48.929.745.923.542.012.339.712.8
EditSQL + BERT (Zhang et al.,2019c)47.229.547.925.339.912.340.813.7
IGSQL +BERT50.732.551.229.544.115.842.515.0
R²SQL +BERT1-55.830.81-46.817.0
RAT-SQL + BERT (Wang et al., 2019)56.833.41148.419.11-
+ROBERTA58.236.7--50.119.3--
+ SCoRE62.242.562.438.152.122.051.621.2
+ +Table 3: Joint goal accuracies (JGA) on MWOZ 2.1 test set. All models use a BERT-like encoder/GPT. + +
ModelsMWoZ 2.1
DST-reader (Gao et al.,2019)36.40
TRADE (Wu et al., 2019)46.60
DS-DST (Zhang et al.,2019a)51.21
SOM-DST (Kim et al.,2020)52.57
DS-picklist (Zhang et al.,2019a)53.30
TripPy (Heck et al.,2020)55.29
SimpleToD (Hosseini-Asl et al.,2020)55.72
TripPy (ours)58.37
+ SCoRE60.48
+ +Table 4: Question (QM) and interaction (IM) accuracy on the SQA test set. + +
ModelsSQA
QMIM
Pasupat & Liang (2015)33.27.7
Neelakantan et al. (2017)40.211.8
Iyyer et al. (2017)44.712.8
Sun et al. (2019a)45.613.2
Muller et al. (2019)55.128.1
Herzig et al. (2020)67.240.4
Wang et al. (2019)+RoBERTa62.833.2
Wang et al. (2019) + SCoRE65.438.5
+ +For SPARC and $\mathrm { C o S Q L }$ in Table 2, compared with ROBERTA, SCORE boosts the performance by $4 . 0 \%$ QM / $5 . 8 \%$ IM on SPARC, and $2 . 0 \%$ QM / $2 . 7 \%$ IM on COSQL. This demonstrates the effectiveness of SCORE on contextual semantic parsing tasks. In addition, on MWOZ dialog state tracking task in Table 3, TripPy achieves $6 0 . 5 \%$ JGA by replacing BERT with SCORE, outperforming the prior state-of-the-art (Hosseini-Asl et al., 2020) by $4 . 8 \%$ . This indicates that dialog state tracking also benefits from SCORE. Finally, SCORE also achieves higher performance than ROBERTA on weakly supervised sequential question answering SQA task. As Table 4 shows, SCORE improves QM by $2 . 6 \%$ and IM by $4 . 9 \%$ over ROBERTA with Wang et al. (2019) as the base model. This demonstrates that the enhanced ability of semantic parsing and context modeling in SCORE is transferable to denotation-based CSP tasks. + +What is the effect of each pretraining objective? Table 5 shows an ablation study on different pretraining objectives. We find that the best SCORE results are achieved by pre-training on only synthesized data $( \mathrm { C C S + T C S } )$ ) without any natural questions (MLM) on SPARC, + +
Learning ObjectiveSPARCCoSQLMWoZSQA
MLM only37.0(+0.3)20.3(+1.0)59.47(+1.10)34.7(+1.5)
CCS only41.3(+4.6)21.2(+1.9)59.32(+0.95)32.7(-0.5)
CCS+TCS42.5(+5.8)22.0(+2.7)38.5(+5.3)
CCS+TCS+MLM38.6(+1.9)21.7(+2.4)60.48(+2.11)33.7(+0.5)
+ +Table 5: The effect of SCORE pre-training objectives. Improvements are shown in the parentheses. + +COSQL, and SQA but not on MWOZ. By adding MLM to $\mathrm { C C S + T C S }$ $\mathrm { C C S + T C S }$ vs. $\mathbf { C C S + T C S + M L M }$ ), MLM actually hurts the performance $- 3 . 9 \%$ on SParC, - $. 0 . 3 \%$ on $\mathbf { C o S Q L }$ , and $- 4 . 4 \%$ on SQA) while increases for MWOZ. One possible reason is that questions in MWOZ are more diverse in language but less compositional while semantic compositionality and turn changes are more important in the other three CSP tasks. Also, the synthesized data used to pre-train SCORE for SPARC and COSQL is generated by the grammar induced by SPARC, which might overfit to SPARC. In addition, SCORE pre-trained with only MLM loss improves the performance $( \ 1 . 0 \% )$ but not as large as $\mathrm { C C S + T C S }$ $( + 5 . 5 \%$ on SPARC, $+ 1 . 7 \%$ on COSQL, and $+ 3 . 4 \%$ on SQA). Finally, we test the effectiveness of TCS on SPARC, COSQL, and SQA by adding TCS to CCS (CCS only vs. + +CCS+TCS), SCORE gains improvements of $1 . 2 \%$ on SPARC and $0 . 8 \%$ on COSQL, and $4 . 4 \%$ on SQA. + +Does SCORE improve question match accuracy on individual turns? Table 6 shows detailed results of SCORE’s question accuracy for individual conversation turns on the SPARC dev set. SCORE provides a significant improvement for every conversation turn except the first (in which the task is more similar to single-turn + +
QMQ1Q2Q3Q4
RAT-SQL +BERT56.871.153.647.831.8
+RoBERTa58.268.758.548.935.2
+ SCoRE62.270.663.552.645.5
+ +Table 6: Detailed results on the dev set of SPARC. +$\mathrm { Q } _ { i }$ is the accuracy of the $i ^ { \mathrm { { t h } } }$ conversation question. + +semantic parsing). COSQL and SQA exhibit similar behavior and are presented in Appendix A. + +
CoSQLMWoZ
no syn48.458.37
with syn48.658.45
+ +What if we use the synthesized data to simply augment the training data? To answer this, we compare the results of the base models trained with or without the synthesized data on COSQL and MWOZ. As shown in Table 7, the extra synthetic data does not significantly improve the performance, indicating that directly augmenting the synthetic data to the training set is + +Table 7: Effect of synthetic data as training data augmentation. + +not effective. The similar findings are reported in many recent work (Zhang et al., $2 0 1 9 \mathrm { c }$ ; Herzig et al., 2020; Campagna et al., 2020; Zhong et al., 2020). In contrast, pre-training on the synthesized data with our objectives improves the performance on the downstream tasks. + +How general is SCORE and its synthetic grammar? For generalization in task settings, we have shown that the pre-training strategy of SCORE can improve the performance over different CSP tasks including semantic parsing (SPARC and COSQL), dialog state tracking (MWOZ), and weakly supervised table question answering (SQA). In addition, we demonstrate the effectiveness of SCORE on different base models. To this end, we experiment with a different base model SOM-DST for MWOZ. As shown in Table 8, SCORE can still improve the performance with a different base model on MWOZ (SOM-DST $+$ BERT vs. SOM-DST $+ \mathsfit { S }$ CORE on syn. MWOZ). + +
MWoZ
SOM-DST+BERT52.57
+ SCoRE on syn. text-to-SQL53.57
+ SCoRE on syn. MWoZ54.61
+ +Table 8: Performance of SCORE pre-trained on different synthesized data on MWOZ. + +To demonstrate the generalization in synthetic grammar and data, as shown in Table 2 and 4, SCORE $\mathrm { ( T C S + C C S ) }$ is pre-trained on the synthesized data of the grammar induced from SPARC only, and it still improves the performance on COSQL $( + 2 . 7 \% )$ and SQA $( + 4 . 9 \% )$ where no any CoSQL and SQA annotated data is seen in any pre-training steps. Moreover, in Table 8 we show that SCORE pre-trained on the text-to-SQL synthesized data could also surprisingly improve the performance on MWOZ. We expect that higher performance could be achieved with SCORE pre-trained on task-specific synthesized data. Finally, our pre-training approach can be applied to any existing LMs including larger seq2seq LMs (e.g., BART (Lewis et al., 2020), T5 (Raffel et al., 2020)). + +Can SCORE deliver more value when in-domain data is limited (e.g., in a low-resource setting)? We want to answer this question similar to experiments other investigations of LMs as few-shot learners (Wu et al., 2020; Brown et al., 2020; Schick & Schutze, 2020). To ¨ this end, we compare ROBERTA and SCORE under a few-shot setting on SQA when only $10 \%$ of training data is available. We choose SQA because its annotation is most different from the synthetic text-to-SQL dataset we use for pretraining. Table 9 demonstrates that SCORE delivers even larger improvements compared to the ROBERTA baseline when only $10 \%$ training data is available $3 . 8 \%$ vs $2 . 6 \%$ ). + +
QMIM
RoBERTa53.321.2
SCoRE57.126.1
+ +Table 9: Performance of SCORE on $10 \%$ training data of SQA. + +# 5 RELATED WORK + +Conversational Semantic Parsing Conversational semantic parsing is one of the most important research topics in conversational AI and has been studied in different settings including task-oriented dialogues, question answering, and text-to-SQL. Task-oriented dialog systems (Henderson et al., + +2014; Wen et al., 2016; Mrksiˇ c et al., 2017; Budzianowski et al., 2018) aim to help users accomplish´ a specific task (e.g. flight booking) and often pre-define slot templates grounded in a domainspecific ontology. In comparison, several other datasets were recently introduced for cross-domain conversational text-to-SQL tasks (SPARC and COSQL (Yu et al., 2019a;b)) and sequential questions answers over tables (Iyyer et al., 2017). While the previous work has achieved significant progress in different datasets separately, to the best of our knowledge, we are the first to study four different CSP tasks together (sequential text-to-SQL, conversational text-to-SQL, dialog state tracking, and weakly-supervised sequential question answering) by addressing the shared key challenge of learning representations in pre-trained language models that capture the alignment between the dialogue flow and the structural context. + +Conversational Language Model Pre-training Several recent efforts have demonstrated the value of adapting pre-trained LMs to specific tasks using different pre-training objectives, e.g., summarization (Zhang et al., 2019b), knowledge inference (Sun et al., 2019b; Liu et al., 2019a), etc. Closest to our work is adapting pre-trained LMs for open-domain chit-chat models and for tabular data representation. The former focuses on improving response generation on open-ended dialogues by adding a pre-training step on open-domain conversations data, such as Reddit data (Zhang et al., 2020; Henderson et al., 2019). For example, Wu et al. (2020) introduced ToD-BERT, a pre-trained language model combining 9 high-quality human-human task-oriented dialogue datasets to conduct language model and response selection pre-training. However, they use language modeling training objectives over free-form text and therefore have limited ability to represent structural data. The latter has focused on improving language model pre-training for encoding tabular data (Yin et al., 2020; Herzig et al., 2020), but they focus on the single turn semantic parsing setting. Our approach is different from previous work because we address the challenge of conversational semantic parsing tasks by learning pretrained representation for both the multi-turn dynamics of the dialog and the relation between the unstructured language utterance and the structured ontology. Furthermore, our pre-training approach is much more data-efficient than prior LM pre-training work and saves a lot of time and computing resources (Appendix D for more details). Our pre-training step can be done within only one day using 8 V100 GPUs. + +Using Synthesized Data for Semantic Parsing Synthesized data has been frequently used in semantic parsing to alleviate the challenge of labeled data scarcity. For example, Wang et al. (2015) proposed a method for training semantic parsers in new domains by generating logical forms and canonical utterances and then paraphrasing the canonical utterances via crowd-sourcing. Similar approaches were used to train semantic parsers in other domains and settings (Zhong et al., 2017; Su et al., 2017; Cheng et al., 2018; Shah et al., 2018). Another line of work has proposed using synthesized data to adapt single turn semantic parsing models to new domains (Jia & Liang, 2016; Yoo et al., 2018; Campagna et al., 2019) and task-oriented dialogues (Campagna et al., 2020). However, they reported that combining synthetic data and the supervised data does not yield significant improvements, consistent with results by Herzig et al. (2020). By contrast, we introduce a new data synthesize procedure for conversational text-to-SQL dialogues and use it in a different way by pretraining language models to induce better representations for many CSP tasks. Our synthesized data can be easily generated without human involvement and the pre-trained models add value to different tasks simultaneously. + +# 6 CONCLUSION + +We presented SCORE a new pre-training approach for conversational semantic parsing. The training objectives of SCORE aim to induce natural language representations that capture the multi-turn dynamics, compositional semantic of the target language, and the references to the structural ontology appearing in the dialog. SCORE can be used with many semantic parsing models as a drop-in replacement for general pretrained LMs. We demonstrated SCORE effectiveness by using it as a feature representation encoder with strong baseline models for a wide range of CSP tasks. In particular, our empirical results on four different CSP tasks demonstrated that SCORE can be used to significantly improve the performance of existing strong baseline models by simply replacing an existing pre-trained LM with our SCORE pre-trained model. Furthermore, we are able to achieve state-of-the-art results on three of these tasks. We hope SCORE will encourage further exploration of the benefits and limitations of pre-training approaches for CSP systems. + +# REFERENCES + +Jimmy Ba, Jamie Ryan Kiros, and Geoffrey E. Hinton. Layer normalization. ArXiv, abs/1607.06450, 2016. + +Chandra Bhagavatula, Thanapon Noraset, and Doug Downey. Tabel: Entity linking in web tables. In International Semantic Web Conference, 2015. + +Tom B Brown, Benjamin Mann, Nick Ryder, Melanie Subbiah, Jared Kaplan, Prafulla Dhariwal, Arvind Neelakantan, Pranav Shyam, Girish Sastry, Amanda Askell, et al. Language models are few-shot learners. arXiv preprint arXiv:2005.14165, 2020. + +Pawel Budzianowski, Tsung-Hsien Wen, Bo-Hsiang Tseng, Inigo Casanueva, Stefan Ultes, Osman ˜ Ramadan, and Milica Gasic. Multiwoz - a large-scale multi-domain wizard-of-oz dataset for task-oriented dialogue modelling. In EMNLP, 2018. + +Giovanni Campagna, Silei Xu, Mehrad Moradshahi, Richard Socher, and Monica S. Lam. Genie: A generator of natural language semantic parsers for virtual assistant commands. In Proceedings of the 40th ACM SIGPLAN Conference on Programming Language Design and Implementation, pp. 394–410. Association for Computing Machinery, 2019. + +Giovanni Campagna, Agata Foryciarz, Mehrad Moradshahi, and Monica S. Lam. Zero-shot transfer learning with synthesized data for multi-domain dialogue state tracking. In Proceedings of 58th Annual Meeting of the Association for Computational Linguistics (Volume 1: Long Papers), 2020. + +Joyce Y Chai, Qiaozi Gao, Lanbo She, Shaohua Yang, Sari Saba-Sadiya, and Guangyue Xu. Language to action: Towards interactive task learning with physical agents. In IJCAI, pp. 2–9, 2018. + +Jianpeng Cheng, Siva Reddy, and Mirella Lapata. Building a neural semantic parser from a domain ontology. ArXiv, abs/1812.10037, 2018. + +Jacob Devlin, Ming-Wei Chang, Kenton Lee, and Kristina Toutanova. Bert: Pre-training of deep bidirectional transformers for language understanding. In NAACL-HLT, 2019. + +Mihail Eric, Rahul Goel, Shachi Paul, Abhishek Sethi, Sanchit Agarwal, Shuyag Gao, and Dilek Hakkani-Tur. Multiwoz 2.1: Multi-domain dialogue state corrections and state tracking baselines. arXiv preprint arXiv:1907.01669, 2019. + +Shuyang Gao, Abhishek Sethi, Sanchit Agarwal, Tagyoung Chung, and Dilek Hakkani-Tur. Dialog state tracking: A neural reading comprehension approach. In SIGDial, 2019. + +Suchin Gururangan, Ana Marasovic, Swabha Swayamdipta, Kyle Lo, Iz Beltagy, Doug Downey, ´ and Noah A. Smith. Don’t stop pretraining: Adapt language models to domains and tasks. In Proceedings of the 58th Annual Meeting of the Association for Computational Linguistics, Online, July 2020. Association for Computational Linguistics. + +M. Heck, Carel van Niekerk, Nurul Lubis, Christian Geishauser, Hsien-Chin Lin, M. Moresi, and Milica Gavsi’c. Trippy: A triple copy strategy for value independent neural dialog state tracking. In SIGdial, 2020. + +Matthew Henderson, Blaise Thomson, and Jason D. Williams. The second dialog state tracking challenge. In SIGDIAL Conference, 2014. + +Matthew Henderson, Inigo Casanueva, Nikola Mrkvsi’c, P. Su, Tsung-Hsien, and Ivan Vulic. Convert: ˜ Efficient and accurate conversational representations from transformers. ArXiv, abs/1911.03688, 2019. + +Dan Hendrycks and Kevin Gimpel. A baseline for detecting misclassified and out-of-distribution examples in neural networks. ArXiv, abs/1610.02136, 2016. + +Jonathan Herzig, P. Nowak, Thomas Muller, Francesco Piccinno, and Julian Martin Eisenschlos. ¨ Tapas: Weakly supervised table parsing via pre-training. In ACL, 2020. + +Ehsan Hosseini-Asl, B. McCann, Chien-Sheng Wu, Semih Yavuz, and R. Socher. A simple language model for task-oriented dialogue. ArXiv, abs/2005.00796, 2020. + +Wonseok Hwang, Jinyeung Yim, Seunghyun Park, and Minjoon Seo. A comprehensive exploration on wikisql with table-aware word contextualization. ArXiv, abs/1902.01069, 2019. + +Mohit Iyyer, Wen-tau Yih, and Ming-Wei Chang. Search-based neural structured learning for sequential question answering. In Proceedings of the 55th Annual Meeting of the Association for Computational Linguistics (Volume 1: Long Papers), Vancouver, Canada, July 2017. Association for Computational Linguistics. + +Sina Jafarpour, Christopher JC Burges, and Alan Ritter. Filter, rank, and transfer the knowledge: Learning to chat. Advances in Ranking, 10:2329–9290, 2010. + +Robin Jia and Percy Liang. Data recombination for neural semantic parsing. In Proceedings of the 54th Annual Meeting of the Association for Computational Linguistics (Volume 1: Long Papers), 2016. + +Sung-Dong Kim, Sohee Yang, Gyuwan Kim, and S. Lee. Efficient dialogue state tracking by selectively overwriting memory. In ACL, 2020. + +Diederik P. Kingma and Jimmy Ba. Adam: A method for stochastic optimization. CoRR, abs/1412.6980, 2014. + +Mike Lewis, Yinhan Liu, Naman Goyal, Marjan Ghazvininejad, Abdelrahman Mohamed, Omer Levy, Veselin Stoyanov, and Luke Zettlemoyer. BART: Denoising sequence-to-sequence pre-training for natural language generation, translation, and comprehension. In Proceedings of the 58th Annual Meeting of the Association for Computational Linguistics, Online, July 2020. Association for Computational Linguistics. + +Q. Liu, B. Chen, Jiaqi Guo, Jian-Guang Lou, Bin Zhou, and Dongmei Zhang. How far are we from effective context modeling ? an exploratory study on semantic parsing in context. ArXiv, abs/2002.00652, 2020. + +Weijie Liu, Peng Zhou, Zhe Zhao, Zhiruo Wang, Qi Ju, Haotang Deng, and Ping Wang. K-bert: Enabling language representation with knowledge graph, 2019a. + +Yinhan Liu, Myle Ott, Naman Goyal, Jingfei Du, Mandar Joshi, Danqi Chen, Omer Levy, Mike Lewis, Luke S. Zettlemoyer, and Veselin Stoyanov. Roberta: A robustly optimized bert pretraining approach. ArXiv, abs/1907.11692, 2019b. + +Nikola Mrksiˇ c, Diarmuid ´ O S ´ eaghdha, Tsung-Hsien Wen, Blaise Thomson, and Steve Young. Neural ´ belief tracker: Data-driven dialogue state tracking. In Proceedings of the 55th Annual Meeting of the Association for Computational Linguistics (Volume 1: Long Papers), pp. 1777–1788. Association for Computational Linguistics, 2017. + +Thomas Muller, Francesco Piccinno, Massimo Nicosia, Peter Shaw, and Yasemin Altun. Answering ¨ conversational questions on structured data without logical forms. In EMNLP/IJCNLP, 2019. + +Arvind Neelakantan, Quoc V. Le, M. Abadi, A. McCallum, and Dario Amodei. Learning a natural language interface with neural programmer. ArXiv, abs/1611.08945, 2017. + +Panupong Pasupat and Percy Liang. Compositional semantic parsing on semi-structured tables. In Proceedings of the 53rd Annual Meeting of the Association for Computational Linguistics and the 7th International Joint Conference on Natural Language Processing of the Asian Federation of Natural Language Processing, ACL 2015, July 26-31, 2015, Beijing, China, Volume 1: Long Papers, pp. 1470–1480, 2015. + +Alec Radford, Jeffrey Wu, Rewon Child, David Luan, Dario Amodei, and Ilya Sutskever. Language models are unsupervised multitask learners. OpenAI Blog, 2019. + +Colin Raffel, Noam Shazeer, Adam Roberts, Katherine Lee, Sharan Narang, Michael Matena, Yanqi Zhou, Wei Li, and Peter J. Liu. Exploring the limits of transfer learning with a unified text-to-text transformer. Journal of Machine Learning Research, 21(140):1–67, 2020. + +Alan Ritter, Colin Cherry, and William B. Dolan. Data-driven response generation in social media. In Proceedings of the 2011 Conference on Empirical Methods in Natural Language Processing, pp. 583–593, Edinburgh, Scotland, UK., July 2011. Association for Computational Linguistics. + +Ohad Rubin and Jonathan Berant. Smbop: Semi-autoregressive bottom-up semantic parsing. arXiv preprint arXiv:2010.12412, 2020. + +Timo Schick and Hinrich Schutze. It’s not just size that matters: Small language models are also ¨ few-shot learners. arXiv preprint arXiv:2009.07118, 2020. + +Pararth Shah, Dilek Hakkani-Tur, Gokhan T ¨ ur, Abhinav Rastogi, Ankur Bapna, Neha Nayak, and ¨ Larry Heck. Building a conversational agent overnight with dialogue self-play, 2018. + +Peter Shaw, Jakob Uszkoreit, and Ashish Vaswani. Self-attention with relative position representations. In Proceedings of the 2018 Conference of the North American Chapter of the Association for Computational Linguistics: Human Language Technologies, Volume 2 (Short Papers), New Orleans, Louisiana, June 2018. Association for Computational Linguistics. + +Peter Shaw, Ming-Wei Chang, Panupong Pasupat, and Kristina Toutanova. Compositional generalization and natural language variation: Can a semantic parsing approach handle both? arXiv preprint arXiv:2010.12725, 2020. + +Yu Su, Ahmed Hassan Awadallah, Madian Khabsa, P. Pantel, M. Gamon, and Mark J. Encarnacion. ´ Building natural language interfaces to web apis. Proceedings of the 2017 ACM on Conference on Information and Knowledge Management, 2017. + +Yibo Sun, Duyu Tang, Nan Duan, Jingjing Xu, X. Feng, and B. Qin. Knowledge-aware conversational semantic parsing over web tables. In NLPCC, 2019a. + +Yu Sun, Shuohuan Wang, Yukun Li, Shikun Feng, Xuyi Chen, Han Zhang, Xin Tian, Danxiang Zhu, Hao Tian, and Hua Wu. Ernie: Enhanced representation through knowledge integration, 2019b. + +Gokhan Tur and Renato De Mori. Spoken language understanding: Systems for extracting semantic information from speech. John Wiley & Sons, 2011. + +Bailin Wang, Ivan Titov, and Mirella Lapata. Learning semantic parsers from denotations with latent structured alignments and abstract programs. In Proceedings of EMNLP, 2019. + +Bailin Wang, Richard Shin, Xiaodong Liu, Oleksandr Polozov, and Matthew Richardson. RAT-SQL: Relation-aware schema encoding and linking for text-to-SQL parsers. In Proceedings of the 58th Annual Meeting of the Association for Computational Linguistics, pp. 7567–7578, Online, July 2020. Association for Computational Linguistics. doi: 10.18653/v1/2020.acl-main.677. + +Yushi Wang, Jonathan Berant, and Percy Liang. Building a semantic parser overnight. In Proceedings of the 53rd Annual Meeting of the Association for Computational Linguistics and the 7th International Joint Conference on Natural Language Processing (Volume 1: Long Papers), pp. 1332–1342, Beijing, China, July 2015. Association for Computational Linguistics. doi: 10.3115/v1/P15-1129. + +Tsung-Hsien Wen, David Vandyke, Nikola Mrksic, Milica Gasic, Lina M Rojas-Barahona, Pei-Hao Su, Stefan Ultes, and Steve Young. A network-based end-to-end trainable task-oriented dialogue system. arXiv preprint arXiv:1604.04562, 2016. + +Thomas Wolf, Lysandre Debut, Victor Sanh, Julien Chaumond, Clement Delangue, Anthony Moi, Pierric Cistac, Tim Rault, R’emi Louf, Morgan Funtowicz, and Jamie Brew. Huggingface’s transformers: State-of-the-art natural language processing. ArXiv, abs/1910.03771, 2019. + +Chien-Sheng Wu, Andrea Madotto, Ehsan Hosseini-Asl, Caiming Xiong, Richard Socher, and Pascale Fung. Transferable multi-domain state generator for task-oriented dialogue systems. In Proceedings of the 57th Annual Meeting of the Association for Computational Linguistics, Florence, Italy, July 2019. Association for Computational Linguistics. + +Chien-Sheng Wu, Steven C.H. Hoi, Richard Socher, and Caiming Xiong. TOD-BERT: Pre-trained natural language understanding for task-oriented dialogue. In Proceedings of the 2020 Conference on Empirical Methods in Natural Language Processing (EMNLP), 2020. + +Pengcheng Yin, Graham Neubig, Wen-tau Yih, and Sebastian Riedel. TaBERT: Pretraining for joint understanding of textual and tabular data. In Proceedings of the 58th Annual Meeting of the Association for Computational Linguistics, pp. 8413–8426, Online, July 2020. Association for Computational Linguistics. doi: 10.18653/v1/2020.acl-main.745. + +Kang Min Yoo, Youhyun Shin, and Sang goo Lee. Data augmentation for spoken language understanding via joint variational generation, 2018. + +Tao Yu, Michihiro Yasunaga, Kai Yang, Rui Zhang, Dongxu Wang, Zifan Li, and Dragomir Radev. Syntaxsqlnet: Syntax tree networks for complex and cross-domain text-to-sql task. In Proceedings of EMNLP. Association for Computational Linguistics, 2018a. + +Tao Yu, Rui Zhang, Kai Yang, Michihiro Yasunaga, Dongxu Wang, Zifan Li, James Ma, Irene Li, Qingning Yao, Shanelle Roman, Zilin Zhang, and Dragomir Radev. Spider: A large-scale human-labeled dataset for complex and cross-domain semantic parsing and text-to-sql task. In EMNLP, 2018b. + +Tao Yu, Rui Zhang, He Yang Er, Suyi Li, Eric Xue, Bo Pang, Xi Victoria Lin, Yi Chern Tan, Tianze Shi, Zihan Li, Youxuan Jiang, Michihiro Yasunaga, Sungrok Shim, Tao Chen, Alexander Fabbri, Zifan Li, Luyao Chen, Yuwen Zhang, Shreya Dixit, Vincent Zhang, Caiming Xiong, Richard Socher, Walter Lasecki, and Dragomir Radev. Cosql: A conversational text-to-sql challenge towards cross-domain natural language interfaces to databases. In Proceedings of the 2019 Conference on Empirical Methods in Natural Language Processing and 9th International Joint Conference on Natural Language Processing. Association for Computational Linguistics, 2019a. + +Tao Yu, Rui Zhang, Michihiro Yasunaga, Yi Chern Tan, Xi Victoria Lin, Suyi Li, Irene Li Heyang Er, Bo Pang, Tao Chen, Emily Ji, Shreya Dixit, David Proctor, Sungrok Shim, Vincent Zhang Jonathan Kraft, Caiming Xiong, Richard Socher, and Dragomir Radev. Sparc: Cross-domain semantic parsing in context. In Proceedings of the 57th Annual Meeting of the Association for Computational Linguistics, Florence, Italy, 2019b. Association for Computational Linguistics. + +Jian-Guo Zhang, Kazuma Hashimoto, Chien-Sheng Wu, Yao Wan, Philip S Yu, Richard Socher, and Caiming Xiong. Find or classify? dual strategy for slot-value predictions on multi-domain dialog state tracking. arXiv preprint arXiv:1910.03544, 2019a. + +Jingqing Zhang, Yao Zhao, Mohammad Saleh, and Peter J Liu. Pegasus: Pre-training with extracted gap-sentences for abstractive summarization. arXiv preprint arXiv:1912.08777, 2019b. + +Rui Zhang, Tao Yu, He Yang Er, Sungrok Shim, Eric Xue, Xi Victoria Lin, Tianze Shi, Caiming Xiong, Richard Socher, and Dragomir Radev. Editing-based sql query generation for cross-domain context-dependent questions. In Proceedings of the 2019 Conference on Empirical Methods in Natural Language Processing and 9th International Joint Conference on Natural Language Processing. Association for Computational Linguistics, 2019c. + +Yizhe Zhang, Siqi Sun, Michel Galley, Yen-Chun Chen, Chris Brockett, Xiang Gao, Jianfeng Gao, Jingjing Liu, and Bill Dolan. Dialogpt: Large-scale generative pre-training for conversational response generation. In ACL, system demonstration, 2020. + +Victor Zhong, Caiming Xiong, and Richard Socher. Seq2sql: Generating structured queries from natural language using reinforcement learning. CoRR, abs/1709.00103, 2017. + +Victor Zhong, M. Lewis, Sida I. Wang, and Luke Zettlemoyer. Grounded adaptation for zero-shot executable semantic parsing. The 2020 Conference on Empirical Methods in Natural Language Processing, 2020. + +A DETAILED RESULTS + +
QMIMQ1Q2Q3Q4Q5
RAT-SQL + BERT48.419.154.648.447.543.931.0
+RoBERTa50.119.359.750.946.346.532.4
+ SCoRE52.122.060.853.047.549.132.4
+ +Table 10: Detailed results of COSQL on the dev set. $\mathrm { Q } _ { i }$ is the accuracy of the $i ^ { \mathrm { { t h } } }$ question in the conversation. + +
QMIMQ1Q2Q3
Wang et al. (2019)51.022.068.348.038.5
+RoBERTa62.833.277.261.752.1
+SCoRE65.438.578.465.355.1
Few-Shot (10% training data)
Wang et al. (2019)
+RoBERTa53.321.271.052.536.6
+SCoRE57.126.774.656.740.7
+ +Table 11: Detailed results of SQA on the test set. $\mathrm { Q } _ { i }$ is the accuracy of the $i ^ { \mathrm { { t h } } }$ question in the conversation. + +# B SYNTHESIZED EXAMPLES & TEMPLATES + +Table 12 shows an example of the synthesized question-SQL pairs and their corresponding templates in our grammars. +Table 12: An example of synthetic conversational text-to-SQL data. + +
Turn #Question-SQL TemplateSynthesized Question-SQL
1"Find the number of TABLEO with COLUMNO OPO VALUE0" SELECT COUNT(*)ORDER BY COLUMNO OPO VALUEO“Find the number of football team with team hometown is not murrieta,california?" SELECT COUNT(*)WHERE TEAM_HOMETOWN !=“MURRIETA, CALIFORNIA"
2“Can you give me their COLUMN1?” TCS: REPLACE(SELECT.COLUMNO), DEL(SELECT.AGG)“Can you give me their football team player?” SELECTFOOTBALL_TEAM_PLAYERWHERETEAM_HOMETOWN !=“MURRIETA,CALIFORNIA”
3“How about only show those with AsO cOL- UMN2?” TCS: ADD(ORDERBY_ASO.COLUMN2)“How about only show those with the largest age?” SELECTFOOTBALL_TEAM_PLAYER WHERE TEAM_HOMETOWN !="MURRIETA,CALIFORNIA”ORDER BY AGE DESC LIMIT1
4“AS1?” TCS: REPLACE(ORDERBY_AS1.COLUMN2)“The smallest?” SELECTFOOTBALL_TEAM_PLAYER WHERE TEAM_HOMETOWN !="MURRIETA,CALIFORNIA”ORDER BY AGE AS LIMIT1
+ +# C IMPLEMENTATION DETAILS + +# C.1 SCORE + +For pre-training SCORE on synthesized text-to-SQL data, we use ROBERTA $_ \mathrm { l a r g e }$ and pre-train it with batch size 12, gradient accumulation step 2, and maximum length 248. We use a learning rate 1e-5 and gradually reduce the learning rate without a warm-up period using Adam (Kingma & Ba, 2014) with epsilon 1e-8. $\mathbf { B E R T _ { b a s e } }$ is used in pre-training SCORE on synthesized MWOZ data because it contains longer conversations. We set the maximum length to 512 and batch size 24. All SCORE are pre-trained for 30 epochs, which usually take less than half a day on 8 V100 GPUs. + +We experimented with SCORE pre-trained for 5, 10, and 30 epochs and found that most of the best downstream performances occur when base systems incorporate with SCORE pre-trained for less than 10 epochs. Our implementation is based on the Transformers library (Wolf et al., 2019). + +# C.2 BASE MODELS + +RAT-SQL: For a fair comparison, all RAT-SQL experiments are trained for $4 0 \mathrm { k }$ steps. We adopt the same hyperparameters as Shaw et al. (2018) except for learning rates. We find that learning rates of 1e-4 and 1e-5 for RAT and BERT respectively produce more stable results. + +TripPy: We use the same hyperparameters for training TripPy on MWOZ as in (Heck et al., 2020) except we train it for 25 epochs (as opposed to 10 epochs as reported in (Heck et al., 2020)). When we train TripPy for 25 epochs, we get a new result that is higher (around $2 \%$ ) than the one reported in (Heck et al., 2020). Similarly, when we train TripPy with SCORE, we train it for 25 epochs. + +SOM-DST: We use the same hyperparameters from Kim et al. (2020) for all SOM-DST experiments on MWOZ. + +Wang et al. (2019): We use the same hyperparameters from Wang et al. (2019) for SQA experiments. Note that Herzig et al. (2020) outperform Wang et al. (2019) on SQA because (1) they don’t generate logic forms but select table cells and applying aggregation operators. Wang et al. (2019) generate latent programs, yet the grammar of the latent program can only cover $87 \%$ questions. (2) They reduce the search space by reusing the previous question answer. We choose Wang et al. (2019) as our base model because generating symbolic programs has many practical advantages (even at a cost of around $1 \%$ accuracy drop), such as showing interpretable reasoning steps, enabling formal reasoning, and operationalization without GPU/TPU accelerators. + +# D PRE-TRAINING COST + +We test the performance of SCORE with respect to the number of pre-training epochs. Figure 3 shows that the best performance of the downstream tasks is usually achieved in early epochs, more specifically 5 for SPARC and COSQL and 15 for MWOZ. Longer pre-training time does not improve or even hurts the performance. One possible reason is that longer pre-training makes SCORE overfit to the synthesized data whose utterances are unnatural. + +![](images/f2adaf96d04bd8e302a16e86109313b4514940005cf18a41f431ec1e6bac564a.jpg) +Figure 3: The effect of pre-training time. + +As for the data, as shown in Table 5, even if SCORE is pre-trained with only a relatively + +small amount of synthesized data (without the MLM loss), most of the tasks can achieve much higher performances. With a relatively smaller training corpus and shorter training time compared to other pre-trained language models, SCORE is efficient in time and data. + +# E ADDITIONAL RESULTS + +Effect of TCS We ran the TCS only experiment on SPARC, and will add TCS only results (including for other tasks) to Table 5 in the final version. SCORE (TCS only) outperforms RoBERTa by $2 . 4 \%$ so far (note: training is still going on) on SPARC $3 9 . 1 \%$ vs. $3 6 . 7 \%$ ). Also, as discussed in Section 4, we also provide a secondary evidence by testing the effectiveness of TCS on SPARC, COSQL, and SQA by adding TCS to CCS (CCS only vs. $\mathrm { C C S + T C S }$ ), SCORE (with TCS) gains improvements of $1 . 2 \%$ on SPARC and $0 . 8 \%$ on COSQL, and $4 . 4 \%$ on SQA. + +Incorporating Additional Examples Used in Synthetic Grammar Induction As we mentioned in Section 2.3, we used about 500 examples from SPARC to induce the grammar for data synthesis in pre-training. For a fair comparison, we also report the results of incorporating the additional SPARC examples in COSQL and SQA. More specifically, we directly concatenate the additional SPARC examples to COSQL training set, and train RAT-SQL $^ +$ ROBERTA on it, which slightly improves the performance ( $1 9 . 6 \%$ vs. $1 9 . 3 \%$ ) but not as large as SCORE $2 2 . 0 \%$ vs. $1 9 . 3 \%$ ).’ Also, because SQA is weakly-supervised sequential question answering, which differs from SPARC, we first fine-tune ROBERTA on the additional SPARC examples using CCS, and then apply it to SQA. In this way, the ROBERTA trained with additional SPARC examples achieves a similar performance as the original one $6 2 . 7 \%$ vs $6 2 . 8 \%$ ). + +Performance Comparison with ToD-BERT ToD-BERT is pre-trained on human-annotated questions with both MLM and response contrastive objectives. To compare TOD-BERT with SCORE, we ran experiments of RAT-SQL $^ +$ ToD-BERT on SPARC. SCORE $( 6 2 . 2 \% )$ outperforms ToD-BERT $( 5 4 . 6 \% )$ by $7 . 6 \%$ . + +Comparison with Finetuning Larger Language Models Based on our experiments and other published results, we didn’t find existing larger LMs (BART (Lewis et al., 2020), T5 (Raffel et al., 2020), GPT-2 (Radford et al., 2019)) outperform custom models $^ +$ BERT on CSP tasks. Our evidence is based on Spider (Yu et al., 2018b), which is the single-turn version of SParC and CoSQL. For T5, Shaw et al. (2020) applied T5 as seq2seq to Spider, and compared with RAT-SQL $^ +$ BERT-Large, T5-Base performs much worse $5 7 . 1 \%$ vs. $6 9 . 6 \%$ ), and T5-3B improves only 0.3, but it is 6 times larger. Moreover, for Bart, we have performed experiments on Spider and we found that BART cannot outperform custom models $^ +$ BERT: RAT-SQL $^ +$ BERT $6 9 . 7 \%$ , RAT-SQL $^ +$ BART encoder $67 . 8 \%$ , BART encoder $^ +$ decoder (406M, as a seq2seq task) $6 2 . 4 \%$ . In Rubin & Berant (2020), BART didn’t outperform BERT either. As for GPT-2, Wu et al. (2020) and Hosseini-Asl et al. (2020) found it does not outperform BERT on MWOZ. + +# F TASK-ORIENTED DIALOGUE DATASETS + +
Name#Dialogue#UtteranceAvg. Turn#Domain
MetaLWOZ (Lee et al., 2019)37,884432,03611.447
Schema (Rastogi et al., 2019)22,825463,28420.317
Taskmaster (Byrne et al.,2019)13,215303,06622.96
MWOZ (Budzianowski etal.,2018)10,42071,4106.97
MSR-E2E (Li et al.,2018)10.08774,6867.43
SMD (Eric and Manning,2017)3,03115.9285.33
Frames (Asri et al.,2017)1,36919,98614.63
WOZ (Mrksic et al., 2016)1,2005,0124.21
CamRest676 (Wen et al.,2016)6762,7444.11
+ +Figure 4: Data statistics of human-annotated task-oriented dialogue datasets used in $\mathrm { W u }$ et al. (2020). \ No newline at end of file diff --git a/parse/train/oyZxhRI2RiE/oyZxhRI2RiE_content_list.json b/parse/train/oyZxhRI2RiE/oyZxhRI2RiE_content_list.json new file mode 100644 index 0000000000000000000000000000000000000000..85343fabcfcf2c02503f80d17ebed4dbd20f9a74 --- /dev/null +++ b/parse/train/oyZxhRI2RiE/oyZxhRI2RiE_content_list.json @@ -0,0 +1,2162 @@ +[ + { + "type": "text", + "text": "SCORE: PRE-TRAINING FOR CONTEXT REPRESENTATION IN CONVERSATIONAL SEMANTIC PARSING ", + "text_level": 1, + "bbox": [ + 176, + 98, + 826, + 146 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "Tao Yu Yale University tao.yu@yale.edu ", + "bbox": [ + 184, + 171, + 333, + 212 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "Rui Zhang The Pennsylvania State University rmz5227@psu.edu ", + "bbox": [ + 586, + 170, + 813, + 212 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "Oleksandr Polozov, Christopher Meek, Ahmed Hassan Awadallah Microsoft Research {polozov,meek,hassanam}@microsoft.com ", + "bbox": [ + 183, + 233, + 642, + 276 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "ABSTRACT ", + "text_level": 1, + "bbox": [ + 454, + 311, + 544, + 327 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "Conversational Semantic Parsing (CSP) is the task of converting a sequence of natural language queries to formal language (e.g., SQL, SPARQL) that can be executed against a structured ontology (e.g. databases, knowledge bases). To accomplish this task, a CSP system needs to model the relation between the unstructured language utterance and the structured ontology while representing the multi-turn dynamics of the dialog. Pre-trained language models (LMs) are the state-of-the-art for various natural language processing tasks. However, existing pre-trained LMs that use language modeling training objectives over free-form text have limited ability to represent natural language references to contextual structural data. In this work, we present SCORE, a new pre-training approach for CSP tasks designed to induce representations that capture the alignment between the dialogue flow and the structural context. We demonstrate the broad applicability of SCORE to CSP tasks by combining SCORE with strong base systems on four different tasks (SPARC, COSQL, MWOZ, and SQA). We show that SCORE can improve the performance over all these base systems by a significant margin and achieves state-of-the-art results on three of them. ", + "bbox": [ + 233, + 340, + 766, + 563 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "1 INTRODUCTION ", + "text_level": 1, + "bbox": [ + 176, + 587, + 336, + 603 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "The goal of task-oriented dialog systems is to assist the user in completing a certain task by performing an action or retrieving relevant information (Tur & Mori, 2011). They are often built on top of a structured ontology grounded in a knowledge base, a database, or a set of API calls. This in contrast to open-domain dialog systems (also referred to as chit-chat systems) where the goal is to maximize engagement with users in open-ended conversations (Jafarpour et al., 2010; Ritter et al., 2011). ", + "bbox": [ + 174, + 617, + 825, + 686 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "A key component of task-oriented conversational systems is Conversational Semantic Parsing (CSP), which converts each utterance in the dialog into a formal language query (e.g., SQL, SPARQL) that can be executed against the structured ontology. CSP has been extensively studied in several academic and industrial research settings such as dialog systems (e.g., dialog state tracking in MWOZ (Budzianowski et al., 2018)), interacting with physical agents (e.g., (Chai et al., 2018)), context-dependent semantic parsing (e.g., SPARC (Yu et al., 2019b)), SQL-grounded state tracking (e.g., COSQL (Yu et al., 2019a)), and sequential question answering (e.g., SQA (Iyyer et al., 2017)). These settings differ in some respect, but they share the same overall objective and key challenge: how to jointly represent the natural language utterances and underlying structured ontology while taking into consideration the multi-turn dynamics of the dialog. ", + "bbox": [ + 174, + 694, + 825, + 833 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "Similar to many other natural language tasks, recent work in CSP has significantly benefited from advances in language model pre-training. However, existing general-purpose pre-trained language models, e.g. BERT (Devlin et al., 2019), are pre-trained on free-form text data using language model objectives. This limits their ability in modeling the structural context or the multi-turn dynamics of the dialogs. This presents an opportunity to improve pre-trained LMs to specifically address these limitations for CSP tasks. Recent work has demonstrated the benefits of adapting pre-trained LMs to specific domains (Gururangan et al., 2020) or tasks (Zhang et al., 2019b) via a second phase of pre-training. For example, open-domain dialogue language models such as DialoGPT (Zhang et al., 2020) and ConveRT (Henderson et al., 2019) are pre-trained on the Reddit data and applied to dialog response generation and retrieval tasks. ", + "bbox": [ + 174, + 840, + 825, + 922 + ], + "page_idx": 0 + }, + { + "type": "image", + "img_path": "images/7aee0dcf05f327f0a25d0a1d95fd1e53bd5c59396766fe11cc27b236f4dec59f.jpg", + "image_caption": [ + "Figure 1: Examples of conversational semantic parsing tasks from SPARC and MWOZ datasets. " + ], + "image_footnote": [], + "bbox": [ + 174, + 102, + 821, + 257 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "", + "bbox": [ + 176, + 290, + 825, + 344 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "In this paper, we introduce SCORE (Structured & Sequential Context Representation), a language model pre-training approach for CSP tasks. SCORE adapts general pre-trained LMs by introducing a second phase of pre-training using multiple objectives that capture both multi-turn dynamics and the structural contexts in a dialog. In contrast to open-domain dialogs, CSP datasets are usually much smaller due to the difficulty and expense of obtaining and labeling data (mapping natural language utterances to formal language). Unlike most prior work on contextualized LMs which are pre-trained on free text, according to the finding where questions in CSP tasks are more compositional than other free-text since they can be mapped into formal representations, we propose to train SCORE on synthesized conversational semantic parsing data with multiple training objectives that aim to ground utterances into the schema of the underlying ontology and to model the relationship between different utterances in the multi-turn conversation. In this way, SCORE can effectively inject structural and conversational inductive biases in LMs that can translate to many CSP tasks. SCORE uses an order of magnitude smaller dataset for the second stage of pre-training, does not require changes to the pre-trained model architecture, can be used as a drop-in replacement of general pre-trained LMs with any semantic parsing model, and can be used out-of-the-box in many CSP tasks. ", + "bbox": [ + 174, + 352, + 825, + 560 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "We apply SCORE to four different CSP tasks: (1) sequential text-to-SQL (SPARC), (2) conversational text-to-SQL (COSQL), (3) dialog state tracking (MWOZ), and (4) weakly-supervised sequential question answering (SQA). The fours tasks represent different scenarios, types of ontologies, supervision signals, system responses, and domains (see Table 1 for a detailed comparison and Figure 1 for examples). We demonstrate that: (1) SCORE training objectives can effectively incorporate synthesized data, (2) a single pre-trained SCORE model can be used for several CSP tasks and can be combined with many baseline systems with different model architectures and (3) SCORE significantly improve all baseline systems and achieves new state-of-the-art results on three benchmarks (SPARC, SPARC, and MWOZ) and comparable performance to state-of-the-art results on the fourth (SQA). ", + "bbox": [ + 174, + 568, + 825, + 693 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "2 APPROACH", + "text_level": 1, + "bbox": [ + 174, + 704, + 299, + 719 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "The key challenge of CSP is to capture the relationship between the natural language utterance and the structured ontology in the multi-turn dialog dynamics. To this end, we inject structural and conversational inductive biases in SCORE by introducing two objective functions: Column Contextual Semantics (CCS) and the Turn Contextual Switch (TCS). Because the size of existing semantic parsing datasets is limited, we produce synthesized data for pretraining SCORE by sampling from the context-free grammar induced from complex text-to-SQL examples in different domains. Moreover, to prevent SCORE from overfitting to the linguistic pattern of our synthesized data, we use the Masked Language Modeling (MLM) objective on human-generated utterances as regularization. ", + "bbox": [ + 174, + 726, + 825, + 837 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "2.1 PRELIMINARIES ", + "text_level": 1, + "bbox": [ + 174, + 854, + 326, + 869 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "Task Definition In CSP, at each turn $t$ , we aim to produce a formal representation $q _ { t }$ given the current utterance $u _ { t }$ , the interaction history $h _ { t } = [ u _ { 1 } , u _ { 2 } , \\ldots , u _ { t - 1 } ]$ , and the schema $c$ (table and column names, slots, etc.) of the target database (ontology) $d$ . To cover different problem variants, we ", + "bbox": [ + 176, + 882, + 823, + 924 + ], + "page_idx": 1 + }, + { + "type": "table", + "img_path": "images/929885980d69032c673d24866c6a4b2f3530bfca69ca1c769eb0937bc0419bdc.jpg", + "table_caption": [], + "table_footnote": [], + "table_body": "
DatasetStructured OntologyAnnotation (Supervision)Cross DomainSystem Response# Dialogs# Turns
SPARCdatabaseSQL (supervised)X4,29812,726
CoSQLdatabaseSQL (supervised)3,00715,598
MWoZdomain ontologyslot-value (supervised)X8,438113,556
SQAtabledenotation (weakly-supervised)X6,06617,553
", + "bbox": [ + 173, + 101, + 825, + 189 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "Table 1: Comparison of CSP datasets. Examples from two of the datasets are shown in Figure 1. \nCross-domain means the train and test sets have different domains, so MWOZ is not cross-domain. ", + "bbox": [ + 173, + 200, + 823, + 228 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "consider four popular CSP tasks shown in Table 1: SPARC (sequential text-to-SQL), COSQL (conversational text-to-SQL), MWOZ (dialogue state tracking), and SQA (weakly supervised sequential question answering). They have different target formal language and structured ontology: ", + "bbox": [ + 173, + 234, + 826, + 277 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "• For the utterance $\\textbf { \\em u }$ , it is the user question for SPARC and SQA, while for COSQL and MWOZ, $u$ is the combination of a user query and a system response. \n• For the database $^ d$ , SPARC and COSQL use multi-table databases; for MWOZ, the pre-defined ontology $d$ can also be viewed as a database; for SQA, $d$ is a single table. \n• For the formal representation $\\pmb q$ , it is the SQL query for SPARC and COSQL; in MWOZ it is the slot-value pairs that can be viewed as simple SQL queries consisting of SELECT and WHERE clauses; and for SQA, $q$ is the latent program. ", + "bbox": [ + 173, + 285, + 826, + 382 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "Base Architecture The base architecture of SCORE takes as input a single turn of a CSP dialog $\\left. u _ { t } , h _ { t } \\right.$ jointly with the underlying database schema $c$ . Given this contextualized conversational input $C _ { t } = \\langle u _ { t } , h _ { t } , c \\rangle$ , SCORE encodes it into contextualized conversation representations $\\vec { S } _ { t }$ for each token in $C _ { t }$ . The encoder architecture follows RoBERTa (Liu et al., 2019b). It is then followed by a linear layer and normalized (Ba et al., 2016) to produce final representations $\\vec { h } _ { t }$ for each token: ", + "bbox": [ + 173, + 396, + 825, + 470 + ], + "page_idx": 2 + }, + { + "type": "equation", + "img_path": "images/6dc9fe52a1ca2f161dcba029a49a3d12e81e554d8c01dfacd7ff981f1c020b50.jpg", + "text": "$$\nC _ { t } = \\langle u _ { t } , h _ { t } , c \\rangle , \\ \\vec { S } _ { t } = \\mathrm { R o B E R T A } ( C _ { t } ) , \\ h _ { t , i } = \\mathrm { L a y e r N o r m } ( \\mathrm { G E L U } ( W _ { 1 } S _ { t , i } ) ) \\ \\forall S _ { t , i } \\in \\vec { S } _ { t } ,\n$$", + "text_format": "latex", + "bbox": [ + 187, + 474, + 787, + 492 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "where GELU is an activation by Hendrycks & Gimpel (2016) and $W _ { 1 }$ is a learned parameter matrix. ", + "bbox": [ + 173, + 494, + 823, + 510 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "To build $C _ { t }$ , we first concatenate current utterances $u _ { t }$ and dialog history $h _ { t }$ separated by a special token $< s >$ , as this simple strategy has been shown effective in state-of-the-art CSP systems (Zhang et al., $2 0 1 9 \\mathrm { c }$ ; Wu et al., 2019; Liu et al., 2020; Heck et al., 2020). To incorporate the database schema, we follow Hwang et al. (2019) to concatenate all column names as a single sequence. Column names are separated by the special token $< / \\varsigma >$ and prefixed by their corresponding table name. ", + "bbox": [ + 173, + 516, + 825, + 587 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "2.2 SCORE PRE-TRAINING ", + "text_level": 1, + "bbox": [ + 176, + 602, + 375, + 616 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "SCORE addresses the challenges of CSP by pre-training a task-oriented language model contextualized by the conversational flow and the underlying ontology. In pre-training, the SCORE model is self-supervised by two novel objectives in addition to the established Masked Language Modeling (MLM) objective. These objectives facilitate the accurate representation of the conversational flow between dialog turns and how this flow maps to the desired columns in the ontology. ", + "bbox": [ + 173, + 627, + 825, + 698 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "Column Contextual Semantics The first challenge of CSP is capturing the alignment between the natural language utterance and the underlying database schema. To address it, we optimize the SCORE model with the auxiliary objective of Column Contextual Semantics (CCS). For each column in the database schema $c$ , CCS targets the operations that should be performed on this column in a given conversational turn. Specifically, each formal representation $q$ is decomposed into operations on columns and tables, e.g. GROUP BY and HAVING for SQL queries, or WHERE for the slot-value pairs. In this way, our data covers 148 column operations. We use the encoding of the special token $< / \\varsigma >$ right before each column or table name to predict its corresponding operations, and then compute the CCS loss: ", + "bbox": [ + 173, + 712, + 825, + 838 + ], + "page_idx": 2 + }, + { + "type": "equation", + "img_path": "images/8c1af7f0bc82204522aea400039a7f1c8631328fbe6b2fc50c318f020b2df77c.jpg", + "text": "$$\n{ \\mathcal { L } } _ { \\mathrm { C C S } } ( C _ { t } ) = \\sum _ { i \\in c } { \\mathrm { C r o s s E n t r o p y } } _ { 1 4 8 } ( { \\mathrm { L a y e r N o r m } } ( W _ { 2 } h _ { t , i } ^ { c } ) , { \\mathrm { C C S } } ( q _ { t } ) )\n$$", + "text_format": "latex", + "bbox": [ + 266, + 840, + 730, + 866 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "where $h _ { t , i } ^ { c }$ is the contextualized representation of the $i ^ { \\mathrm { { t h } } }$ column’s special token $< / \\varsigma >$ in the contextualized input $C _ { t }$ , $\\operatorname { C C S } ( q _ { t } )$ returns the column operation label for the current formal representation $q _ { t }$ , CrossEntropy $^ { 1 4 8 }$ computes the 148-way cross-entropy between the column operation prediction and label, and $W _ { 2 }$ is a learned parameter matrix. ", + "bbox": [ + 174, + 866, + 825, + 924 + ], + "page_idx": 2 + }, + { + "type": "image", + "img_path": "images/a26fd1e21b056c19bb034c1f12fdaf1d1a572af164e6b8ac9602885a9dd040ef.jpg", + "image_caption": [ + "Dialogs Formal Programs DatabaseFigure 2: Pre-training of a SCORE encoder on a SPARC text-to-SQL example from Figure 1. " + ], + "image_footnote": [], + "bbox": [ + 225, + 98, + 774, + 212 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "Usr: Also show the names of their publishers. SELECT t1.title, t1.name, t3.name FROM author AS t1 JOIN book Book: id | title | author id | … | sale_amountTurn Contextual Switch The second challenge of CSP is capturing the conversational context t3.id ORDER BY t2.sale_amount DESC LIMIT 3flow and how it is grounded into the formal representations. The TCS objective aims to capture this Usr: I am looking for a cheap restaurant in the Restaurant(Price=cheap, area=center)grounding of context flow. To this end, it targets predicting the difference in formal representations Sys: There is a cheap chinese restaurant called between dialog turns based on the natural language utterance. ", + "bbox": [ + 174, + 270, + 825, + 327 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "… ... Taxi: leaveAt | … | destinationBased on the context-free grammar of SQL, we identify 26 possible turn difference operations that a Usr: I also need to book a taxi between to the restaurant at 20:30. Restaurant(price=cheap, area=center, name=Dojo Noodle Bar, people=8, time=18:30, day=Thursday)conversational turn could elicit. They encode changes between different turns of user queries (the sysSys: The taxi is booked. tem response is not involved here) since we assume that most turn contextual shifts are from the user. For example, INS(WHERE) indicates inserting a new WHERE condition and DEL(SELECT.agg) indicates removing an aggregate operation from a SELECT statement (e.g. when an utterance “Show all the ages instead.” elicits a change SELECT MAX(age) ... SELECT age ...). We use the encoding of the special token $< / \\varsigma >$ right before each turn to predict the context switch label between this turn and the previous history: ", + "bbox": [ + 174, + 332, + 825, + 445 + ], + "page_idx": 3 + }, + { + "type": "equation", + "img_path": "images/e1202ac31ef3a936c1c3594458ef5092648f9423fe702af3f8f1b3b042f5f91e.jpg", + "text": "$$\n\\mathcal { L } _ { \\mathrm { T C S } } ( C _ { t } ) = \\mathrm { C r o s s E n t r o p y } _ { 2 6 } ( \\mathrm { L a y e r N o r m } ( W _ { 3 } H _ { t } ^ { s } ) , \\mathrm { T C S } ( q _ { t } , q _ { t - 1 } ) )\n$$", + "text_format": "latex", + "bbox": [ + 277, + 453, + 720, + 472 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "where $\\pmb { H } _ { t } ^ { s } \\in \\mathbb { R } ^ { ( t - 1 ) \\times d }$ is the contextualized representation of all previous turns in $C _ { t }$ with hidden dimension $d$ , $\\mathrm { T C S } ( q _ { t } , q _ { t - 1 } )$ returns the turn difference operations from $q _ { t - 1 }$ to $q _ { t }$ , and $W _ { 3 }$ is a learned parameter matrix. We don’t use this objective to pre-train SCORE for MWOZ because the context switch label between turns is relatively simple in MWOZ (only select and where changes). ", + "bbox": [ + 173, + 479, + 825, + 551 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "Masked Language Modeling As in prior work on large-scale language models (Devlin et al., 2019), we use the Masked Language Modeling (MLM) objective to facilitate contextual representation learning for natural language utterances. Importantly for regularization, we only apply this loss on in-domain human-annotated natural language data. Namely, it includes utterances in SPARC, COSQL, and SQA as well as nine task-oriented dialog datasets processed by Wu et al. (2020) for MWOZ (see data statistics in Figure 4). Formally, the MLM loss is given by: ", + "bbox": [ + 173, + 568, + 826, + 652 + ], + "page_idx": 3 + }, + { + "type": "equation", + "img_path": "images/889a4d0de1ea09ca336c8b8aceff019d5ae79e1d25413a1afb2d480273927a4d.jpg", + "text": "$$\n\\mathcal { L } _ { \\mathrm { M L M } } ( C _ { t } ) = \\sum _ { m } \\mathrm { C r o s s E n t r o p y } _ { \\mathrm { V o c a b } } ( \\mathrm { L a y e r N o r m } ( W _ { 4 } h _ { t } ^ { m } ) )\n$$", + "text_format": "latex", + "bbox": [ + 302, + 660, + 692, + 694 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "where $\\pmb { h } _ { t } ^ { m }$ are the contextualized representations of the masked $15 \\%$ of tokens in $C _ { t }$ , and $W _ { 4 }$ is a learned parameter matrix. ", + "bbox": [ + 173, + 702, + 823, + 731 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "Pre-Training Setup and Steps To summarize the pre-training steps, we first collect a dataset $\\mathcal { D } _ { \\mathrm { n a t } }$ of combined human-annotated natural language questions (without labels) from existing CSP tasks (as mentioned above), and create a large synthesized conversational data $\\mathcal { D } _ { \\mathrm { s y n } }$ that is generated by a grammar induced from a small set of SPARC annotated examples (See 2.3). After that, we incorporate both two datasets in pre-training. More specifically, synthetic and natural examples are randomly sampled during pre-training. The total pre-training loss is the sum of the three objectives with CCS and TCS only applied to $\\mathcal { D } _ { \\mathrm { s y n } }$ and MLM only to $\\mathcal { D } _ { \\mathrm { n a t } }$ : ", + "bbox": [ + 173, + 747, + 825, + 847 + ], + "page_idx": 3 + }, + { + "type": "equation", + "img_path": "images/46d20e8e6527469f7ca88c59d32b1a66d3565728e9e615f3732968fcd6703a6e.jpg", + "text": "$$\n\\mathcal { L } = \\sum _ { C _ { t } \\in \\mathcal { D } _ { \\mathrm { s y n } } } \\left( \\mathcal { L } _ { \\mathrm { C C S } } ( C _ { t } ) + \\mathcal { L } _ { \\mathrm { T C S } } ( C _ { t } ) \\right) + \\sum _ { C _ { t } \\in \\mathcal { D } _ { \\mathrm { n a t } } } \\mathcal { L } _ { \\mathrm { M L M } } ( C _ { t } )\n$$", + "text_format": "latex", + "bbox": [ + 282, + 854, + 714, + 883 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "Figure 2 shows an overview of SCORE pre-training on an example SPARC dialogue from Figure 1. \nWe report additional implementation details for pre-training SCORE in Section 3.3 and Appendix C. ", + "bbox": [ + 173, + 895, + 825, + 924 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "2.3 DATA SYNTHESIS ", + "text_level": 1, + "bbox": [ + 176, + 103, + 336, + 117 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "We re-use the synthetic dataset of 120k synthetic task-oriented dialogues for MWOZ, introduced by Campagna et al. (2020). In this work, we introduce a complementary procedure to synthesize data for conversational text-to-SQL dialogues. We use about $4 0 0 \\mathrm { k }$ tables in WIKITABLES (Bhagavatula et al., 2015) (after filtering and cleaning), WikiSQL, and Spider datasets as underlying databases $d$ , and then synthesize about one dialog for each table. Finally, we synthesize $4 3 5 \\mathrm { k }$ text-to-SQL conversations in total. Table 12 in Appendix B shows an example of the synthesized question-SQL pairs and their corresponding templates in our grammar. ", + "bbox": [ + 173, + 133, + 825, + 231 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "To this end, we use only 500 dev examples from SPARC to induce two utteranceSQL generation grammars: (1) a singleturn context-free grammar $G _ { s }$ for generating context-independent question-SQL pairs, and (2) a follow-up context-free grammar $G _ { c }$ for follow-up question-SQL pairs. The single-turn grammar $G _ { s }$ contains a list of synchronous question-SQL templates where typed slots (COLUMN0, OP0, VALUE0, . . . ) represent mentions of tables, columns, values, and SQL operations. The follow-up grammar $G _ { c }$ contains context switch labels and lists of follow-up question templates. For example, if the context switch label is INS(SELECT.column0), the corresponding question could be “How about show column0 too?”. To ensure generalization, we only induce the grammars from the SPARC training set. Appendix B shows examples of the grammar rules and synthesized utterances. ", + "bbox": [ + 174, + 237, + 485, + 515 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "Algorithm 1 Data synthesis algorithm ", + "text_level": 1, + "bbox": [ + 498, + 258, + 750, + 273 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "1: $\\tilde { h } \\emptyset$ \n2: $r _ { s } \\gets \\mathbf { S A M P L E } ( G _ { s } )$ \n3: $\\tilde { u } _ { 0 } , \\tilde { q } _ { 0 } \\gets$ RANDASSIGNSLOTS(d, rs) \n4: $\\tilde { h } + = ( \\tilde { u } _ { 0 } , \\tilde { q } _ { 0 } )$ \n5: $\\tilde { u } _ { p } , \\tilde { q } _ { p } \\gets \\tilde { u } _ { 0 } , \\tilde { q } _ { 0 }$ \n6: for $t \\gets 1$ to $T$ do \n7: if $\\mathrm { R A N D } ( 0 , 1 ) < 0 . 2$ then \n8: $r _ { s } \\gets \\mathbf { S A M P L E } ( G _ { s } )$ \n9: $\\tilde { u } _ { t } , \\tilde { q } _ { t } \\gets \\mathrm { R A N D A S S I G N S L O T S } ( d , r _ { s } )$ \n10: else \n11: $r _ { c } \\gets \\mathbf { S A M P L E } ( G _ { c } )$ \n12: if CONSTRAINTCHECK $( r _ { c } , \\tilde { q } _ { p } )$ then \n13: u˜t, q˜t ← EDITASSIGN(˜qp, rc) \n14: h˜+ = (˜ut, q˜t, rc) \n15: u˜p, q˜p ← u˜t, q˜t \n16: return h˜ ", + "bbox": [ + 501, + 277, + 821, + 512 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "The data synthesis procedure using the two grammars is shown in Algorithm 1. Given a database $d$ and a sampled single-turn question-SQL template, the function RANDASSIGNSLOTS samples values (column names, cell values, and SQL operations) for typed slots in the template and returns the first synthesized question $\\tilde { u } _ { 0 }$ and the corresponding SQL query $\\tilde { q } _ { 0 }$ . To generate $T$ follow-up question-SQL pairs, the function CONSTRAINTCHECK $( r _ { c } , \\tilde { q } _ { p } )$ checks if the previous query $\\tilde { q } _ { p }$ satisfies constraints of the sampled template $r _ { c }$ (e.g. contains its mentioned nonterminal). Finally, EDITASSIGN $( \\tilde { q } _ { p } , r _ { c } )$ edits the previous SQL $\\tilde { q } _ { p }$ to generate the current follow-up SQL label $\\tilde { q } _ { t }$ and samples values for typed slots in the template to generate the corresponding follow-up question $\\tilde { u } _ { t }$ . ", + "bbox": [ + 173, + 522, + 825, + 635 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "3 EXPERIMENT SETTINGS ", + "text_level": 1, + "bbox": [ + 176, + 665, + 405, + 681 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "3.1 DATASETS AND EVALUATION METRICS ", + "text_level": 1, + "bbox": [ + 176, + 703, + 485, + 718 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "We evaluate SCORE on four popular CSP tasks: SPARC (sequential text-to-SQL), COSQL (conversational text-to-SQL), MWOZ (dialogue state tracking), and SQA (sequential question answering), summarized in Table 1. ", + "bbox": [ + 174, + 733, + 826, + 775 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "SPARC (Yu et al., 2019b) 1 is a large collection of sequences of inter-related context-dependent question-SQL pairs. It contains 4.3K questions sequences and $1 2 \\mathrm { k } +$ questions. COSQL (Yu et al., 2019a) 2 is a large conversational text-to-SQL corpus, with 3k dialogues, collected under the Wizardof-Oz (WOZ) setting. We focus on the SQL-grounded dialogue state tracking task which maps user intents into SQL queries if possible given the interaction history. Both SPARC and COSQL cover 200 complex DBs spanning 138 domains. ", + "bbox": [ + 174, + 782, + 826, + 866 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "MWOZ (Budzianowski et al., 2018; Eric et al., 2019) 3 is a corpus of over 10k human-human written task-oriented dialogs created through a WOZ crowdsourcing setting. We focus on the belief state tracking task in MWOZ which maps multi-turn user utterances to slot-value annotations. ", + "bbox": [ + 174, + 103, + 823, + 145 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "SQA (Iyyer et al., 2017) 4 is constructed from a subset of WikiTableQuestions (Pasupat & Liang, 2015) by decomposing highly compositional questions into a sequence of simple questions. The task is weakly-supervised because each resulting decomposed question is only annotated with answers as one or more table cells, while the logic program is latent. It has 6,066 question sequences with 17,553 questions in total on 982 unique open-domain tables from Wikipedia. ", + "bbox": [ + 174, + 152, + 825, + 222 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "We adopt the official metrics defined for each of the tasks. For SPARC and COSQL, we report question match accuracy (QM): the exact set match accuracy (Yu et al., 2018b) over SQL templates and interaction match accuracy (IM): the ratio of interactions for which all questions are predicted correctly. For MWOZ, we report joint goal accuracy (JGA) which is similar to the IM accuracy used in SPARC and COSQL. Finally, for SQA, we report denotation QM and IM accuracies. ", + "bbox": [ + 174, + 229, + 825, + 299 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "3.2 BASE MODELS AND OTHER BASELINES", + "text_level": 1, + "bbox": [ + 176, + 316, + 486, + 330 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "For SPARC and COSQL, we use RAT-SQL (Wang et al., 2020) as our base model. Since it is originally developed for single-turn text-to-SQL, we extend it to a multi-turn setting by concatenating current utterances and dialog history (see Section 2.2). Note that RAT-SQL alone, without SCORE, achieves better or comparable results to state-of-the-art models developed for SPARC and COSQL. ", + "bbox": [ + 174, + 342, + 825, + 398 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "For MWOZ, we employ Trippy (Heck et al., 2020). It achieves state-of-the-art performance on MWOZ and uses $\\mathbf { B E R T _ { b a s e } }$ to encode user and system utterances and dialog history. We report higher results (around $2 \\%$ ) for Trippy than reported by Heck et al. (2020) since we train it for more epochs (25 vs. 10). To show the improvement of SCORE is not tied to specific base systems, we also experiment with another strong base model SOM-DST (Kim et al., 2020) for MWOZ and follow the same experimental details to train it. ", + "bbox": [ + 174, + 405, + 825, + 488 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "For SQA, we use the weakly-supervised semantic parser proposed by Wang et al. (2019). The model first generates an abstract program given an input question and then instantiates it by searching for alignments between slots in the abstract program and question spans. As it is originally developed for single-turn questions, we extend it to the multi-turn setting in the same way as RAT-SQL. ", + "bbox": [ + 174, + 496, + 825, + 553 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "We report additional implementation details for all base models in Appendix C. In addition to reporting results for all base models with SCORE, we also report original base models results (with BERT and/or ROBERTA) and several other state-of-the-art baselines for each task. ", + "bbox": [ + 174, + 559, + 825, + 601 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "3.3 DATASET USAGE IN PRE-TRAINING ", + "text_level": 1, + "bbox": [ + 176, + 618, + 460, + 632 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "In our experiments and ablation study, we train several versions of SCORE with different objectives and datasets: (1) SCORE (MLM): pre-trained on annotated natural questions using MLM. (2) SCORE $( \\mathrm { C C S + T C S } )$ ): pre-trained on only synthesized data, which achieves the best results on SParC, CoSQL, and SQA. (3) SCORE $\\mathbf { C C S + T C S + M L M } )$ : pre-trained on the synthesized data using $\\mathrm { C C S + T C S }$ and annotated natural questions using MLM. ", + "bbox": [ + 174, + 645, + 825, + 714 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "Furthermore, note that the synthesized data is generated using grammar induced by about 500 examples from only SPARC. Therefore, no COSQL or SQA data are seen in any pre-training steps. For MWOZ, Campagna et al. (2020) study only the dev examples to induce the data synthesis grammar. ", + "bbox": [ + 174, + 722, + 825, + 777 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "4 RESULTS AND ANALYSIS ", + "text_level": 1, + "bbox": [ + 176, + 797, + 413, + 814 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "Overall Results The results of SPARC and COSQL, MWOZ, and SQA are in Table 2, 3, and 4 respectively. We run each main experiment three times with different random seeds and report the mean. Overall, SCORE gains significant improvements over BERT and ROBERTA on all tasks, achieving state-of-the-art performances on SPARC, COSQL, and MWOZ. ", + "bbox": [ + 174, + 829, + 825, + 886 + ], + "page_idx": 5 + }, + { + "type": "table", + "img_path": "images/0b3f07feb9a8aece2fe44f989db7e6a0d4a81cdcc015ba0808e6b1599eee91db.jpg", + "table_caption": [ + "Table 2: The SPARC and COSQL accuracy over all questions (QM) and all interactions (IM). The scores of IGSQL $^ +$ BERT and $\\mathrm { R ^ { 2 } S Q L + }$ BERT are from the official leaderboards. " + ], + "table_footnote": [], + "table_body": "
SPARCCoSQL
DevTestDevTest
QMIMQMIMQMIMQMIM
SyntaxSQL (Yu et al.,2018a)18.54.320.25.21-14.22.2
GAZP + BERT (Zhong et al., 2020)48.929.745.923.542.012.339.712.8
EditSQL + BERT (Zhang et al.,2019c)47.229.547.925.339.912.340.813.7
IGSQL +BERT50.732.551.229.544.115.842.515.0
R²SQL +BERT1-55.830.81-46.817.0
RAT-SQL + BERT (Wang et al., 2019)56.833.41148.419.11-
+ROBERTA58.236.7--50.119.3--
+ SCoRE62.242.562.438.152.122.051.621.2
", + "bbox": [ + 199, + 101, + 797, + 268 + ], + "page_idx": 6 + }, + { + "type": "table", + "img_path": "images/23f722752f88c933003aad1cdd53b78bc2ec0fd18f8c0a1463e04e068124dafd.jpg", + "table_caption": [ + "Table 3: Joint goal accuracies (JGA) on MWOZ 2.1 test set. All models use a BERT-like encoder/GPT. " + ], + "table_footnote": [], + "table_body": "
ModelsMWoZ 2.1
DST-reader (Gao et al.,2019)36.40
TRADE (Wu et al., 2019)46.60
DS-DST (Zhang et al.,2019a)51.21
SOM-DST (Kim et al.,2020)52.57
DS-picklist (Zhang et al.,2019a)53.30
TripPy (Heck et al.,2020)55.29
SimpleToD (Hosseini-Asl et al.,2020)55.72
TripPy (ours)58.37
+ SCoRE60.48
", + "bbox": [ + 173, + 311, + 496, + 454 + ], + "page_idx": 6 + }, + { + "type": "table", + "img_path": "images/2d2a4c78e221b5b5b7f2e13d5d7a95722b0c4ed5c8115dfb11a1578c0b6508e4.jpg", + "table_caption": [ + "Table 4: Question (QM) and interaction (IM) accuracy on the SQA test set. " + ], + "table_footnote": [], + "table_body": "
ModelsSQA
QMIM
Pasupat & Liang (2015)33.27.7
Neelakantan et al. (2017)40.211.8
Iyyer et al. (2017)44.712.8
Sun et al. (2019a)45.613.2
Muller et al. (2019)55.128.1
Herzig et al. (2020)67.240.4
Wang et al. (2019)+RoBERTa62.833.2
Wang et al. (2019) + SCoRE65.438.5
", + "bbox": [ + 522, + 315, + 816, + 467 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "For SPARC and $\\mathrm { C o S Q L }$ in Table 2, compared with ROBERTA, SCORE boosts the performance by $4 . 0 \\%$ QM / $5 . 8 \\%$ IM on SPARC, and $2 . 0 \\%$ QM / $2 . 7 \\%$ IM on COSQL. This demonstrates the effectiveness of SCORE on contextual semantic parsing tasks. In addition, on MWOZ dialog state tracking task in Table 3, TripPy achieves $6 0 . 5 \\%$ JGA by replacing BERT with SCORE, outperforming the prior state-of-the-art (Hosseini-Asl et al., 2020) by $4 . 8 \\%$ . This indicates that dialog state tracking also benefits from SCORE. Finally, SCORE also achieves higher performance than ROBERTA on weakly supervised sequential question answering SQA task. As Table 4 shows, SCORE improves QM by $2 . 6 \\%$ and IM by $4 . 9 \\%$ over ROBERTA with Wang et al. (2019) as the base model. This demonstrates that the enhanced ability of semantic parsing and context modeling in SCORE is transferable to denotation-based CSP tasks. ", + "bbox": [ + 173, + 527, + 825, + 666 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "What is the effect of each pretraining objective? Table 5 shows an ablation study on different pretraining objectives. We find that the best SCORE results are achieved by pre-training on only synthesized data $( \\mathrm { C C S + T C S } )$ ) without any natural questions (MLM) on SPARC, ", + "bbox": [ + 173, + 688, + 415, + 797 + ], + "page_idx": 6 + }, + { + "type": "table", + "img_path": "images/5f73eed5ea77f693ef380d40f80837cb4adfe8548834ac91354bf08fefc627a0.jpg", + "table_caption": [], + "table_footnote": [], + "table_body": "
Learning ObjectiveSPARCCoSQLMWoZSQA
MLM only37.0(+0.3)20.3(+1.0)59.47(+1.10)34.7(+1.5)
CCS only41.3(+4.6)21.2(+1.9)59.32(+0.95)32.7(-0.5)
CCS+TCS42.5(+5.8)22.0(+2.7)38.5(+5.3)
CCS+TCS+MLM38.6(+1.9)21.7(+2.4)60.48(+2.11)33.7(+0.5)
", + "bbox": [ + 428, + 694, + 821, + 758 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "Table 5: The effect of SCORE pre-training objectives. Improvements are shown in the parentheses. ", + "bbox": [ + 426, + 763, + 825, + 792 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "COSQL, and SQA but not on MWOZ. By adding MLM to $\\mathrm { C C S + T C S }$ $\\mathrm { C C S + T C S }$ vs. $\\mathbf { C C S + T C S + M L M }$ ), MLM actually hurts the performance $- 3 . 9 \\%$ on SParC, - $. 0 . 3 \\%$ on $\\mathbf { C o S Q L }$ , and $- 4 . 4 \\%$ on SQA) while increases for MWOZ. One possible reason is that questions in MWOZ are more diverse in language but less compositional while semantic compositionality and turn changes are more important in the other three CSP tasks. Also, the synthesized data used to pre-train SCORE for SPARC and COSQL is generated by the grammar induced by SPARC, which might overfit to SPARC. In addition, SCORE pre-trained with only MLM loss improves the performance $( \\ 1 . 0 \\% )$ but not as large as $\\mathrm { C C S + T C S }$ $( + 5 . 5 \\%$ on SPARC, $+ 1 . 7 \\%$ on COSQL, and $+ 3 . 4 \\%$ on SQA). Finally, we test the effectiveness of TCS on SPARC, COSQL, and SQA by adding TCS to CCS (CCS only vs. ", + "bbox": [ + 173, + 799, + 826, + 924 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "CCS+TCS), SCORE gains improvements of $1 . 2 \\%$ on SPARC and $0 . 8 \\%$ on COSQL, and $4 . 4 \\%$ on SQA. ", + "bbox": [ + 174, + 103, + 823, + 131 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "Does SCORE improve question match accuracy on individual turns? Table 6 shows detailed results of SCORE’s question accuracy for individual conversation turns on the SPARC dev set. SCORE provides a significant improvement for every conversation turn except the first (in which the task is more similar to single-turn ", + "bbox": [ + 174, + 148, + 485, + 247 + ], + "page_idx": 7 + }, + { + "type": "table", + "img_path": "images/716b55ab7ab41843425579c845c78f1bb9011d2084bcdd79d2c72afd62120fe6.jpg", + "table_caption": [], + "table_footnote": [], + "table_body": "
QMQ1Q2Q3Q4
RAT-SQL +BERT56.871.153.647.831.8
+RoBERTa58.268.758.548.935.2
+ SCoRE62.270.663.552.645.5
", + "bbox": [ + 504, + 150, + 815, + 212 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "Table 6: Detailed results on the dev set of SPARC. \n$\\mathrm { Q } _ { i }$ is the accuracy of the $i ^ { \\mathrm { { t h } } }$ conversation question. ", + "bbox": [ + 496, + 214, + 826, + 242 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "semantic parsing). COSQL and SQA exhibit similar behavior and are presented in Appendix A. ", + "bbox": [ + 174, + 246, + 802, + 260 + ], + "page_idx": 7 + }, + { + "type": "table", + "img_path": "images/137164c930d245de3cb622845ba7a20896c3547770faa3ef97e81c7652abc76a.jpg", + "table_caption": [], + "table_footnote": [], + "table_body": "
CoSQLMWoZ
no syn48.458.37
with syn48.658.45
", + "bbox": [ + 622, + 273, + 813, + 324 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "What if we use the synthesized data to simply augment the training data? To answer this, we compare the results of the base models trained with or without the synthesized data on COSQL and MWOZ. As shown in Table 7, the extra synthetic data does not significantly improve the performance, indicating that directly augmenting the synthetic data to the training set is ", + "bbox": [ + 174, + 276, + 602, + 359 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "Table 7: Effect of synthetic data as training data augmentation. ", + "bbox": [ + 612, + 327, + 823, + 354 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "not effective. The similar findings are reported in many recent work (Zhang et al., $2 0 1 9 \\mathrm { c }$ ; Herzig et al., 2020; Campagna et al., 2020; Zhong et al., 2020). In contrast, pre-training on the synthesized data with our objectives improves the performance on the downstream tasks. ", + "bbox": [ + 173, + 359, + 816, + 400 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "How general is SCORE and its synthetic grammar? For generalization in task settings, we have shown that the pre-training strategy of SCORE can improve the performance over different CSP tasks including semantic parsing (SPARC and COSQL), dialog state tracking (MWOZ), and weakly supervised table question answering (SQA). In addition, we demonstrate the effectiveness of SCORE on different base models. To this end, we experiment with a different base model SOM-DST for MWOZ. As shown in Table 8, SCORE can still improve the performance with a different base model on MWOZ (SOM-DST $+$ BERT vs. SOM-DST $+ \\mathsfit { S }$ CORE on syn. MWOZ). ", + "bbox": [ + 174, + 416, + 508, + 526 + ], + "page_idx": 7 + }, + { + "type": "table", + "img_path": "images/8767ee72ecde0f4df608eb5fcb436530a2e58fadb17549266edc9d1e8c004c0e.jpg", + "table_caption": [], + "table_footnote": [ + "Table 8: Performance of SCORE pre-trained on different synthesized data on MWOZ. " + ], + "table_body": "
MWoZ
SOM-DST+BERT52.57
+ SCoRE on syn. text-to-SQL53.57
+ SCoRE on syn. MWoZ54.61
", + "bbox": [ + 534, + 422, + 808, + 488 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "", + "bbox": [ + 174, + 527, + 823, + 569 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "To demonstrate the generalization in synthetic grammar and data, as shown in Table 2 and 4, SCORE $\\mathrm { ( T C S + C C S ) }$ is pre-trained on the synthesized data of the grammar induced from SPARC only, and it still improves the performance on COSQL $( + 2 . 7 \\% )$ and SQA $( + 4 . 9 \\% )$ where no any CoSQL and SQA annotated data is seen in any pre-training steps. Moreover, in Table 8 we show that SCORE pre-trained on the text-to-SQL synthesized data could also surprisingly improve the performance on MWOZ. We expect that higher performance could be achieved with SCORE pre-trained on task-specific synthesized data. Finally, our pre-training approach can be applied to any existing LMs including larger seq2seq LMs (e.g., BART (Lewis et al., 2020), T5 (Raffel et al., 2020)). ", + "bbox": [ + 173, + 575, + 825, + 688 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "Can SCORE deliver more value when in-domain data is limited (e.g., in a low-resource setting)? We want to answer this question similar to experiments other investigations of LMs as few-shot learners (Wu et al., 2020; Brown et al., 2020; Schick & Schutze, 2020). To ¨ this end, we compare ROBERTA and SCORE under a few-shot setting on SQA when only $10 \\%$ of training data is available. We choose SQA because its annotation is most different from the synthetic text-to-SQL dataset we use for pretraining. Table 9 demonstrates that SCORE delivers even larger improvements compared to the ROBERTA baseline when only $10 \\%$ training data is available $3 . 8 \\%$ vs $2 . 6 \\%$ ). ", + "bbox": [ + 173, + 704, + 632, + 801 + ], + "page_idx": 7 + }, + { + "type": "table", + "img_path": "images/184d394085803fcceb6851c05c1a7103cd90506541147a6c45ced68bc6a081cf.jpg", + "table_caption": [], + "table_footnote": [ + "Table 9: Performance of SCORE on $10 \\%$ training data of SQA. " + ], + "table_body": "
QMIM
RoBERTa53.321.2
SCoRE57.126.1
", + "bbox": [ + 655, + 709, + 813, + 758 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "", + "bbox": [ + 173, + 801, + 825, + 829 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "5 RELATED WORK ", + "text_level": 1, + "bbox": [ + 176, + 849, + 344, + 866 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "Conversational Semantic Parsing Conversational semantic parsing is one of the most important research topics in conversational AI and has been studied in different settings including task-oriented dialogues, question answering, and text-to-SQL. Task-oriented dialog systems (Henderson et al., ", + "bbox": [ + 176, + 882, + 825, + 924 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "2014; Wen et al., 2016; Mrksiˇ c et al., 2017; Budzianowski et al., 2018) aim to help users accomplish´ a specific task (e.g. flight booking) and often pre-define slot templates grounded in a domainspecific ontology. In comparison, several other datasets were recently introduced for cross-domain conversational text-to-SQL tasks (SPARC and COSQL (Yu et al., 2019a;b)) and sequential questions answers over tables (Iyyer et al., 2017). While the previous work has achieved significant progress in different datasets separately, to the best of our knowledge, we are the first to study four different CSP tasks together (sequential text-to-SQL, conversational text-to-SQL, dialog state tracking, and weakly-supervised sequential question answering) by addressing the shared key challenge of learning representations in pre-trained language models that capture the alignment between the dialogue flow and the structural context. ", + "bbox": [ + 174, + 103, + 825, + 242 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "Conversational Language Model Pre-training Several recent efforts have demonstrated the value of adapting pre-trained LMs to specific tasks using different pre-training objectives, e.g., summarization (Zhang et al., 2019b), knowledge inference (Sun et al., 2019b; Liu et al., 2019a), etc. Closest to our work is adapting pre-trained LMs for open-domain chit-chat models and for tabular data representation. The former focuses on improving response generation on open-ended dialogues by adding a pre-training step on open-domain conversations data, such as Reddit data (Zhang et al., 2020; Henderson et al., 2019). For example, Wu et al. (2020) introduced ToD-BERT, a pre-trained language model combining 9 high-quality human-human task-oriented dialogue datasets to conduct language model and response selection pre-training. However, they use language modeling training objectives over free-form text and therefore have limited ability to represent structural data. The latter has focused on improving language model pre-training for encoding tabular data (Yin et al., 2020; Herzig et al., 2020), but they focus on the single turn semantic parsing setting. Our approach is different from previous work because we address the challenge of conversational semantic parsing tasks by learning pretrained representation for both the multi-turn dynamics of the dialog and the relation between the unstructured language utterance and the structured ontology. Furthermore, our pre-training approach is much more data-efficient than prior LM pre-training work and saves a lot of time and computing resources (Appendix D for more details). Our pre-training step can be done within only one day using 8 V100 GPUs. ", + "bbox": [ + 174, + 258, + 825, + 507 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "Using Synthesized Data for Semantic Parsing Synthesized data has been frequently used in semantic parsing to alleviate the challenge of labeled data scarcity. For example, Wang et al. (2015) proposed a method for training semantic parsers in new domains by generating logical forms and canonical utterances and then paraphrasing the canonical utterances via crowd-sourcing. Similar approaches were used to train semantic parsers in other domains and settings (Zhong et al., 2017; Su et al., 2017; Cheng et al., 2018; Shah et al., 2018). Another line of work has proposed using synthesized data to adapt single turn semantic parsing models to new domains (Jia & Liang, 2016; Yoo et al., 2018; Campagna et al., 2019) and task-oriented dialogues (Campagna et al., 2020). However, they reported that combining synthetic data and the supervised data does not yield significant improvements, consistent with results by Herzig et al. (2020). By contrast, we introduce a new data synthesize procedure for conversational text-to-SQL dialogues and use it in a different way by pretraining language models to induce better representations for many CSP tasks. Our synthesized data can be easily generated without human involvement and the pre-trained models add value to different tasks simultaneously. ", + "bbox": [ + 174, + 523, + 825, + 718 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "6 CONCLUSION ", + "text_level": 1, + "bbox": [ + 176, + 739, + 318, + 755 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "We presented SCORE a new pre-training approach for conversational semantic parsing. The training objectives of SCORE aim to induce natural language representations that capture the multi-turn dynamics, compositional semantic of the target language, and the references to the structural ontology appearing in the dialog. SCORE can be used with many semantic parsing models as a drop-in replacement for general pretrained LMs. We demonstrated SCORE effectiveness by using it as a feature representation encoder with strong baseline models for a wide range of CSP tasks. In particular, our empirical results on four different CSP tasks demonstrated that SCORE can be used to significantly improve the performance of existing strong baseline models by simply replacing an existing pre-trained LM with our SCORE pre-trained model. Furthermore, we are able to achieve state-of-the-art results on three of these tasks. We hope SCORE will encourage further exploration of the benefits and limitations of pre-training approaches for CSP systems. ", + "bbox": [ + 174, + 770, + 825, + 924 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "REFERENCES ", + "text_level": 1, + "bbox": [ + 174, + 102, + 287, + 117 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Jimmy Ba, Jamie Ryan Kiros, and Geoffrey E. Hinton. Layer normalization. ArXiv, abs/1607.06450, 2016. ", + "bbox": [ + 173, + 126, + 825, + 155 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Chandra Bhagavatula, Thanapon Noraset, and Doug Downey. Tabel: Entity linking in web tables. In International Semantic Web Conference, 2015. ", + "bbox": [ + 173, + 162, + 823, + 191 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Tom B Brown, Benjamin Mann, Nick Ryder, Melanie Subbiah, Jared Kaplan, Prafulla Dhariwal, Arvind Neelakantan, Pranav Shyam, Girish Sastry, Amanda Askell, et al. Language models are few-shot learners. arXiv preprint arXiv:2005.14165, 2020. ", + "bbox": [ + 173, + 199, + 826, + 242 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Pawel Budzianowski, Tsung-Hsien Wen, Bo-Hsiang Tseng, Inigo Casanueva, Stefan Ultes, Osman ˜ Ramadan, and Milica Gasic. Multiwoz - a large-scale multi-domain wizard-of-oz dataset for task-oriented dialogue modelling. In EMNLP, 2018. ", + "bbox": [ + 176, + 251, + 823, + 294 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Giovanni Campagna, Silei Xu, Mehrad Moradshahi, Richard Socher, and Monica S. Lam. Genie: A generator of natural language semantic parsers for virtual assistant commands. In Proceedings of the 40th ACM SIGPLAN Conference on Programming Language Design and Implementation, pp. 394–410. Association for Computing Machinery, 2019. ", + "bbox": [ + 173, + 301, + 826, + 359 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Giovanni Campagna, Agata Foryciarz, Mehrad Moradshahi, and Monica S. Lam. Zero-shot transfer learning with synthesized data for multi-domain dialogue state tracking. In Proceedings of 58th Annual Meeting of the Association for Computational Linguistics (Volume 1: Long Papers), 2020. ", + "bbox": [ + 174, + 366, + 825, + 410 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Joyce Y Chai, Qiaozi Gao, Lanbo She, Shaohua Yang, Sari Saba-Sadiya, and Guangyue Xu. Language to action: Towards interactive task learning with physical agents. In IJCAI, pp. 2–9, 2018. ", + "bbox": [ + 169, + 416, + 825, + 446 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Jianpeng Cheng, Siva Reddy, and Mirella Lapata. Building a neural semantic parser from a domain ontology. ArXiv, abs/1812.10037, 2018. ", + "bbox": [ + 169, + 454, + 825, + 483 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Jacob Devlin, Ming-Wei Chang, Kenton Lee, and Kristina Toutanova. Bert: Pre-training of deep bidirectional transformers for language understanding. In NAACL-HLT, 2019. ", + "bbox": [ + 166, + 491, + 823, + 521 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Mihail Eric, Rahul Goel, Shachi Paul, Abhishek Sethi, Sanchit Agarwal, Shuyag Gao, and Dilek Hakkani-Tur. Multiwoz 2.1: Multi-domain dialogue state corrections and state tracking baselines. arXiv preprint arXiv:1907.01669, 2019. ", + "bbox": [ + 173, + 529, + 823, + 571 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Shuyang Gao, Abhishek Sethi, Sanchit Agarwal, Tagyoung Chung, and Dilek Hakkani-Tur. Dialog state tracking: A neural reading comprehension approach. In SIGDial, 2019. ", + "bbox": [ + 169, + 579, + 825, + 609 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Suchin Gururangan, Ana Marasovic, Swabha Swayamdipta, Kyle Lo, Iz Beltagy, Doug Downey, ´ and Noah A. Smith. Don’t stop pretraining: Adapt language models to domains and tasks. In Proceedings of the 58th Annual Meeting of the Association for Computational Linguistics, Online, July 2020. Association for Computational Linguistics. ", + "bbox": [ + 174, + 616, + 826, + 674 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "M. Heck, Carel van Niekerk, Nurul Lubis, Christian Geishauser, Hsien-Chin Lin, M. Moresi, and Milica Gavsi’c. Trippy: A triple copy strategy for value independent neural dialog state tracking. In SIGdial, 2020. ", + "bbox": [ + 174, + 681, + 825, + 724 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Matthew Henderson, Blaise Thomson, and Jason D. Williams. The second dialog state tracking challenge. In SIGDIAL Conference, 2014. ", + "bbox": [ + 174, + 732, + 821, + 762 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Matthew Henderson, Inigo Casanueva, Nikola Mrkvsi’c, P. Su, Tsung-Hsien, and Ivan Vulic. Convert: ˜ Efficient and accurate conversational representations from transformers. ArXiv, abs/1911.03688, 2019. ", + "bbox": [ + 173, + 768, + 826, + 813 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Dan Hendrycks and Kevin Gimpel. A baseline for detecting misclassified and out-of-distribution examples in neural networks. ArXiv, abs/1610.02136, 2016. ", + "bbox": [ + 173, + 820, + 823, + 849 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Jonathan Herzig, P. Nowak, Thomas Muller, Francesco Piccinno, and Julian Martin Eisenschlos. ¨ Tapas: Weakly supervised table parsing via pre-training. In ACL, 2020. ", + "bbox": [ + 178, + 857, + 823, + 887 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Ehsan Hosseini-Asl, B. McCann, Chien-Sheng Wu, Semih Yavuz, and R. Socher. A simple language model for task-oriented dialogue. ArXiv, abs/2005.00796, 2020. ", + "bbox": [ + 176, + 895, + 821, + 924 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Wonseok Hwang, Jinyeung Yim, Seunghyun Park, and Minjoon Seo. A comprehensive exploration on wikisql with table-aware word contextualization. ArXiv, abs/1902.01069, 2019. ", + "bbox": [ + 171, + 103, + 823, + 132 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Mohit Iyyer, Wen-tau Yih, and Ming-Wei Chang. Search-based neural structured learning for sequential question answering. In Proceedings of the 55th Annual Meeting of the Association for Computational Linguistics (Volume 1: Long Papers), Vancouver, Canada, July 2017. Association for Computational Linguistics. ", + "bbox": [ + 173, + 142, + 825, + 199 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Sina Jafarpour, Christopher JC Burges, and Alan Ritter. Filter, rank, and transfer the knowledge: Learning to chat. Advances in Ranking, 10:2329–9290, 2010. ", + "bbox": [ + 176, + 210, + 823, + 239 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Robin Jia and Percy Liang. Data recombination for neural semantic parsing. In Proceedings of the 54th Annual Meeting of the Association for Computational Linguistics (Volume 1: Long Papers), 2016. ", + "bbox": [ + 174, + 250, + 828, + 292 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Sung-Dong Kim, Sohee Yang, Gyuwan Kim, and S. Lee. Efficient dialogue state tracking by selectively overwriting memory. In ACL, 2020. ", + "bbox": [ + 171, + 304, + 823, + 333 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Diederik P. Kingma and Jimmy Ba. Adam: A method for stochastic optimization. CoRR, abs/1412.6980, 2014. ", + "bbox": [ + 173, + 343, + 825, + 372 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Mike Lewis, Yinhan Liu, Naman Goyal, Marjan Ghazvininejad, Abdelrahman Mohamed, Omer Levy, Veselin Stoyanov, and Luke Zettlemoyer. BART: Denoising sequence-to-sequence pre-training for natural language generation, translation, and comprehension. In Proceedings of the 58th Annual Meeting of the Association for Computational Linguistics, Online, July 2020. Association for Computational Linguistics. ", + "bbox": [ + 173, + 383, + 826, + 454 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Q. Liu, B. Chen, Jiaqi Guo, Jian-Guang Lou, Bin Zhou, and Dongmei Zhang. How far are we from effective context modeling ? an exploratory study on semantic parsing in context. ArXiv, abs/2002.00652, 2020. ", + "bbox": [ + 173, + 464, + 823, + 507 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Weijie Liu, Peng Zhou, Zhe Zhao, Zhiruo Wang, Qi Ju, Haotang Deng, and Ping Wang. K-bert: Enabling language representation with knowledge graph, 2019a. ", + "bbox": [ + 169, + 517, + 825, + 547 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Yinhan Liu, Myle Ott, Naman Goyal, Jingfei Du, Mandar Joshi, Danqi Chen, Omer Levy, Mike Lewis, Luke S. Zettlemoyer, and Veselin Stoyanov. Roberta: A robustly optimized bert pretraining approach. ArXiv, abs/1907.11692, 2019b. ", + "bbox": [ + 174, + 558, + 825, + 601 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Nikola Mrksiˇ c, Diarmuid ´ O S ´ eaghdha, Tsung-Hsien Wen, Blaise Thomson, and Steve Young. Neural ´ belief tracker: Data-driven dialogue state tracking. In Proceedings of the 55th Annual Meeting of the Association for Computational Linguistics (Volume 1: Long Papers), pp. 1777–1788. Association for Computational Linguistics, 2017. ", + "bbox": [ + 174, + 612, + 825, + 670 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Thomas Muller, Francesco Piccinno, Massimo Nicosia, Peter Shaw, and Yasemin Altun. Answering ¨ conversational questions on structured data without logical forms. In EMNLP/IJCNLP, 2019. ", + "bbox": [ + 171, + 680, + 825, + 710 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Arvind Neelakantan, Quoc V. Le, M. Abadi, A. McCallum, and Dario Amodei. Learning a natural language interface with neural programmer. ArXiv, abs/1611.08945, 2017. ", + "bbox": [ + 173, + 719, + 823, + 750 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Panupong Pasupat and Percy Liang. Compositional semantic parsing on semi-structured tables. In Proceedings of the 53rd Annual Meeting of the Association for Computational Linguistics and the 7th International Joint Conference on Natural Language Processing of the Asian Federation of Natural Language Processing, ACL 2015, July 26-31, 2015, Beijing, China, Volume 1: Long Papers, pp. 1470–1480, 2015. ", + "bbox": [ + 173, + 760, + 825, + 830 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Alec Radford, Jeffrey Wu, Rewon Child, David Luan, Dario Amodei, and Ilya Sutskever. Language models are unsupervised multitask learners. OpenAI Blog, 2019. ", + "bbox": [ + 169, + 840, + 823, + 871 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Colin Raffel, Noam Shazeer, Adam Roberts, Katherine Lee, Sharan Narang, Michael Matena, Yanqi Zhou, Wei Li, and Peter J. Liu. Exploring the limits of transfer learning with a unified text-to-text transformer. Journal of Machine Learning Research, 21(140):1–67, 2020. ", + "bbox": [ + 174, + 881, + 825, + 924 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Alan Ritter, Colin Cherry, and William B. Dolan. Data-driven response generation in social media. In Proceedings of the 2011 Conference on Empirical Methods in Natural Language Processing, pp. 583–593, Edinburgh, Scotland, UK., July 2011. Association for Computational Linguistics. ", + "bbox": [ + 176, + 103, + 825, + 146 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Ohad Rubin and Jonathan Berant. Smbop: Semi-autoregressive bottom-up semantic parsing. arXiv preprint arXiv:2010.12412, 2020. ", + "bbox": [ + 173, + 155, + 823, + 183 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Timo Schick and Hinrich Schutze. It’s not just size that matters: Small language models are also ¨ few-shot learners. arXiv preprint arXiv:2009.07118, 2020. ", + "bbox": [ + 173, + 191, + 823, + 220 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Pararth Shah, Dilek Hakkani-Tur, Gokhan T ¨ ur, Abhinav Rastogi, Ankur Bapna, Neha Nayak, and ¨ Larry Heck. Building a conversational agent overnight with dialogue self-play, 2018. ", + "bbox": [ + 171, + 229, + 825, + 258 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Peter Shaw, Jakob Uszkoreit, and Ashish Vaswani. Self-attention with relative position representations. In Proceedings of the 2018 Conference of the North American Chapter of the Association for Computational Linguistics: Human Language Technologies, Volume 2 (Short Papers), New Orleans, Louisiana, June 2018. Association for Computational Linguistics. ", + "bbox": [ + 174, + 266, + 826, + 324 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Peter Shaw, Ming-Wei Chang, Panupong Pasupat, and Kristina Toutanova. Compositional generalization and natural language variation: Can a semantic parsing approach handle both? arXiv preprint arXiv:2010.12725, 2020. ", + "bbox": [ + 174, + 332, + 825, + 375 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Yu Su, Ahmed Hassan Awadallah, Madian Khabsa, P. Pantel, M. Gamon, and Mark J. Encarnacion. ´ Building natural language interfaces to web apis. Proceedings of the 2017 ACM on Conference on Information and Knowledge Management, 2017. ", + "bbox": [ + 174, + 382, + 826, + 426 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Yibo Sun, Duyu Tang, Nan Duan, Jingjing Xu, X. Feng, and B. Qin. Knowledge-aware conversational semantic parsing over web tables. In NLPCC, 2019a. ", + "bbox": [ + 174, + 434, + 823, + 463 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Yu Sun, Shuohuan Wang, Yukun Li, Shikun Feng, Xuyi Chen, Han Zhang, Xin Tian, Danxiang Zhu, Hao Tian, and Hua Wu. Ernie: Enhanced representation through knowledge integration, 2019b. ", + "bbox": [ + 176, + 470, + 825, + 501 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Gokhan Tur and Renato De Mori. Spoken language understanding: Systems for extracting semantic information from speech. John Wiley & Sons, 2011. ", + "bbox": [ + 176, + 508, + 823, + 537 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Bailin Wang, Ivan Titov, and Mirella Lapata. Learning semantic parsers from denotations with latent structured alignments and abstract programs. In Proceedings of EMNLP, 2019. ", + "bbox": [ + 173, + 546, + 820, + 575 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Bailin Wang, Richard Shin, Xiaodong Liu, Oleksandr Polozov, and Matthew Richardson. RAT-SQL: Relation-aware schema encoding and linking for text-to-SQL parsers. In Proceedings of the 58th Annual Meeting of the Association for Computational Linguistics, pp. 7567–7578, Online, July 2020. Association for Computational Linguistics. doi: 10.18653/v1/2020.acl-main.677. ", + "bbox": [ + 174, + 583, + 825, + 640 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Yushi Wang, Jonathan Berant, and Percy Liang. Building a semantic parser overnight. In Proceedings of the 53rd Annual Meeting of the Association for Computational Linguistics and the 7th International Joint Conference on Natural Language Processing (Volume 1: Long Papers), pp. 1332–1342, Beijing, China, July 2015. Association for Computational Linguistics. doi: 10.3115/v1/P15-1129. ", + "bbox": [ + 173, + 648, + 825, + 705 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Tsung-Hsien Wen, David Vandyke, Nikola Mrksic, Milica Gasic, Lina M Rojas-Barahona, Pei-Hao Su, Stefan Ultes, and Steve Young. A network-based end-to-end trainable task-oriented dialogue system. arXiv preprint arXiv:1604.04562, 2016. ", + "bbox": [ + 174, + 713, + 825, + 757 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Thomas Wolf, Lysandre Debut, Victor Sanh, Julien Chaumond, Clement Delangue, Anthony Moi, Pierric Cistac, Tim Rault, R’emi Louf, Morgan Funtowicz, and Jamie Brew. Huggingface’s transformers: State-of-the-art natural language processing. ArXiv, abs/1910.03771, 2019. ", + "bbox": [ + 174, + 765, + 825, + 809 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Chien-Sheng Wu, Andrea Madotto, Ehsan Hosseini-Asl, Caiming Xiong, Richard Socher, and Pascale Fung. Transferable multi-domain state generator for task-oriented dialogue systems. In Proceedings of the 57th Annual Meeting of the Association for Computational Linguistics, Florence, Italy, July 2019. Association for Computational Linguistics. ", + "bbox": [ + 174, + 815, + 826, + 873 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Chien-Sheng Wu, Steven C.H. Hoi, Richard Socher, and Caiming Xiong. TOD-BERT: Pre-trained natural language understanding for task-oriented dialogue. In Proceedings of the 2020 Conference on Empirical Methods in Natural Language Processing (EMNLP), 2020. ", + "bbox": [ + 174, + 881, + 825, + 924 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Pengcheng Yin, Graham Neubig, Wen-tau Yih, and Sebastian Riedel. TaBERT: Pretraining for joint understanding of textual and tabular data. In Proceedings of the 58th Annual Meeting of the Association for Computational Linguistics, pp. 8413–8426, Online, July 2020. Association for Computational Linguistics. doi: 10.18653/v1/2020.acl-main.745. ", + "bbox": [ + 174, + 103, + 825, + 160 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "Kang Min Yoo, Youhyun Shin, and Sang goo Lee. Data augmentation for spoken language understanding via joint variational generation, 2018. ", + "bbox": [ + 171, + 169, + 825, + 196 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "Tao Yu, Michihiro Yasunaga, Kai Yang, Rui Zhang, Dongxu Wang, Zifan Li, and Dragomir Radev. Syntaxsqlnet: Syntax tree networks for complex and cross-domain text-to-sql task. In Proceedings of EMNLP. Association for Computational Linguistics, 2018a. ", + "bbox": [ + 174, + 207, + 826, + 250 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "Tao Yu, Rui Zhang, Kai Yang, Michihiro Yasunaga, Dongxu Wang, Zifan Li, James Ma, Irene Li, Qingning Yao, Shanelle Roman, Zilin Zhang, and Dragomir Radev. Spider: A large-scale human-labeled dataset for complex and cross-domain semantic parsing and text-to-sql task. In EMNLP, 2018b. ", + "bbox": [ + 174, + 257, + 825, + 314 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "Tao Yu, Rui Zhang, He Yang Er, Suyi Li, Eric Xue, Bo Pang, Xi Victoria Lin, Yi Chern Tan, Tianze Shi, Zihan Li, Youxuan Jiang, Michihiro Yasunaga, Sungrok Shim, Tao Chen, Alexander Fabbri, Zifan Li, Luyao Chen, Yuwen Zhang, Shreya Dixit, Vincent Zhang, Caiming Xiong, Richard Socher, Walter Lasecki, and Dragomir Radev. Cosql: A conversational text-to-sql challenge towards cross-domain natural language interfaces to databases. In Proceedings of the 2019 Conference on Empirical Methods in Natural Language Processing and 9th International Joint Conference on Natural Language Processing. Association for Computational Linguistics, 2019a. ", + "bbox": [ + 174, + 323, + 825, + 421 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "Tao Yu, Rui Zhang, Michihiro Yasunaga, Yi Chern Tan, Xi Victoria Lin, Suyi Li, Irene Li Heyang Er, Bo Pang, Tao Chen, Emily Ji, Shreya Dixit, David Proctor, Sungrok Shim, Vincent Zhang Jonathan Kraft, Caiming Xiong, Richard Socher, and Dragomir Radev. Sparc: Cross-domain semantic parsing in context. In Proceedings of the 57th Annual Meeting of the Association for Computational Linguistics, Florence, Italy, 2019b. Association for Computational Linguistics. ", + "bbox": [ + 174, + 430, + 826, + 501 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "Jian-Guo Zhang, Kazuma Hashimoto, Chien-Sheng Wu, Yao Wan, Philip S Yu, Richard Socher, and Caiming Xiong. Find or classify? dual strategy for slot-value predictions on multi-domain dialog state tracking. arXiv preprint arXiv:1910.03544, 2019a. ", + "bbox": [ + 174, + 510, + 825, + 553 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "Jingqing Zhang, Yao Zhao, Mohammad Saleh, and Peter J Liu. Pegasus: Pre-training with extracted gap-sentences for abstractive summarization. arXiv preprint arXiv:1912.08777, 2019b. ", + "bbox": [ + 173, + 560, + 823, + 590 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "Rui Zhang, Tao Yu, He Yang Er, Sungrok Shim, Eric Xue, Xi Victoria Lin, Tianze Shi, Caiming Xiong, Richard Socher, and Dragomir Radev. Editing-based sql query generation for cross-domain context-dependent questions. In Proceedings of the 2019 Conference on Empirical Methods in Natural Language Processing and 9th International Joint Conference on Natural Language Processing. Association for Computational Linguistics, 2019c. ", + "bbox": [ + 173, + 598, + 825, + 669 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "Yizhe Zhang, Siqi Sun, Michel Galley, Yen-Chun Chen, Chris Brockett, Xiang Gao, Jianfeng Gao, Jingjing Liu, and Bill Dolan. Dialogpt: Large-scale generative pre-training for conversational response generation. In ACL, system demonstration, 2020. ", + "bbox": [ + 176, + 678, + 823, + 722 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "Victor Zhong, Caiming Xiong, and Richard Socher. Seq2sql: Generating structured queries from natural language using reinforcement learning. CoRR, abs/1709.00103, 2017. ", + "bbox": [ + 171, + 729, + 823, + 758 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "Victor Zhong, M. Lewis, Sida I. Wang, and Luke Zettlemoyer. Grounded adaptation for zero-shot executable semantic parsing. The 2020 Conference on Empirical Methods in Natural Language Processing, 2020. ", + "bbox": [ + 174, + 767, + 825, + 810 + ], + "page_idx": 12 + }, + { + "type": "table", + "img_path": "images/2be0e22c16c18e37572d989bbfe99768620e7ba4a912eeb6259473134ca8366e.jpg", + "table_caption": [ + "A DETAILED RESULTS " + ], + "table_footnote": [], + "table_body": "
QMIMQ1Q2Q3Q4Q5
RAT-SQL + BERT48.419.154.648.447.543.931.0
+RoBERTa50.119.359.750.946.346.532.4
+ SCoRE52.122.060.853.047.549.132.4
", + "bbox": [ + 266, + 137, + 732, + 209 + ], + "page_idx": 13 + }, + { + "type": "table", + "img_path": "images/01fc24a2b385c574350218243b5aba2cc4e300a8954f4e0fc025ad91d9553d1b.jpg", + "table_caption": [ + "Table 10: Detailed results of COSQL on the dev set. $\\mathrm { Q } _ { i }$ is the accuracy of the $i ^ { \\mathrm { { t h } } }$ question in the conversation. " + ], + "table_footnote": [ + "Table 11: Detailed results of SQA on the test set. $\\mathrm { Q } _ { i }$ is the accuracy of the $i ^ { \\mathrm { { t h } } }$ question in the conversation. " + ], + "table_body": "
QMIMQ1Q2Q3
Wang et al. (2019)51.022.068.348.038.5
+RoBERTa62.833.277.261.752.1
+SCoRE65.438.578.465.355.1
Few-Shot (10% training data)
Wang et al. (2019)
+RoBERTa53.321.271.052.536.6
+SCoRE57.126.774.656.740.7
", + "bbox": [ + 279, + 267, + 718, + 406 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "B SYNTHESIZED EXAMPLES & TEMPLATES ", + "text_level": 1, + "bbox": [ + 174, + 474, + 552, + 492 + ], + "page_idx": 13 + }, + { + "type": "table", + "img_path": "images/2dffd917ab37f2ab75fe4dfc717049dfcc7bf65a680f06ac0a1c5fc8e5babd11.jpg", + "table_caption": [ + "Table 12 shows an example of the synthesized question-SQL pairs and their corresponding templates in our grammars. ", + "Table 12: An example of synthetic conversational text-to-SQL data. " + ], + "table_footnote": [], + "table_body": "
Turn #Question-SQL TemplateSynthesized Question-SQL
1"Find the number of TABLEO with COLUMNO OPO VALUE0" SELECT COUNT(*)ORDER BY COLUMNO OPO VALUEO“Find the number of football team with team hometown is not murrieta,california?" SELECT COUNT(*)WHERE TEAM_HOMETOWN !=“MURRIETA, CALIFORNIA"
2“Can you give me their COLUMN1?” TCS: REPLACE(SELECT.COLUMNO), DEL(SELECT.AGG)“Can you give me their football team player?” SELECTFOOTBALL_TEAM_PLAYERWHERETEAM_HOMETOWN !=“MURRIETA,CALIFORNIA”
3“How about only show those with AsO cOL- UMN2?” TCS: ADD(ORDERBY_ASO.COLUMN2)“How about only show those with the largest age?” SELECTFOOTBALL_TEAM_PLAYER WHERE TEAM_HOMETOWN !="MURRIETA,CALIFORNIA”ORDER BY AGE DESC LIMIT1
4“AS1?” TCS: REPLACE(ORDERBY_AS1.COLUMN2)“The smallest?” SELECTFOOTBALL_TEAM_PLAYER WHERE TEAM_HOMETOWN !="MURRIETA,CALIFORNIA”ORDER BY AGE AS LIMIT1
", + "bbox": [ + 176, + 547, + 825, + 727 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "C IMPLEMENTATION DETAILS ", + "text_level": 1, + "bbox": [ + 176, + 782, + 439, + 799 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "C.1 SCORE ", + "text_level": 1, + "bbox": [ + 174, + 813, + 269, + 829 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "For pre-training SCORE on synthesized text-to-SQL data, we use ROBERTA $_ \\mathrm { l a r g e }$ and pre-train it with batch size 12, gradient accumulation step 2, and maximum length 248. We use a learning rate 1e-5 and gradually reduce the learning rate without a warm-up period using Adam (Kingma & Ba, 2014) with epsilon 1e-8. $\\mathbf { B E R T _ { b a s e } }$ is used in pre-training SCORE on synthesized MWOZ data because it contains longer conversations. We set the maximum length to 512 and batch size 24. All SCORE are pre-trained for 30 epochs, which usually take less than half a day on 8 V100 GPUs. ", + "bbox": [ + 173, + 839, + 826, + 924 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "We experimented with SCORE pre-trained for 5, 10, and 30 epochs and found that most of the best downstream performances occur when base systems incorporate with SCORE pre-trained for less than 10 epochs. Our implementation is based on the Transformers library (Wolf et al., 2019). ", + "bbox": [ + 174, + 103, + 823, + 146 + ], + "page_idx": 14 + }, + { + "type": "text", + "text": "C.2 BASE MODELS ", + "text_level": 1, + "bbox": [ + 174, + 162, + 321, + 178 + ], + "page_idx": 14 + }, + { + "type": "text", + "text": "RAT-SQL: For a fair comparison, all RAT-SQL experiments are trained for $4 0 \\mathrm { k }$ steps. We adopt the same hyperparameters as Shaw et al. (2018) except for learning rates. We find that learning rates of 1e-4 and 1e-5 for RAT and BERT respectively produce more stable results. ", + "bbox": [ + 174, + 189, + 823, + 231 + ], + "page_idx": 14 + }, + { + "type": "text", + "text": "TripPy: We use the same hyperparameters for training TripPy on MWOZ as in (Heck et al., 2020) except we train it for 25 epochs (as opposed to 10 epochs as reported in (Heck et al., 2020)). When we train TripPy for 25 epochs, we get a new result that is higher (around $2 \\%$ ) than the one reported in (Heck et al., 2020). Similarly, when we train TripPy with SCORE, we train it for 25 epochs. ", + "bbox": [ + 174, + 238, + 825, + 295 + ], + "page_idx": 14 + }, + { + "type": "text", + "text": "SOM-DST: We use the same hyperparameters from Kim et al. (2020) for all SOM-DST experiments on MWOZ. ", + "bbox": [ + 171, + 301, + 823, + 329 + ], + "page_idx": 14 + }, + { + "type": "text", + "text": "Wang et al. (2019): We use the same hyperparameters from Wang et al. (2019) for SQA experiments. Note that Herzig et al. (2020) outperform Wang et al. (2019) on SQA because (1) they don’t generate logic forms but select table cells and applying aggregation operators. Wang et al. (2019) generate latent programs, yet the grammar of the latent program can only cover $87 \\%$ questions. (2) They reduce the search space by reusing the previous question answer. We choose Wang et al. (2019) as our base model because generating symbolic programs has many practical advantages (even at a cost of around $1 \\%$ accuracy drop), such as showing interpretable reasoning steps, enabling formal reasoning, and operationalization without GPU/TPU accelerators. ", + "bbox": [ + 173, + 335, + 825, + 448 + ], + "page_idx": 14 + }, + { + "type": "text", + "text": "D PRE-TRAINING COST ", + "text_level": 1, + "bbox": [ + 176, + 468, + 388, + 484 + ], + "page_idx": 14 + }, + { + "type": "text", + "text": "We test the performance of SCORE with respect to the number of pre-training epochs. Figure 3 shows that the best performance of the downstream tasks is usually achieved in early epochs, more specifically 5 for SPARC and COSQL and 15 for MWOZ. Longer pre-training time does not improve or even hurts the performance. One possible reason is that longer pre-training makes SCORE overfit to the synthesized data whose utterances are unnatural. ", + "bbox": [ + 174, + 500, + 485, + 638 + ], + "page_idx": 14 + }, + { + "type": "image", + "img_path": "images/f2adaf96d04bd8e302a16e86109313b4514940005cf18a41f431ec1e6bac564a.jpg", + "image_caption": [ + "Figure 3: The effect of pre-training time. " + ], + "image_footnote": [], + "bbox": [ + 496, + 503, + 823, + 627 + ], + "page_idx": 14 + }, + { + "type": "text", + "text": "As for the data, as shown in Table 5, even if SCORE is pre-trained with only a relatively ", + "bbox": [ + 174, + 646, + 485, + 674 + ], + "page_idx": 14 + }, + { + "type": "text", + "text": "small amount of synthesized data (without the MLM loss), most of the tasks can achieve much higher performances. With a relatively smaller training corpus and shorter training time compared to other pre-trained language models, SCORE is efficient in time and data. ", + "bbox": [ + 174, + 674, + 826, + 715 + ], + "page_idx": 14 + }, + { + "type": "text", + "text": "E ADDITIONAL RESULTS ", + "text_level": 1, + "bbox": [ + 176, + 737, + 398, + 752 + ], + "page_idx": 14 + }, + { + "type": "text", + "text": "Effect of TCS We ran the TCS only experiment on SPARC, and will add TCS only results (including for other tasks) to Table 5 in the final version. SCORE (TCS only) outperforms RoBERTa by $2 . 4 \\%$ so far (note: training is still going on) on SPARC $3 9 . 1 \\%$ vs. $3 6 . 7 \\%$ ). Also, as discussed in Section 4, we also provide a secondary evidence by testing the effectiveness of TCS on SPARC, COSQL, and SQA by adding TCS to CCS (CCS only vs. $\\mathrm { C C S + T C S }$ ), SCORE (with TCS) gains improvements of $1 . 2 \\%$ on SPARC and $0 . 8 \\%$ on COSQL, and $4 . 4 \\%$ on SQA. ", + "bbox": [ + 174, + 768, + 825, + 852 + ], + "page_idx": 14 + }, + { + "type": "text", + "text": "Incorporating Additional Examples Used in Synthetic Grammar Induction As we mentioned in Section 2.3, we used about 500 examples from SPARC to induce the grammar for data synthesis in pre-training. For a fair comparison, we also report the results of incorporating the additional SPARC examples in COSQL and SQA. More specifically, we directly concatenate the additional SPARC examples to COSQL training set, and train RAT-SQL $^ +$ ROBERTA on it, which slightly improves the performance ( $1 9 . 6 \\%$ vs. $1 9 . 3 \\%$ ) but not as large as SCORE $2 2 . 0 \\%$ vs. $1 9 . 3 \\%$ ).’ Also, because SQA is weakly-supervised sequential question answering, which differs from SPARC, we first fine-tune ROBERTA on the additional SPARC examples using CCS, and then apply it to SQA. In this way, the ROBERTA trained with additional SPARC examples achieves a similar performance as the original one $6 2 . 7 \\%$ vs $6 2 . 8 \\%$ ). ", + "bbox": [ + 174, + 867, + 823, + 924 + ], + "page_idx": 14 + }, + { + "type": "text", + "text": "", + "bbox": [ + 174, + 103, + 825, + 188 + ], + "page_idx": 15 + }, + { + "type": "text", + "text": "Performance Comparison with ToD-BERT ToD-BERT is pre-trained on human-annotated questions with both MLM and response contrastive objectives. To compare TOD-BERT with SCORE, we ran experiments of RAT-SQL $^ +$ ToD-BERT on SPARC. SCORE $( 6 2 . 2 \\% )$ outperforms ToD-BERT $( 5 4 . 6 \\% )$ by $7 . 6 \\%$ . ", + "bbox": [ + 174, + 202, + 825, + 258 + ], + "page_idx": 15 + }, + { + "type": "text", + "text": "Comparison with Finetuning Larger Language Models Based on our experiments and other published results, we didn’t find existing larger LMs (BART (Lewis et al., 2020), T5 (Raffel et al., 2020), GPT-2 (Radford et al., 2019)) outperform custom models $^ +$ BERT on CSP tasks. Our evidence is based on Spider (Yu et al., 2018b), which is the single-turn version of SParC and CoSQL. For T5, Shaw et al. (2020) applied T5 as seq2seq to Spider, and compared with RAT-SQL $^ +$ BERT-Large, T5-Base performs much worse $5 7 . 1 \\%$ vs. $6 9 . 6 \\%$ ), and T5-3B improves only 0.3, but it is 6 times larger. Moreover, for Bart, we have performed experiments on Spider and we found that BART cannot outperform custom models $^ +$ BERT: RAT-SQL $^ +$ BERT $6 9 . 7 \\%$ , RAT-SQL $^ +$ BART encoder $67 . 8 \\%$ , BART encoder $^ +$ decoder (406M, as a seq2seq task) $6 2 . 4 \\%$ . In Rubin & Berant (2020), BART didn’t outperform BERT either. As for GPT-2, Wu et al. (2020) and Hosseini-Asl et al. (2020) found it does not outperform BERT on MWOZ. ", + "bbox": [ + 173, + 273, + 826, + 426 + ], + "page_idx": 15 + }, + { + "type": "text", + "text": "F TASK-ORIENTED DIALOGUE DATASETS ", + "text_level": 1, + "bbox": [ + 174, + 446, + 537, + 464 + ], + "page_idx": 15 + }, + { + "type": "table", + "img_path": "images/1635b2ba111e046a73247b1330a2aba475efceb8a7e62351ddd71e1d5d2d9147.jpg", + "table_caption": [], + "table_footnote": [], + "table_body": "
Name#Dialogue#UtteranceAvg. Turn#Domain
MetaLWOZ (Lee et al., 2019)37,884432,03611.447
Schema (Rastogi et al., 2019)22,825463,28420.317
Taskmaster (Byrne et al.,2019)13,215303,06622.96
MWOZ (Budzianowski etal.,2018)10,42071,4106.97
MSR-E2E (Li et al.,2018)10.08774,6867.43
SMD (Eric and Manning,2017)3,03115.9285.33
Frames (Asri et al.,2017)1,36919,98614.63
WOZ (Mrksic et al., 2016)1,2005,0124.21
CamRest676 (Wen et al.,2016)6762,7444.11
", + "bbox": [ + 271, + 483, + 723, + 604 + ], + "page_idx": 15 + }, + { + "type": "text", + "text": "Figure 4: Data statistics of human-annotated task-oriented dialogue datasets used in $\\mathrm { W u }$ et al. (2020). ", + "bbox": [ + 173, + 619, + 825, + 633 + ], + "page_idx": 15 + } +] \ No newline at end of file diff --git a/parse/train/oyZxhRI2RiE/oyZxhRI2RiE_middle.json b/parse/train/oyZxhRI2RiE/oyZxhRI2RiE_middle.json new file mode 100644 index 0000000000000000000000000000000000000000..4cf4fa5f59665ef909eefa90eef2ae9dfe0f0d4f --- /dev/null +++ b/parse/train/oyZxhRI2RiE/oyZxhRI2RiE_middle.json @@ -0,0 +1,47875 @@ +{ + "pdf_info": [ + { + "preproc_blocks": [ + { + "type": "title", + "bbox": [ + 108, + 78, + 506, + 116 + ], + "lines": [ + { + "bbox": [ + 106, + 78, + 508, + 97 + ], + "spans": [ + { + "bbox": [ + 106, + 78, + 508, + 97 + ], + "score": 1.0, + "content": "SCORE: PRE-TRAINING FOR CONTEXT REPRESENTA-", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 99, + 461, + 118 + ], + "spans": [ + { + "bbox": [ + 105, + 99, + 461, + 118 + ], + "score": 1.0, + "content": "TION IN CONVERSATIONAL SEMANTIC PARSING", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5 + }, + { + "type": "text", + "bbox": [ + 113, + 136, + 204, + 168 + ], + "lines": [ + { + "bbox": [ + 111, + 134, + 146, + 147 + ], + "spans": [ + { + "bbox": [ + 111, + 134, + 146, + 147 + ], + "score": 1.0, + "content": "Tao Yu", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 111, + 144, + 177, + 159 + ], + "spans": [ + { + "bbox": [ + 111, + 144, + 177, + 159 + ], + "score": 1.0, + "content": "Yale University", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 111, + 158, + 205, + 169 + ], + "spans": [ + { + "bbox": [ + 111, + 158, + 205, + 169 + ], + "score": 1.0, + "content": "tao.yu@yale.edu", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 4 + }, + { + "type": "text", + "bbox": [ + 359, + 135, + 498, + 168 + ], + "lines": [ + { + "bbox": [ + 358, + 134, + 408, + 148 + ], + "spans": [ + { + "bbox": [ + 358, + 134, + 408, + 148 + ], + "score": 1.0, + "content": "Rui Zhang", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 358, + 145, + 498, + 159 + ], + "spans": [ + { + "bbox": [ + 358, + 145, + 498, + 159 + ], + "score": 1.0, + "content": "The Pennsylvania State University", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 359, + 158, + 451, + 168 + ], + "spans": [ + { + "bbox": [ + 359, + 158, + 451, + 168 + ], + "score": 1.0, + "content": "rmz5227@psu.edu", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 5 + }, + { + "type": "text", + "bbox": [ + 112, + 185, + 393, + 219 + ], + "lines": [ + { + "bbox": [ + 111, + 184, + 395, + 198 + ], + "spans": [ + { + "bbox": [ + 111, + 184, + 395, + 198 + ], + "score": 1.0, + "content": "Oleksandr Polozov, Christopher Meek, Ahmed Hassan Awadallah", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 113, + 196, + 193, + 207 + ], + "spans": [ + { + "bbox": [ + 113, + 196, + 193, + 207 + ], + "score": 1.0, + "content": "Microsoft Research", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 113, + 208, + 334, + 220 + ], + "spans": [ + { + "bbox": [ + 113, + 208, + 334, + 220 + ], + "score": 1.0, + "content": "{polozov,meek,hassanam}@microsoft.com", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 9 + }, + { + "type": "title", + "bbox": [ + 278, + 247, + 333, + 259 + ], + "lines": [ + { + "bbox": [ + 276, + 247, + 335, + 261 + ], + "spans": [ + { + "bbox": [ + 276, + 247, + 335, + 261 + ], + "score": 1.0, + "content": "ABSTRACT", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 11 + }, + { + "type": "text", + "bbox": [ + 143, + 270, + 469, + 446 + ], + "lines": [ + { + "bbox": [ + 142, + 270, + 470, + 284 + ], + "spans": [ + { + "bbox": [ + 142, + 270, + 470, + 284 + ], + "score": 1.0, + "content": "Conversational Semantic Parsing (CSP) is the task of converting a sequence of", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 141, + 281, + 470, + 295 + ], + "spans": [ + { + "bbox": [ + 141, + 281, + 470, + 295 + ], + "score": 1.0, + "content": "natural language queries to formal language (e.g., SQL, SPARQL) that can be", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 141, + 293, + 470, + 305 + ], + "spans": [ + { + "bbox": [ + 141, + 293, + 470, + 305 + ], + "score": 1.0, + "content": "executed against a structured ontology (e.g. databases, knowledge bases). To", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 141, + 303, + 469, + 316 + ], + "spans": [ + { + "bbox": [ + 141, + 303, + 469, + 316 + ], + "score": 1.0, + "content": "accomplish this task, a CSP system needs to model the relation between the", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 141, + 315, + 469, + 328 + ], + "spans": [ + { + "bbox": [ + 141, + 315, + 469, + 328 + ], + "score": 1.0, + "content": "unstructured language utterance and the structured ontology while representing", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 141, + 325, + 470, + 339 + ], + "spans": [ + { + "bbox": [ + 141, + 325, + 470, + 339 + ], + "score": 1.0, + "content": "the multi-turn dynamics of the dialog. Pre-trained language models (LMs) are the", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 141, + 337, + 469, + 349 + ], + "spans": [ + { + "bbox": [ + 141, + 337, + 469, + 349 + ], + "score": 1.0, + "content": "state-of-the-art for various natural language processing tasks. However, existing", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 141, + 348, + 470, + 360 + ], + "spans": [ + { + "bbox": [ + 141, + 348, + 470, + 360 + ], + "score": 1.0, + "content": "pre-trained LMs that use language modeling training objectives over free-form text", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 141, + 358, + 470, + 372 + ], + "spans": [ + { + "bbox": [ + 141, + 358, + 470, + 372 + ], + "score": 1.0, + "content": "have limited ability to represent natural language references to contextual structural", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 141, + 369, + 470, + 383 + ], + "spans": [ + { + "bbox": [ + 141, + 369, + 470, + 383 + ], + "score": 1.0, + "content": "data. In this work, we present SCORE, a new pre-training approach for CSP tasks", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 141, + 380, + 469, + 393 + ], + "spans": [ + { + "bbox": [ + 141, + 380, + 469, + 393 + ], + "score": 1.0, + "content": "designed to induce representations that capture the alignment between the dialogue", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 141, + 391, + 469, + 403 + ], + "spans": [ + { + "bbox": [ + 141, + 391, + 469, + 403 + ], + "score": 1.0, + "content": "flow and the structural context. We demonstrate the broad applicability of SCORE", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 141, + 402, + 470, + 415 + ], + "spans": [ + { + "bbox": [ + 141, + 402, + 470, + 415 + ], + "score": 1.0, + "content": "to CSP tasks by combining SCORE with strong base systems on four different", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 141, + 412, + 470, + 427 + ], + "spans": [ + { + "bbox": [ + 141, + 412, + 470, + 427 + ], + "score": 1.0, + "content": "tasks (SPARC, COSQL, MWOZ, and SQA). We show that SCORE can improve", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 141, + 424, + 469, + 436 + ], + "spans": [ + { + "bbox": [ + 141, + 424, + 469, + 436 + ], + "score": 1.0, + "content": "the performance over all these base systems by a significant margin and achieves", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 142, + 435, + 303, + 447 + ], + "spans": [ + { + "bbox": [ + 142, + 435, + 303, + 447 + ], + "score": 1.0, + "content": "state-of-the-art results on three of them.", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 19.5 + }, + { + "type": "title", + "bbox": [ + 108, + 465, + 206, + 478 + ], + "lines": [ + { + "bbox": [ + 105, + 464, + 208, + 481 + ], + "spans": [ + { + "bbox": [ + 105, + 464, + 208, + 481 + ], + "score": 1.0, + "content": "1 INTRODUCTION", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 28 + }, + { + "type": "text", + "bbox": [ + 107, + 489, + 505, + 544 + ], + "lines": [ + { + "bbox": [ + 105, + 489, + 505, + 502 + ], + "spans": [ + { + "bbox": [ + 105, + 489, + 505, + 502 + ], + "score": 1.0, + "content": "The goal of task-oriented dialog systems is to assist the user in completing a certain task by performing", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 500, + 506, + 513 + ], + "spans": [ + { + "bbox": [ + 105, + 500, + 506, + 513 + ], + "score": 1.0, + "content": "an action or retrieving relevant information (Tur & Mori, 2011). They are often built on top of a", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 511, + 506, + 524 + ], + "spans": [ + { + "bbox": [ + 105, + 511, + 506, + 524 + ], + "score": 1.0, + "content": "structured ontology grounded in a knowledge base, a database, or a set of API calls. This in contrast", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 522, + 505, + 535 + ], + "spans": [ + { + "bbox": [ + 105, + 522, + 505, + 535 + ], + "score": 1.0, + "content": "to open-domain dialog systems (also referred to as chit-chat systems) where the goal is to maximize", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 106, + 533, + 487, + 547 + ], + "spans": [ + { + "bbox": [ + 106, + 533, + 487, + 547 + ], + "score": 1.0, + "content": "engagement with users in open-ended conversations (Jafarpour et al., 2010; Ritter et al., 2011).", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 31 + }, + { + "type": "text", + "bbox": [ + 107, + 550, + 505, + 660 + ], + "lines": [ + { + "bbox": [ + 105, + 550, + 506, + 563 + ], + "spans": [ + { + "bbox": [ + 105, + 550, + 506, + 563 + ], + "score": 1.0, + "content": "A key component of task-oriented conversational systems is Conversational Semantic Parsing (CSP),", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 560, + 506, + 574 + ], + "spans": [ + { + "bbox": [ + 105, + 560, + 506, + 574 + ], + "score": 1.0, + "content": "which converts each utterance in the dialog into a formal language query (e.g., SQL, SPARQL)", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 106, + 572, + 506, + 585 + ], + "spans": [ + { + "bbox": [ + 106, + 572, + 506, + 585 + ], + "score": 1.0, + "content": "that can be executed against the structured ontology. CSP has been extensively studied in several", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 582, + 506, + 596 + ], + "spans": [ + { + "bbox": [ + 105, + 582, + 506, + 596 + ], + "score": 1.0, + "content": "academic and industrial research settings such as dialog systems (e.g., dialog state tracking in", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 106, + 594, + 506, + 607 + ], + "spans": [ + { + "bbox": [ + 106, + 594, + 506, + 607 + ], + "score": 1.0, + "content": "MWOZ (Budzianowski et al., 2018)), interacting with physical agents (e.g., (Chai et al., 2018)),", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 104, + 604, + 506, + 619 + ], + "spans": [ + { + "bbox": [ + 104, + 604, + 506, + 619 + ], + "score": 1.0, + "content": "context-dependent semantic parsing (e.g., SPARC (Yu et al., 2019b)), SQL-grounded state tracking", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 615, + 506, + 630 + ], + "spans": [ + { + "bbox": [ + 105, + 615, + 506, + 630 + ], + "score": 1.0, + "content": "(e.g., COSQL (Yu et al., 2019a)), and sequential question answering (e.g., SQA (Iyyer et al., 2017)).", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 626, + 507, + 641 + ], + "spans": [ + { + "bbox": [ + 105, + 626, + 507, + 641 + ], + "score": 1.0, + "content": "These settings differ in some respect, but they share the same overall objective and key challenge:", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 637, + 506, + 651 + ], + "spans": [ + { + "bbox": [ + 105, + 637, + 506, + 651 + ], + "score": 1.0, + "content": "how to jointly represent the natural language utterances and underlying structured ontology while", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 648, + 362, + 663 + ], + "spans": [ + { + "bbox": [ + 105, + 648, + 362, + 663 + ], + "score": 1.0, + "content": "taking into consideration the multi-turn dynamics of the dialog.", + "type": "text" + } + ], + "index": 43 + } + ], + "index": 38.5 + }, + { + "type": "text", + "bbox": [ + 107, + 666, + 505, + 731 + ], + "lines": [ + { + "bbox": [ + 106, + 665, + 505, + 678 + ], + "spans": [ + { + "bbox": [ + 106, + 665, + 505, + 678 + ], + "score": 1.0, + "content": "Similar to many other natural language tasks, recent work in CSP has significantly benefited from", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 106, + 677, + 505, + 690 + ], + "spans": [ + { + "bbox": [ + 106, + 677, + 505, + 690 + ], + "score": 1.0, + "content": "advances in language model pre-training. However, existing general-purpose pre-trained language", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 106, + 688, + 505, + 699 + ], + "spans": [ + { + "bbox": [ + 106, + 688, + 505, + 699 + ], + "score": 1.0, + "content": "models, e.g. BERT (Devlin et al., 2019), are pre-trained on free-form text data using language model", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 105, + 699, + 506, + 711 + ], + "spans": [ + { + "bbox": [ + 105, + 699, + 506, + 711 + ], + "score": 1.0, + "content": "objectives. This limits their ability in modeling the structural context or the multi-turn dynamics of", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 105, + 708, + 506, + 723 + ], + "spans": [ + { + "bbox": [ + 105, + 708, + 506, + 723 + ], + "score": 1.0, + "content": "the dialogs. This presents an opportunity to improve pre-trained LMs to specifically address these", + "type": "text" + } + ], + "index": 48 + }, + { + "bbox": [ + 106, + 720, + 505, + 733 + ], + "spans": [ + { + "bbox": [ + 106, + 720, + 505, + 733 + ], + "score": 1.0, + "content": "limitations for CSP tasks. Recent work has demonstrated the benefits of adapting pre-trained LMs", + "type": "text" + } + ], + "index": 49 + } + ], + "index": 46.5 + } + ], + "page_idx": 0, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 27, + 292, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 25, + 293, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 25, + 293, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2021", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 302, + 751, + 308, + 760 + ], + "lines": [ + { + "bbox": [ + 302, + 751, + 308, + 761 + ], + "spans": [ + { + "bbox": [ + 302, + 751, + 308, + 761 + ], + "score": 1.0, + "content": "1", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "title", + "bbox": [ + 108, + 78, + 506, + 116 + ], + "lines": [ + { + "bbox": [ + 106, + 78, + 508, + 97 + ], + "spans": [ + { + "bbox": [ + 106, + 78, + 508, + 97 + ], + "score": 1.0, + "content": "SCORE: PRE-TRAINING FOR CONTEXT REPRESENTA-", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 99, + 461, + 118 + ], + "spans": [ + { + "bbox": [ + 105, + 99, + 461, + 118 + ], + "score": 1.0, + "content": "TION IN CONVERSATIONAL SEMANTIC PARSING", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5 + }, + { + "type": "text", + "bbox": [ + 113, + 136, + 204, + 168 + ], + "lines": [ + { + "bbox": [ + 111, + 134, + 146, + 147 + ], + "spans": [ + { + "bbox": [ + 111, + 134, + 146, + 147 + ], + "score": 1.0, + "content": "Tao Yu", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 111, + 144, + 177, + 159 + ], + "spans": [ + { + "bbox": [ + 111, + 144, + 177, + 159 + ], + "score": 1.0, + "content": "Yale University", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 111, + 158, + 205, + 169 + ], + "spans": [ + { + "bbox": [ + 111, + 158, + 205, + 169 + ], + "score": 1.0, + "content": "tao.yu@yale.edu", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 4, + "bbox_fs": [ + 111, + 134, + 205, + 169 + ] + }, + { + "type": "text", + "bbox": [ + 359, + 135, + 498, + 168 + ], + "lines": [ + { + "bbox": [ + 358, + 134, + 408, + 148 + ], + "spans": [ + { + "bbox": [ + 358, + 134, + 408, + 148 + ], + "score": 1.0, + "content": "Rui Zhang", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 358, + 145, + 498, + 159 + ], + "spans": [ + { + "bbox": [ + 358, + 145, + 498, + 159 + ], + "score": 1.0, + "content": "The Pennsylvania State University", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 359, + 158, + 451, + 168 + ], + "spans": [ + { + "bbox": [ + 359, + 158, + 451, + 168 + ], + "score": 1.0, + "content": "rmz5227@psu.edu", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 5, + "bbox_fs": [ + 358, + 134, + 498, + 168 + ] + }, + { + "type": "text", + "bbox": [ + 112, + 185, + 393, + 219 + ], + "lines": [ + { + "bbox": [ + 111, + 184, + 395, + 198 + ], + "spans": [ + { + "bbox": [ + 111, + 184, + 395, + 198 + ], + "score": 1.0, + "content": "Oleksandr Polozov, Christopher Meek, Ahmed Hassan Awadallah", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 113, + 196, + 193, + 207 + ], + "spans": [ + { + "bbox": [ + 113, + 196, + 193, + 207 + ], + "score": 1.0, + "content": "Microsoft Research", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 113, + 208, + 334, + 220 + ], + "spans": [ + { + "bbox": [ + 113, + 208, + 334, + 220 + ], + "score": 1.0, + "content": "{polozov,meek,hassanam}@microsoft.com", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 9, + "bbox_fs": [ + 111, + 184, + 395, + 220 + ] + }, + { + "type": "title", + "bbox": [ + 278, + 247, + 333, + 259 + ], + "lines": [ + { + "bbox": [ + 276, + 247, + 335, + 261 + ], + "spans": [ + { + "bbox": [ + 276, + 247, + 335, + 261 + ], + "score": 1.0, + "content": "ABSTRACT", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 11 + }, + { + "type": "text", + "bbox": [ + 143, + 270, + 469, + 446 + ], + "lines": [ + { + "bbox": [ + 142, + 270, + 470, + 284 + ], + "spans": [ + { + "bbox": [ + 142, + 270, + 470, + 284 + ], + "score": 1.0, + "content": "Conversational Semantic Parsing (CSP) is the task of converting a sequence of", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 141, + 281, + 470, + 295 + ], + "spans": [ + { + "bbox": [ + 141, + 281, + 470, + 295 + ], + "score": 1.0, + "content": "natural language queries to formal language (e.g., SQL, SPARQL) that can be", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 141, + 293, + 470, + 305 + ], + "spans": [ + { + "bbox": [ + 141, + 293, + 470, + 305 + ], + "score": 1.0, + "content": "executed against a structured ontology (e.g. databases, knowledge bases). To", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 141, + 303, + 469, + 316 + ], + "spans": [ + { + "bbox": [ + 141, + 303, + 469, + 316 + ], + "score": 1.0, + "content": "accomplish this task, a CSP system needs to model the relation between the", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 141, + 315, + 469, + 328 + ], + "spans": [ + { + "bbox": [ + 141, + 315, + 469, + 328 + ], + "score": 1.0, + "content": "unstructured language utterance and the structured ontology while representing", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 141, + 325, + 470, + 339 + ], + "spans": [ + { + "bbox": [ + 141, + 325, + 470, + 339 + ], + "score": 1.0, + "content": "the multi-turn dynamics of the dialog. Pre-trained language models (LMs) are the", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 141, + 337, + 469, + 349 + ], + "spans": [ + { + "bbox": [ + 141, + 337, + 469, + 349 + ], + "score": 1.0, + "content": "state-of-the-art for various natural language processing tasks. However, existing", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 141, + 348, + 470, + 360 + ], + "spans": [ + { + "bbox": [ + 141, + 348, + 470, + 360 + ], + "score": 1.0, + "content": "pre-trained LMs that use language modeling training objectives over free-form text", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 141, + 358, + 470, + 372 + ], + "spans": [ + { + "bbox": [ + 141, + 358, + 470, + 372 + ], + "score": 1.0, + "content": "have limited ability to represent natural language references to contextual structural", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 141, + 369, + 470, + 383 + ], + "spans": [ + { + "bbox": [ + 141, + 369, + 470, + 383 + ], + "score": 1.0, + "content": "data. In this work, we present SCORE, a new pre-training approach for CSP tasks", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 141, + 380, + 469, + 393 + ], + "spans": [ + { + "bbox": [ + 141, + 380, + 469, + 393 + ], + "score": 1.0, + "content": "designed to induce representations that capture the alignment between the dialogue", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 141, + 391, + 469, + 403 + ], + "spans": [ + { + "bbox": [ + 141, + 391, + 469, + 403 + ], + "score": 1.0, + "content": "flow and the structural context. We demonstrate the broad applicability of SCORE", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 141, + 402, + 470, + 415 + ], + "spans": [ + { + "bbox": [ + 141, + 402, + 470, + 415 + ], + "score": 1.0, + "content": "to CSP tasks by combining SCORE with strong base systems on four different", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 141, + 412, + 470, + 427 + ], + "spans": [ + { + "bbox": [ + 141, + 412, + 470, + 427 + ], + "score": 1.0, + "content": "tasks (SPARC, COSQL, MWOZ, and SQA). We show that SCORE can improve", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 141, + 424, + 469, + 436 + ], + "spans": [ + { + "bbox": [ + 141, + 424, + 469, + 436 + ], + "score": 1.0, + "content": "the performance over all these base systems by a significant margin and achieves", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 142, + 435, + 303, + 447 + ], + "spans": [ + { + "bbox": [ + 142, + 435, + 303, + 447 + ], + "score": 1.0, + "content": "state-of-the-art results on three of them.", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 19.5, + "bbox_fs": [ + 141, + 270, + 470, + 447 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 465, + 206, + 478 + ], + "lines": [ + { + "bbox": [ + 105, + 464, + 208, + 481 + ], + "spans": [ + { + "bbox": [ + 105, + 464, + 208, + 481 + ], + "score": 1.0, + "content": "1 INTRODUCTION", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 28 + }, + { + "type": "text", + "bbox": [ + 107, + 489, + 505, + 544 + ], + "lines": [ + { + "bbox": [ + 105, + 489, + 505, + 502 + ], + "spans": [ + { + "bbox": [ + 105, + 489, + 505, + 502 + ], + "score": 1.0, + "content": "The goal of task-oriented dialog systems is to assist the user in completing a certain task by performing", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 500, + 506, + 513 + ], + "spans": [ + { + "bbox": [ + 105, + 500, + 506, + 513 + ], + "score": 1.0, + "content": "an action or retrieving relevant information (Tur & Mori, 2011). They are often built on top of a", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 511, + 506, + 524 + ], + "spans": [ + { + "bbox": [ + 105, + 511, + 506, + 524 + ], + "score": 1.0, + "content": "structured ontology grounded in a knowledge base, a database, or a set of API calls. This in contrast", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 522, + 505, + 535 + ], + "spans": [ + { + "bbox": [ + 105, + 522, + 505, + 535 + ], + "score": 1.0, + "content": "to open-domain dialog systems (also referred to as chit-chat systems) where the goal is to maximize", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 106, + 533, + 487, + 547 + ], + "spans": [ + { + "bbox": [ + 106, + 533, + 487, + 547 + ], + "score": 1.0, + "content": "engagement with users in open-ended conversations (Jafarpour et al., 2010; Ritter et al., 2011).", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 31, + "bbox_fs": [ + 105, + 489, + 506, + 547 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 550, + 505, + 660 + ], + "lines": [ + { + "bbox": [ + 105, + 550, + 506, + 563 + ], + "spans": [ + { + "bbox": [ + 105, + 550, + 506, + 563 + ], + "score": 1.0, + "content": "A key component of task-oriented conversational systems is Conversational Semantic Parsing (CSP),", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 560, + 506, + 574 + ], + "spans": [ + { + "bbox": [ + 105, + 560, + 506, + 574 + ], + "score": 1.0, + "content": "which converts each utterance in the dialog into a formal language query (e.g., SQL, SPARQL)", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 106, + 572, + 506, + 585 + ], + "spans": [ + { + "bbox": [ + 106, + 572, + 506, + 585 + ], + "score": 1.0, + "content": "that can be executed against the structured ontology. CSP has been extensively studied in several", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 582, + 506, + 596 + ], + "spans": [ + { + "bbox": [ + 105, + 582, + 506, + 596 + ], + "score": 1.0, + "content": "academic and industrial research settings such as dialog systems (e.g., dialog state tracking in", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 106, + 594, + 506, + 607 + ], + "spans": [ + { + "bbox": [ + 106, + 594, + 506, + 607 + ], + "score": 1.0, + "content": "MWOZ (Budzianowski et al., 2018)), interacting with physical agents (e.g., (Chai et al., 2018)),", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 104, + 604, + 506, + 619 + ], + "spans": [ + { + "bbox": [ + 104, + 604, + 506, + 619 + ], + "score": 1.0, + "content": "context-dependent semantic parsing (e.g., SPARC (Yu et al., 2019b)), SQL-grounded state tracking", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 615, + 506, + 630 + ], + "spans": [ + { + "bbox": [ + 105, + 615, + 506, + 630 + ], + "score": 1.0, + "content": "(e.g., COSQL (Yu et al., 2019a)), and sequential question answering (e.g., SQA (Iyyer et al., 2017)).", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 626, + 507, + 641 + ], + "spans": [ + { + "bbox": [ + 105, + 626, + 507, + 641 + ], + "score": 1.0, + "content": "These settings differ in some respect, but they share the same overall objective and key challenge:", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 637, + 506, + 651 + ], + "spans": [ + { + "bbox": [ + 105, + 637, + 506, + 651 + ], + "score": 1.0, + "content": "how to jointly represent the natural language utterances and underlying structured ontology while", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 648, + 362, + 663 + ], + "spans": [ + { + "bbox": [ + 105, + 648, + 362, + 663 + ], + "score": 1.0, + "content": "taking into consideration the multi-turn dynamics of the dialog.", + "type": "text" + } + ], + "index": 43 + } + ], + "index": 38.5, + "bbox_fs": [ + 104, + 550, + 507, + 663 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 666, + 505, + 731 + ], + "lines": [ + { + "bbox": [ + 106, + 665, + 505, + 678 + ], + "spans": [ + { + "bbox": [ + 106, + 665, + 505, + 678 + ], + "score": 1.0, + "content": "Similar to many other natural language tasks, recent work in CSP has significantly benefited from", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 106, + 677, + 505, + 690 + ], + "spans": [ + { + "bbox": [ + 106, + 677, + 505, + 690 + ], + "score": 1.0, + "content": "advances in language model pre-training. However, existing general-purpose pre-trained language", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 106, + 688, + 505, + 699 + ], + "spans": [ + { + "bbox": [ + 106, + 688, + 505, + 699 + ], + "score": 1.0, + "content": "models, e.g. BERT (Devlin et al., 2019), are pre-trained on free-form text data using language model", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 105, + 699, + 506, + 711 + ], + "spans": [ + { + "bbox": [ + 105, + 699, + 506, + 711 + ], + "score": 1.0, + "content": "objectives. This limits their ability in modeling the structural context or the multi-turn dynamics of", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 105, + 708, + 506, + 723 + ], + "spans": [ + { + "bbox": [ + 105, + 708, + 506, + 723 + ], + "score": 1.0, + "content": "the dialogs. This presents an opportunity to improve pre-trained LMs to specifically address these", + "type": "text" + } + ], + "index": 48 + }, + { + "bbox": [ + 106, + 720, + 505, + 733 + ], + "spans": [ + { + "bbox": [ + 106, + 720, + 505, + 733 + ], + "score": 1.0, + "content": "limitations for CSP tasks. Recent work has demonstrated the benefits of adapting pre-trained LMs", + "type": "text" + } + ], + "index": 49 + }, + { + "bbox": [ + 106, + 229, + 506, + 242 + ], + "spans": [ + { + "bbox": [ + 106, + 229, + 506, + 242 + ], + "score": 1.0, + "content": "to specific domains (Gururangan et al., 2020) or tasks (Zhang et al., 2019b) via a second phase of", + "type": "text", + "cross_page": true + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 241, + 507, + 253 + ], + "spans": [ + { + "bbox": [ + 105, + 241, + 507, + 253 + ], + "score": 1.0, + "content": "pre-training. For example, open-domain dialogue language models such as DialoGPT (Zhang et al.,", + "type": "text", + "cross_page": true + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 250, + 506, + 266 + ], + "spans": [ + { + "bbox": [ + 105, + 250, + 506, + 266 + ], + "score": 1.0, + "content": "2020) and ConveRT (Henderson et al., 2019) are pre-trained on the Reddit data and applied to dialog", + "type": "text", + "cross_page": true + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 264, + 265, + 274 + ], + "spans": [ + { + "bbox": [ + 105, + 264, + 265, + 274 + ], + "score": 1.0, + "content": "response generation and retrieval tasks.", + "type": "text", + "cross_page": true + } + ], + "index": 7 + } + ], + "index": 46.5, + "bbox_fs": [ + 105, + 665, + 506, + 733 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "image", + "bbox": [ + 107, + 81, + 503, + 204 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 107, + 81, + 503, + 204 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 107, + 81, + 503, + 204 + ], + "spans": [ + { + "bbox": [ + 107, + 81, + 503, + 204 + ], + "score": 0.97, + "type": "image", + "image_path": "7aee0dcf05f327f0a25d0a1d95fd1e53bd5c59396766fe11cc27b236f4dec59f.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 107, + 81, + 503, + 122.0 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 107, + 122.0, + 503, + 163.0 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 107, + 163.0, + 503, + 204.0 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 108, + 210, + 497, + 222 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 111, + 209, + 499, + 225 + ], + "spans": [ + { + "bbox": [ + 111, + 209, + 499, + 225 + ], + "score": 1.0, + "content": "Figure 1: Examples of conversational semantic parsing tasks from SPARC and MWOZ datasets.", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 3 + } + ], + "index": 2.0 + }, + { + "type": "text", + "bbox": [ + 108, + 230, + 505, + 273 + ], + "lines": [ + { + "bbox": [ + 106, + 229, + 506, + 242 + ], + "spans": [ + { + "bbox": [ + 106, + 229, + 506, + 242 + ], + "score": 1.0, + "content": "to specific domains (Gururangan et al., 2020) or tasks (Zhang et al., 2019b) via a second phase of", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 241, + 507, + 253 + ], + "spans": [ + { + "bbox": [ + 105, + 241, + 507, + 253 + ], + "score": 1.0, + "content": "pre-training. For example, open-domain dialogue language models such as DialoGPT (Zhang et al.,", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 250, + 506, + 266 + ], + "spans": [ + { + "bbox": [ + 105, + 250, + 506, + 266 + ], + "score": 1.0, + "content": "2020) and ConveRT (Henderson et al., 2019) are pre-trained on the Reddit data and applied to dialog", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 264, + 265, + 274 + ], + "spans": [ + { + "bbox": [ + 105, + 264, + 265, + 274 + ], + "score": 1.0, + "content": "response generation and retrieval tasks.", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 5.5 + }, + { + "type": "text", + "bbox": [ + 107, + 279, + 505, + 444 + ], + "lines": [ + { + "bbox": [ + 104, + 277, + 506, + 294 + ], + "spans": [ + { + "bbox": [ + 104, + 277, + 506, + 294 + ], + "score": 1.0, + "content": "In this paper, we introduce SCORE (Structured & Sequential Context Representation), a language", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 290, + 506, + 304 + ], + "spans": [ + { + "bbox": [ + 105, + 290, + 506, + 304 + ], + "score": 1.0, + "content": "model pre-training approach for CSP tasks. SCORE adapts general pre-trained LMs by introducing a", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 302, + 505, + 313 + ], + "spans": [ + { + "bbox": [ + 105, + 302, + 505, + 313 + ], + "score": 1.0, + "content": "second phase of pre-training using multiple objectives that capture both multi-turn dynamics and the", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 312, + 505, + 325 + ], + "spans": [ + { + "bbox": [ + 105, + 312, + 505, + 325 + ], + "score": 1.0, + "content": "structural contexts in a dialog. In contrast to open-domain dialogs, CSP datasets are usually much", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 322, + 505, + 338 + ], + "spans": [ + { + "bbox": [ + 105, + 322, + 505, + 338 + ], + "score": 1.0, + "content": "smaller due to the difficulty and expense of obtaining and labeling data (mapping natural language", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 334, + 506, + 347 + ], + "spans": [ + { + "bbox": [ + 105, + 334, + 506, + 347 + ], + "score": 1.0, + "content": "utterances to formal language). Unlike most prior work on contextualized LMs which are pre-trained", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 345, + 505, + 358 + ], + "spans": [ + { + "bbox": [ + 105, + 345, + 505, + 358 + ], + "score": 1.0, + "content": "on free text, according to the finding where questions in CSP tasks are more compositional than", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 106, + 356, + 506, + 369 + ], + "spans": [ + { + "bbox": [ + 106, + 356, + 506, + 369 + ], + "score": 1.0, + "content": "other free-text since they can be mapped into formal representations, we propose to train SCORE on", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 106, + 367, + 505, + 380 + ], + "spans": [ + { + "bbox": [ + 106, + 367, + 505, + 380 + ], + "score": 1.0, + "content": "synthesized conversational semantic parsing data with multiple training objectives that aim to ground", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 378, + 506, + 391 + ], + "spans": [ + { + "bbox": [ + 105, + 378, + 506, + 391 + ], + "score": 1.0, + "content": "utterances into the schema of the underlying ontology and to model the relationship between different", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 389, + 505, + 402 + ], + "spans": [ + { + "bbox": [ + 105, + 389, + 505, + 402 + ], + "score": 1.0, + "content": "utterances in the multi-turn conversation. In this way, SCORE can effectively inject structural and", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 106, + 401, + 505, + 412 + ], + "spans": [ + { + "bbox": [ + 106, + 401, + 505, + 412 + ], + "score": 1.0, + "content": "conversational inductive biases in LMs that can translate to many CSP tasks. SCORE uses an order", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 411, + 505, + 424 + ], + "spans": [ + { + "bbox": [ + 105, + 411, + 505, + 424 + ], + "score": 1.0, + "content": "of magnitude smaller dataset for the second stage of pre-training, does not require changes to the", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 422, + 505, + 435 + ], + "spans": [ + { + "bbox": [ + 105, + 422, + 505, + 435 + ], + "score": 1.0, + "content": "pre-trained model architecture, can be used as a drop-in replacement of general pre-trained LMs with", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 433, + 429, + 445 + ], + "spans": [ + { + "bbox": [ + 105, + 433, + 429, + 445 + ], + "score": 1.0, + "content": "any semantic parsing model, and can be used out-of-the-box in many CSP tasks.", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 15 + }, + { + "type": "text", + "bbox": [ + 107, + 450, + 505, + 549 + ], + "lines": [ + { + "bbox": [ + 106, + 450, + 505, + 462 + ], + "spans": [ + { + "bbox": [ + 106, + 450, + 505, + 462 + ], + "score": 1.0, + "content": "We apply SCORE to four different CSP tasks: (1) sequential text-to-SQL (SPARC), (2) conversational", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 460, + 506, + 475 + ], + "spans": [ + { + "bbox": [ + 105, + 460, + 506, + 475 + ], + "score": 1.0, + "content": "text-to-SQL (COSQL), (3) dialog state tracking (MWOZ), and (4) weakly-supervised sequential", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 471, + 507, + 486 + ], + "spans": [ + { + "bbox": [ + 105, + 471, + 507, + 486 + ], + "score": 1.0, + "content": "question answering (SQA). The fours tasks represent different scenarios, types of ontologies, super-", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 106, + 483, + 506, + 496 + ], + "spans": [ + { + "bbox": [ + 106, + 483, + 506, + 496 + ], + "score": 1.0, + "content": "vision signals, system responses, and domains (see Table 1 for a detailed comparison and Figure 1", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 493, + 506, + 507 + ], + "spans": [ + { + "bbox": [ + 105, + 493, + 506, + 507 + ], + "score": 1.0, + "content": "for examples). We demonstrate that: (1) SCORE training objectives can effectively incorporate", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 504, + 506, + 518 + ], + "spans": [ + { + "bbox": [ + 105, + 504, + 506, + 518 + ], + "score": 1.0, + "content": "synthesized data, (2) a single pre-trained SCORE model can be used for several CSP tasks and can be", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 106, + 516, + 505, + 528 + ], + "spans": [ + { + "bbox": [ + 106, + 516, + 505, + 528 + ], + "score": 1.0, + "content": "combined with many baseline systems with different model architectures and (3) SCORE significantly", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 526, + 506, + 539 + ], + "spans": [ + { + "bbox": [ + 105, + 526, + 506, + 539 + ], + "score": 1.0, + "content": "improve all baseline systems and achieves new state-of-the-art results on three benchmarks (SPARC,", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 106, + 537, + 504, + 550 + ], + "spans": [ + { + "bbox": [ + 106, + 537, + 504, + 550 + ], + "score": 1.0, + "content": "SPARC, and MWOZ) and comparable performance to state-of-the-art results on the fourth (SQA).", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 27 + }, + { + "type": "title", + "bbox": [ + 107, + 558, + 183, + 570 + ], + "lines": [ + { + "bbox": [ + 104, + 556, + 185, + 573 + ], + "spans": [ + { + "bbox": [ + 104, + 556, + 185, + 573 + ], + "score": 1.0, + "content": "2 APPROACH", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 32 + }, + { + "type": "text", + "bbox": [ + 107, + 575, + 505, + 663 + ], + "lines": [ + { + "bbox": [ + 105, + 574, + 506, + 588 + ], + "spans": [ + { + "bbox": [ + 105, + 574, + 506, + 588 + ], + "score": 1.0, + "content": "The key challenge of CSP is to capture the relationship between the natural language utterance", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 106, + 586, + 505, + 598 + ], + "spans": [ + { + "bbox": [ + 106, + 586, + 505, + 598 + ], + "score": 1.0, + "content": "and the structured ontology in the multi-turn dialog dynamics. To this end, we inject structural", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 106, + 597, + 505, + 609 + ], + "spans": [ + { + "bbox": [ + 106, + 597, + 505, + 609 + ], + "score": 1.0, + "content": "and conversational inductive biases in SCORE by introducing two objective functions: Column", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 606, + 506, + 622 + ], + "spans": [ + { + "bbox": [ + 105, + 606, + 506, + 622 + ], + "score": 1.0, + "content": "Contextual Semantics (CCS) and the Turn Contextual Switch (TCS). Because the size of existing", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 104, + 617, + 506, + 633 + ], + "spans": [ + { + "bbox": [ + 104, + 617, + 506, + 633 + ], + "score": 1.0, + "content": "semantic parsing datasets is limited, we produce synthesized data for pretraining SCORE by sampling", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 629, + 507, + 642 + ], + "spans": [ + { + "bbox": [ + 105, + 629, + 507, + 642 + ], + "score": 1.0, + "content": "from the context-free grammar induced from complex text-to-SQL examples in different domains.", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 640, + 506, + 654 + ], + "spans": [ + { + "bbox": [ + 105, + 640, + 506, + 654 + ], + "score": 1.0, + "content": "Moreover, to prevent SCORE from overfitting to the linguistic pattern of our synthesized data, we use", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 106, + 652, + 505, + 664 + ], + "spans": [ + { + "bbox": [ + 106, + 652, + 505, + 664 + ], + "score": 1.0, + "content": "the Masked Language Modeling (MLM) objective on human-generated utterances as regularization.", + "type": "text" + } + ], + "index": 40 + } + ], + "index": 36.5 + }, + { + "type": "title", + "bbox": [ + 107, + 677, + 200, + 689 + ], + "lines": [ + { + "bbox": [ + 105, + 676, + 201, + 690 + ], + "spans": [ + { + "bbox": [ + 105, + 676, + 201, + 690 + ], + "score": 1.0, + "content": "2.1 PRELIMINARIES", + "type": "text" + } + ], + "index": 41 + } + ], + "index": 41 + }, + { + "type": "text", + "bbox": [ + 108, + 699, + 504, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 699, + 505, + 711 + ], + "spans": [ + { + "bbox": [ + 106, + 699, + 267, + 711 + ], + "score": 1.0, + "content": "Task Definition In CSP, at each turn", + "type": "text" + }, + { + "bbox": [ + 267, + 700, + 272, + 709 + ], + "score": 0.56, + "content": "t", + "type": "inline_equation" + }, + { + "bbox": [ + 272, + 699, + 454, + 711 + ], + "score": 1.0, + "content": ", we aim to produce a formal representation", + "type": "text" + }, + { + "bbox": [ + 454, + 701, + 463, + 710 + ], + "score": 0.82, + "content": "q _ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 463, + 699, + 505, + 711 + ], + "score": 1.0, + "content": "given the", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 709, + 506, + 722 + ], + "spans": [ + { + "bbox": [ + 105, + 709, + 178, + 722 + ], + "score": 1.0, + "content": "current utterance", + "type": "text" + }, + { + "bbox": [ + 178, + 711, + 189, + 721 + ], + "score": 0.84, + "content": "u _ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 189, + 709, + 286, + 722 + ], + "score": 1.0, + "content": ", the interaction history", + "type": "text" + }, + { + "bbox": [ + 286, + 710, + 384, + 722 + ], + "score": 0.92, + "content": "h _ { t } = [ u _ { 1 } , u _ { 2 } , \\ldots , u _ { t - 1 } ]", + "type": "inline_equation" + }, + { + "bbox": [ + 384, + 709, + 454, + 722 + ], + "score": 1.0, + "content": ", and the schema", + "type": "text" + }, + { + "bbox": [ + 455, + 712, + 460, + 720 + ], + "score": 0.69, + "content": "c", + "type": "inline_equation" + }, + { + "bbox": [ + 461, + 709, + 506, + 722 + ], + "score": 1.0, + "content": "(table and", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 719, + 506, + 734 + ], + "spans": [ + { + "bbox": [ + 105, + 719, + 339, + 734 + ], + "score": 1.0, + "content": "column names, slots, etc.) of the target database (ontology)", + "type": "text" + }, + { + "bbox": [ + 339, + 722, + 345, + 730 + ], + "score": 0.79, + "content": "d", + "type": "inline_equation" + }, + { + "bbox": [ + 345, + 719, + 506, + 734 + ], + "score": 1.0, + "content": ". To cover different problem variants, we", + "type": "text" + } + ], + "index": 44 + } + ], + "index": 43 + } + ], + "page_idx": 1, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 27, + 292, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 26, + 293, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 26, + 293, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2021", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 302, + 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": "image", + "bbox": [ + 107, + 81, + 503, + 204 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 107, + 81, + 503, + 204 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 107, + 81, + 503, + 204 + ], + "spans": [ + { + "bbox": [ + 107, + 81, + 503, + 204 + ], + "score": 0.97, + "type": "image", + "image_path": "7aee0dcf05f327f0a25d0a1d95fd1e53bd5c59396766fe11cc27b236f4dec59f.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 107, + 81, + 503, + 122.0 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 107, + 122.0, + 503, + 163.0 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 107, + 163.0, + 503, + 204.0 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 108, + 210, + 497, + 222 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 111, + 209, + 499, + 225 + ], + "spans": [ + { + "bbox": [ + 111, + 209, + 499, + 225 + ], + "score": 1.0, + "content": "Figure 1: Examples of conversational semantic parsing tasks from SPARC and MWOZ datasets.", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 3 + } + ], + "index": 2.0 + }, + { + "type": "text", + "bbox": [ + 108, + 230, + 505, + 273 + ], + "lines": [], + "index": 5.5, + "bbox_fs": [ + 105, + 229, + 507, + 274 + ], + "lines_deleted": true + }, + { + "type": "text", + "bbox": [ + 107, + 279, + 505, + 444 + ], + "lines": [ + { + "bbox": [ + 104, + 277, + 506, + 294 + ], + "spans": [ + { + "bbox": [ + 104, + 277, + 506, + 294 + ], + "score": 1.0, + "content": "In this paper, we introduce SCORE (Structured & Sequential Context Representation), a language", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 290, + 506, + 304 + ], + "spans": [ + { + "bbox": [ + 105, + 290, + 506, + 304 + ], + "score": 1.0, + "content": "model pre-training approach for CSP tasks. SCORE adapts general pre-trained LMs by introducing a", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 302, + 505, + 313 + ], + "spans": [ + { + "bbox": [ + 105, + 302, + 505, + 313 + ], + "score": 1.0, + "content": "second phase of pre-training using multiple objectives that capture both multi-turn dynamics and the", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 312, + 505, + 325 + ], + "spans": [ + { + "bbox": [ + 105, + 312, + 505, + 325 + ], + "score": 1.0, + "content": "structural contexts in a dialog. In contrast to open-domain dialogs, CSP datasets are usually much", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 322, + 505, + 338 + ], + "spans": [ + { + "bbox": [ + 105, + 322, + 505, + 338 + ], + "score": 1.0, + "content": "smaller due to the difficulty and expense of obtaining and labeling data (mapping natural language", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 334, + 506, + 347 + ], + "spans": [ + { + "bbox": [ + 105, + 334, + 506, + 347 + ], + "score": 1.0, + "content": "utterances to formal language). Unlike most prior work on contextualized LMs which are pre-trained", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 345, + 505, + 358 + ], + "spans": [ + { + "bbox": [ + 105, + 345, + 505, + 358 + ], + "score": 1.0, + "content": "on free text, according to the finding where questions in CSP tasks are more compositional than", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 106, + 356, + 506, + 369 + ], + "spans": [ + { + "bbox": [ + 106, + 356, + 506, + 369 + ], + "score": 1.0, + "content": "other free-text since they can be mapped into formal representations, we propose to train SCORE on", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 106, + 367, + 505, + 380 + ], + "spans": [ + { + "bbox": [ + 106, + 367, + 505, + 380 + ], + "score": 1.0, + "content": "synthesized conversational semantic parsing data with multiple training objectives that aim to ground", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 378, + 506, + 391 + ], + "spans": [ + { + "bbox": [ + 105, + 378, + 506, + 391 + ], + "score": 1.0, + "content": "utterances into the schema of the underlying ontology and to model the relationship between different", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 389, + 505, + 402 + ], + "spans": [ + { + "bbox": [ + 105, + 389, + 505, + 402 + ], + "score": 1.0, + "content": "utterances in the multi-turn conversation. In this way, SCORE can effectively inject structural and", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 106, + 401, + 505, + 412 + ], + "spans": [ + { + "bbox": [ + 106, + 401, + 505, + 412 + ], + "score": 1.0, + "content": "conversational inductive biases in LMs that can translate to many CSP tasks. SCORE uses an order", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 411, + 505, + 424 + ], + "spans": [ + { + "bbox": [ + 105, + 411, + 505, + 424 + ], + "score": 1.0, + "content": "of magnitude smaller dataset for the second stage of pre-training, does not require changes to the", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 422, + 505, + 435 + ], + "spans": [ + { + "bbox": [ + 105, + 422, + 505, + 435 + ], + "score": 1.0, + "content": "pre-trained model architecture, can be used as a drop-in replacement of general pre-trained LMs with", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 433, + 429, + 445 + ], + "spans": [ + { + "bbox": [ + 105, + 433, + 429, + 445 + ], + "score": 1.0, + "content": "any semantic parsing model, and can be used out-of-the-box in many CSP tasks.", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 15, + "bbox_fs": [ + 104, + 277, + 506, + 445 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 450, + 505, + 549 + ], + "lines": [ + { + "bbox": [ + 106, + 450, + 505, + 462 + ], + "spans": [ + { + "bbox": [ + 106, + 450, + 505, + 462 + ], + "score": 1.0, + "content": "We apply SCORE to four different CSP tasks: (1) sequential text-to-SQL (SPARC), (2) conversational", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 460, + 506, + 475 + ], + "spans": [ + { + "bbox": [ + 105, + 460, + 506, + 475 + ], + "score": 1.0, + "content": "text-to-SQL (COSQL), (3) dialog state tracking (MWOZ), and (4) weakly-supervised sequential", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 471, + 507, + 486 + ], + "spans": [ + { + "bbox": [ + 105, + 471, + 507, + 486 + ], + "score": 1.0, + "content": "question answering (SQA). The fours tasks represent different scenarios, types of ontologies, super-", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 106, + 483, + 506, + 496 + ], + "spans": [ + { + "bbox": [ + 106, + 483, + 506, + 496 + ], + "score": 1.0, + "content": "vision signals, system responses, and domains (see Table 1 for a detailed comparison and Figure 1", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 493, + 506, + 507 + ], + "spans": [ + { + "bbox": [ + 105, + 493, + 506, + 507 + ], + "score": 1.0, + "content": "for examples). We demonstrate that: (1) SCORE training objectives can effectively incorporate", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 504, + 506, + 518 + ], + "spans": [ + { + "bbox": [ + 105, + 504, + 506, + 518 + ], + "score": 1.0, + "content": "synthesized data, (2) a single pre-trained SCORE model can be used for several CSP tasks and can be", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 106, + 516, + 505, + 528 + ], + "spans": [ + { + "bbox": [ + 106, + 516, + 505, + 528 + ], + "score": 1.0, + "content": "combined with many baseline systems with different model architectures and (3) SCORE significantly", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 526, + 506, + 539 + ], + "spans": [ + { + "bbox": [ + 105, + 526, + 506, + 539 + ], + "score": 1.0, + "content": "improve all baseline systems and achieves new state-of-the-art results on three benchmarks (SPARC,", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 106, + 537, + 504, + 550 + ], + "spans": [ + { + "bbox": [ + 106, + 537, + 504, + 550 + ], + "score": 1.0, + "content": "SPARC, and MWOZ) and comparable performance to state-of-the-art results on the fourth (SQA).", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 27, + "bbox_fs": [ + 105, + 450, + 507, + 550 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 558, + 183, + 570 + ], + "lines": [ + { + "bbox": [ + 104, + 556, + 185, + 573 + ], + "spans": [ + { + "bbox": [ + 104, + 556, + 185, + 573 + ], + "score": 1.0, + "content": "2 APPROACH", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 32 + }, + { + "type": "text", + "bbox": [ + 107, + 575, + 505, + 663 + ], + "lines": [ + { + "bbox": [ + 105, + 574, + 506, + 588 + ], + "spans": [ + { + "bbox": [ + 105, + 574, + 506, + 588 + ], + "score": 1.0, + "content": "The key challenge of CSP is to capture the relationship between the natural language utterance", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 106, + 586, + 505, + 598 + ], + "spans": [ + { + "bbox": [ + 106, + 586, + 505, + 598 + ], + "score": 1.0, + "content": "and the structured ontology in the multi-turn dialog dynamics. To this end, we inject structural", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 106, + 597, + 505, + 609 + ], + "spans": [ + { + "bbox": [ + 106, + 597, + 505, + 609 + ], + "score": 1.0, + "content": "and conversational inductive biases in SCORE by introducing two objective functions: Column", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 606, + 506, + 622 + ], + "spans": [ + { + "bbox": [ + 105, + 606, + 506, + 622 + ], + "score": 1.0, + "content": "Contextual Semantics (CCS) and the Turn Contextual Switch (TCS). Because the size of existing", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 104, + 617, + 506, + 633 + ], + "spans": [ + { + "bbox": [ + 104, + 617, + 506, + 633 + ], + "score": 1.0, + "content": "semantic parsing datasets is limited, we produce synthesized data for pretraining SCORE by sampling", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 629, + 507, + 642 + ], + "spans": [ + { + "bbox": [ + 105, + 629, + 507, + 642 + ], + "score": 1.0, + "content": "from the context-free grammar induced from complex text-to-SQL examples in different domains.", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 640, + 506, + 654 + ], + "spans": [ + { + "bbox": [ + 105, + 640, + 506, + 654 + ], + "score": 1.0, + "content": "Moreover, to prevent SCORE from overfitting to the linguistic pattern of our synthesized data, we use", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 106, + 652, + 505, + 664 + ], + "spans": [ + { + "bbox": [ + 106, + 652, + 505, + 664 + ], + "score": 1.0, + "content": "the Masked Language Modeling (MLM) objective on human-generated utterances as regularization.", + "type": "text" + } + ], + "index": 40 + } + ], + "index": 36.5, + "bbox_fs": [ + 104, + 574, + 507, + 664 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 677, + 200, + 689 + ], + "lines": [ + { + "bbox": [ + 105, + 676, + 201, + 690 + ], + "spans": [ + { + "bbox": [ + 105, + 676, + 201, + 690 + ], + "score": 1.0, + "content": "2.1 PRELIMINARIES", + "type": "text" + } + ], + "index": 41 + } + ], + "index": 41 + }, + { + "type": "text", + "bbox": [ + 108, + 699, + 504, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 699, + 505, + 711 + ], + "spans": [ + { + "bbox": [ + 106, + 699, + 267, + 711 + ], + "score": 1.0, + "content": "Task Definition In CSP, at each turn", + "type": "text" + }, + { + "bbox": [ + 267, + 700, + 272, + 709 + ], + "score": 0.56, + "content": "t", + "type": "inline_equation" + }, + { + "bbox": [ + 272, + 699, + 454, + 711 + ], + "score": 1.0, + "content": ", we aim to produce a formal representation", + "type": "text" + }, + { + "bbox": [ + 454, + 701, + 463, + 710 + ], + "score": 0.82, + "content": "q _ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 463, + 699, + 505, + 711 + ], + "score": 1.0, + "content": "given the", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 709, + 506, + 722 + ], + "spans": [ + { + "bbox": [ + 105, + 709, + 178, + 722 + ], + "score": 1.0, + "content": "current utterance", + "type": "text" + }, + { + "bbox": [ + 178, + 711, + 189, + 721 + ], + "score": 0.84, + "content": "u _ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 189, + 709, + 286, + 722 + ], + "score": 1.0, + "content": ", the interaction history", + "type": "text" + }, + { + "bbox": [ + 286, + 710, + 384, + 722 + ], + "score": 0.92, + "content": "h _ { t } = [ u _ { 1 } , u _ { 2 } , \\ldots , u _ { t - 1 } ]", + "type": "inline_equation" + }, + { + "bbox": [ + 384, + 709, + 454, + 722 + ], + "score": 1.0, + "content": ", and the schema", + "type": "text" + }, + { + "bbox": [ + 455, + 712, + 460, + 720 + ], + "score": 0.69, + "content": "c", + "type": "inline_equation" + }, + { + "bbox": [ + 461, + 709, + 506, + 722 + ], + "score": 1.0, + "content": "(table and", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 719, + 506, + 734 + ], + "spans": [ + { + "bbox": [ + 105, + 719, + 339, + 734 + ], + "score": 1.0, + "content": "column names, slots, etc.) of the target database (ontology)", + "type": "text" + }, + { + "bbox": [ + 339, + 722, + 345, + 730 + ], + "score": 0.79, + "content": "d", + "type": "inline_equation" + }, + { + "bbox": [ + 345, + 719, + 506, + 734 + ], + "score": 1.0, + "content": ". To cover different problem variants, we", + "type": "text" + } + ], + "index": 44 + } + ], + "index": 43, + "bbox_fs": [ + 105, + 699, + 506, + 734 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "table", + "bbox": [ + 106, + 80, + 505, + 150 + ], + "blocks": [ + { + "type": "table_body", + "bbox": [ + 106, + 80, + 505, + 150 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 80, + 505, + 150 + ], + "spans": [ + { + "bbox": [ + 106, + 80, + 505, + 150 + ], + "score": 0.978, + "html": "
DatasetStructured OntologyAnnotation (Supervision)Cross DomainSystem Response# Dialogs# Turns
SPARCdatabaseSQL (supervised)X4,29812,726
CoSQLdatabaseSQL (supervised)3,00715,598
MWoZdomain ontologyslot-value (supervised)X8,438113,556
SQAtabledenotation (weakly-supervised)X6,06617,553
", + "type": "table", + "image_path": "929885980d69032c673d24866c6a4b2f3530bfca69ca1c769eb0937bc0419bdc.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 106, + 80, + 505, + 103.33333333333333 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 106, + 103.33333333333333, + 505, + 126.66666666666666 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 106, + 126.66666666666666, + 505, + 150.0 + ], + "spans": [], + "index": 2 + } + ] + } + ], + "index": 1 + }, + { + "type": "text", + "bbox": [ + 106, + 159, + 504, + 181 + ], + "lines": [ + { + "bbox": [ + 106, + 159, + 505, + 170 + ], + "spans": [ + { + "bbox": [ + 106, + 159, + 505, + 170 + ], + "score": 1.0, + "content": "Table 1: Comparison of CSP datasets. Examples from two of the datasets are shown in Figure 1.", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 169, + 504, + 182 + ], + "spans": [ + { + "bbox": [ + 105, + 169, + 504, + 182 + ], + "score": 1.0, + "content": "Cross-domain means the train and test sets have different domains, so MWOZ is not cross-domain.", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 3.5 + }, + { + "type": "text", + "bbox": [ + 106, + 186, + 506, + 220 + ], + "lines": [ + { + "bbox": [ + 106, + 186, + 506, + 200 + ], + "spans": [ + { + "bbox": [ + 106, + 186, + 506, + 200 + ], + "score": 1.0, + "content": "consider four popular CSP tasks shown in Table 1: SPARC (sequential text-to-SQL), COSQL (con-", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 106, + 198, + 505, + 210 + ], + "spans": [ + { + "bbox": [ + 106, + 198, + 505, + 210 + ], + "score": 1.0, + "content": "versational text-to-SQL), MWOZ (dialogue state tracking), and SQA (weakly supervised sequential", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 106, + 209, + 465, + 222 + ], + "spans": [ + { + "bbox": [ + 106, + 209, + 465, + 222 + ], + "score": 1.0, + "content": "question answering). They have different target formal language and structured ontology:", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 6 + }, + { + "type": "text", + "bbox": [ + 106, + 226, + 506, + 303 + ], + "lines": [ + { + "bbox": [ + 106, + 225, + 506, + 238 + ], + "spans": [ + { + "bbox": [ + 106, + 225, + 190, + 238 + ], + "score": 1.0, + "content": "• For the utterance", + "type": "text" + }, + { + "bbox": [ + 190, + 228, + 198, + 236 + ], + "score": 0.63, + "content": "\\textbf { \\em u }", + "type": "inline_equation" + }, + { + "bbox": [ + 198, + 225, + 506, + 238 + ], + "score": 1.0, + "content": ", it is the user question for SPARC and SQA, while for COSQL and MWOZ,", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 117, + 237, + 356, + 249 + ], + "spans": [ + { + "bbox": [ + 117, + 239, + 124, + 246 + ], + "score": 0.69, + "content": "u", + "type": "inline_equation" + }, + { + "bbox": [ + 124, + 237, + 356, + 249 + ], + "score": 1.0, + "content": "is the combination of a user query and a system response.", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 106, + 248, + 505, + 260 + ], + "spans": [ + { + "bbox": [ + 106, + 248, + 187, + 260 + ], + "score": 1.0, + "content": "• For the database", + "type": "text" + }, + { + "bbox": [ + 188, + 248, + 195, + 258 + ], + "score": 0.58, + "content": "^ d", + "type": "inline_equation" + }, + { + "bbox": [ + 195, + 248, + 505, + 260 + ], + "score": 1.0, + "content": ", SPARC and COSQL use multi-table databases; for MWOZ, the pre-defined", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 114, + 259, + 411, + 271 + ], + "spans": [ + { + "bbox": [ + 114, + 259, + 154, + 271 + ], + "score": 1.0, + "content": "ontology", + "type": "text" + }, + { + "bbox": [ + 154, + 259, + 161, + 269 + ], + "score": 0.71, + "content": "d", + "type": "inline_equation" + }, + { + "bbox": [ + 162, + 259, + 338, + 271 + ], + "score": 1.0, + "content": "can also be viewed as a database; for SQA,", + "type": "text" + }, + { + "bbox": [ + 338, + 259, + 344, + 269 + ], + "score": 0.73, + "content": "d", + "type": "inline_equation" + }, + { + "bbox": [ + 345, + 259, + 411, + 271 + ], + "score": 1.0, + "content": "is a single table.", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 106, + 269, + 506, + 283 + ], + "spans": [ + { + "bbox": [ + 106, + 269, + 244, + 283 + ], + "score": 1.0, + "content": "• For the formal representation", + "type": "text" + }, + { + "bbox": [ + 244, + 271, + 251, + 281 + ], + "score": 0.69, + "content": "\\pmb q", + "type": "inline_equation" + }, + { + "bbox": [ + 251, + 269, + 506, + 283 + ], + "score": 1.0, + "content": ", it is the SQL query for SPARC and COSQL; in MWOZ it is", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 115, + 280, + 505, + 293 + ], + "spans": [ + { + "bbox": [ + 115, + 280, + 505, + 293 + ], + "score": 1.0, + "content": "the slot-value pairs that can be viewed as simple SQL queries consisting of SELECT and WHERE", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 116, + 291, + 302, + 304 + ], + "spans": [ + { + "bbox": [ + 116, + 291, + 208, + 304 + ], + "score": 1.0, + "content": "clauses; and for SQA,", + "type": "text" + }, + { + "bbox": [ + 208, + 294, + 214, + 303 + ], + "score": 0.78, + "content": "q", + "type": "inline_equation" + }, + { + "bbox": [ + 214, + 291, + 302, + 304 + ], + "score": 1.0, + "content": "is the latent program.", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 11 + }, + { + "type": "text", + "bbox": [ + 106, + 314, + 505, + 373 + ], + "lines": [ + { + "bbox": [ + 105, + 313, + 505, + 327 + ], + "spans": [ + { + "bbox": [ + 105, + 313, + 505, + 327 + ], + "score": 1.0, + "content": "Base Architecture The base architecture of SCORE takes as input a single turn of a CSP dialog", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 107, + 326, + 506, + 338 + ], + "spans": [ + { + "bbox": [ + 107, + 326, + 138, + 338 + ], + "score": 0.93, + "content": "\\left. u _ { t } , h _ { t } \\right.", + "type": "inline_equation" + }, + { + "bbox": [ + 138, + 326, + 324, + 338 + ], + "score": 1.0, + "content": "jointly with the underlying database schema", + "type": "text" + }, + { + "bbox": [ + 325, + 328, + 330, + 335 + ], + "score": 0.57, + "content": "c", + "type": "inline_equation" + }, + { + "bbox": [ + 331, + 326, + 506, + 338 + ], + "score": 1.0, + "content": ". Given this contextualized conversational", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 337, + 506, + 351 + ], + "spans": [ + { + "bbox": [ + 105, + 337, + 131, + 351 + ], + "score": 1.0, + "content": "input", + "type": "text" + }, + { + "bbox": [ + 131, + 338, + 195, + 350 + ], + "score": 0.92, + "content": "C _ { t } = \\langle u _ { t } , h _ { t } , c \\rangle", + "type": "inline_equation" + }, + { + "bbox": [ + 195, + 337, + 478, + 351 + ], + "score": 1.0, + "content": ", SCORE encodes it into contextualized conversation representations", + "type": "text" + }, + { + "bbox": [ + 478, + 337, + 489, + 350 + ], + "score": 0.9, + "content": "\\vec { S } _ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 490, + 337, + 506, + 351 + ], + "score": 1.0, + "content": "for", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 106, + 349, + 505, + 362 + ], + "spans": [ + { + "bbox": [ + 106, + 349, + 162, + 362 + ], + "score": 1.0, + "content": "each token in", + "type": "text" + }, + { + "bbox": [ + 162, + 351, + 173, + 361 + ], + "score": 0.88, + "content": "C _ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 174, + 349, + 505, + 362 + ], + "score": 1.0, + "content": ". The encoder architecture follows RoBERTa (Liu et al., 2019b). It is then followed", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 360, + 506, + 374 + ], + "spans": [ + { + "bbox": [ + 105, + 362, + 431, + 374 + ], + "score": 1.0, + "content": "by a linear layer and normalized (Ba et al., 2016) to produce final representations", + "type": "text" + }, + { + "bbox": [ + 432, + 360, + 443, + 373 + ], + "score": 0.9, + "content": "\\vec { h } _ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 443, + 362, + 506, + 374 + ], + "score": 1.0, + "content": "for each token:", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 17 + }, + { + "type": "interline_equation", + "bbox": [ + 115, + 376, + 482, + 390 + ], + "lines": [ + { + "bbox": [ + 115, + 376, + 482, + 390 + ], + "spans": [ + { + "bbox": [ + 115, + 376, + 482, + 390 + ], + "score": 0.71, + "content": "C _ { t } = \\langle u _ { t } , h _ { t } , c \\rangle , \\ \\vec { S } _ { t } = \\mathrm { R o B E R T A } ( C _ { t } ) , \\ h _ { t , i } = \\mathrm { L a y e r N o r m } ( \\mathrm { G E L U } ( W _ { 1 } S _ { t , i } ) ) \\ \\forall S _ { t , i } \\in \\vec { S } _ { t } ,", + "type": "interline_equation", + "image_path": "6dc9fe52a1ca2f161dcba029a49a3d12e81e554d8c01dfacd7ff981f1c020b50.jpg" + } + ] + } + ], + "index": 20, + "virtual_lines": [ + { + "bbox": [ + 115, + 376, + 482, + 390 + ], + "spans": [], + "index": 20 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 392, + 504, + 404 + ], + "lines": [ + { + "bbox": [ + 106, + 392, + 506, + 406 + ], + "spans": [ + { + "bbox": [ + 106, + 392, + 369, + 406 + ], + "score": 1.0, + "content": "where GELU is an activation by Hendrycks & Gimpel (2016) and", + "type": "text" + }, + { + "bbox": [ + 369, + 393, + 385, + 403 + ], + "score": 0.89, + "content": "W _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 385, + 392, + 506, + 406 + ], + "score": 1.0, + "content": "is a learned parameter matrix.", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 21 + }, + { + "type": "text", + "bbox": [ + 106, + 409, + 505, + 465 + ], + "lines": [ + { + "bbox": [ + 105, + 408, + 505, + 422 + ], + "spans": [ + { + "bbox": [ + 105, + 408, + 142, + 422 + ], + "score": 1.0, + "content": "To build", + "type": "text" + }, + { + "bbox": [ + 142, + 410, + 154, + 420 + ], + "score": 0.88, + "content": "C _ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 154, + 408, + 315, + 422 + ], + "score": 1.0, + "content": ", we first concatenate current utterances", + "type": "text" + }, + { + "bbox": [ + 315, + 411, + 326, + 420 + ], + "score": 0.85, + "content": "u _ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 326, + 408, + 402, + 422 + ], + "score": 1.0, + "content": "and dialog history", + "type": "text" + }, + { + "bbox": [ + 402, + 410, + 413, + 420 + ], + "score": 0.87, + "content": "h _ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 413, + 408, + 505, + 422 + ], + "score": 1.0, + "content": "separated by a special", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 419, + 505, + 434 + ], + "spans": [ + { + "bbox": [ + 105, + 419, + 131, + 434 + ], + "score": 1.0, + "content": "token", + "type": "text" + }, + { + "bbox": [ + 131, + 422, + 148, + 431 + ], + "score": 0.86, + "content": "< s >", + "type": "inline_equation" + }, + { + "bbox": [ + 149, + 419, + 505, + 434 + ], + "score": 1.0, + "content": ", as this simple strategy has been shown effective in state-of-the-art CSP systems (Zhang", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 430, + 506, + 444 + ], + "spans": [ + { + "bbox": [ + 105, + 430, + 130, + 444 + ], + "score": 1.0, + "content": "et al.,", + "type": "text" + }, + { + "bbox": [ + 130, + 432, + 155, + 442 + ], + "score": 0.43, + "content": "2 0 1 9 \\mathrm { c }", + "type": "inline_equation" + }, + { + "bbox": [ + 155, + 430, + 506, + 444 + ], + "score": 1.0, + "content": "; Wu et al., 2019; Liu et al., 2020; Heck et al., 2020). To incorporate the database schema,", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 442, + 505, + 455 + ], + "spans": [ + { + "bbox": [ + 105, + 442, + 505, + 455 + ], + "score": 1.0, + "content": "we follow Hwang et al. (2019) to concatenate all column names as a single sequence. Column names", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 106, + 453, + 459, + 466 + ], + "spans": [ + { + "bbox": [ + 106, + 453, + 243, + 466 + ], + "score": 1.0, + "content": "are separated by the special token", + "type": "text" + }, + { + "bbox": [ + 243, + 454, + 266, + 464 + ], + "score": 0.88, + "content": "< / \\varsigma >", + "type": "inline_equation" + }, + { + "bbox": [ + 266, + 453, + 459, + 466 + ], + "score": 1.0, + "content": "and prefixed by their corresponding table name.", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 24 + }, + { + "type": "title", + "bbox": [ + 108, + 477, + 230, + 488 + ], + "lines": [ + { + "bbox": [ + 105, + 476, + 231, + 490 + ], + "spans": [ + { + "bbox": [ + 105, + 476, + 231, + 490 + ], + "score": 1.0, + "content": "2.2 SCORE PRE-TRAINING", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 27 + }, + { + "type": "text", + "bbox": [ + 106, + 497, + 505, + 553 + ], + "lines": [ + { + "bbox": [ + 106, + 497, + 506, + 511 + ], + "spans": [ + { + "bbox": [ + 106, + 497, + 506, + 511 + ], + "score": 1.0, + "content": "SCORE addresses the challenges of CSP by pre-training a task-oriented language model contextual-", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 106, + 509, + 505, + 521 + ], + "spans": [ + { + "bbox": [ + 106, + 509, + 505, + 521 + ], + "score": 1.0, + "content": "ized by the conversational flow and the underlying ontology. In pre-training, the SCORE model is", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 104, + 517, + 506, + 535 + ], + "spans": [ + { + "bbox": [ + 104, + 517, + 506, + 535 + ], + "score": 1.0, + "content": "self-supervised by two novel objectives in addition to the established Masked Language Modeling", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 106, + 531, + 504, + 543 + ], + "spans": [ + { + "bbox": [ + 106, + 531, + 504, + 543 + ], + "score": 1.0, + "content": "(MLM) objective. These objectives facilitate the accurate representation of the conversational flow", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 540, + 446, + 556 + ], + "spans": [ + { + "bbox": [ + 105, + 540, + 446, + 556 + ], + "score": 1.0, + "content": "between dialog turns and how this flow maps to the desired columns in the ontology.", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 30 + }, + { + "type": "text", + "bbox": [ + 106, + 564, + 505, + 664 + ], + "lines": [ + { + "bbox": [ + 106, + 563, + 506, + 578 + ], + "spans": [ + { + "bbox": [ + 106, + 563, + 506, + 578 + ], + "score": 1.0, + "content": "Column Contextual Semantics The first challenge of CSP is capturing the alignment between", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 106, + 576, + 505, + 589 + ], + "spans": [ + { + "bbox": [ + 106, + 576, + 505, + 589 + ], + "score": 1.0, + "content": "the natural language utterance and the underlying database schema. To address it, we optimize the", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 106, + 587, + 505, + 599 + ], + "spans": [ + { + "bbox": [ + 106, + 587, + 505, + 599 + ], + "score": 1.0, + "content": "SCORE model with the auxiliary objective of Column Contextual Semantics (CCS). For each column", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 597, + 506, + 610 + ], + "spans": [ + { + "bbox": [ + 105, + 597, + 201, + 610 + ], + "score": 1.0, + "content": "in the database schema", + "type": "text" + }, + { + "bbox": [ + 202, + 600, + 207, + 608 + ], + "score": 0.54, + "content": "c", + "type": "inline_equation" + }, + { + "bbox": [ + 208, + 597, + 506, + 610 + ], + "score": 1.0, + "content": ", CCS targets the operations that should be performed on this column in a", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 106, + 609, + 505, + 622 + ], + "spans": [ + { + "bbox": [ + 106, + 609, + 373, + 622 + ], + "score": 1.0, + "content": "given conversational turn. Specifically, each formal representation", + "type": "text" + }, + { + "bbox": [ + 374, + 610, + 380, + 620 + ], + "score": 0.78, + "content": "q", + "type": "inline_equation" + }, + { + "bbox": [ + 380, + 609, + 505, + 622 + ], + "score": 1.0, + "content": "is decomposed into operations", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 619, + 505, + 633 + ], + "spans": [ + { + "bbox": [ + 105, + 619, + 505, + 633 + ], + "score": 1.0, + "content": "on columns and tables, e.g. GROUP BY and HAVING for SQL queries, or WHERE for the slot-value", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 630, + 505, + 644 + ], + "spans": [ + { + "bbox": [ + 105, + 630, + 505, + 644 + ], + "score": 1.0, + "content": "pairs. In this way, our data covers 148 column operations. We use the encoding of the special", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 642, + 505, + 655 + ], + "spans": [ + { + "bbox": [ + 105, + 642, + 131, + 655 + ], + "score": 1.0, + "content": "token", + "type": "text" + }, + { + "bbox": [ + 131, + 642, + 154, + 652 + ], + "score": 0.88, + "content": "< / \\varsigma >", + "type": "inline_equation" + }, + { + "bbox": [ + 154, + 642, + 505, + 655 + ], + "score": 1.0, + "content": "right before each column or table name to predict its corresponding operations, and then", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 653, + 200, + 665 + ], + "spans": [ + { + "bbox": [ + 105, + 653, + 200, + 665 + ], + "score": 1.0, + "content": "compute the CCS loss:", + "type": "text" + } + ], + "index": 41 + } + ], + "index": 37 + }, + { + "type": "interline_equation", + "bbox": [ + 163, + 666, + 447, + 686 + ], + "lines": [ + { + "bbox": [ + 163, + 666, + 447, + 686 + ], + "spans": [ + { + "bbox": [ + 163, + 666, + 447, + 686 + ], + "score": 0.91, + "content": "{ \\mathcal { L } } _ { \\mathrm { C C S } } ( C _ { t } ) = \\sum _ { i \\in c } { \\mathrm { C r o s s E n t r o p y } } _ { 1 4 8 } ( { \\mathrm { L a y e r N o r m } } ( W _ { 2 } h _ { t , i } ^ { c } ) , { \\mathrm { C C S } } ( q _ { t } ) )", + "type": "interline_equation", + "image_path": "8c1af7f0bc82204522aea400039a7f1c8631328fbe6b2fc50c318f020b2df77c.jpg" + } + ] + } + ], + "index": 42, + "virtual_lines": [ + { + "bbox": [ + 163, + 666, + 447, + 686 + ], + "spans": [], + "index": 42 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 686, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 686, + 506, + 699 + ], + "spans": [ + { + "bbox": [ + 105, + 686, + 132, + 699 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 132, + 687, + 149, + 699 + ], + "score": 0.91, + "content": "h _ { t , i } ^ { c }", + "type": "inline_equation" + }, + { + "bbox": [ + 149, + 686, + 315, + 699 + ], + "score": 1.0, + "content": "is the contextualized representation of the", + "type": "text" + }, + { + "bbox": [ + 316, + 686, + 326, + 696 + ], + "score": 0.85, + "content": "i ^ { \\mathrm { { t h } } }", + "type": "inline_equation" + }, + { + "bbox": [ + 327, + 686, + 419, + 699 + ], + "score": 1.0, + "content": "column’s special token", + "type": "text" + }, + { + "bbox": [ + 419, + 687, + 442, + 697 + ], + "score": 0.89, + "content": "< / \\varsigma >", + "type": "inline_equation" + }, + { + "bbox": [ + 442, + 686, + 506, + 699 + ], + "score": 1.0, + "content": "in the contextu-", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 697, + 507, + 713 + ], + "spans": [ + { + "bbox": [ + 105, + 697, + 155, + 713 + ], + "score": 1.0, + "content": "alized input", + "type": "text" + }, + { + "bbox": [ + 155, + 699, + 167, + 710 + ], + "score": 0.85, + "content": "C _ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 167, + 697, + 171, + 713 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 171, + 699, + 207, + 711 + ], + "score": 0.88, + "content": "\\operatorname { C C S } ( q _ { t } )", + "type": "inline_equation" + }, + { + "bbox": [ + 207, + 697, + 493, + 713 + ], + "score": 1.0, + "content": "returns the column operation label for the current formal representation", + "type": "text" + }, + { + "bbox": [ + 493, + 701, + 502, + 710 + ], + "score": 0.81, + "content": "q _ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 502, + 697, + 507, + 713 + ], + "score": 1.0, + "content": ",", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 709, + 506, + 723 + ], + "spans": [ + { + "bbox": [ + 105, + 709, + 161, + 723 + ], + "score": 1.0, + "content": "CrossEntropy", + "type": "text" + }, + { + "bbox": [ + 162, + 712, + 175, + 721 + ], + "score": 0.61, + "content": "^ { 1 4 8 }", + "type": "inline_equation" + }, + { + "bbox": [ + 175, + 709, + 506, + 723 + ], + "score": 1.0, + "content": "computes the 148-way cross-entropy between the column operation prediction and", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 106, + 721, + 286, + 732 + ], + "spans": [ + { + "bbox": [ + 106, + 721, + 148, + 732 + ], + "score": 1.0, + "content": "label, and", + "type": "text" + }, + { + "bbox": [ + 148, + 721, + 164, + 732 + ], + "score": 0.9, + "content": "W _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 165, + 721, + 286, + 732 + ], + "score": 1.0, + "content": "is a learned parameter matrix.", + "type": "text" + } + ], + "index": 46 + } + ], + "index": 44.5 + } + ], + "page_idx": 2, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 108, + 27, + 292, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 26, + 293, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 26, + 293, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2021", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 302, + 751, + 309, + 760 + ], + "lines": [ + { + "bbox": [ + 301, + 750, + 310, + 762 + ], + "spans": [ + { + "bbox": [ + 301, + 750, + 310, + 762 + ], + "score": 1.0, + "content": "3", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "table", + "bbox": [ + 106, + 80, + 505, + 150 + ], + "blocks": [ + { + "type": "table_body", + "bbox": [ + 106, + 80, + 505, + 150 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 80, + 505, + 150 + ], + "spans": [ + { + "bbox": [ + 106, + 80, + 505, + 150 + ], + "score": 0.978, + "html": "
DatasetStructured OntologyAnnotation (Supervision)Cross DomainSystem Response# Dialogs# Turns
SPARCdatabaseSQL (supervised)X4,29812,726
CoSQLdatabaseSQL (supervised)3,00715,598
MWoZdomain ontologyslot-value (supervised)X8,438113,556
SQAtabledenotation (weakly-supervised)X6,06617,553
", + "type": "table", + "image_path": "929885980d69032c673d24866c6a4b2f3530bfca69ca1c769eb0937bc0419bdc.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 106, + 80, + 505, + 103.33333333333333 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 106, + 103.33333333333333, + 505, + 126.66666666666666 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 106, + 126.66666666666666, + 505, + 150.0 + ], + "spans": [], + "index": 2 + } + ] + } + ], + "index": 1 + }, + { + "type": "list", + "bbox": [ + 106, + 159, + 504, + 181 + ], + "lines": [ + { + "bbox": [ + 106, + 159, + 505, + 170 + ], + "spans": [ + { + "bbox": [ + 106, + 159, + 505, + 170 + ], + "score": 1.0, + "content": "Table 1: Comparison of CSP datasets. Examples from two of the datasets are shown in Figure 1.", + "type": "text" + } + ], + "index": 3, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 169, + 504, + 182 + ], + "spans": [ + { + "bbox": [ + 105, + 169, + 504, + 182 + ], + "score": 1.0, + "content": "Cross-domain means the train and test sets have different domains, so MWOZ is not cross-domain.", + "type": "text" + } + ], + "index": 4, + "is_list_start_line": true, + "is_list_end_line": true + } + ], + "index": 3.5, + "bbox_fs": [ + 105, + 159, + 505, + 182 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 186, + 506, + 220 + ], + "lines": [ + { + "bbox": [ + 106, + 186, + 506, + 200 + ], + "spans": [ + { + "bbox": [ + 106, + 186, + 506, + 200 + ], + "score": 1.0, + "content": "consider four popular CSP tasks shown in Table 1: SPARC (sequential text-to-SQL), COSQL (con-", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 106, + 198, + 505, + 210 + ], + "spans": [ + { + "bbox": [ + 106, + 198, + 505, + 210 + ], + "score": 1.0, + "content": "versational text-to-SQL), MWOZ (dialogue state tracking), and SQA (weakly supervised sequential", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 106, + 209, + 465, + 222 + ], + "spans": [ + { + "bbox": [ + 106, + 209, + 465, + 222 + ], + "score": 1.0, + "content": "question answering). They have different target formal language and structured ontology:", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 6, + "bbox_fs": [ + 106, + 186, + 506, + 222 + ] + }, + { + "type": "list", + "bbox": [ + 106, + 226, + 506, + 303 + ], + "lines": [ + { + "bbox": [ + 106, + 225, + 506, + 238 + ], + "spans": [ + { + "bbox": [ + 106, + 225, + 190, + 238 + ], + "score": 1.0, + "content": "• For the utterance", + "type": "text" + }, + { + "bbox": [ + 190, + 228, + 198, + 236 + ], + "score": 0.63, + "content": "\\textbf { \\em u }", + "type": "inline_equation" + }, + { + "bbox": [ + 198, + 225, + 506, + 238 + ], + "score": 1.0, + "content": ", it is the user question for SPARC and SQA, while for COSQL and MWOZ,", + "type": "text" + } + ], + "index": 8, + "is_list_start_line": true + }, + { + "bbox": [ + 117, + 237, + 356, + 249 + ], + "spans": [ + { + "bbox": [ + 117, + 239, + 124, + 246 + ], + "score": 0.69, + "content": "u", + "type": "inline_equation" + }, + { + "bbox": [ + 124, + 237, + 356, + 249 + ], + "score": 1.0, + "content": "is the combination of a user query and a system response.", + "type": "text" + } + ], + "index": 9, + "is_list_end_line": true + }, + { + "bbox": [ + 106, + 248, + 505, + 260 + ], + "spans": [ + { + "bbox": [ + 106, + 248, + 187, + 260 + ], + "score": 1.0, + "content": "• For the database", + "type": "text" + }, + { + "bbox": [ + 188, + 248, + 195, + 258 + ], + "score": 0.58, + "content": "^ d", + "type": "inline_equation" + }, + { + "bbox": [ + 195, + 248, + 505, + 260 + ], + "score": 1.0, + "content": ", SPARC and COSQL use multi-table databases; for MWOZ, the pre-defined", + "type": "text" + } + ], + "index": 10, + "is_list_start_line": true + }, + { + "bbox": [ + 114, + 259, + 411, + 271 + ], + "spans": [ + { + "bbox": [ + 114, + 259, + 154, + 271 + ], + "score": 1.0, + "content": "ontology", + "type": "text" + }, + { + "bbox": [ + 154, + 259, + 161, + 269 + ], + "score": 0.71, + "content": "d", + "type": "inline_equation" + }, + { + "bbox": [ + 162, + 259, + 338, + 271 + ], + "score": 1.0, + "content": "can also be viewed as a database; for SQA,", + "type": "text" + }, + { + "bbox": [ + 338, + 259, + 344, + 269 + ], + "score": 0.73, + "content": "d", + "type": "inline_equation" + }, + { + "bbox": [ + 345, + 259, + 411, + 271 + ], + "score": 1.0, + "content": "is a single table.", + "type": "text" + } + ], + "index": 11, + "is_list_end_line": true + }, + { + "bbox": [ + 106, + 269, + 506, + 283 + ], + "spans": [ + { + "bbox": [ + 106, + 269, + 244, + 283 + ], + "score": 1.0, + "content": "• For the formal representation", + "type": "text" + }, + { + "bbox": [ + 244, + 271, + 251, + 281 + ], + "score": 0.69, + "content": "\\pmb q", + "type": "inline_equation" + }, + { + "bbox": [ + 251, + 269, + 506, + 283 + ], + "score": 1.0, + "content": ", it is the SQL query for SPARC and COSQL; in MWOZ it is", + "type": "text" + } + ], + "index": 12, + "is_list_start_line": true + }, + { + "bbox": [ + 115, + 280, + 505, + 293 + ], + "spans": [ + { + "bbox": [ + 115, + 280, + 505, + 293 + ], + "score": 1.0, + "content": "the slot-value pairs that can be viewed as simple SQL queries consisting of SELECT and WHERE", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 116, + 291, + 302, + 304 + ], + "spans": [ + { + "bbox": [ + 116, + 291, + 208, + 304 + ], + "score": 1.0, + "content": "clauses; and for SQA,", + "type": "text" + }, + { + "bbox": [ + 208, + 294, + 214, + 303 + ], + "score": 0.78, + "content": "q", + "type": "inline_equation" + }, + { + "bbox": [ + 214, + 291, + 302, + 304 + ], + "score": 1.0, + "content": "is the latent program.", + "type": "text" + } + ], + "index": 14, + "is_list_end_line": true + } + ], + "index": 11, + "bbox_fs": [ + 106, + 225, + 506, + 304 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 314, + 505, + 373 + ], + "lines": [ + { + "bbox": [ + 105, + 313, + 505, + 327 + ], + "spans": [ + { + "bbox": [ + 105, + 313, + 505, + 327 + ], + "score": 1.0, + "content": "Base Architecture The base architecture of SCORE takes as input a single turn of a CSP dialog", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 107, + 326, + 506, + 338 + ], + "spans": [ + { + "bbox": [ + 107, + 326, + 138, + 338 + ], + "score": 0.93, + "content": "\\left. u _ { t } , h _ { t } \\right.", + "type": "inline_equation" + }, + { + "bbox": [ + 138, + 326, + 324, + 338 + ], + "score": 1.0, + "content": "jointly with the underlying database schema", + "type": "text" + }, + { + "bbox": [ + 325, + 328, + 330, + 335 + ], + "score": 0.57, + "content": "c", + "type": "inline_equation" + }, + { + "bbox": [ + 331, + 326, + 506, + 338 + ], + "score": 1.0, + "content": ". Given this contextualized conversational", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 337, + 506, + 351 + ], + "spans": [ + { + "bbox": [ + 105, + 337, + 131, + 351 + ], + "score": 1.0, + "content": "input", + "type": "text" + }, + { + "bbox": [ + 131, + 338, + 195, + 350 + ], + "score": 0.92, + "content": "C _ { t } = \\langle u _ { t } , h _ { t } , c \\rangle", + "type": "inline_equation" + }, + { + "bbox": [ + 195, + 337, + 478, + 351 + ], + "score": 1.0, + "content": ", SCORE encodes it into contextualized conversation representations", + "type": "text" + }, + { + "bbox": [ + 478, + 337, + 489, + 350 + ], + "score": 0.9, + "content": "\\vec { S } _ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 490, + 337, + 506, + 351 + ], + "score": 1.0, + "content": "for", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 106, + 349, + 505, + 362 + ], + "spans": [ + { + "bbox": [ + 106, + 349, + 162, + 362 + ], + "score": 1.0, + "content": "each token in", + "type": "text" + }, + { + "bbox": [ + 162, + 351, + 173, + 361 + ], + "score": 0.88, + "content": "C _ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 174, + 349, + 505, + 362 + ], + "score": 1.0, + "content": ". The encoder architecture follows RoBERTa (Liu et al., 2019b). It is then followed", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 360, + 506, + 374 + ], + "spans": [ + { + "bbox": [ + 105, + 362, + 431, + 374 + ], + "score": 1.0, + "content": "by a linear layer and normalized (Ba et al., 2016) to produce final representations", + "type": "text" + }, + { + "bbox": [ + 432, + 360, + 443, + 373 + ], + "score": 0.9, + "content": "\\vec { h } _ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 443, + 362, + 506, + 374 + ], + "score": 1.0, + "content": "for each token:", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 17, + "bbox_fs": [ + 105, + 313, + 506, + 374 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 115, + 376, + 482, + 390 + ], + "lines": [ + { + "bbox": [ + 115, + 376, + 482, + 390 + ], + "spans": [ + { + "bbox": [ + 115, + 376, + 482, + 390 + ], + "score": 0.71, + "content": "C _ { t } = \\langle u _ { t } , h _ { t } , c \\rangle , \\ \\vec { S } _ { t } = \\mathrm { R o B E R T A } ( C _ { t } ) , \\ h _ { t , i } = \\mathrm { L a y e r N o r m } ( \\mathrm { G E L U } ( W _ { 1 } S _ { t , i } ) ) \\ \\forall S _ { t , i } \\in \\vec { S } _ { t } ,", + "type": "interline_equation", + "image_path": "6dc9fe52a1ca2f161dcba029a49a3d12e81e554d8c01dfacd7ff981f1c020b50.jpg" + } + ] + } + ], + "index": 20, + "virtual_lines": [ + { + "bbox": [ + 115, + 376, + 482, + 390 + ], + "spans": [], + "index": 20 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 392, + 504, + 404 + ], + "lines": [ + { + "bbox": [ + 106, + 392, + 506, + 406 + ], + "spans": [ + { + "bbox": [ + 106, + 392, + 369, + 406 + ], + "score": 1.0, + "content": "where GELU is an activation by Hendrycks & Gimpel (2016) and", + "type": "text" + }, + { + "bbox": [ + 369, + 393, + 385, + 403 + ], + "score": 0.89, + "content": "W _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 385, + 392, + 506, + 406 + ], + "score": 1.0, + "content": "is a learned parameter matrix.", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 21, + "bbox_fs": [ + 106, + 392, + 506, + 406 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 409, + 505, + 465 + ], + "lines": [ + { + "bbox": [ + 105, + 408, + 505, + 422 + ], + "spans": [ + { + "bbox": [ + 105, + 408, + 142, + 422 + ], + "score": 1.0, + "content": "To build", + "type": "text" + }, + { + "bbox": [ + 142, + 410, + 154, + 420 + ], + "score": 0.88, + "content": "C _ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 154, + 408, + 315, + 422 + ], + "score": 1.0, + "content": ", we first concatenate current utterances", + "type": "text" + }, + { + "bbox": [ + 315, + 411, + 326, + 420 + ], + "score": 0.85, + "content": "u _ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 326, + 408, + 402, + 422 + ], + "score": 1.0, + "content": "and dialog history", + "type": "text" + }, + { + "bbox": [ + 402, + 410, + 413, + 420 + ], + "score": 0.87, + "content": "h _ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 413, + 408, + 505, + 422 + ], + "score": 1.0, + "content": "separated by a special", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 419, + 505, + 434 + ], + "spans": [ + { + "bbox": [ + 105, + 419, + 131, + 434 + ], + "score": 1.0, + "content": "token", + "type": "text" + }, + { + "bbox": [ + 131, + 422, + 148, + 431 + ], + "score": 0.86, + "content": "< s >", + "type": "inline_equation" + }, + { + "bbox": [ + 149, + 419, + 505, + 434 + ], + "score": 1.0, + "content": ", as this simple strategy has been shown effective in state-of-the-art CSP systems (Zhang", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 430, + 506, + 444 + ], + "spans": [ + { + "bbox": [ + 105, + 430, + 130, + 444 + ], + "score": 1.0, + "content": "et al.,", + "type": "text" + }, + { + "bbox": [ + 130, + 432, + 155, + 442 + ], + "score": 0.43, + "content": "2 0 1 9 \\mathrm { c }", + "type": "inline_equation" + }, + { + "bbox": [ + 155, + 430, + 506, + 444 + ], + "score": 1.0, + "content": "; Wu et al., 2019; Liu et al., 2020; Heck et al., 2020). To incorporate the database schema,", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 442, + 505, + 455 + ], + "spans": [ + { + "bbox": [ + 105, + 442, + 505, + 455 + ], + "score": 1.0, + "content": "we follow Hwang et al. (2019) to concatenate all column names as a single sequence. Column names", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 106, + 453, + 459, + 466 + ], + "spans": [ + { + "bbox": [ + 106, + 453, + 243, + 466 + ], + "score": 1.0, + "content": "are separated by the special token", + "type": "text" + }, + { + "bbox": [ + 243, + 454, + 266, + 464 + ], + "score": 0.88, + "content": "< / \\varsigma >", + "type": "inline_equation" + }, + { + "bbox": [ + 266, + 453, + 459, + 466 + ], + "score": 1.0, + "content": "and prefixed by their corresponding table name.", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 24, + "bbox_fs": [ + 105, + 408, + 506, + 466 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 477, + 230, + 488 + ], + "lines": [ + { + "bbox": [ + 105, + 476, + 231, + 490 + ], + "spans": [ + { + "bbox": [ + 105, + 476, + 231, + 490 + ], + "score": 1.0, + "content": "2.2 SCORE PRE-TRAINING", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 27 + }, + { + "type": "text", + "bbox": [ + 106, + 497, + 505, + 553 + ], + "lines": [ + { + "bbox": [ + 106, + 497, + 506, + 511 + ], + "spans": [ + { + "bbox": [ + 106, + 497, + 506, + 511 + ], + "score": 1.0, + "content": "SCORE addresses the challenges of CSP by pre-training a task-oriented language model contextual-", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 106, + 509, + 505, + 521 + ], + "spans": [ + { + "bbox": [ + 106, + 509, + 505, + 521 + ], + "score": 1.0, + "content": "ized by the conversational flow and the underlying ontology. In pre-training, the SCORE model is", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 104, + 517, + 506, + 535 + ], + "spans": [ + { + "bbox": [ + 104, + 517, + 506, + 535 + ], + "score": 1.0, + "content": "self-supervised by two novel objectives in addition to the established Masked Language Modeling", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 106, + 531, + 504, + 543 + ], + "spans": [ + { + "bbox": [ + 106, + 531, + 504, + 543 + ], + "score": 1.0, + "content": "(MLM) objective. These objectives facilitate the accurate representation of the conversational flow", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 540, + 446, + 556 + ], + "spans": [ + { + "bbox": [ + 105, + 540, + 446, + 556 + ], + "score": 1.0, + "content": "between dialog turns and how this flow maps to the desired columns in the ontology.", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 30, + "bbox_fs": [ + 104, + 497, + 506, + 556 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 564, + 505, + 664 + ], + "lines": [ + { + "bbox": [ + 106, + 563, + 506, + 578 + ], + "spans": [ + { + "bbox": [ + 106, + 563, + 506, + 578 + ], + "score": 1.0, + "content": "Column Contextual Semantics The first challenge of CSP is capturing the alignment between", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 106, + 576, + 505, + 589 + ], + "spans": [ + { + "bbox": [ + 106, + 576, + 505, + 589 + ], + "score": 1.0, + "content": "the natural language utterance and the underlying database schema. To address it, we optimize the", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 106, + 587, + 505, + 599 + ], + "spans": [ + { + "bbox": [ + 106, + 587, + 505, + 599 + ], + "score": 1.0, + "content": "SCORE model with the auxiliary objective of Column Contextual Semantics (CCS). For each column", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 597, + 506, + 610 + ], + "spans": [ + { + "bbox": [ + 105, + 597, + 201, + 610 + ], + "score": 1.0, + "content": "in the database schema", + "type": "text" + }, + { + "bbox": [ + 202, + 600, + 207, + 608 + ], + "score": 0.54, + "content": "c", + "type": "inline_equation" + }, + { + "bbox": [ + 208, + 597, + 506, + 610 + ], + "score": 1.0, + "content": ", CCS targets the operations that should be performed on this column in a", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 106, + 609, + 505, + 622 + ], + "spans": [ + { + "bbox": [ + 106, + 609, + 373, + 622 + ], + "score": 1.0, + "content": "given conversational turn. Specifically, each formal representation", + "type": "text" + }, + { + "bbox": [ + 374, + 610, + 380, + 620 + ], + "score": 0.78, + "content": "q", + "type": "inline_equation" + }, + { + "bbox": [ + 380, + 609, + 505, + 622 + ], + "score": 1.0, + "content": "is decomposed into operations", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 619, + 505, + 633 + ], + "spans": [ + { + "bbox": [ + 105, + 619, + 505, + 633 + ], + "score": 1.0, + "content": "on columns and tables, e.g. GROUP BY and HAVING for SQL queries, or WHERE for the slot-value", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 630, + 505, + 644 + ], + "spans": [ + { + "bbox": [ + 105, + 630, + 505, + 644 + ], + "score": 1.0, + "content": "pairs. In this way, our data covers 148 column operations. We use the encoding of the special", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 642, + 505, + 655 + ], + "spans": [ + { + "bbox": [ + 105, + 642, + 131, + 655 + ], + "score": 1.0, + "content": "token", + "type": "text" + }, + { + "bbox": [ + 131, + 642, + 154, + 652 + ], + "score": 0.88, + "content": "< / \\varsigma >", + "type": "inline_equation" + }, + { + "bbox": [ + 154, + 642, + 505, + 655 + ], + "score": 1.0, + "content": "right before each column or table name to predict its corresponding operations, and then", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 653, + 200, + 665 + ], + "spans": [ + { + "bbox": [ + 105, + 653, + 200, + 665 + ], + "score": 1.0, + "content": "compute the CCS loss:", + "type": "text" + } + ], + "index": 41 + } + ], + "index": 37, + "bbox_fs": [ + 105, + 563, + 506, + 665 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 163, + 666, + 447, + 686 + ], + "lines": [ + { + "bbox": [ + 163, + 666, + 447, + 686 + ], + "spans": [ + { + "bbox": [ + 163, + 666, + 447, + 686 + ], + "score": 0.91, + "content": "{ \\mathcal { L } } _ { \\mathrm { C C S } } ( C _ { t } ) = \\sum _ { i \\in c } { \\mathrm { C r o s s E n t r o p y } } _ { 1 4 8 } ( { \\mathrm { L a y e r N o r m } } ( W _ { 2 } h _ { t , i } ^ { c } ) , { \\mathrm { C C S } } ( q _ { t } ) )", + "type": "interline_equation", + "image_path": "8c1af7f0bc82204522aea400039a7f1c8631328fbe6b2fc50c318f020b2df77c.jpg" + } + ] + } + ], + "index": 42, + "virtual_lines": [ + { + "bbox": [ + 163, + 666, + 447, + 686 + ], + "spans": [], + "index": 42 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 686, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 686, + 506, + 699 + ], + "spans": [ + { + "bbox": [ + 105, + 686, + 132, + 699 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 132, + 687, + 149, + 699 + ], + "score": 0.91, + "content": "h _ { t , i } ^ { c }", + "type": "inline_equation" + }, + { + "bbox": [ + 149, + 686, + 315, + 699 + ], + "score": 1.0, + "content": "is the contextualized representation of the", + "type": "text" + }, + { + "bbox": [ + 316, + 686, + 326, + 696 + ], + "score": 0.85, + "content": "i ^ { \\mathrm { { t h } } }", + "type": "inline_equation" + }, + { + "bbox": [ + 327, + 686, + 419, + 699 + ], + "score": 1.0, + "content": "column’s special token", + "type": "text" + }, + { + "bbox": [ + 419, + 687, + 442, + 697 + ], + "score": 0.89, + "content": "< / \\varsigma >", + "type": "inline_equation" + }, + { + "bbox": [ + 442, + 686, + 506, + 699 + ], + "score": 1.0, + "content": "in the contextu-", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 697, + 507, + 713 + ], + "spans": [ + { + "bbox": [ + 105, + 697, + 155, + 713 + ], + "score": 1.0, + "content": "alized input", + "type": "text" + }, + { + "bbox": [ + 155, + 699, + 167, + 710 + ], + "score": 0.85, + "content": "C _ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 167, + 697, + 171, + 713 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 171, + 699, + 207, + 711 + ], + "score": 0.88, + "content": "\\operatorname { C C S } ( q _ { t } )", + "type": "inline_equation" + }, + { + "bbox": [ + 207, + 697, + 493, + 713 + ], + "score": 1.0, + "content": "returns the column operation label for the current formal representation", + "type": "text" + }, + { + "bbox": [ + 493, + 701, + 502, + 710 + ], + "score": 0.81, + "content": "q _ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 502, + 697, + 507, + 713 + ], + "score": 1.0, + "content": ",", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 709, + 506, + 723 + ], + "spans": [ + { + "bbox": [ + 105, + 709, + 161, + 723 + ], + "score": 1.0, + "content": "CrossEntropy", + "type": "text" + }, + { + "bbox": [ + 162, + 712, + 175, + 721 + ], + "score": 0.61, + "content": "^ { 1 4 8 }", + "type": "inline_equation" + }, + { + "bbox": [ + 175, + 709, + 506, + 723 + ], + "score": 1.0, + "content": "computes the 148-way cross-entropy between the column operation prediction and", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 106, + 721, + 286, + 732 + ], + "spans": [ + { + "bbox": [ + 106, + 721, + 148, + 732 + ], + "score": 1.0, + "content": "label, and", + "type": "text" + }, + { + "bbox": [ + 148, + 721, + 164, + 732 + ], + "score": 0.9, + "content": "W _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 165, + 721, + 286, + 732 + ], + "score": 1.0, + "content": "is a learned parameter matrix.", + "type": "text" + } + ], + "index": 46 + } + ], + "index": 44.5, + "bbox_fs": [ + 105, + 686, + 507, + 732 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "image", + "bbox": [ + 138, + 78, + 474, + 168 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 138, + 78, + 474, + 168 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 138, + 78, + 474, + 168 + ], + "spans": [ + { + "bbox": [ + 138, + 78, + 474, + 168 + ], + "score": 0.96, + "type": "image", + "image_path": "a26fd1e21b056c19bb034c1f12fdaf1d1a572af164e6b8ac9602885a9dd040ef.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 138, + 78, + 474, + 108.0 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 138, + 108.0, + 474, + 138.0 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 138, + 138.0, + 474, + 168.0 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 117, + 180, + 491, + 193 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 117, + 180, + 493, + 194 + ], + "spans": [ + { + "bbox": [ + 117, + 180, + 493, + 194 + ], + "score": 1.0, + "content": "Dialogs Formal Programs DatabaseFigure 2: Pre-training of a SCORE encoder on a SPARC text-to-SQL example from Figure 1.", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 3 + } + ], + "index": 2.0 + }, + { + "type": "text", + "bbox": [ + 107, + 214, + 505, + 259 + ], + "lines": [ + { + "bbox": [ + 106, + 213, + 506, + 227 + ], + "spans": [ + { + "bbox": [ + 106, + 213, + 506, + 227 + ], + "score": 1.0, + "content": "Usr: Also show the names of their publishers. SELECT t1.title, t1.name, t3.name FROM author AS t1 JOIN book Book: id | title | author id | … | sale_amountTurn Contextual Switch The second challenge of CSP is capturing the conversational context", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 226, + 505, + 237 + ], + "spans": [ + { + "bbox": [ + 105, + 226, + 505, + 237 + ], + "score": 1.0, + "content": "t3.id ORDER BY t2.sale_amount DESC LIMIT 3flow and how it is grounded into the formal representations. The TCS objective aims to capture this", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 236, + 505, + 249 + ], + "spans": [ + { + "bbox": [ + 105, + 236, + 505, + 249 + ], + "score": 1.0, + "content": "Usr: I am looking for a cheap restaurant in the Restaurant(Price=cheap, area=center)grounding of context flow. To this end, it targets predicting the difference in formal representations", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 247, + 355, + 260 + ], + "spans": [ + { + "bbox": [ + 105, + 247, + 355, + 260 + ], + "score": 1.0, + "content": "Sys: There is a cheap chinese restaurant called between dialog turns based on the natural language utterance.", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 5.5 + }, + { + "type": "text", + "bbox": [ + 107, + 263, + 505, + 353 + ], + "lines": [ + { + "bbox": [ + 105, + 264, + 506, + 277 + ], + "spans": [ + { + "bbox": [ + 105, + 264, + 506, + 277 + ], + "score": 1.0, + "content": "… ... Taxi: leaveAt | … | destinationBased on the context-free grammar of SQL, we identify 26 possible turn difference operations that a", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 275, + 507, + 288 + ], + "spans": [ + { + "bbox": [ + 105, + 275, + 507, + 288 + ], + "score": 1.0, + "content": "Usr: I also need to book a taxi between to the restaurant at 20:30. Restaurant(price=cheap, area=center, name=Dojo Noodle Bar, people=8, time=18:30, day=Thursday)conversational turn could elicit. They encode changes between different turns of user queries (the sys-", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 106, + 287, + 506, + 298 + ], + "spans": [ + { + "bbox": [ + 106, + 287, + 506, + 298 + ], + "score": 1.0, + "content": "Sys: The taxi is booked. tem response is not involved here) since we assume that most turn contextual shifts are from the user.", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 296, + 505, + 310 + ], + "spans": [ + { + "bbox": [ + 105, + 296, + 505, + 310 + ], + "score": 1.0, + "content": "For example, INS(WHERE) indicates inserting a new WHERE condition and DEL(SELECT.agg)", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 308, + 506, + 321 + ], + "spans": [ + { + "bbox": [ + 105, + 308, + 506, + 321 + ], + "score": 1.0, + "content": "indicates removing an aggregate operation from a SELECT statement (e.g. when an utterance “Show", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 318, + 505, + 331 + ], + "spans": [ + { + "bbox": [ + 105, + 318, + 381, + 331 + ], + "score": 1.0, + "content": "all the ages instead.” elicits a change SELECT MAX(age) ...", + "type": "text" + }, + { + "bbox": [ + 381, + 320, + 395, + 330 + ], + "score": 0.67, + "content": "", + "type": "inline_equation" + }, + { + "bbox": [ + 396, + 318, + 505, + 331 + ], + "score": 1.0, + "content": "SELECT age ...). We", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 330, + 505, + 342 + ], + "spans": [ + { + "bbox": [ + 105, + 330, + 255, + 342 + ], + "score": 1.0, + "content": "use the encoding of the special token", + "type": "text" + }, + { + "bbox": [ + 256, + 331, + 279, + 340 + ], + "score": 0.87, + "content": "< / \\varsigma >", + "type": "inline_equation" + }, + { + "bbox": [ + 279, + 330, + 505, + 342 + ], + "score": 1.0, + "content": "right before each turn to predict the context switch label", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 340, + 279, + 354 + ], + "spans": [ + { + "bbox": [ + 105, + 340, + 279, + 354 + ], + "score": 1.0, + "content": "between this turn and the previous history:", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 11.5 + }, + { + "type": "interline_equation", + "bbox": [ + 170, + 359, + 441, + 374 + ], + "lines": [ + { + "bbox": [ + 170, + 359, + 441, + 374 + ], + "spans": [ + { + "bbox": [ + 170, + 359, + 441, + 374 + ], + "score": 0.87, + "content": "\\mathcal { L } _ { \\mathrm { T C S } } ( C _ { t } ) = \\mathrm { C r o s s E n t r o p y } _ { 2 6 } ( \\mathrm { L a y e r N o r m } ( W _ { 3 } H _ { t } ^ { s } ) , \\mathrm { T C S } ( q _ { t } , q _ { t - 1 } ) )", + "type": "interline_equation", + "image_path": "e1202ac31ef3a936c1c3594458ef5092648f9423fe702af3f8f1b3b042f5f91e.jpg" + } + ] + } + ], + "index": 16, + "virtual_lines": [ + { + "bbox": [ + 170, + 359, + 441, + 374 + ], + "spans": [], + "index": 16 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 380, + 505, + 437 + ], + "lines": [ + { + "bbox": [ + 104, + 378, + 506, + 396 + ], + "spans": [ + { + "bbox": [ + 104, + 378, + 133, + 396 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 134, + 380, + 200, + 393 + ], + "score": 0.92, + "content": "\\pmb { H } _ { t } ^ { s } \\in \\mathbb { R } ^ { ( t - 1 ) \\times d }", + "type": "inline_equation" + }, + { + "bbox": [ + 200, + 378, + 441, + 396 + ], + "score": 1.0, + "content": "is the contextualized representation of all previous turns in", + "type": "text" + }, + { + "bbox": [ + 441, + 382, + 453, + 393 + ], + "score": 0.87, + "content": "C _ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 453, + 378, + 506, + 396 + ], + "score": 1.0, + "content": "with hidden", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 391, + 506, + 406 + ], + "spans": [ + { + "bbox": [ + 105, + 391, + 152, + 406 + ], + "score": 1.0, + "content": "dimension", + "type": "text" + }, + { + "bbox": [ + 153, + 393, + 159, + 402 + ], + "score": 0.62, + "content": "d", + "type": "inline_equation" + }, + { + "bbox": [ + 159, + 391, + 163, + 406 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 164, + 393, + 221, + 405 + ], + "score": 0.89, + "content": "\\mathrm { T C S } ( q _ { t } , q _ { t - 1 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 221, + 391, + 404, + 406 + ], + "score": 1.0, + "content": "returns the turn difference operations from", + "type": "text" + }, + { + "bbox": [ + 404, + 394, + 423, + 404 + ], + "score": 0.87, + "content": "q _ { t - 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 424, + 391, + 436, + 406 + ], + "score": 1.0, + "content": "to", + "type": "text" + }, + { + "bbox": [ + 437, + 394, + 446, + 404 + ], + "score": 0.85, + "content": "q _ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 446, + 391, + 469, + 406 + ], + "score": 1.0, + "content": ", and", + "type": "text" + }, + { + "bbox": [ + 469, + 393, + 486, + 403 + ], + "score": 0.9, + "content": "W _ { 3 }", + "type": "inline_equation" + }, + { + "bbox": [ + 486, + 391, + 506, + 406 + ], + "score": 1.0, + "content": "is a", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 402, + 506, + 416 + ], + "spans": [ + { + "bbox": [ + 105, + 402, + 506, + 416 + ], + "score": 1.0, + "content": "learned parameter matrix. We don’t use this objective to pre-train SCORE for MWOZ because", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 413, + 505, + 428 + ], + "spans": [ + { + "bbox": [ + 105, + 413, + 505, + 428 + ], + "score": 1.0, + "content": "the context switch label between turns is relatively simple in MWOZ (only select and where", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 423, + 148, + 439 + ], + "spans": [ + { + "bbox": [ + 105, + 423, + 148, + 439 + ], + "score": 1.0, + "content": "changes).", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 19 + }, + { + "type": "text", + "bbox": [ + 106, + 450, + 506, + 517 + ], + "lines": [ + { + "bbox": [ + 105, + 450, + 506, + 463 + ], + "spans": [ + { + "bbox": [ + 105, + 450, + 506, + 463 + ], + "score": 1.0, + "content": "Masked Language Modeling As in prior work on large-scale language models (Devlin et al.,", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 461, + 506, + 474 + ], + "spans": [ + { + "bbox": [ + 105, + 461, + 506, + 474 + ], + "score": 1.0, + "content": "2019), we use the Masked Language Modeling (MLM) objective to facilitate contextual representation", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 472, + 506, + 486 + ], + "spans": [ + { + "bbox": [ + 105, + 472, + 506, + 486 + ], + "score": 1.0, + "content": "learning for natural language utterances. Importantly for regularization, we only apply this loss", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 483, + 506, + 496 + ], + "spans": [ + { + "bbox": [ + 105, + 483, + 506, + 496 + ], + "score": 1.0, + "content": "on in-domain human-annotated natural language data. Namely, it includes utterances in SPARC,", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 106, + 495, + 506, + 507 + ], + "spans": [ + { + "bbox": [ + 106, + 495, + 506, + 507 + ], + "score": 1.0, + "content": "COSQL, and SQA as well as nine task-oriented dialog datasets processed by Wu et al. (2020) for", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 505, + 416, + 519 + ], + "spans": [ + { + "bbox": [ + 105, + 505, + 416, + 519 + ], + "score": 1.0, + "content": "MWOZ (see data statistics in Figure 4). Formally, the MLM loss is given by:", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 24.5 + }, + { + "type": "interline_equation", + "bbox": [ + 185, + 523, + 424, + 550 + ], + "lines": [ + { + "bbox": [ + 185, + 523, + 424, + 550 + ], + "spans": [ + { + "bbox": [ + 185, + 523, + 424, + 550 + ], + "score": 0.91, + "content": "\\mathcal { L } _ { \\mathrm { M L M } } ( C _ { t } ) = \\sum _ { m } \\mathrm { C r o s s E n t r o p y } _ { \\mathrm { V o c a b } } ( \\mathrm { L a y e r N o r m } ( W _ { 4 } h _ { t } ^ { m } ) )", + "type": "interline_equation", + "image_path": "889a4d0de1ea09ca336c8b8aceff019d5ae79e1d25413a1afb2d480273927a4d.jpg" + } + ] + } + ], + "index": 28.5, + "virtual_lines": [ + { + "bbox": [ + 185, + 523, + 424, + 536.5 + ], + "spans": [], + "index": 28 + }, + { + "bbox": [ + 185, + 536.5, + 424, + 550.0 + ], + "spans": [], + "index": 29 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 556, + 504, + 579 + ], + "lines": [ + { + "bbox": [ + 105, + 555, + 506, + 569 + ], + "spans": [ + { + "bbox": [ + 105, + 555, + 133, + 569 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 133, + 557, + 149, + 568 + ], + "score": 0.89, + "content": "\\pmb { h } _ { t } ^ { m }", + "type": "inline_equation" + }, + { + "bbox": [ + 149, + 555, + 366, + 569 + ], + "score": 1.0, + "content": "are the contextualized representations of the masked", + "type": "text" + }, + { + "bbox": [ + 366, + 557, + 386, + 567 + ], + "score": 0.87, + "content": "15 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 386, + 555, + 437, + 569 + ], + "score": 1.0, + "content": "of tokens in", + "type": "text" + }, + { + "bbox": [ + 438, + 557, + 449, + 568 + ], + "score": 0.89, + "content": "C _ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 450, + 555, + 471, + 569 + ], + "score": 1.0, + "content": ", and", + "type": "text" + }, + { + "bbox": [ + 471, + 557, + 487, + 568 + ], + "score": 0.9, + "content": "W _ { 4 }", + "type": "inline_equation" + }, + { + "bbox": [ + 487, + 555, + 506, + 569 + ], + "score": 1.0, + "content": "is a", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 106, + 568, + 212, + 579 + ], + "spans": [ + { + "bbox": [ + 106, + 568, + 212, + 579 + ], + "score": 1.0, + "content": "learned parameter matrix.", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 30.5 + }, + { + "type": "text", + "bbox": [ + 106, + 592, + 505, + 671 + ], + "lines": [ + { + "bbox": [ + 105, + 591, + 504, + 607 + ], + "spans": [ + { + "bbox": [ + 105, + 591, + 486, + 607 + ], + "score": 1.0, + "content": "Pre-Training Setup and Steps To summarize the pre-training steps, we first collect a dataset", + "type": "text" + }, + { + "bbox": [ + 486, + 594, + 504, + 604 + ], + "score": 0.88, + "content": "\\mathcal { D } _ { \\mathrm { n a t } }", + "type": "inline_equation" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 604, + 505, + 617 + ], + "spans": [ + { + "bbox": [ + 105, + 604, + 505, + 617 + ], + "score": 1.0, + "content": "of combined human-annotated natural language questions (without labels) from existing CSP tasks", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 615, + 505, + 628 + ], + "spans": [ + { + "bbox": [ + 105, + 615, + 397, + 628 + ], + "score": 1.0, + "content": "(as mentioned above), and create a large synthesized conversational data", + "type": "text" + }, + { + "bbox": [ + 397, + 615, + 417, + 627 + ], + "score": 0.91, + "content": "\\mathcal { D } _ { \\mathrm { s y n } }", + "type": "inline_equation" + }, + { + "bbox": [ + 417, + 615, + 505, + 628 + ], + "score": 1.0, + "content": "that is generated by a", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 104, + 626, + 506, + 639 + ], + "spans": [ + { + "bbox": [ + 104, + 626, + 506, + 639 + ], + "score": 1.0, + "content": "grammar induced from a small set of SPARC annotated examples (See 2.3). After that, we incorporate", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 636, + 505, + 650 + ], + "spans": [ + { + "bbox": [ + 105, + 636, + 505, + 650 + ], + "score": 1.0, + "content": "both two datasets in pre-training. More specifically, synthetic and natural examples are randomly", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 106, + 648, + 505, + 661 + ], + "spans": [ + { + "bbox": [ + 106, + 648, + 505, + 661 + ], + "score": 1.0, + "content": "sampled during pre-training. The total pre-training loss is the sum of the three objectives with CCS", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 658, + 323, + 673 + ], + "spans": [ + { + "bbox": [ + 105, + 658, + 206, + 673 + ], + "score": 1.0, + "content": "and TCS only applied to", + "type": "text" + }, + { + "bbox": [ + 207, + 659, + 226, + 671 + ], + "score": 0.91, + "content": "\\mathcal { D } _ { \\mathrm { s y n } }", + "type": "inline_equation" + }, + { + "bbox": [ + 226, + 658, + 300, + 673 + ], + "score": 1.0, + "content": "and MLM only to", + "type": "text" + }, + { + "bbox": [ + 300, + 659, + 318, + 670 + ], + "score": 0.91, + "content": "\\mathcal { D } _ { \\mathrm { n a t } }", + "type": "inline_equation" + }, + { + "bbox": [ + 318, + 658, + 323, + 673 + ], + "score": 1.0, + "content": ":", + "type": "text" + } + ], + "index": 38 + } + ], + "index": 35 + }, + { + "type": "interline_equation", + "bbox": [ + 173, + 677, + 437, + 700 + ], + "lines": [ + { + "bbox": [ + 173, + 677, + 437, + 700 + ], + "spans": [ + { + "bbox": [ + 173, + 677, + 437, + 700 + ], + "score": 0.91, + "content": "\\mathcal { L } = \\sum _ { C _ { t } \\in \\mathcal { D } _ { \\mathrm { s y n } } } \\left( \\mathcal { L } _ { \\mathrm { C C S } } ( C _ { t } ) + \\mathcal { L } _ { \\mathrm { T C S } } ( C _ { t } ) \\right) + \\sum _ { C _ { t } \\in \\mathcal { D } _ { \\mathrm { n a t } } } \\mathcal { L } _ { \\mathrm { M L M } } ( C _ { t } )", + "type": "interline_equation", + "image_path": "46d20e8e6527469f7ca88c59d32b1a66d3565728e9e615f3732968fcd6703a6e.jpg" + } + ] + } + ], + "index": 39, + "virtual_lines": [ + { + "bbox": [ + 173, + 677, + 437, + 700 + ], + "spans": [], + "index": 39 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 709, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 709, + 507, + 722 + ], + "spans": [ + { + "bbox": [ + 106, + 709, + 507, + 722 + ], + "score": 1.0, + "content": "Figure 2 shows an overview of SCORE pre-training on an example SPARC dialogue from Figure 1.", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 106, + 720, + 506, + 733 + ], + "spans": [ + { + "bbox": [ + 106, + 720, + 506, + 733 + ], + "score": 1.0, + "content": "We report additional implementation details for pre-training SCORE in Section 3.3 and Appendix C.", + "type": "text" + } + ], + "index": 41 + } + ], + "index": 40.5 + } + ], + "page_idx": 3, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 27, + 292, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 26, + 293, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 26, + 293, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2021", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 302, + 751, + 308, + 759 + ], + "lines": [ + { + "bbox": [ + 301, + 750, + 309, + 762 + ], + "spans": [ + { + "bbox": [ + 301, + 750, + 309, + 762 + ], + "score": 1.0, + "content": "", + "type": "text", + "height": 12, + "width": 8 + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "image", + "bbox": [ + 138, + 78, + 474, + 168 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 138, + 78, + 474, + 168 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 138, + 78, + 474, + 168 + ], + "spans": [ + { + "bbox": [ + 138, + 78, + 474, + 168 + ], + "score": 0.96, + "type": "image", + "image_path": "a26fd1e21b056c19bb034c1f12fdaf1d1a572af164e6b8ac9602885a9dd040ef.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 138, + 78, + 474, + 108.0 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 138, + 108.0, + 474, + 138.0 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 138, + 138.0, + 474, + 168.0 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 117, + 180, + 491, + 193 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 117, + 180, + 493, + 194 + ], + "spans": [ + { + "bbox": [ + 117, + 180, + 493, + 194 + ], + "score": 1.0, + "content": "Dialogs Formal Programs DatabaseFigure 2: Pre-training of a SCORE encoder on a SPARC text-to-SQL example from Figure 1.", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 3 + } + ], + "index": 2.0 + }, + { + "type": "text", + "bbox": [ + 107, + 214, + 505, + 259 + ], + "lines": [ + { + "bbox": [ + 106, + 213, + 506, + 227 + ], + "spans": [ + { + "bbox": [ + 106, + 213, + 506, + 227 + ], + "score": 1.0, + "content": "Usr: Also show the names of their publishers. SELECT t1.title, t1.name, t3.name FROM author AS t1 JOIN book Book: id | title | author id | … | sale_amountTurn Contextual Switch The second challenge of CSP is capturing the conversational context", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 226, + 505, + 237 + ], + "spans": [ + { + "bbox": [ + 105, + 226, + 505, + 237 + ], + "score": 1.0, + "content": "t3.id ORDER BY t2.sale_amount DESC LIMIT 3flow and how it is grounded into the formal representations. The TCS objective aims to capture this", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 236, + 505, + 249 + ], + "spans": [ + { + "bbox": [ + 105, + 236, + 505, + 249 + ], + "score": 1.0, + "content": "Usr: I am looking for a cheap restaurant in the Restaurant(Price=cheap, area=center)grounding of context flow. To this end, it targets predicting the difference in formal representations", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 247, + 355, + 260 + ], + "spans": [ + { + "bbox": [ + 105, + 247, + 355, + 260 + ], + "score": 1.0, + "content": "Sys: There is a cheap chinese restaurant called between dialog turns based on the natural language utterance.", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 5.5, + "bbox_fs": [ + 105, + 213, + 506, + 260 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 263, + 505, + 353 + ], + "lines": [ + { + "bbox": [ + 105, + 264, + 506, + 277 + ], + "spans": [ + { + "bbox": [ + 105, + 264, + 506, + 277 + ], + "score": 1.0, + "content": "… ... Taxi: leaveAt | … | destinationBased on the context-free grammar of SQL, we identify 26 possible turn difference operations that a", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 275, + 507, + 288 + ], + "spans": [ + { + "bbox": [ + 105, + 275, + 507, + 288 + ], + "score": 1.0, + "content": "Usr: I also need to book a taxi between to the restaurant at 20:30. Restaurant(price=cheap, area=center, name=Dojo Noodle Bar, people=8, time=18:30, day=Thursday)conversational turn could elicit. They encode changes between different turns of user queries (the sys-", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 106, + 287, + 506, + 298 + ], + "spans": [ + { + "bbox": [ + 106, + 287, + 506, + 298 + ], + "score": 1.0, + "content": "Sys: The taxi is booked. tem response is not involved here) since we assume that most turn contextual shifts are from the user.", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 296, + 505, + 310 + ], + "spans": [ + { + "bbox": [ + 105, + 296, + 505, + 310 + ], + "score": 1.0, + "content": "For example, INS(WHERE) indicates inserting a new WHERE condition and DEL(SELECT.agg)", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 308, + 506, + 321 + ], + "spans": [ + { + "bbox": [ + 105, + 308, + 506, + 321 + ], + "score": 1.0, + "content": "indicates removing an aggregate operation from a SELECT statement (e.g. when an utterance “Show", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 318, + 505, + 331 + ], + "spans": [ + { + "bbox": [ + 105, + 318, + 381, + 331 + ], + "score": 1.0, + "content": "all the ages instead.” elicits a change SELECT MAX(age) ...", + "type": "text" + }, + { + "bbox": [ + 381, + 320, + 395, + 330 + ], + "score": 0.67, + "content": "", + "type": "inline_equation" + }, + { + "bbox": [ + 396, + 318, + 505, + 331 + ], + "score": 1.0, + "content": "SELECT age ...). We", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 330, + 505, + 342 + ], + "spans": [ + { + "bbox": [ + 105, + 330, + 255, + 342 + ], + "score": 1.0, + "content": "use the encoding of the special token", + "type": "text" + }, + { + "bbox": [ + 256, + 331, + 279, + 340 + ], + "score": 0.87, + "content": "< / \\varsigma >", + "type": "inline_equation" + }, + { + "bbox": [ + 279, + 330, + 505, + 342 + ], + "score": 1.0, + "content": "right before each turn to predict the context switch label", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 340, + 279, + 354 + ], + "spans": [ + { + "bbox": [ + 105, + 340, + 279, + 354 + ], + "score": 1.0, + "content": "between this turn and the previous history:", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 11.5, + "bbox_fs": [ + 105, + 264, + 507, + 354 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 170, + 359, + 441, + 374 + ], + "lines": [ + { + "bbox": [ + 170, + 359, + 441, + 374 + ], + "spans": [ + { + "bbox": [ + 170, + 359, + 441, + 374 + ], + "score": 0.87, + "content": "\\mathcal { L } _ { \\mathrm { T C S } } ( C _ { t } ) = \\mathrm { C r o s s E n t r o p y } _ { 2 6 } ( \\mathrm { L a y e r N o r m } ( W _ { 3 } H _ { t } ^ { s } ) , \\mathrm { T C S } ( q _ { t } , q _ { t - 1 } ) )", + "type": "interline_equation", + "image_path": "e1202ac31ef3a936c1c3594458ef5092648f9423fe702af3f8f1b3b042f5f91e.jpg" + } + ] + } + ], + "index": 16, + "virtual_lines": [ + { + "bbox": [ + 170, + 359, + 441, + 374 + ], + "spans": [], + "index": 16 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 380, + 505, + 437 + ], + "lines": [ + { + "bbox": [ + 104, + 378, + 506, + 396 + ], + "spans": [ + { + "bbox": [ + 104, + 378, + 133, + 396 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 134, + 380, + 200, + 393 + ], + "score": 0.92, + "content": "\\pmb { H } _ { t } ^ { s } \\in \\mathbb { R } ^ { ( t - 1 ) \\times d }", + "type": "inline_equation" + }, + { + "bbox": [ + 200, + 378, + 441, + 396 + ], + "score": 1.0, + "content": "is the contextualized representation of all previous turns in", + "type": "text" + }, + { + "bbox": [ + 441, + 382, + 453, + 393 + ], + "score": 0.87, + "content": "C _ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 453, + 378, + 506, + 396 + ], + "score": 1.0, + "content": "with hidden", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 391, + 506, + 406 + ], + "spans": [ + { + "bbox": [ + 105, + 391, + 152, + 406 + ], + "score": 1.0, + "content": "dimension", + "type": "text" + }, + { + "bbox": [ + 153, + 393, + 159, + 402 + ], + "score": 0.62, + "content": "d", + "type": "inline_equation" + }, + { + "bbox": [ + 159, + 391, + 163, + 406 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 164, + 393, + 221, + 405 + ], + "score": 0.89, + "content": "\\mathrm { T C S } ( q _ { t } , q _ { t - 1 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 221, + 391, + 404, + 406 + ], + "score": 1.0, + "content": "returns the turn difference operations from", + "type": "text" + }, + { + "bbox": [ + 404, + 394, + 423, + 404 + ], + "score": 0.87, + "content": "q _ { t - 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 424, + 391, + 436, + 406 + ], + "score": 1.0, + "content": "to", + "type": "text" + }, + { + "bbox": [ + 437, + 394, + 446, + 404 + ], + "score": 0.85, + "content": "q _ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 446, + 391, + 469, + 406 + ], + "score": 1.0, + "content": ", and", + "type": "text" + }, + { + "bbox": [ + 469, + 393, + 486, + 403 + ], + "score": 0.9, + "content": "W _ { 3 }", + "type": "inline_equation" + }, + { + "bbox": [ + 486, + 391, + 506, + 406 + ], + "score": 1.0, + "content": "is a", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 402, + 506, + 416 + ], + "spans": [ + { + "bbox": [ + 105, + 402, + 506, + 416 + ], + "score": 1.0, + "content": "learned parameter matrix. We don’t use this objective to pre-train SCORE for MWOZ because", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 413, + 505, + 428 + ], + "spans": [ + { + "bbox": [ + 105, + 413, + 505, + 428 + ], + "score": 1.0, + "content": "the context switch label between turns is relatively simple in MWOZ (only select and where", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 423, + 148, + 439 + ], + "spans": [ + { + "bbox": [ + 105, + 423, + 148, + 439 + ], + "score": 1.0, + "content": "changes).", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 19, + "bbox_fs": [ + 104, + 378, + 506, + 439 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 450, + 506, + 517 + ], + "lines": [ + { + "bbox": [ + 105, + 450, + 506, + 463 + ], + "spans": [ + { + "bbox": [ + 105, + 450, + 506, + 463 + ], + "score": 1.0, + "content": "Masked Language Modeling As in prior work on large-scale language models (Devlin et al.,", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 461, + 506, + 474 + ], + "spans": [ + { + "bbox": [ + 105, + 461, + 506, + 474 + ], + "score": 1.0, + "content": "2019), we use the Masked Language Modeling (MLM) objective to facilitate contextual representation", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 472, + 506, + 486 + ], + "spans": [ + { + "bbox": [ + 105, + 472, + 506, + 486 + ], + "score": 1.0, + "content": "learning for natural language utterances. Importantly for regularization, we only apply this loss", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 483, + 506, + 496 + ], + "spans": [ + { + "bbox": [ + 105, + 483, + 506, + 496 + ], + "score": 1.0, + "content": "on in-domain human-annotated natural language data. Namely, it includes utterances in SPARC,", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 106, + 495, + 506, + 507 + ], + "spans": [ + { + "bbox": [ + 106, + 495, + 506, + 507 + ], + "score": 1.0, + "content": "COSQL, and SQA as well as nine task-oriented dialog datasets processed by Wu et al. (2020) for", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 505, + 416, + 519 + ], + "spans": [ + { + "bbox": [ + 105, + 505, + 416, + 519 + ], + "score": 1.0, + "content": "MWOZ (see data statistics in Figure 4). Formally, the MLM loss is given by:", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 24.5, + "bbox_fs": [ + 105, + 450, + 506, + 519 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 185, + 523, + 424, + 550 + ], + "lines": [ + { + "bbox": [ + 185, + 523, + 424, + 550 + ], + "spans": [ + { + "bbox": [ + 185, + 523, + 424, + 550 + ], + "score": 0.91, + "content": "\\mathcal { L } _ { \\mathrm { M L M } } ( C _ { t } ) = \\sum _ { m } \\mathrm { C r o s s E n t r o p y } _ { \\mathrm { V o c a b } } ( \\mathrm { L a y e r N o r m } ( W _ { 4 } h _ { t } ^ { m } ) )", + "type": "interline_equation", + "image_path": "889a4d0de1ea09ca336c8b8aceff019d5ae79e1d25413a1afb2d480273927a4d.jpg" + } + ] + } + ], + "index": 28.5, + "virtual_lines": [ + { + "bbox": [ + 185, + 523, + 424, + 536.5 + ], + "spans": [], + "index": 28 + }, + { + "bbox": [ + 185, + 536.5, + 424, + 550.0 + ], + "spans": [], + "index": 29 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 556, + 504, + 579 + ], + "lines": [ + { + "bbox": [ + 105, + 555, + 506, + 569 + ], + "spans": [ + { + "bbox": [ + 105, + 555, + 133, + 569 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 133, + 557, + 149, + 568 + ], + "score": 0.89, + "content": "\\pmb { h } _ { t } ^ { m }", + "type": "inline_equation" + }, + { + "bbox": [ + 149, + 555, + 366, + 569 + ], + "score": 1.0, + "content": "are the contextualized representations of the masked", + "type": "text" + }, + { + "bbox": [ + 366, + 557, + 386, + 567 + ], + "score": 0.87, + "content": "15 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 386, + 555, + 437, + 569 + ], + "score": 1.0, + "content": "of tokens in", + "type": "text" + }, + { + "bbox": [ + 438, + 557, + 449, + 568 + ], + "score": 0.89, + "content": "C _ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 450, + 555, + 471, + 569 + ], + "score": 1.0, + "content": ", and", + "type": "text" + }, + { + "bbox": [ + 471, + 557, + 487, + 568 + ], + "score": 0.9, + "content": "W _ { 4 }", + "type": "inline_equation" + }, + { + "bbox": [ + 487, + 555, + 506, + 569 + ], + "score": 1.0, + "content": "is a", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 106, + 568, + 212, + 579 + ], + "spans": [ + { + "bbox": [ + 106, + 568, + 212, + 579 + ], + "score": 1.0, + "content": "learned parameter matrix.", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 30.5, + "bbox_fs": [ + 105, + 555, + 506, + 579 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 592, + 505, + 671 + ], + "lines": [ + { + "bbox": [ + 105, + 591, + 504, + 607 + ], + "spans": [ + { + "bbox": [ + 105, + 591, + 486, + 607 + ], + "score": 1.0, + "content": "Pre-Training Setup and Steps To summarize the pre-training steps, we first collect a dataset", + "type": "text" + }, + { + "bbox": [ + 486, + 594, + 504, + 604 + ], + "score": 0.88, + "content": "\\mathcal { D } _ { \\mathrm { n a t } }", + "type": "inline_equation" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 604, + 505, + 617 + ], + "spans": [ + { + "bbox": [ + 105, + 604, + 505, + 617 + ], + "score": 1.0, + "content": "of combined human-annotated natural language questions (without labels) from existing CSP tasks", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 615, + 505, + 628 + ], + "spans": [ + { + "bbox": [ + 105, + 615, + 397, + 628 + ], + "score": 1.0, + "content": "(as mentioned above), and create a large synthesized conversational data", + "type": "text" + }, + { + "bbox": [ + 397, + 615, + 417, + 627 + ], + "score": 0.91, + "content": "\\mathcal { D } _ { \\mathrm { s y n } }", + "type": "inline_equation" + }, + { + "bbox": [ + 417, + 615, + 505, + 628 + ], + "score": 1.0, + "content": "that is generated by a", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 104, + 626, + 506, + 639 + ], + "spans": [ + { + "bbox": [ + 104, + 626, + 506, + 639 + ], + "score": 1.0, + "content": "grammar induced from a small set of SPARC annotated examples (See 2.3). After that, we incorporate", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 636, + 505, + 650 + ], + "spans": [ + { + "bbox": [ + 105, + 636, + 505, + 650 + ], + "score": 1.0, + "content": "both two datasets in pre-training. More specifically, synthetic and natural examples are randomly", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 106, + 648, + 505, + 661 + ], + "spans": [ + { + "bbox": [ + 106, + 648, + 505, + 661 + ], + "score": 1.0, + "content": "sampled during pre-training. The total pre-training loss is the sum of the three objectives with CCS", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 658, + 323, + 673 + ], + "spans": [ + { + "bbox": [ + 105, + 658, + 206, + 673 + ], + "score": 1.0, + "content": "and TCS only applied to", + "type": "text" + }, + { + "bbox": [ + 207, + 659, + 226, + 671 + ], + "score": 0.91, + "content": "\\mathcal { D } _ { \\mathrm { s y n } }", + "type": "inline_equation" + }, + { + "bbox": [ + 226, + 658, + 300, + 673 + ], + "score": 1.0, + "content": "and MLM only to", + "type": "text" + }, + { + "bbox": [ + 300, + 659, + 318, + 670 + ], + "score": 0.91, + "content": "\\mathcal { D } _ { \\mathrm { n a t } }", + "type": "inline_equation" + }, + { + "bbox": [ + 318, + 658, + 323, + 673 + ], + "score": 1.0, + "content": ":", + "type": "text" + } + ], + "index": 38 + } + ], + "index": 35, + "bbox_fs": [ + 104, + 591, + 506, + 673 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 173, + 677, + 437, + 700 + ], + "lines": [ + { + "bbox": [ + 173, + 677, + 437, + 700 + ], + "spans": [ + { + "bbox": [ + 173, + 677, + 437, + 700 + ], + "score": 0.91, + "content": "\\mathcal { L } = \\sum _ { C _ { t } \\in \\mathcal { D } _ { \\mathrm { s y n } } } \\left( \\mathcal { L } _ { \\mathrm { C C S } } ( C _ { t } ) + \\mathcal { L } _ { \\mathrm { T C S } } ( C _ { t } ) \\right) + \\sum _ { C _ { t } \\in \\mathcal { D } _ { \\mathrm { n a t } } } \\mathcal { L } _ { \\mathrm { M L M } } ( C _ { t } )", + "type": "interline_equation", + "image_path": "46d20e8e6527469f7ca88c59d32b1a66d3565728e9e615f3732968fcd6703a6e.jpg" + } + ] + } + ], + "index": 39, + "virtual_lines": [ + { + "bbox": [ + 173, + 677, + 437, + 700 + ], + "spans": [], + "index": 39 + } + ] + }, + { + "type": "list", + "bbox": [ + 106, + 709, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 709, + 507, + 722 + ], + "spans": [ + { + "bbox": [ + 106, + 709, + 507, + 722 + ], + "score": 1.0, + "content": "Figure 2 shows an overview of SCORE pre-training on an example SPARC dialogue from Figure 1.", + "type": "text" + } + ], + "index": 40, + "is_list_end_line": true + }, + { + "bbox": [ + 106, + 720, + 506, + 733 + ], + "spans": [ + { + "bbox": [ + 106, + 720, + 506, + 733 + ], + "score": 1.0, + "content": "We report additional implementation details for pre-training SCORE in Section 3.3 and Appendix C.", + "type": "text" + } + ], + "index": 41, + "is_list_start_line": true, + "is_list_end_line": true + } + ], + "index": 40.5, + "bbox_fs": [ + 106, + 709, + 507, + 733 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "title", + "bbox": [ + 108, + 82, + 206, + 93 + ], + "lines": [ + { + "bbox": [ + 105, + 81, + 208, + 95 + ], + "spans": [ + { + "bbox": [ + 105, + 81, + 208, + 95 + ], + "score": 1.0, + "content": "2.3 DATA SYNTHESIS", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "text", + "bbox": [ + 106, + 106, + 505, + 183 + ], + "lines": [ + { + "bbox": [ + 105, + 106, + 505, + 119 + ], + "spans": [ + { + "bbox": [ + 105, + 106, + 505, + 119 + ], + "score": 1.0, + "content": "We re-use the synthetic dataset of 120k synthetic task-oriented dialogues for MWOZ, introduced by", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 106, + 118, + 506, + 130 + ], + "spans": [ + { + "bbox": [ + 106, + 118, + 506, + 130 + ], + "score": 1.0, + "content": "Campagna et al. (2020). In this work, we introduce a complementary procedure to synthesize data", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 106, + 129, + 505, + 140 + ], + "spans": [ + { + "bbox": [ + 106, + 129, + 332, + 140 + ], + "score": 1.0, + "content": "for conversational text-to-SQL dialogues. We use about", + "type": "text" + }, + { + "bbox": [ + 332, + 129, + 354, + 139 + ], + "score": 0.6, + "content": "4 0 0 \\mathrm { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 354, + 129, + 505, + 140 + ], + "score": 1.0, + "content": "tables in WIKITABLES (Bhagavatula", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 140, + 505, + 152 + ], + "spans": [ + { + "bbox": [ + 105, + 140, + 505, + 152 + ], + "score": 1.0, + "content": "et al., 2015) (after filtering and cleaning), WikiSQL, and Spider datasets as underlying databases", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 107, + 150, + 505, + 163 + ], + "spans": [ + { + "bbox": [ + 107, + 151, + 113, + 161 + ], + "score": 0.68, + "content": "d", + "type": "inline_equation" + }, + { + "bbox": [ + 114, + 150, + 430, + 163 + ], + "score": 1.0, + "content": ", and then synthesize about one dialog for each table. Finally, we synthesize", + "type": "text" + }, + { + "bbox": [ + 430, + 151, + 453, + 161 + ], + "score": 0.5, + "content": "4 3 5 \\mathrm { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 453, + 150, + 505, + 163 + ], + "score": 1.0, + "content": "text-to-SQL", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 161, + 506, + 175 + ], + "spans": [ + { + "bbox": [ + 105, + 161, + 506, + 175 + ], + "score": 1.0, + "content": "conversations in total. Table 12 in Appendix B shows an example of the synthesized question-SQL", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 172, + 333, + 186 + ], + "spans": [ + { + "bbox": [ + 105, + 172, + 333, + 186 + ], + "score": 1.0, + "content": "pairs and their corresponding templates in our grammar.", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 4 + }, + { + "type": "text", + "bbox": [ + 107, + 188, + 297, + 408 + ], + "lines": [ + { + "bbox": [ + 106, + 188, + 298, + 201 + ], + "spans": [ + { + "bbox": [ + 106, + 188, + 298, + 201 + ], + "score": 1.0, + "content": "To this end, we use only 500 dev exam-", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 106, + 200, + 298, + 212 + ], + "spans": [ + { + "bbox": [ + 106, + 200, + 298, + 212 + ], + "score": 1.0, + "content": "ples from SPARC to induce two utterance-", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 210, + 298, + 224 + ], + "spans": [ + { + "bbox": [ + 105, + 210, + 298, + 224 + ], + "score": 1.0, + "content": "SQL generation grammars: (1) a single-", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 221, + 298, + 235 + ], + "spans": [ + { + "bbox": [ + 105, + 221, + 220, + 235 + ], + "score": 1.0, + "content": "turn context-free grammar", + "type": "text" + }, + { + "bbox": [ + 220, + 222, + 233, + 233 + ], + "score": 0.88, + "content": "G _ { s }", + "type": "inline_equation" + }, + { + "bbox": [ + 234, + 221, + 298, + 235 + ], + "score": 1.0, + "content": "for generating", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 106, + 233, + 297, + 245 + ], + "spans": [ + { + "bbox": [ + 106, + 233, + 297, + 245 + ], + "score": 1.0, + "content": "context-independent question-SQL pairs, and", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 106, + 244, + 297, + 257 + ], + "spans": [ + { + "bbox": [ + 106, + 244, + 267, + 257 + ], + "score": 1.0, + "content": "(2) a follow-up context-free grammar", + "type": "text" + }, + { + "bbox": [ + 267, + 244, + 280, + 255 + ], + "score": 0.88, + "content": "G _ { c }", + "type": "inline_equation" + }, + { + "bbox": [ + 281, + 244, + 297, + 257 + ], + "score": 1.0, + "content": "for", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 106, + 255, + 297, + 267 + ], + "spans": [ + { + "bbox": [ + 106, + 255, + 297, + 267 + ], + "score": 1.0, + "content": "follow-up question-SQL pairs. The single-turn", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 106, + 266, + 297, + 278 + ], + "spans": [ + { + "bbox": [ + 106, + 266, + 147, + 278 + ], + "score": 1.0, + "content": "grammar", + "type": "text" + }, + { + "bbox": [ + 148, + 266, + 161, + 277 + ], + "score": 0.88, + "content": "G _ { s }", + "type": "inline_equation" + }, + { + "bbox": [ + 162, + 266, + 297, + 278 + ], + "score": 1.0, + "content": "contains a list of synchronous", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 276, + 298, + 290 + ], + "spans": [ + { + "bbox": [ + 105, + 276, + 298, + 290 + ], + "score": 1.0, + "content": "question-SQL templates where typed slots", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 106, + 288, + 298, + 300 + ], + "spans": [ + { + "bbox": [ + 106, + 288, + 298, + 300 + ], + "score": 1.0, + "content": "(COLUMN0, OP0, VALUE0, . . . ) represent men-", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 299, + 298, + 311 + ], + "spans": [ + { + "bbox": [ + 105, + 299, + 298, + 311 + ], + "score": 1.0, + "content": "tions of tables, columns, values, and SQL opera-", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 309, + 298, + 322 + ], + "spans": [ + { + "bbox": [ + 105, + 309, + 228, + 322 + ], + "score": 1.0, + "content": "tions. The follow-up grammar", + "type": "text" + }, + { + "bbox": [ + 229, + 310, + 242, + 321 + ], + "score": 0.91, + "content": "G _ { c }", + "type": "inline_equation" + }, + { + "bbox": [ + 243, + 309, + 298, + 322 + ], + "score": 1.0, + "content": "contains con-", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 106, + 321, + 297, + 333 + ], + "spans": [ + { + "bbox": [ + 106, + 321, + 297, + 333 + ], + "score": 1.0, + "content": "text switch labels and lists of follow-up question", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 106, + 332, + 297, + 343 + ], + "spans": [ + { + "bbox": [ + 106, + 332, + 297, + 343 + ], + "score": 1.0, + "content": "templates. For example, if the context switch", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 106, + 342, + 298, + 354 + ], + "spans": [ + { + "bbox": [ + 106, + 342, + 298, + 354 + ], + "score": 1.0, + "content": "label is INS(SELECT.column0), the corre-", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 106, + 354, + 298, + 365 + ], + "spans": [ + { + "bbox": [ + 106, + 354, + 298, + 365 + ], + "score": 1.0, + "content": "sponding question could be “How about show", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 106, + 365, + 297, + 376 + ], + "spans": [ + { + "bbox": [ + 106, + 365, + 297, + 376 + ], + "score": 1.0, + "content": "column0 too?”. To ensure generalization, we", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 106, + 375, + 298, + 388 + ], + "spans": [ + { + "bbox": [ + 106, + 375, + 298, + 388 + ], + "score": 1.0, + "content": "only induce the grammars from the SPARC train-", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 106, + 387, + 297, + 398 + ], + "spans": [ + { + "bbox": [ + 106, + 387, + 297, + 398 + ], + "score": 1.0, + "content": "ing set. Appendix B shows examples of the", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 106, + 398, + 278, + 409 + ], + "spans": [ + { + "bbox": [ + 106, + 398, + 278, + 409 + ], + "score": 1.0, + "content": "grammar rules and synthesized utterances.", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 17.5 + }, + { + "type": "title", + "bbox": [ + 305, + 205, + 459, + 217 + ], + "lines": [ + { + "bbox": [ + 304, + 205, + 459, + 217 + ], + "spans": [ + { + "bbox": [ + 304, + 205, + 459, + 217 + ], + "score": 1.0, + "content": "Algorithm 1 Data synthesis algorithm", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 28 + }, + { + "type": "text", + "bbox": [ + 307, + 220, + 503, + 406 + ], + "lines": [ + { + "bbox": [ + 308, + 218, + 350, + 232 + ], + "spans": [ + { + "bbox": [ + 308, + 218, + 321, + 232 + ], + "score": 1.0, + "content": "1:", + "type": "text" + }, + { + "bbox": [ + 321, + 219, + 350, + 231 + ], + "score": 0.35, + "content": "\\tilde { h } \\emptyset", + "type": "inline_equation" + } + ], + "index": 29 + }, + { + "bbox": [ + 307, + 230, + 402, + 245 + ], + "spans": [ + { + "bbox": [ + 307, + 230, + 321, + 245 + ], + "score": 1.0, + "content": "2:", + "type": "text" + }, + { + "bbox": [ + 321, + 232, + 402, + 243 + ], + "score": 0.57, + "content": "r _ { s } \\gets \\mathbf { S A M P L E } ( G _ { s } )", + "type": "inline_equation" + } + ], + "index": 30 + }, + { + "bbox": [ + 307, + 242, + 475, + 256 + ], + "spans": [ + { + "bbox": [ + 307, + 242, + 321, + 256 + ], + "score": 1.0, + "content": "3:", + "type": "text" + }, + { + "bbox": [ + 321, + 244, + 361, + 254 + ], + "score": 0.29, + "content": "\\tilde { u } _ { 0 } , \\tilde { q } _ { 0 } \\gets", + "type": "inline_equation" + }, + { + "bbox": [ + 361, + 242, + 475, + 256 + ], + "score": 1.0, + "content": "RANDASSIGNSLOTS(d, rs)", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 307, + 253, + 380, + 270 + ], + "spans": [ + { + "bbox": [ + 307, + 253, + 321, + 270 + ], + "score": 1.0, + "content": "4:", + "type": "text" + }, + { + "bbox": [ + 321, + 255, + 380, + 267 + ], + "score": 0.76, + "content": "\\tilde { h } + = ( \\tilde { u } _ { 0 } , \\tilde { q } _ { 0 } )", + "type": "inline_equation" + } + ], + "index": 32 + }, + { + "bbox": [ + 309, + 266, + 385, + 281 + ], + "spans": [ + { + "bbox": [ + 309, + 266, + 321, + 281 + ], + "score": 1.0, + "content": "5:", + "type": "text" + }, + { + "bbox": [ + 321, + 267, + 385, + 279 + ], + "score": 0.78, + "content": "\\tilde { u } _ { p } , \\tilde { q } _ { p } \\gets \\tilde { u } _ { 0 } , \\tilde { q } _ { 0 }", + "type": "inline_equation" + } + ], + "index": 33 + }, + { + "bbox": [ + 309, + 277, + 396, + 289 + ], + "spans": [ + { + "bbox": [ + 309, + 277, + 336, + 289 + ], + "score": 1.0, + "content": "6: for", + "type": "text" + }, + { + "bbox": [ + 336, + 279, + 362, + 288 + ], + "score": 0.85, + "content": "t \\gets 1", + "type": "inline_equation" + }, + { + "bbox": [ + 362, + 277, + 373, + 289 + ], + "score": 1.0, + "content": "to", + "type": "text" + }, + { + "bbox": [ + 373, + 279, + 382, + 288 + ], + "score": 0.75, + "content": "T", + "type": "inline_equation" + }, + { + "bbox": [ + 383, + 277, + 396, + 289 + ], + "score": 1.0, + "content": "do", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 308, + 287, + 443, + 302 + ], + "spans": [ + { + "bbox": [ + 308, + 289, + 320, + 300 + ], + "score": 1.0, + "content": "7:", + "type": "text" + }, + { + "bbox": [ + 334, + 287, + 344, + 302 + ], + "score": 1.0, + "content": "if", + "type": "text" + }, + { + "bbox": [ + 344, + 289, + 420, + 300 + ], + "score": 0.64, + "content": "\\mathrm { R A N D } ( 0 , 1 ) < 0 . 2", + "type": "inline_equation" + }, + { + "bbox": [ + 421, + 287, + 443, + 302 + ], + "score": 1.0, + "content": "then", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 308, + 300, + 433, + 311 + ], + "spans": [ + { + "bbox": [ + 308, + 300, + 320, + 311 + ], + "score": 1.0, + "content": "8:", + "type": "text" + }, + { + "bbox": [ + 351, + 300, + 433, + 311 + ], + "score": 0.59, + "content": "r _ { s } \\gets \\mathbf { S A M P L E } ( G _ { s } )", + "type": "inline_equation" + } + ], + "index": 36 + }, + { + "bbox": [ + 308, + 311, + 503, + 322 + ], + "spans": [ + { + "bbox": [ + 308, + 311, + 320, + 321 + ], + "score": 1.0, + "content": "9:", + "type": "text" + }, + { + "bbox": [ + 350, + 311, + 503, + 322 + ], + "score": 0.28, + "content": "\\tilde { u } _ { t } , \\tilde { q } _ { t } \\gets \\mathrm { R A N D A S S I G N S L O T S } ( d , r _ { s } )", + "type": "inline_equation", + "image_path": "439557fc43124b93043d7c9e20114b1539ad2eed9481fc3bcc6952d5d9eeab13.jpg" + } + ], + "index": 37 + }, + { + "bbox": [ + 304, + 321, + 355, + 333 + ], + "spans": [ + { + "bbox": [ + 304, + 321, + 320, + 333 + ], + "score": 1.0, + "content": "10:", + "type": "text" + }, + { + "bbox": [ + 335, + 321, + 355, + 333 + ], + "score": 1.0, + "content": "else", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 304, + 332, + 432, + 344 + ], + "spans": [ + { + "bbox": [ + 304, + 333, + 320, + 343 + ], + "score": 1.0, + "content": "11:", + "type": "text" + }, + { + "bbox": [ + 351, + 332, + 432, + 344 + ], + "score": 0.5, + "content": "r _ { c } \\gets \\mathbf { S A M P L E } ( G _ { c } )", + "type": "inline_equation", + "image_path": "fbe5754fa9bffc24373a6dec7c04b590797190170142ffffbf0257dc031bc68b.jpg" + } + ], + "index": 39 + }, + { + "bbox": [ + 304, + 342, + 501, + 356 + ], + "spans": [ + { + "bbox": [ + 304, + 343, + 320, + 355 + ], + "score": 1.0, + "content": "12:", + "type": "text" + }, + { + "bbox": [ + 350, + 342, + 448, + 356 + ], + "score": 1.0, + "content": "if CONSTRAINTCHECK", + "type": "text" + }, + { + "bbox": [ + 448, + 344, + 478, + 355 + ], + "score": 0.83, + "content": "( r _ { c } , \\tilde { q } _ { p } )", + "type": "inline_equation" + }, + { + "bbox": [ + 478, + 342, + 501, + 356 + ], + "score": 1.0, + "content": "then", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 304, + 354, + 489, + 367 + ], + "spans": [ + { + "bbox": [ + 304, + 355, + 320, + 366 + ], + "score": 1.0, + "content": "13:", + "type": "text" + }, + { + "bbox": [ + 365, + 354, + 489, + 367 + ], + "score": 1.0, + "content": "u˜t, q˜t ← EDITASSIGN(˜qp, rc)", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 304, + 365, + 408, + 382 + ], + "spans": [ + { + "bbox": [ + 304, + 368, + 320, + 379 + ], + "score": 1.0, + "content": "14:", + "type": "text" + }, + { + "bbox": [ + 335, + 365, + 408, + 382 + ], + "score": 1.0, + "content": "h˜+ = (˜ut, q˜t, rc)", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 304, + 379, + 400, + 393 + ], + "spans": [ + { + "bbox": [ + 304, + 379, + 320, + 391 + ], + "score": 1.0, + "content": "15:", + "type": "text" + }, + { + "bbox": [ + 335, + 379, + 400, + 393 + ], + "score": 1.0, + "content": "u˜p, q˜p ← u˜t, q˜t", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 303, + 392, + 361, + 404 + ], + "spans": [ + { + "bbox": [ + 303, + 392, + 361, + 404 + ], + "score": 1.0, + "content": "16: return h˜", + "type": "text" + } + ], + "index": 44 + } + ], + "index": 36.5 + }, + { + "type": "text", + "bbox": [ + 106, + 414, + 505, + 503 + ], + "lines": [ + { + "bbox": [ + 105, + 414, + 504, + 427 + ], + "spans": [ + { + "bbox": [ + 105, + 414, + 497, + 427 + ], + "score": 1.0, + "content": "The data synthesis procedure using the two grammars is shown in Algorithm 1. Given a database", + "type": "text" + }, + { + "bbox": [ + 497, + 415, + 504, + 424 + ], + "score": 0.69, + "content": "d", + "type": "inline_equation" + } + ], + "index": 45 + }, + { + "bbox": [ + 106, + 426, + 505, + 438 + ], + "spans": [ + { + "bbox": [ + 106, + 426, + 505, + 438 + ], + "score": 1.0, + "content": "and a sampled single-turn question-SQL template, the function RANDASSIGNSLOTS samples values", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 106, + 437, + 505, + 448 + ], + "spans": [ + { + "bbox": [ + 106, + 437, + 505, + 448 + ], + "score": 1.0, + "content": "(column names, cell values, and SQL operations) for typed slots in the template and returns the first", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 105, + 447, + 506, + 460 + ], + "spans": [ + { + "bbox": [ + 105, + 447, + 190, + 460 + ], + "score": 1.0, + "content": "synthesized question", + "type": "text" + }, + { + "bbox": [ + 190, + 448, + 201, + 458 + ], + "score": 0.88, + "content": "\\tilde { u } _ { 0 }", + "type": "inline_equation" + }, + { + "bbox": [ + 201, + 447, + 336, + 460 + ], + "score": 1.0, + "content": "and the corresponding SQL query", + "type": "text" + }, + { + "bbox": [ + 336, + 448, + 346, + 459 + ], + "score": 0.86, + "content": "\\tilde { q } _ { 0 }", + "type": "inline_equation" + }, + { + "bbox": [ + 346, + 447, + 398, + 460 + ], + "score": 1.0, + "content": ". To generate", + "type": "text" + }, + { + "bbox": [ + 398, + 448, + 407, + 457 + ], + "score": 0.8, + "content": "T", + "type": "inline_equation" + }, + { + "bbox": [ + 407, + 447, + 506, + 460 + ], + "score": 1.0, + "content": "follow-up question-SQL", + "type": "text" + } + ], + "index": 48 + }, + { + "bbox": [ + 104, + 458, + 506, + 472 + ], + "spans": [ + { + "bbox": [ + 104, + 458, + 269, + 472 + ], + "score": 1.0, + "content": "pairs, the function CONSTRAINTCHECK", + "type": "text" + }, + { + "bbox": [ + 269, + 459, + 299, + 470 + ], + "score": 0.68, + "content": "( r _ { c } , \\tilde { q } _ { p } )", + "type": "inline_equation" + }, + { + "bbox": [ + 299, + 458, + 414, + 472 + ], + "score": 1.0, + "content": "checks if the previous query", + "type": "text" + }, + { + "bbox": [ + 414, + 459, + 424, + 471 + ], + "score": 0.89, + "content": "\\tilde { q } _ { p }", + "type": "inline_equation" + }, + { + "bbox": [ + 425, + 458, + 506, + 472 + ], + "score": 1.0, + "content": "satisfies constraints", + "type": "text" + } + ], + "index": 49 + }, + { + "bbox": [ + 104, + 467, + 505, + 483 + ], + "spans": [ + { + "bbox": [ + 104, + 467, + 205, + 483 + ], + "score": 1.0, + "content": "of the sampled template", + "type": "text" + }, + { + "bbox": [ + 205, + 471, + 215, + 480 + ], + "score": 0.85, + "content": "r _ { c }", + "type": "inline_equation" + }, + { + "bbox": [ + 216, + 467, + 474, + 483 + ], + "score": 1.0, + "content": "(e.g. contains its mentioned nonterminal). Finally, EDITASSIGN", + "type": "text" + }, + { + "bbox": [ + 475, + 469, + 505, + 481 + ], + "score": 0.85, + "content": "( \\tilde { q } _ { p } , r _ { c } )", + "type": "inline_equation" + } + ], + "index": 50 + }, + { + "bbox": [ + 105, + 480, + 506, + 493 + ], + "spans": [ + { + "bbox": [ + 105, + 480, + 203, + 493 + ], + "score": 1.0, + "content": "edits the previous SQL", + "type": "text" + }, + { + "bbox": [ + 203, + 481, + 214, + 492 + ], + "score": 0.86, + "content": "\\tilde { q } _ { p }", + "type": "inline_equation" + }, + { + "bbox": [ + 214, + 480, + 398, + 493 + ], + "score": 1.0, + "content": "to generate the current follow-up SQL label", + "type": "text" + }, + { + "bbox": [ + 398, + 481, + 407, + 492 + ], + "score": 0.87, + "content": "\\tilde { q } _ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 407, + 480, + 506, + 493 + ], + "score": 1.0, + "content": "and samples values for", + "type": "text" + } + ], + "index": 51 + }, + { + "bbox": [ + 105, + 491, + 427, + 504 + ], + "spans": [ + { + "bbox": [ + 105, + 491, + 412, + 504 + ], + "score": 1.0, + "content": "typed slots in the template to generate the corresponding follow-up question", + "type": "text" + }, + { + "bbox": [ + 412, + 492, + 422, + 502 + ], + "score": 0.87, + "content": "\\tilde { u } _ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 423, + 491, + 427, + 504 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 52 + } + ], + "index": 48.5 + }, + { + "type": "title", + "bbox": [ + 108, + 527, + 248, + 540 + ], + "lines": [ + { + "bbox": [ + 105, + 526, + 250, + 541 + ], + "spans": [ + { + "bbox": [ + 105, + 526, + 250, + 541 + ], + "score": 1.0, + "content": "3 EXPERIMENT SETTINGS", + "type": "text" + } + ], + "index": 53 + } + ], + "index": 53 + }, + { + "type": "title", + "bbox": [ + 108, + 557, + 297, + 569 + ], + "lines": [ + { + "bbox": [ + 106, + 557, + 298, + 570 + ], + "spans": [ + { + "bbox": [ + 106, + 557, + 298, + 570 + ], + "score": 1.0, + "content": "3.1 DATASETS AND EVALUATION METRICS", + "type": "text" + } + ], + "index": 54 + } + ], + "index": 54 + }, + { + "type": "text", + "bbox": [ + 107, + 581, + 506, + 614 + ], + "lines": [ + { + "bbox": [ + 105, + 581, + 506, + 594 + ], + "spans": [ + { + "bbox": [ + 105, + 581, + 506, + 594 + ], + "score": 1.0, + "content": "We evaluate SCORE on four popular CSP tasks: SPARC (sequential text-to-SQL), COSQL (conver-", + "type": "text" + } + ], + "index": 55 + }, + { + "bbox": [ + 105, + 592, + 506, + 606 + ], + "spans": [ + { + "bbox": [ + 105, + 592, + 506, + 606 + ], + "score": 1.0, + "content": "sational text-to-SQL), MWOZ (dialogue state tracking), and SQA (sequential question answering),", + "type": "text" + } + ], + "index": 56 + }, + { + "bbox": [ + 106, + 604, + 202, + 614 + ], + "spans": [ + { + "bbox": [ + 106, + 604, + 202, + 614 + ], + "score": 1.0, + "content": "summarized in Table 1.", + "type": "text" + } + ], + "index": 57 + } + ], + "index": 56 + }, + { + "type": "text", + "bbox": [ + 107, + 620, + 506, + 686 + ], + "lines": [ + { + "bbox": [ + 106, + 620, + 506, + 633 + ], + "spans": [ + { + "bbox": [ + 106, + 620, + 506, + 633 + ], + "score": 1.0, + "content": "SPARC (Yu et al., 2019b) 1 is a large collection of sequences of inter-related context-dependent", + "type": "text" + } + ], + "index": 58 + }, + { + "bbox": [ + 105, + 631, + 506, + 645 + ], + "spans": [ + { + "bbox": [ + 105, + 631, + 360, + 645 + ], + "score": 1.0, + "content": "question-SQL pairs. It contains 4.3K questions sequences and", + "type": "text" + }, + { + "bbox": [ + 360, + 632, + 382, + 642 + ], + "score": 0.86, + "content": "1 2 \\mathrm { k } +", + "type": "inline_equation" + }, + { + "bbox": [ + 383, + 631, + 506, + 645 + ], + "score": 1.0, + "content": "questions. COSQL (Yu et al.,", + "type": "text" + } + ], + "index": 59 + }, + { + "bbox": [ + 105, + 642, + 506, + 655 + ], + "spans": [ + { + "bbox": [ + 105, + 642, + 506, + 655 + ], + "score": 1.0, + "content": "2019a) 2 is a large conversational text-to-SQL corpus, with 3k dialogues, collected under the Wizard-", + "type": "text" + } + ], + "index": 60 + }, + { + "bbox": [ + 105, + 653, + 505, + 667 + ], + "spans": [ + { + "bbox": [ + 105, + 653, + 505, + 667 + ], + "score": 1.0, + "content": "of-Oz (WOZ) setting. We focus on the SQL-grounded dialogue state tracking task which maps user", + "type": "text" + } + ], + "index": 61 + }, + { + "bbox": [ + 105, + 664, + 506, + 677 + ], + "spans": [ + { + "bbox": [ + 105, + 664, + 506, + 677 + ], + "score": 1.0, + "content": "intents into SQL queries if possible given the interaction history. Both SPARC and COSQL cover", + "type": "text" + } + ], + "index": 62 + }, + { + "bbox": [ + 105, + 675, + 275, + 688 + ], + "spans": [ + { + "bbox": [ + 105, + 675, + 275, + 688 + ], + "score": 1.0, + "content": "200 complex DBs spanning 138 domains.", + "type": "text" + } + ], + "index": 63 + } + ], + "index": 60.5 + } + ], + "page_idx": 4, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 119, + 710, + 303, + 732 + ], + "lines": [ + { + "bbox": [ + 119, + 708, + 304, + 723 + ], + "spans": [ + { + "bbox": [ + 119, + 708, + 304, + 723 + ], + "score": 1.0, + "content": "1https://yale-lily.github.io/sparc", + "type": "text" + } + ] + }, + { + "bbox": [ + 118, + 719, + 303, + 734 + ], + "spans": [ + { + "bbox": [ + 118, + 719, + 303, + 734 + ], + "score": 1.0, + "content": "2https://yale-lily.github.io/cosql", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 108, + 27, + 292, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 25, + 293, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 25, + 293, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2021", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 302, + 751, + 308, + 760 + ], + "lines": [ + { + "bbox": [ + 302, + 750, + 309, + 763 + ], + "spans": [ + { + "bbox": [ + 302, + 750, + 309, + 763 + ], + "score": 1.0, + "content": "5", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "title", + "bbox": [ + 108, + 82, + 206, + 93 + ], + "lines": [ + { + "bbox": [ + 105, + 81, + 208, + 95 + ], + "spans": [ + { + "bbox": [ + 105, + 81, + 208, + 95 + ], + "score": 1.0, + "content": "2.3 DATA SYNTHESIS", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "text", + "bbox": [ + 106, + 106, + 505, + 183 + ], + "lines": [ + { + "bbox": [ + 105, + 106, + 505, + 119 + ], + "spans": [ + { + "bbox": [ + 105, + 106, + 505, + 119 + ], + "score": 1.0, + "content": "We re-use the synthetic dataset of 120k synthetic task-oriented dialogues for MWOZ, introduced by", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 106, + 118, + 506, + 130 + ], + "spans": [ + { + "bbox": [ + 106, + 118, + 506, + 130 + ], + "score": 1.0, + "content": "Campagna et al. (2020). In this work, we introduce a complementary procedure to synthesize data", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 106, + 129, + 505, + 140 + ], + "spans": [ + { + "bbox": [ + 106, + 129, + 332, + 140 + ], + "score": 1.0, + "content": "for conversational text-to-SQL dialogues. We use about", + "type": "text" + }, + { + "bbox": [ + 332, + 129, + 354, + 139 + ], + "score": 0.6, + "content": "4 0 0 \\mathrm { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 354, + 129, + 505, + 140 + ], + "score": 1.0, + "content": "tables in WIKITABLES (Bhagavatula", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 140, + 505, + 152 + ], + "spans": [ + { + "bbox": [ + 105, + 140, + 505, + 152 + ], + "score": 1.0, + "content": "et al., 2015) (after filtering and cleaning), WikiSQL, and Spider datasets as underlying databases", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 107, + 150, + 505, + 163 + ], + "spans": [ + { + "bbox": [ + 107, + 151, + 113, + 161 + ], + "score": 0.68, + "content": "d", + "type": "inline_equation" + }, + { + "bbox": [ + 114, + 150, + 430, + 163 + ], + "score": 1.0, + "content": ", and then synthesize about one dialog for each table. Finally, we synthesize", + "type": "text" + }, + { + "bbox": [ + 430, + 151, + 453, + 161 + ], + "score": 0.5, + "content": "4 3 5 \\mathrm { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 453, + 150, + 505, + 163 + ], + "score": 1.0, + "content": "text-to-SQL", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 161, + 506, + 175 + ], + "spans": [ + { + "bbox": [ + 105, + 161, + 506, + 175 + ], + "score": 1.0, + "content": "conversations in total. Table 12 in Appendix B shows an example of the synthesized question-SQL", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 172, + 333, + 186 + ], + "spans": [ + { + "bbox": [ + 105, + 172, + 333, + 186 + ], + "score": 1.0, + "content": "pairs and their corresponding templates in our grammar.", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 4, + "bbox_fs": [ + 105, + 106, + 506, + 186 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 188, + 297, + 408 + ], + "lines": [ + { + "bbox": [ + 106, + 188, + 298, + 201 + ], + "spans": [ + { + "bbox": [ + 106, + 188, + 298, + 201 + ], + "score": 1.0, + "content": "To this end, we use only 500 dev exam-", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 106, + 200, + 298, + 212 + ], + "spans": [ + { + "bbox": [ + 106, + 200, + 298, + 212 + ], + "score": 1.0, + "content": "ples from SPARC to induce two utterance-", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 210, + 298, + 224 + ], + "spans": [ + { + "bbox": [ + 105, + 210, + 298, + 224 + ], + "score": 1.0, + "content": "SQL generation grammars: (1) a single-", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 221, + 298, + 235 + ], + "spans": [ + { + "bbox": [ + 105, + 221, + 220, + 235 + ], + "score": 1.0, + "content": "turn context-free grammar", + "type": "text" + }, + { + "bbox": [ + 220, + 222, + 233, + 233 + ], + "score": 0.88, + "content": "G _ { s }", + "type": "inline_equation" + }, + { + "bbox": [ + 234, + 221, + 298, + 235 + ], + "score": 1.0, + "content": "for generating", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 106, + 233, + 297, + 245 + ], + "spans": [ + { + "bbox": [ + 106, + 233, + 297, + 245 + ], + "score": 1.0, + "content": "context-independent question-SQL pairs, and", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 106, + 244, + 297, + 257 + ], + "spans": [ + { + "bbox": [ + 106, + 244, + 267, + 257 + ], + "score": 1.0, + "content": "(2) a follow-up context-free grammar", + "type": "text" + }, + { + "bbox": [ + 267, + 244, + 280, + 255 + ], + "score": 0.88, + "content": "G _ { c }", + "type": "inline_equation" + }, + { + "bbox": [ + 281, + 244, + 297, + 257 + ], + "score": 1.0, + "content": "for", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 106, + 255, + 297, + 267 + ], + "spans": [ + { + "bbox": [ + 106, + 255, + 297, + 267 + ], + "score": 1.0, + "content": "follow-up question-SQL pairs. The single-turn", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 106, + 266, + 297, + 278 + ], + "spans": [ + { + "bbox": [ + 106, + 266, + 147, + 278 + ], + "score": 1.0, + "content": "grammar", + "type": "text" + }, + { + "bbox": [ + 148, + 266, + 161, + 277 + ], + "score": 0.88, + "content": "G _ { s }", + "type": "inline_equation" + }, + { + "bbox": [ + 162, + 266, + 297, + 278 + ], + "score": 1.0, + "content": "contains a list of synchronous", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 276, + 298, + 290 + ], + "spans": [ + { + "bbox": [ + 105, + 276, + 298, + 290 + ], + "score": 1.0, + "content": "question-SQL templates where typed slots", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 106, + 288, + 298, + 300 + ], + "spans": [ + { + "bbox": [ + 106, + 288, + 298, + 300 + ], + "score": 1.0, + "content": "(COLUMN0, OP0, VALUE0, . . . ) represent men-", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 299, + 298, + 311 + ], + "spans": [ + { + "bbox": [ + 105, + 299, + 298, + 311 + ], + "score": 1.0, + "content": "tions of tables, columns, values, and SQL opera-", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 309, + 298, + 322 + ], + "spans": [ + { + "bbox": [ + 105, + 309, + 228, + 322 + ], + "score": 1.0, + "content": "tions. The follow-up grammar", + "type": "text" + }, + { + "bbox": [ + 229, + 310, + 242, + 321 + ], + "score": 0.91, + "content": "G _ { c }", + "type": "inline_equation" + }, + { + "bbox": [ + 243, + 309, + 298, + 322 + ], + "score": 1.0, + "content": "contains con-", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 106, + 321, + 297, + 333 + ], + "spans": [ + { + "bbox": [ + 106, + 321, + 297, + 333 + ], + "score": 1.0, + "content": "text switch labels and lists of follow-up question", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 106, + 332, + 297, + 343 + ], + "spans": [ + { + "bbox": [ + 106, + 332, + 297, + 343 + ], + "score": 1.0, + "content": "templates. For example, if the context switch", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 106, + 342, + 298, + 354 + ], + "spans": [ + { + "bbox": [ + 106, + 342, + 298, + 354 + ], + "score": 1.0, + "content": "label is INS(SELECT.column0), the corre-", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 106, + 354, + 298, + 365 + ], + "spans": [ + { + "bbox": [ + 106, + 354, + 298, + 365 + ], + "score": 1.0, + "content": "sponding question could be “How about show", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 106, + 365, + 297, + 376 + ], + "spans": [ + { + "bbox": [ + 106, + 365, + 297, + 376 + ], + "score": 1.0, + "content": "column0 too?”. To ensure generalization, we", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 106, + 375, + 298, + 388 + ], + "spans": [ + { + "bbox": [ + 106, + 375, + 298, + 388 + ], + "score": 1.0, + "content": "only induce the grammars from the SPARC train-", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 106, + 387, + 297, + 398 + ], + "spans": [ + { + "bbox": [ + 106, + 387, + 297, + 398 + ], + "score": 1.0, + "content": "ing set. Appendix B shows examples of the", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 106, + 398, + 278, + 409 + ], + "spans": [ + { + "bbox": [ + 106, + 398, + 278, + 409 + ], + "score": 1.0, + "content": "grammar rules and synthesized utterances.", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 17.5, + "bbox_fs": [ + 105, + 188, + 298, + 409 + ] + }, + { + "type": "title", + "bbox": [ + 305, + 205, + 459, + 217 + ], + "lines": [ + { + "bbox": [ + 304, + 205, + 459, + 217 + ], + "spans": [ + { + "bbox": [ + 304, + 205, + 459, + 217 + ], + "score": 1.0, + "content": "Algorithm 1 Data synthesis algorithm", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 28 + }, + { + "type": "index", + "bbox": [ + 307, + 220, + 503, + 406 + ], + "lines": [ + { + "bbox": [ + 308, + 218, + 350, + 232 + ], + "spans": [ + { + "bbox": [ + 308, + 218, + 321, + 232 + ], + "score": 1.0, + "content": "1:", + "type": "text" + }, + { + "bbox": [ + 321, + 219, + 350, + 231 + ], + "score": 0.35, + "content": "\\tilde { h } \\emptyset", + "type": "inline_equation" + } + ], + "index": 29, + "is_list_start_line": true + }, + { + "bbox": [ + 307, + 230, + 402, + 245 + ], + "spans": [ + { + "bbox": [ + 307, + 230, + 321, + 245 + ], + "score": 1.0, + "content": "2:", + "type": "text" + }, + { + "bbox": [ + 321, + 232, + 402, + 243 + ], + "score": 0.57, + "content": "r _ { s } \\gets \\mathbf { S A M P L E } ( G _ { s } )", + "type": "inline_equation" + } + ], + "index": 30, + "is_list_start_line": true + }, + { + "bbox": [ + 307, + 242, + 475, + 256 + ], + "spans": [ + { + "bbox": [ + 307, + 242, + 321, + 256 + ], + "score": 1.0, + "content": "3:", + "type": "text" + }, + { + "bbox": [ + 321, + 244, + 361, + 254 + ], + "score": 0.29, + "content": "\\tilde { u } _ { 0 } , \\tilde { q } _ { 0 } \\gets", + "type": "inline_equation" + }, + { + "bbox": [ + 361, + 242, + 475, + 256 + ], + "score": 1.0, + "content": "RANDASSIGNSLOTS(d, rs)", + "type": "text" + } + ], + "index": 31, + "is_list_start_line": true + }, + { + "bbox": [ + 307, + 253, + 380, + 270 + ], + "spans": [ + { + "bbox": [ + 307, + 253, + 321, + 270 + ], + "score": 1.0, + "content": "4:", + "type": "text" + }, + { + "bbox": [ + 321, + 255, + 380, + 267 + ], + "score": 0.76, + "content": "\\tilde { h } + = ( \\tilde { u } _ { 0 } , \\tilde { q } _ { 0 } )", + "type": "inline_equation" + } + ], + "index": 32, + "is_list_start_line": true + }, + { + "bbox": [ + 309, + 266, + 385, + 281 + ], + "spans": [ + { + "bbox": [ + 309, + 266, + 321, + 281 + ], + "score": 1.0, + "content": "5:", + "type": "text" + }, + { + "bbox": [ + 321, + 267, + 385, + 279 + ], + "score": 0.78, + "content": "\\tilde { u } _ { p } , \\tilde { q } _ { p } \\gets \\tilde { u } _ { 0 } , \\tilde { q } _ { 0 }", + "type": "inline_equation" + } + ], + "index": 33, + "is_list_start_line": true + }, + { + "bbox": [ + 309, + 277, + 396, + 289 + ], + "spans": [ + { + "bbox": [ + 309, + 277, + 336, + 289 + ], + "score": 1.0, + "content": "6: for", + "type": "text" + }, + { + "bbox": [ + 336, + 279, + 362, + 288 + ], + "score": 0.85, + "content": "t \\gets 1", + "type": "inline_equation" + }, + { + "bbox": [ + 362, + 277, + 373, + 289 + ], + "score": 1.0, + "content": "to", + "type": "text" + }, + { + "bbox": [ + 373, + 279, + 382, + 288 + ], + "score": 0.75, + "content": "T", + "type": "inline_equation" + }, + { + "bbox": [ + 383, + 277, + 396, + 289 + ], + "score": 1.0, + "content": "do", + "type": "text" + } + ], + "index": 34, + "is_list_start_line": true + }, + { + "bbox": [ + 308, + 287, + 443, + 302 + ], + "spans": [ + { + "bbox": [ + 308, + 289, + 320, + 300 + ], + "score": 1.0, + "content": "7:", + "type": "text" + }, + { + "bbox": [ + 334, + 287, + 344, + 302 + ], + "score": 1.0, + "content": "if", + "type": "text" + }, + { + "bbox": [ + 344, + 289, + 420, + 300 + ], + "score": 0.64, + "content": "\\mathrm { R A N D } ( 0 , 1 ) < 0 . 2", + "type": "inline_equation" + }, + { + "bbox": [ + 421, + 287, + 443, + 302 + ], + "score": 1.0, + "content": "then", + "type": "text" + } + ], + "index": 35, + "is_list_start_line": true + }, + { + "bbox": [ + 308, + 300, + 433, + 311 + ], + "spans": [ + { + "bbox": [ + 308, + 300, + 320, + 311 + ], + "score": 1.0, + "content": "8:", + "type": "text" + }, + { + "bbox": [ + 351, + 300, + 433, + 311 + ], + "score": 0.59, + "content": "r _ { s } \\gets \\mathbf { S A M P L E } ( G _ { s } )", + "type": "inline_equation" + } + ], + "index": 36, + "is_list_start_line": true + }, + { + "bbox": [ + 308, + 311, + 503, + 322 + ], + "spans": [ + { + "bbox": [ + 308, + 311, + 320, + 321 + ], + "score": 1.0, + "content": "9:", + "type": "text" + }, + { + "bbox": [ + 350, + 311, + 503, + 322 + ], + "score": 0.28, + "content": "\\tilde { u } _ { t } , \\tilde { q } _ { t } \\gets \\mathrm { R A N D A S S I G N S L O T S } ( d , r _ { s } )", + "type": "inline_equation", + "image_path": "439557fc43124b93043d7c9e20114b1539ad2eed9481fc3bcc6952d5d9eeab13.jpg" + } + ], + "index": 37, + "is_list_start_line": true + }, + { + "bbox": [ + 304, + 321, + 355, + 333 + ], + "spans": [ + { + "bbox": [ + 304, + 321, + 320, + 333 + ], + "score": 1.0, + "content": "10:", + "type": "text" + }, + { + "bbox": [ + 335, + 321, + 355, + 333 + ], + "score": 1.0, + "content": "else", + "type": "text" + } + ], + "index": 38, + "is_list_start_line": true + }, + { + "bbox": [ + 304, + 332, + 432, + 344 + ], + "spans": [ + { + "bbox": [ + 304, + 333, + 320, + 343 + ], + "score": 1.0, + "content": "11:", + "type": "text" + }, + { + "bbox": [ + 351, + 332, + 432, + 344 + ], + "score": 0.5, + "content": "r _ { c } \\gets \\mathbf { S A M P L E } ( G _ { c } )", + "type": "inline_equation", + "image_path": "fbe5754fa9bffc24373a6dec7c04b590797190170142ffffbf0257dc031bc68b.jpg" + } + ], + "index": 39, + "is_list_start_line": true + }, + { + "bbox": [ + 304, + 342, + 501, + 356 + ], + "spans": [ + { + "bbox": [ + 304, + 343, + 320, + 355 + ], + "score": 1.0, + "content": "12:", + "type": "text" + }, + { + "bbox": [ + 350, + 342, + 448, + 356 + ], + "score": 1.0, + "content": "if CONSTRAINTCHECK", + "type": "text" + }, + { + "bbox": [ + 448, + 344, + 478, + 355 + ], + "score": 0.83, + "content": "( r _ { c } , \\tilde { q } _ { p } )", + "type": "inline_equation" + }, + { + "bbox": [ + 478, + 342, + 501, + 356 + ], + "score": 1.0, + "content": "then", + "type": "text" + } + ], + "index": 40, + "is_list_start_line": true + }, + { + "bbox": [ + 304, + 354, + 489, + 367 + ], + "spans": [ + { + "bbox": [ + 304, + 355, + 320, + 366 + ], + "score": 1.0, + "content": "13:", + "type": "text" + }, + { + "bbox": [ + 365, + 354, + 489, + 367 + ], + "score": 1.0, + "content": "u˜t, q˜t ← EDITASSIGN(˜qp, rc)", + "type": "text" + } + ], + "index": 41, + "is_list_start_line": true + }, + { + "bbox": [ + 304, + 365, + 408, + 382 + ], + "spans": [ + { + "bbox": [ + 304, + 368, + 320, + 379 + ], + "score": 1.0, + "content": "14:", + "type": "text" + }, + { + "bbox": [ + 335, + 365, + 408, + 382 + ], + "score": 1.0, + "content": "h˜+ = (˜ut, q˜t, rc)", + "type": "text" + } + ], + "index": 42, + "is_list_start_line": true + }, + { + "bbox": [ + 304, + 379, + 400, + 393 + ], + "spans": [ + { + "bbox": [ + 304, + 379, + 320, + 391 + ], + "score": 1.0, + "content": "15:", + "type": "text" + }, + { + "bbox": [ + 335, + 379, + 400, + 393 + ], + "score": 1.0, + "content": "u˜p, q˜p ← u˜t, q˜t", + "type": "text" + } + ], + "index": 43, + "is_list_start_line": true + }, + { + "bbox": [ + 303, + 392, + 361, + 404 + ], + "spans": [ + { + "bbox": [ + 303, + 392, + 361, + 404 + ], + "score": 1.0, + "content": "16: return h˜", + "type": "text" + } + ], + "index": 44, + "is_list_start_line": true + } + ], + "index": 36.5, + "bbox_fs": [ + 303, + 218, + 503, + 404 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 414, + 505, + 503 + ], + "lines": [ + { + "bbox": [ + 105, + 414, + 504, + 427 + ], + "spans": [ + { + "bbox": [ + 105, + 414, + 497, + 427 + ], + "score": 1.0, + "content": "The data synthesis procedure using the two grammars is shown in Algorithm 1. Given a database", + "type": "text" + }, + { + "bbox": [ + 497, + 415, + 504, + 424 + ], + "score": 0.69, + "content": "d", + "type": "inline_equation" + } + ], + "index": 45 + }, + { + "bbox": [ + 106, + 426, + 505, + 438 + ], + "spans": [ + { + "bbox": [ + 106, + 426, + 505, + 438 + ], + "score": 1.0, + "content": "and a sampled single-turn question-SQL template, the function RANDASSIGNSLOTS samples values", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 106, + 437, + 505, + 448 + ], + "spans": [ + { + "bbox": [ + 106, + 437, + 505, + 448 + ], + "score": 1.0, + "content": "(column names, cell values, and SQL operations) for typed slots in the template and returns the first", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 105, + 447, + 506, + 460 + ], + "spans": [ + { + "bbox": [ + 105, + 447, + 190, + 460 + ], + "score": 1.0, + "content": "synthesized question", + "type": "text" + }, + { + "bbox": [ + 190, + 448, + 201, + 458 + ], + "score": 0.88, + "content": "\\tilde { u } _ { 0 }", + "type": "inline_equation" + }, + { + "bbox": [ + 201, + 447, + 336, + 460 + ], + "score": 1.0, + "content": "and the corresponding SQL query", + "type": "text" + }, + { + "bbox": [ + 336, + 448, + 346, + 459 + ], + "score": 0.86, + "content": "\\tilde { q } _ { 0 }", + "type": "inline_equation" + }, + { + "bbox": [ + 346, + 447, + 398, + 460 + ], + "score": 1.0, + "content": ". To generate", + "type": "text" + }, + { + "bbox": [ + 398, + 448, + 407, + 457 + ], + "score": 0.8, + "content": "T", + "type": "inline_equation" + }, + { + "bbox": [ + 407, + 447, + 506, + 460 + ], + "score": 1.0, + "content": "follow-up question-SQL", + "type": "text" + } + ], + "index": 48 + }, + { + "bbox": [ + 104, + 458, + 506, + 472 + ], + "spans": [ + { + "bbox": [ + 104, + 458, + 269, + 472 + ], + "score": 1.0, + "content": "pairs, the function CONSTRAINTCHECK", + "type": "text" + }, + { + "bbox": [ + 269, + 459, + 299, + 470 + ], + "score": 0.68, + "content": "( r _ { c } , \\tilde { q } _ { p } )", + "type": "inline_equation" + }, + { + "bbox": [ + 299, + 458, + 414, + 472 + ], + "score": 1.0, + "content": "checks if the previous query", + "type": "text" + }, + { + "bbox": [ + 414, + 459, + 424, + 471 + ], + "score": 0.89, + "content": "\\tilde { q } _ { p }", + "type": "inline_equation" + }, + { + "bbox": [ + 425, + 458, + 506, + 472 + ], + "score": 1.0, + "content": "satisfies constraints", + "type": "text" + } + ], + "index": 49 + }, + { + "bbox": [ + 104, + 467, + 505, + 483 + ], + "spans": [ + { + "bbox": [ + 104, + 467, + 205, + 483 + ], + "score": 1.0, + "content": "of the sampled template", + "type": "text" + }, + { + "bbox": [ + 205, + 471, + 215, + 480 + ], + "score": 0.85, + "content": "r _ { c }", + "type": "inline_equation" + }, + { + "bbox": [ + 216, + 467, + 474, + 483 + ], + "score": 1.0, + "content": "(e.g. contains its mentioned nonterminal). Finally, EDITASSIGN", + "type": "text" + }, + { + "bbox": [ + 475, + 469, + 505, + 481 + ], + "score": 0.85, + "content": "( \\tilde { q } _ { p } , r _ { c } )", + "type": "inline_equation" + } + ], + "index": 50 + }, + { + "bbox": [ + 105, + 480, + 506, + 493 + ], + "spans": [ + { + "bbox": [ + 105, + 480, + 203, + 493 + ], + "score": 1.0, + "content": "edits the previous SQL", + "type": "text" + }, + { + "bbox": [ + 203, + 481, + 214, + 492 + ], + "score": 0.86, + "content": "\\tilde { q } _ { p }", + "type": "inline_equation" + }, + { + "bbox": [ + 214, + 480, + 398, + 493 + ], + "score": 1.0, + "content": "to generate the current follow-up SQL label", + "type": "text" + }, + { + "bbox": [ + 398, + 481, + 407, + 492 + ], + "score": 0.87, + "content": "\\tilde { q } _ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 407, + 480, + 506, + 493 + ], + "score": 1.0, + "content": "and samples values for", + "type": "text" + } + ], + "index": 51 + }, + { + "bbox": [ + 105, + 491, + 427, + 504 + ], + "spans": [ + { + "bbox": [ + 105, + 491, + 412, + 504 + ], + "score": 1.0, + "content": "typed slots in the template to generate the corresponding follow-up question", + "type": "text" + }, + { + "bbox": [ + 412, + 492, + 422, + 502 + ], + "score": 0.87, + "content": "\\tilde { u } _ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 423, + 491, + 427, + 504 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 52 + } + ], + "index": 48.5, + "bbox_fs": [ + 104, + 414, + 506, + 504 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 527, + 248, + 540 + ], + "lines": [ + { + "bbox": [ + 105, + 526, + 250, + 541 + ], + "spans": [ + { + "bbox": [ + 105, + 526, + 250, + 541 + ], + "score": 1.0, + "content": "3 EXPERIMENT SETTINGS", + "type": "text" + } + ], + "index": 53 + } + ], + "index": 53 + }, + { + "type": "title", + "bbox": [ + 108, + 557, + 297, + 569 + ], + "lines": [ + { + "bbox": [ + 106, + 557, + 298, + 570 + ], + "spans": [ + { + "bbox": [ + 106, + 557, + 298, + 570 + ], + "score": 1.0, + "content": "3.1 DATASETS AND EVALUATION METRICS", + "type": "text" + } + ], + "index": 54 + } + ], + "index": 54 + }, + { + "type": "text", + "bbox": [ + 107, + 581, + 506, + 614 + ], + "lines": [ + { + "bbox": [ + 105, + 581, + 506, + 594 + ], + "spans": [ + { + "bbox": [ + 105, + 581, + 506, + 594 + ], + "score": 1.0, + "content": "We evaluate SCORE on four popular CSP tasks: SPARC (sequential text-to-SQL), COSQL (conver-", + "type": "text" + } + ], + "index": 55 + }, + { + "bbox": [ + 105, + 592, + 506, + 606 + ], + "spans": [ + { + "bbox": [ + 105, + 592, + 506, + 606 + ], + "score": 1.0, + "content": "sational text-to-SQL), MWOZ (dialogue state tracking), and SQA (sequential question answering),", + "type": "text" + } + ], + "index": 56 + }, + { + "bbox": [ + 106, + 604, + 202, + 614 + ], + "spans": [ + { + "bbox": [ + 106, + 604, + 202, + 614 + ], + "score": 1.0, + "content": "summarized in Table 1.", + "type": "text" + } + ], + "index": 57 + } + ], + "index": 56, + "bbox_fs": [ + 105, + 581, + 506, + 614 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 620, + 506, + 686 + ], + "lines": [ + { + "bbox": [ + 106, + 620, + 506, + 633 + ], + "spans": [ + { + "bbox": [ + 106, + 620, + 506, + 633 + ], + "score": 1.0, + "content": "SPARC (Yu et al., 2019b) 1 is a large collection of sequences of inter-related context-dependent", + "type": "text" + } + ], + "index": 58 + }, + { + "bbox": [ + 105, + 631, + 506, + 645 + ], + "spans": [ + { + "bbox": [ + 105, + 631, + 360, + 645 + ], + "score": 1.0, + "content": "question-SQL pairs. It contains 4.3K questions sequences and", + "type": "text" + }, + { + "bbox": [ + 360, + 632, + 382, + 642 + ], + "score": 0.86, + "content": "1 2 \\mathrm { k } +", + "type": "inline_equation" + }, + { + "bbox": [ + 383, + 631, + 506, + 645 + ], + "score": 1.0, + "content": "questions. COSQL (Yu et al.,", + "type": "text" + } + ], + "index": 59 + }, + { + "bbox": [ + 105, + 642, + 506, + 655 + ], + "spans": [ + { + "bbox": [ + 105, + 642, + 506, + 655 + ], + "score": 1.0, + "content": "2019a) 2 is a large conversational text-to-SQL corpus, with 3k dialogues, collected under the Wizard-", + "type": "text" + } + ], + "index": 60 + }, + { + "bbox": [ + 105, + 653, + 505, + 667 + ], + "spans": [ + { + "bbox": [ + 105, + 653, + 505, + 667 + ], + "score": 1.0, + "content": "of-Oz (WOZ) setting. We focus on the SQL-grounded dialogue state tracking task which maps user", + "type": "text" + } + ], + "index": 61 + }, + { + "bbox": [ + 105, + 664, + 506, + 677 + ], + "spans": [ + { + "bbox": [ + 105, + 664, + 506, + 677 + ], + "score": 1.0, + "content": "intents into SQL queries if possible given the interaction history. Both SPARC and COSQL cover", + "type": "text" + } + ], + "index": 62 + }, + { + "bbox": [ + 105, + 675, + 275, + 688 + ], + "spans": [ + { + "bbox": [ + 105, + 675, + 275, + 688 + ], + "score": 1.0, + "content": "200 complex DBs spanning 138 domains.", + "type": "text" + } + ], + "index": 63 + } + ], + "index": 60.5, + "bbox_fs": [ + 105, + 620, + 506, + 688 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 107, + 82, + 504, + 115 + ], + "lines": [ + { + "bbox": [ + 105, + 82, + 505, + 95 + ], + "spans": [ + { + "bbox": [ + 105, + 82, + 505, + 95 + ], + "score": 1.0, + "content": "MWOZ (Budzianowski et al., 2018; Eric et al., 2019) 3 is a corpus of over 10k human-human written", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 106, + 93, + 505, + 105 + ], + "spans": [ + { + "bbox": [ + 106, + 93, + 505, + 105 + ], + "score": 1.0, + "content": "task-oriented dialogs created through a WOZ crowdsourcing setting. We focus on the belief state", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 106, + 105, + 463, + 117 + ], + "spans": [ + { + "bbox": [ + 106, + 105, + 463, + 117 + ], + "score": 1.0, + "content": "tracking task in MWOZ which maps multi-turn user utterances to slot-value annotations.", + "type": "text" + } + ], + "index": 2 + } + ], + "index": 1 + }, + { + "type": "text", + "bbox": [ + 107, + 121, + 505, + 176 + ], + "lines": [ + { + "bbox": [ + 105, + 119, + 507, + 136 + ], + "spans": [ + { + "bbox": [ + 105, + 119, + 507, + 136 + ], + "score": 1.0, + "content": "SQA (Iyyer et al., 2017) 4 is constructed from a subset of WikiTableQuestions (Pasupat & Liang,", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 131, + 505, + 145 + ], + "spans": [ + { + "bbox": [ + 105, + 131, + 505, + 145 + ], + "score": 1.0, + "content": "2015) by decomposing highly compositional questions into a sequence of simple questions. The task", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 143, + 505, + 156 + ], + "spans": [ + { + "bbox": [ + 105, + 143, + 505, + 156 + ], + "score": 1.0, + "content": "is weakly-supervised because each resulting decomposed question is only annotated with answers", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 154, + 505, + 167 + ], + "spans": [ + { + "bbox": [ + 105, + 154, + 505, + 167 + ], + "score": 1.0, + "content": "as one or more table cells, while the logic program is latent. It has 6,066 question sequences with", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 165, + 414, + 178 + ], + "spans": [ + { + "bbox": [ + 105, + 165, + 414, + 178 + ], + "score": 1.0, + "content": "17,553 questions in total on 982 unique open-domain tables from Wikipedia.", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 5 + }, + { + "type": "text", + "bbox": [ + 107, + 182, + 505, + 237 + ], + "lines": [ + { + "bbox": [ + 106, + 182, + 505, + 194 + ], + "spans": [ + { + "bbox": [ + 106, + 182, + 505, + 194 + ], + "score": 1.0, + "content": "We adopt the official metrics defined for each of the tasks. For SPARC and COSQL, we report", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 193, + 505, + 206 + ], + "spans": [ + { + "bbox": [ + 105, + 193, + 505, + 206 + ], + "score": 1.0, + "content": "question match accuracy (QM): the exact set match accuracy (Yu et al., 2018b) over SQL templates", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 204, + 505, + 217 + ], + "spans": [ + { + "bbox": [ + 105, + 204, + 505, + 217 + ], + "score": 1.0, + "content": "and interaction match accuracy (IM): the ratio of interactions for which all questions are predicted", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 215, + 505, + 228 + ], + "spans": [ + { + "bbox": [ + 105, + 215, + 505, + 228 + ], + "score": 1.0, + "content": "correctly. For MWOZ, we report joint goal accuracy (JGA) which is similar to the IM accuracy used", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 225, + 460, + 240 + ], + "spans": [ + { + "bbox": [ + 105, + 225, + 460, + 240 + ], + "score": 1.0, + "content": "in SPARC and COSQL. Finally, for SQA, we report denotation QM and IM accuracies.", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 10 + }, + { + "type": "title", + "bbox": [ + 108, + 251, + 298, + 262 + ], + "lines": [ + { + "bbox": [ + 106, + 250, + 299, + 263 + ], + "spans": [ + { + "bbox": [ + 106, + 250, + 299, + 263 + ], + "score": 1.0, + "content": "3.2 BASE MODELS AND OTHER BASELINES", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 13 + }, + { + "type": "text", + "bbox": [ + 107, + 271, + 505, + 316 + ], + "lines": [ + { + "bbox": [ + 105, + 271, + 506, + 284 + ], + "spans": [ + { + "bbox": [ + 105, + 271, + 506, + 284 + ], + "score": 1.0, + "content": "For SPARC and COSQL, we use RAT-SQL (Wang et al., 2020) as our base model. Since it is", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 282, + 506, + 296 + ], + "spans": [ + { + "bbox": [ + 105, + 282, + 506, + 296 + ], + "score": 1.0, + "content": "originally developed for single-turn text-to-SQL, we extend it to a multi-turn setting by concatenating", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 106, + 294, + 507, + 306 + ], + "spans": [ + { + "bbox": [ + 106, + 294, + 507, + 306 + ], + "score": 1.0, + "content": "current utterances and dialog history (see Section 2.2). Note that RAT-SQL alone, without SCORE,", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 304, + 505, + 317 + ], + "spans": [ + { + "bbox": [ + 105, + 304, + 505, + 317 + ], + "score": 1.0, + "content": "achieves better or comparable results to state-of-the-art models developed for SPARC and COSQL.", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 15.5 + }, + { + "type": "text", + "bbox": [ + 107, + 321, + 505, + 387 + ], + "lines": [ + { + "bbox": [ + 105, + 321, + 505, + 334 + ], + "spans": [ + { + "bbox": [ + 105, + 321, + 505, + 334 + ], + "score": 1.0, + "content": "For MWOZ, we employ Trippy (Heck et al., 2020). It achieves state-of-the-art performance on", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 104, + 331, + 506, + 346 + ], + "spans": [ + { + "bbox": [ + 104, + 331, + 181, + 346 + ], + "score": 1.0, + "content": "MWOZ and uses", + "type": "text" + }, + { + "bbox": [ + 181, + 333, + 221, + 344 + ], + "score": 0.6, + "content": "\\mathbf { B E R T _ { b a s e } }", + "type": "inline_equation" + }, + { + "bbox": [ + 221, + 331, + 506, + 346 + ], + "score": 1.0, + "content": "to encode user and system utterances and dialog history. We report", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 343, + 505, + 356 + ], + "spans": [ + { + "bbox": [ + 105, + 343, + 196, + 356 + ], + "score": 1.0, + "content": "higher results (around", + "type": "text" + }, + { + "bbox": [ + 196, + 344, + 211, + 354 + ], + "score": 0.84, + "content": "2 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 212, + 343, + 505, + 356 + ], + "score": 1.0, + "content": ") for Trippy than reported by Heck et al. (2020) since we train it for more", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 354, + 505, + 368 + ], + "spans": [ + { + "bbox": [ + 105, + 354, + 505, + 368 + ], + "score": 1.0, + "content": "epochs (25 vs. 10). To show the improvement of SCORE is not tied to specific base systems, we also", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 365, + 505, + 378 + ], + "spans": [ + { + "bbox": [ + 105, + 365, + 505, + 378 + ], + "score": 1.0, + "content": "experiment with another strong base model SOM-DST (Kim et al., 2020) for MWOZ and follow the", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 106, + 376, + 254, + 389 + ], + "spans": [ + { + "bbox": [ + 106, + 376, + 254, + 389 + ], + "score": 1.0, + "content": "same experimental details to train it.", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 20.5 + }, + { + "type": "text", + "bbox": [ + 107, + 393, + 505, + 438 + ], + "lines": [ + { + "bbox": [ + 105, + 392, + 506, + 407 + ], + "spans": [ + { + "bbox": [ + 105, + 392, + 506, + 407 + ], + "score": 1.0, + "content": "For SQA, we use the weakly-supervised semantic parser proposed by Wang et al. (2019). The model", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 405, + 506, + 417 + ], + "spans": [ + { + "bbox": [ + 105, + 405, + 506, + 417 + ], + "score": 1.0, + "content": "first generates an abstract program given an input question and then instantiates it by searching for", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 415, + 505, + 428 + ], + "spans": [ + { + "bbox": [ + 105, + 415, + 505, + 428 + ], + "score": 1.0, + "content": "alignments between slots in the abstract program and question spans. As it is originally developed for", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 426, + 465, + 439 + ], + "spans": [ + { + "bbox": [ + 105, + 426, + 465, + 439 + ], + "score": 1.0, + "content": "single-turn questions, we extend it to the multi-turn setting in the same way as RAT-SQL.", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 25.5 + }, + { + "type": "text", + "bbox": [ + 107, + 443, + 505, + 476 + ], + "lines": [ + { + "bbox": [ + 106, + 443, + 505, + 455 + ], + "spans": [ + { + "bbox": [ + 106, + 443, + 505, + 455 + ], + "score": 1.0, + "content": "We report additional implementation details for all base models in Appendix C. In addition to", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 455, + 505, + 466 + ], + "spans": [ + { + "bbox": [ + 105, + 455, + 505, + 466 + ], + "score": 1.0, + "content": "reporting results for all base models with SCORE, we also report original base models results (with", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 106, + 466, + 439, + 477 + ], + "spans": [ + { + "bbox": [ + 106, + 466, + 439, + 477 + ], + "score": 1.0, + "content": "BERT and/or ROBERTA) and several other state-of-the-art baselines for each task.", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 29 + }, + { + "type": "title", + "bbox": [ + 108, + 490, + 282, + 501 + ], + "lines": [ + { + "bbox": [ + 106, + 490, + 282, + 503 + ], + "spans": [ + { + "bbox": [ + 106, + 490, + 282, + 503 + ], + "score": 1.0, + "content": "3.3 DATASET USAGE IN PRE-TRAINING", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 31 + }, + { + "type": "text", + "bbox": [ + 107, + 511, + 505, + 566 + ], + "lines": [ + { + "bbox": [ + 106, + 511, + 504, + 523 + ], + "spans": [ + { + "bbox": [ + 106, + 511, + 504, + 523 + ], + "score": 1.0, + "content": "In our experiments and ablation study, we train several versions of SCORE with different objectives", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 106, + 521, + 505, + 534 + ], + "spans": [ + { + "bbox": [ + 106, + 521, + 505, + 534 + ], + "score": 1.0, + "content": "and datasets: (1) SCORE (MLM): pre-trained on annotated natural questions using MLM. (2) SCORE", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 108, + 533, + 506, + 546 + ], + "spans": [ + { + "bbox": [ + 108, + 533, + 154, + 544 + ], + "score": 0.73, + "content": "( \\mathrm { C C S + T C S } )", + "type": "inline_equation" + }, + { + "bbox": [ + 154, + 533, + 506, + 546 + ], + "score": 1.0, + "content": "): pre-trained on only synthesized data, which achieves the best results on SParC, CoSQL,", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 542, + 506, + 557 + ], + "spans": [ + { + "bbox": [ + 105, + 542, + 199, + 557 + ], + "score": 1.0, + "content": "and SQA. (3) SCORE", + "type": "text" + }, + { + "bbox": [ + 199, + 544, + 274, + 555 + ], + "score": 0.78, + "content": "\\mathbf { C C S + T C S + M L M } )", + "type": "inline_equation" + }, + { + "bbox": [ + 275, + 542, + 443, + 557 + ], + "score": 1.0, + "content": ": pre-trained on the synthesized data using", + "type": "text" + }, + { + "bbox": [ + 443, + 544, + 487, + 555 + ], + "score": 0.45, + "content": "\\mathrm { C C S + T C S }", + "type": "inline_equation" + }, + { + "bbox": [ + 488, + 542, + 506, + 557 + ], + "score": 1.0, + "content": "and", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 555, + 271, + 567 + ], + "spans": [ + { + "bbox": [ + 105, + 555, + 271, + 567 + ], + "score": 1.0, + "content": "annotated natural questions using MLM.", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 34 + }, + { + "type": "text", + "bbox": [ + 107, + 572, + 505, + 616 + ], + "lines": [ + { + "bbox": [ + 105, + 571, + 505, + 585 + ], + "spans": [ + { + "bbox": [ + 105, + 571, + 505, + 585 + ], + "score": 1.0, + "content": "Furthermore, note that the synthesized data is generated using grammar induced by about 500", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 581, + 507, + 596 + ], + "spans": [ + { + "bbox": [ + 105, + 581, + 507, + 596 + ], + "score": 1.0, + "content": "examples from only SPARC. Therefore, no COSQL or SQA data are seen in any pre-training steps.", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 593, + 505, + 607 + ], + "spans": [ + { + "bbox": [ + 105, + 593, + 505, + 607 + ], + "score": 1.0, + "content": "For MWOZ, Campagna et al. (2020) study only the dev examples to induce the data synthesis", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 606, + 147, + 617 + ], + "spans": [ + { + "bbox": [ + 105, + 606, + 147, + 617 + ], + "score": 1.0, + "content": "grammar.", + "type": "text" + } + ], + "index": 40 + } + ], + "index": 38.5 + }, + { + "type": "title", + "bbox": [ + 108, + 632, + 253, + 645 + ], + "lines": [ + { + "bbox": [ + 105, + 631, + 254, + 646 + ], + "spans": [ + { + "bbox": [ + 105, + 631, + 254, + 646 + ], + "score": 1.0, + "content": "4 RESULTS AND ANALYSIS", + "type": "text" + } + ], + "index": 41 + } + ], + "index": 41 + }, + { + "type": "text", + "bbox": [ + 107, + 657, + 505, + 702 + ], + "lines": [ + { + "bbox": [ + 105, + 657, + 506, + 670 + ], + "spans": [ + { + "bbox": [ + 105, + 657, + 506, + 670 + ], + "score": 1.0, + "content": "Overall Results The results of SPARC and COSQL, MWOZ, and SQA are in Table 2, 3, and 4", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 106, + 669, + 505, + 681 + ], + "spans": [ + { + "bbox": [ + 106, + 669, + 505, + 681 + ], + "score": 1.0, + "content": "respectively. We run each main experiment three times with different random seeds and report the", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 679, + 507, + 692 + ], + "spans": [ + { + "bbox": [ + 105, + 679, + 507, + 692 + ], + "score": 1.0, + "content": "mean. Overall, SCORE gains significant improvements over BERT and ROBERTA on all tasks,", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 106, + 690, + 406, + 702 + ], + "spans": [ + { + "bbox": [ + 106, + 690, + 406, + 702 + ], + "score": 1.0, + "content": "achieving state-of-the-art performances on SPARC, COSQL, and MWOZ.", + "type": "text" + } + ], + "index": 45 + } + ], + "index": 43.5 + } + ], + "page_idx": 5, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 118, + 711, + 339, + 731 + ], + "lines": [ + { + "bbox": [ + 118, + 708, + 340, + 722 + ], + "spans": [ + { + "bbox": [ + 118, + 708, + 340, + 722 + ], + "score": 1.0, + "content": "3https://github.com/budzianowski/multiwoz", + "type": "text" + } + ] + }, + { + "bbox": [ + 118, + 720, + 217, + 734 + ], + "spans": [ + { + "bbox": [ + 118, + 720, + 217, + 734 + ], + "score": 1.0, + "content": "4http://aka.ms/sqa", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 108, + 27, + 292, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 25, + 293, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 25, + 293, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2021", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 302, + 752, + 309, + 760 + ], + "lines": [ + { + "bbox": [ + 302, + 751, + 310, + 762 + ], + "spans": [ + { + "bbox": [ + 302, + 751, + 310, + 762 + ], + "score": 1.0, + "content": "6", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 107, + 82, + 504, + 115 + ], + "lines": [ + { + "bbox": [ + 105, + 82, + 505, + 95 + ], + "spans": [ + { + "bbox": [ + 105, + 82, + 505, + 95 + ], + "score": 1.0, + "content": "MWOZ (Budzianowski et al., 2018; Eric et al., 2019) 3 is a corpus of over 10k human-human written", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 106, + 93, + 505, + 105 + ], + "spans": [ + { + "bbox": [ + 106, + 93, + 505, + 105 + ], + "score": 1.0, + "content": "task-oriented dialogs created through a WOZ crowdsourcing setting. We focus on the belief state", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 106, + 105, + 463, + 117 + ], + "spans": [ + { + "bbox": [ + 106, + 105, + 463, + 117 + ], + "score": 1.0, + "content": "tracking task in MWOZ which maps multi-turn user utterances to slot-value annotations.", + "type": "text" + } + ], + "index": 2 + } + ], + "index": 1, + "bbox_fs": [ + 105, + 82, + 505, + 117 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 121, + 505, + 176 + ], + "lines": [ + { + "bbox": [ + 105, + 119, + 507, + 136 + ], + "spans": [ + { + "bbox": [ + 105, + 119, + 507, + 136 + ], + "score": 1.0, + "content": "SQA (Iyyer et al., 2017) 4 is constructed from a subset of WikiTableQuestions (Pasupat & Liang,", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 131, + 505, + 145 + ], + "spans": [ + { + "bbox": [ + 105, + 131, + 505, + 145 + ], + "score": 1.0, + "content": "2015) by decomposing highly compositional questions into a sequence of simple questions. The task", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 143, + 505, + 156 + ], + "spans": [ + { + "bbox": [ + 105, + 143, + 505, + 156 + ], + "score": 1.0, + "content": "is weakly-supervised because each resulting decomposed question is only annotated with answers", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 154, + 505, + 167 + ], + "spans": [ + { + "bbox": [ + 105, + 154, + 505, + 167 + ], + "score": 1.0, + "content": "as one or more table cells, while the logic program is latent. It has 6,066 question sequences with", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 165, + 414, + 178 + ], + "spans": [ + { + "bbox": [ + 105, + 165, + 414, + 178 + ], + "score": 1.0, + "content": "17,553 questions in total on 982 unique open-domain tables from Wikipedia.", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 5, + "bbox_fs": [ + 105, + 119, + 507, + 178 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 182, + 505, + 237 + ], + "lines": [ + { + "bbox": [ + 106, + 182, + 505, + 194 + ], + "spans": [ + { + "bbox": [ + 106, + 182, + 505, + 194 + ], + "score": 1.0, + "content": "We adopt the official metrics defined for each of the tasks. For SPARC and COSQL, we report", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 193, + 505, + 206 + ], + "spans": [ + { + "bbox": [ + 105, + 193, + 505, + 206 + ], + "score": 1.0, + "content": "question match accuracy (QM): the exact set match accuracy (Yu et al., 2018b) over SQL templates", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 204, + 505, + 217 + ], + "spans": [ + { + "bbox": [ + 105, + 204, + 505, + 217 + ], + "score": 1.0, + "content": "and interaction match accuracy (IM): the ratio of interactions for which all questions are predicted", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 215, + 505, + 228 + ], + "spans": [ + { + "bbox": [ + 105, + 215, + 505, + 228 + ], + "score": 1.0, + "content": "correctly. For MWOZ, we report joint goal accuracy (JGA) which is similar to the IM accuracy used", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 225, + 460, + 240 + ], + "spans": [ + { + "bbox": [ + 105, + 225, + 460, + 240 + ], + "score": 1.0, + "content": "in SPARC and COSQL. Finally, for SQA, we report denotation QM and IM accuracies.", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 10, + "bbox_fs": [ + 105, + 182, + 505, + 240 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 251, + 298, + 262 + ], + "lines": [ + { + "bbox": [ + 106, + 250, + 299, + 263 + ], + "spans": [ + { + "bbox": [ + 106, + 250, + 299, + 263 + ], + "score": 1.0, + "content": "3.2 BASE MODELS AND OTHER BASELINES", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 13 + }, + { + "type": "text", + "bbox": [ + 107, + 271, + 505, + 316 + ], + "lines": [ + { + "bbox": [ + 105, + 271, + 506, + 284 + ], + "spans": [ + { + "bbox": [ + 105, + 271, + 506, + 284 + ], + "score": 1.0, + "content": "For SPARC and COSQL, we use RAT-SQL (Wang et al., 2020) as our base model. Since it is", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 282, + 506, + 296 + ], + "spans": [ + { + "bbox": [ + 105, + 282, + 506, + 296 + ], + "score": 1.0, + "content": "originally developed for single-turn text-to-SQL, we extend it to a multi-turn setting by concatenating", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 106, + 294, + 507, + 306 + ], + "spans": [ + { + "bbox": [ + 106, + 294, + 507, + 306 + ], + "score": 1.0, + "content": "current utterances and dialog history (see Section 2.2). Note that RAT-SQL alone, without SCORE,", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 304, + 505, + 317 + ], + "spans": [ + { + "bbox": [ + 105, + 304, + 505, + 317 + ], + "score": 1.0, + "content": "achieves better or comparable results to state-of-the-art models developed for SPARC and COSQL.", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 15.5, + "bbox_fs": [ + 105, + 271, + 507, + 317 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 321, + 505, + 387 + ], + "lines": [ + { + "bbox": [ + 105, + 321, + 505, + 334 + ], + "spans": [ + { + "bbox": [ + 105, + 321, + 505, + 334 + ], + "score": 1.0, + "content": "For MWOZ, we employ Trippy (Heck et al., 2020). It achieves state-of-the-art performance on", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 104, + 331, + 506, + 346 + ], + "spans": [ + { + "bbox": [ + 104, + 331, + 181, + 346 + ], + "score": 1.0, + "content": "MWOZ and uses", + "type": "text" + }, + { + "bbox": [ + 181, + 333, + 221, + 344 + ], + "score": 0.6, + "content": "\\mathbf { B E R T _ { b a s e } }", + "type": "inline_equation" + }, + { + "bbox": [ + 221, + 331, + 506, + 346 + ], + "score": 1.0, + "content": "to encode user and system utterances and dialog history. We report", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 343, + 505, + 356 + ], + "spans": [ + { + "bbox": [ + 105, + 343, + 196, + 356 + ], + "score": 1.0, + "content": "higher results (around", + "type": "text" + }, + { + "bbox": [ + 196, + 344, + 211, + 354 + ], + "score": 0.84, + "content": "2 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 212, + 343, + 505, + 356 + ], + "score": 1.0, + "content": ") for Trippy than reported by Heck et al. (2020) since we train it for more", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 354, + 505, + 368 + ], + "spans": [ + { + "bbox": [ + 105, + 354, + 505, + 368 + ], + "score": 1.0, + "content": "epochs (25 vs. 10). To show the improvement of SCORE is not tied to specific base systems, we also", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 365, + 505, + 378 + ], + "spans": [ + { + "bbox": [ + 105, + 365, + 505, + 378 + ], + "score": 1.0, + "content": "experiment with another strong base model SOM-DST (Kim et al., 2020) for MWOZ and follow the", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 106, + 376, + 254, + 389 + ], + "spans": [ + { + "bbox": [ + 106, + 376, + 254, + 389 + ], + "score": 1.0, + "content": "same experimental details to train it.", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 20.5, + "bbox_fs": [ + 104, + 321, + 506, + 389 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 393, + 505, + 438 + ], + "lines": [ + { + "bbox": [ + 105, + 392, + 506, + 407 + ], + "spans": [ + { + "bbox": [ + 105, + 392, + 506, + 407 + ], + "score": 1.0, + "content": "For SQA, we use the weakly-supervised semantic parser proposed by Wang et al. (2019). The model", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 405, + 506, + 417 + ], + "spans": [ + { + "bbox": [ + 105, + 405, + 506, + 417 + ], + "score": 1.0, + "content": "first generates an abstract program given an input question and then instantiates it by searching for", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 415, + 505, + 428 + ], + "spans": [ + { + "bbox": [ + 105, + 415, + 505, + 428 + ], + "score": 1.0, + "content": "alignments between slots in the abstract program and question spans. As it is originally developed for", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 426, + 465, + 439 + ], + "spans": [ + { + "bbox": [ + 105, + 426, + 465, + 439 + ], + "score": 1.0, + "content": "single-turn questions, we extend it to the multi-turn setting in the same way as RAT-SQL.", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 25.5, + "bbox_fs": [ + 105, + 392, + 506, + 439 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 443, + 505, + 476 + ], + "lines": [ + { + "bbox": [ + 106, + 443, + 505, + 455 + ], + "spans": [ + { + "bbox": [ + 106, + 443, + 505, + 455 + ], + "score": 1.0, + "content": "We report additional implementation details for all base models in Appendix C. In addition to", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 455, + 505, + 466 + ], + "spans": [ + { + "bbox": [ + 105, + 455, + 505, + 466 + ], + "score": 1.0, + "content": "reporting results for all base models with SCORE, we also report original base models results (with", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 106, + 466, + 439, + 477 + ], + "spans": [ + { + "bbox": [ + 106, + 466, + 439, + 477 + ], + "score": 1.0, + "content": "BERT and/or ROBERTA) and several other state-of-the-art baselines for each task.", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 29, + "bbox_fs": [ + 105, + 443, + 505, + 477 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 490, + 282, + 501 + ], + "lines": [ + { + "bbox": [ + 106, + 490, + 282, + 503 + ], + "spans": [ + { + "bbox": [ + 106, + 490, + 282, + 503 + ], + "score": 1.0, + "content": "3.3 DATASET USAGE IN PRE-TRAINING", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 31 + }, + { + "type": "text", + "bbox": [ + 107, + 511, + 505, + 566 + ], + "lines": [ + { + "bbox": [ + 106, + 511, + 504, + 523 + ], + "spans": [ + { + "bbox": [ + 106, + 511, + 504, + 523 + ], + "score": 1.0, + "content": "In our experiments and ablation study, we train several versions of SCORE with different objectives", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 106, + 521, + 505, + 534 + ], + "spans": [ + { + "bbox": [ + 106, + 521, + 505, + 534 + ], + "score": 1.0, + "content": "and datasets: (1) SCORE (MLM): pre-trained on annotated natural questions using MLM. (2) SCORE", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 108, + 533, + 506, + 546 + ], + "spans": [ + { + "bbox": [ + 108, + 533, + 154, + 544 + ], + "score": 0.73, + "content": "( \\mathrm { C C S + T C S } )", + "type": "inline_equation" + }, + { + "bbox": [ + 154, + 533, + 506, + 546 + ], + "score": 1.0, + "content": "): pre-trained on only synthesized data, which achieves the best results on SParC, CoSQL,", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 542, + 506, + 557 + ], + "spans": [ + { + "bbox": [ + 105, + 542, + 199, + 557 + ], + "score": 1.0, + "content": "and SQA. (3) SCORE", + "type": "text" + }, + { + "bbox": [ + 199, + 544, + 274, + 555 + ], + "score": 0.78, + "content": "\\mathbf { C C S + T C S + M L M } )", + "type": "inline_equation" + }, + { + "bbox": [ + 275, + 542, + 443, + 557 + ], + "score": 1.0, + "content": ": pre-trained on the synthesized data using", + "type": "text" + }, + { + "bbox": [ + 443, + 544, + 487, + 555 + ], + "score": 0.45, + "content": "\\mathrm { C C S + T C S }", + "type": "inline_equation" + }, + { + "bbox": [ + 488, + 542, + 506, + 557 + ], + "score": 1.0, + "content": "and", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 555, + 271, + 567 + ], + "spans": [ + { + "bbox": [ + 105, + 555, + 271, + 567 + ], + "score": 1.0, + "content": "annotated natural questions using MLM.", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 34, + "bbox_fs": [ + 105, + 511, + 506, + 567 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 572, + 505, + 616 + ], + "lines": [ + { + "bbox": [ + 105, + 571, + 505, + 585 + ], + "spans": [ + { + "bbox": [ + 105, + 571, + 505, + 585 + ], + "score": 1.0, + "content": "Furthermore, note that the synthesized data is generated using grammar induced by about 500", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 581, + 507, + 596 + ], + "spans": [ + { + "bbox": [ + 105, + 581, + 507, + 596 + ], + "score": 1.0, + "content": "examples from only SPARC. Therefore, no COSQL or SQA data are seen in any pre-training steps.", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 593, + 505, + 607 + ], + "spans": [ + { + "bbox": [ + 105, + 593, + 505, + 607 + ], + "score": 1.0, + "content": "For MWOZ, Campagna et al. (2020) study only the dev examples to induce the data synthesis", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 606, + 147, + 617 + ], + "spans": [ + { + "bbox": [ + 105, + 606, + 147, + 617 + ], + "score": 1.0, + "content": "grammar.", + "type": "text" + } + ], + "index": 40 + } + ], + "index": 38.5, + "bbox_fs": [ + 105, + 571, + 507, + 617 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 632, + 253, + 645 + ], + "lines": [ + { + "bbox": [ + 105, + 631, + 254, + 646 + ], + "spans": [ + { + "bbox": [ + 105, + 631, + 254, + 646 + ], + "score": 1.0, + "content": "4 RESULTS AND ANALYSIS", + "type": "text" + } + ], + "index": 41 + } + ], + "index": 41 + }, + { + "type": "text", + "bbox": [ + 107, + 657, + 505, + 702 + ], + "lines": [ + { + "bbox": [ + 105, + 657, + 506, + 670 + ], + "spans": [ + { + "bbox": [ + 105, + 657, + 506, + 670 + ], + "score": 1.0, + "content": "Overall Results The results of SPARC and COSQL, MWOZ, and SQA are in Table 2, 3, and 4", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 106, + 669, + 505, + 681 + ], + "spans": [ + { + "bbox": [ + 106, + 669, + 505, + 681 + ], + "score": 1.0, + "content": "respectively. We run each main experiment three times with different random seeds and report the", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 679, + 507, + 692 + ], + "spans": [ + { + "bbox": [ + 105, + 679, + 507, + 692 + ], + "score": 1.0, + "content": "mean. Overall, SCORE gains significant improvements over BERT and ROBERTA on all tasks,", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 106, + 690, + 406, + 702 + ], + "spans": [ + { + "bbox": [ + 106, + 690, + 406, + 702 + ], + "score": 1.0, + "content": "achieving state-of-the-art performances on SPARC, COSQL, and MWOZ.", + "type": "text" + } + ], + "index": 45 + } + ], + "index": 43.5, + "bbox_fs": [ + 105, + 657, + 507, + 702 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "table", + "bbox": [ + 122, + 80, + 488, + 213 + ], + "blocks": [ + { + "type": "table_body", + "bbox": [ + 122, + 80, + 488, + 213 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 122, + 80, + 488, + 213 + ], + "spans": [ + { + "bbox": [ + 122, + 80, + 488, + 213 + ], + "score": 0.983, + "html": "
SPARCCoSQL
DevTestDevTest
QMIMQMIMQMIMQMIM
SyntaxSQL (Yu et al.,2018a)18.54.320.25.21-14.22.2
GAZP + BERT (Zhong et al., 2020)48.929.745.923.542.012.339.712.8
EditSQL + BERT (Zhang et al.,2019c)47.229.547.925.339.912.340.813.7
IGSQL +BERT50.732.551.229.544.115.842.515.0
R²SQL +BERT1-55.830.81-46.817.0
RAT-SQL + BERT (Wang et al., 2019)56.833.41148.419.11-
+ROBERTA58.236.7--50.119.3--
+ SCoRE62.242.562.438.152.122.051.621.2
", + "type": "table", + "image_path": "0b3f07feb9a8aece2fe44f989db7e6a0d4a81cdcc015ba0808e6b1599eee91db.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 122, + 80, + 488, + 124.33333333333334 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 122, + 124.33333333333334, + 488, + 168.66666666666669 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 122, + 168.66666666666669, + 488, + 213.00000000000003 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "table_caption", + "bbox": [ + 107, + 217, + 504, + 239 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 217, + 505, + 229 + ], + "spans": [ + { + "bbox": [ + 105, + 217, + 505, + 229 + ], + "score": 1.0, + "content": "Table 2: The SPARC and COSQL accuracy over all questions (QM) and all interactions (IM). The", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 227, + 434, + 239 + ], + "spans": [ + { + "bbox": [ + 105, + 227, + 175, + 239 + ], + "score": 1.0, + "content": "scores of IGSQL", + "type": "text" + }, + { + "bbox": [ + 176, + 228, + 185, + 238 + ], + "score": 0.63, + "content": "^ +", + "type": "inline_equation" + }, + { + "bbox": [ + 185, + 227, + 228, + 239 + ], + "score": 1.0, + "content": "BERT and", + "type": "text" + }, + { + "bbox": [ + 229, + 227, + 270, + 239 + ], + "score": 0.52, + "content": "\\mathrm { R ^ { 2 } S Q L + }", + "type": "inline_equation" + }, + { + "bbox": [ + 270, + 227, + 434, + 239 + ], + "score": 1.0, + "content": "BERT are from the official leaderboards.", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 3.5 + } + ], + "index": 2.25 + }, + { + "type": "table", + "bbox": [ + 106, + 247, + 304, + 360 + ], + "blocks": [ + { + "type": "table_body", + "bbox": [ + 106, + 247, + 304, + 360 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 106, + 247, + 304, + 360 + ], + "spans": [ + { + "bbox": [ + 106, + 247, + 304, + 360 + ], + "score": 0.977, + "html": "
ModelsMWoZ 2.1
DST-reader (Gao et al.,2019)36.40
TRADE (Wu et al., 2019)46.60
DS-DST (Zhang et al.,2019a)51.21
SOM-DST (Kim et al.,2020)52.57
DS-picklist (Zhang et al.,2019a)53.30
TripPy (Heck et al.,2020)55.29
SimpleToD (Hosseini-Asl et al.,2020)55.72
TripPy (ours)58.37
+ SCoRE60.48
", + "type": "table", + "image_path": "23f722752f88c933003aad1cdd53b78bc2ec0fd18f8c0a1463e04e068124dafd.jpg" + } + ] + } + ], + "index": 8.5, + "virtual_lines": [ + { + "bbox": [ + 106, + 247, + 304, + 261.125 + ], + "spans": [], + "index": 5 + }, + { + "bbox": [ + 106, + 261.125, + 304, + 275.25 + ], + "spans": [], + "index": 6 + }, + { + "bbox": [ + 106, + 275.25, + 304, + 289.375 + ], + "spans": [], + "index": 7 + }, + { + "bbox": [ + 106, + 289.375, + 304, + 303.5 + ], + "spans": [], + "index": 8 + }, + { + "bbox": [ + 106, + 303.5, + 304, + 317.625 + ], + "spans": [], + "index": 9 + }, + { + "bbox": [ + 106, + 317.625, + 304, + 331.75 + ], + "spans": [], + "index": 10 + }, + { + "bbox": [ + 106, + 331.75, + 304, + 345.875 + ], + "spans": [], + "index": 11 + }, + { + "bbox": [ + 106, + 345.875, + 304, + 360.0 + ], + "spans": [], + "index": 12 + } + ] + }, + { + "type": "table_caption", + "bbox": [ + 106, + 368, + 307, + 401 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 106, + 368, + 307, + 380 + ], + "spans": [ + { + "bbox": [ + 106, + 368, + 307, + 380 + ], + "score": 1.0, + "content": "Table 3: Joint goal accuracies (JGA) on MWOZ", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 378, + 309, + 391 + ], + "spans": [ + { + "bbox": [ + 105, + 378, + 309, + 391 + ], + "score": 1.0, + "content": "2.1 test set. All models use a BERT-like en-", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 106, + 390, + 155, + 402 + ], + "spans": [ + { + "bbox": [ + 106, + 390, + 155, + 402 + ], + "score": 1.0, + "content": "coder/GPT.", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 14 + } + ], + "index": 11.25 + }, + { + "type": "table", + "bbox": [ + 320, + 250, + 500, + 370 + ], + "blocks": [ + { + "type": "table_body", + "bbox": [ + 320, + 250, + 500, + 370 + ], + "group_id": 2, + "lines": [ + { + "bbox": [ + 320, + 250, + 500, + 370 + ], + "spans": [ + { + "bbox": [ + 320, + 250, + 500, + 370 + ], + "score": 0.979, + "html": "
ModelsSQA
QMIM
Pasupat & Liang (2015)33.27.7
Neelakantan et al. (2017)40.211.8
Iyyer et al. (2017)44.712.8
Sun et al. (2019a)45.613.2
Muller et al. (2019)55.128.1
Herzig et al. (2020)67.240.4
Wang et al. (2019)+RoBERTa62.833.2
Wang et al. (2019) + SCoRE65.438.5
", + "type": "table", + "image_path": "2d2a4c78e221b5b5b7f2e13d5d7a95722b0c4ed5c8115dfb11a1578c0b6508e4.jpg" + } + ] + } + ], + "index": 20, + "virtual_lines": [ + { + "bbox": [ + 320, + 250, + 500, + 263.3333333333333 + ], + "spans": [], + "index": 16 + }, + { + "bbox": [ + 320, + 263.3333333333333, + 500, + 276.66666666666663 + ], + "spans": [], + "index": 17 + }, + { + "bbox": [ + 320, + 276.66666666666663, + 500, + 289.99999999999994 + ], + "spans": [], + "index": 18 + }, + { + "bbox": [ + 320, + 289.99999999999994, + 500, + 303.33333333333326 + ], + "spans": [], + "index": 19 + }, + { + "bbox": [ + 320, + 303.33333333333326, + 500, + 316.6666666666666 + ], + "spans": [], + "index": 20 + }, + { + "bbox": [ + 320, + 316.6666666666666, + 500, + 329.9999999999999 + ], + "spans": [], + "index": 21 + }, + { + "bbox": [ + 320, + 329.9999999999999, + 500, + 343.3333333333332 + ], + "spans": [], + "index": 22 + }, + { + "bbox": [ + 320, + 343.3333333333332, + 500, + 356.6666666666665 + ], + "spans": [], + "index": 23 + }, + { + "bbox": [ + 320, + 356.6666666666665, + 500, + 369.99999999999983 + ], + "spans": [], + "index": 24 + } + ] + }, + { + "type": "table_caption", + "bbox": [ + 320, + 378, + 501, + 399 + ], + "group_id": 2, + "lines": [ + { + "bbox": [ + 320, + 377, + 502, + 390 + ], + "spans": [ + { + "bbox": [ + 320, + 377, + 502, + 390 + ], + "score": 1.0, + "content": "Table 4: Question (QM) and interaction (IM)", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 320, + 388, + 442, + 400 + ], + "spans": [ + { + "bbox": [ + 320, + 388, + 442, + 400 + ], + "score": 1.0, + "content": "accuracy on the SQA test set.", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 25.5 + } + ], + "index": 22.75 + }, + { + "type": "text", + "bbox": [ + 106, + 418, + 505, + 528 + ], + "lines": [ + { + "bbox": [ + 106, + 418, + 505, + 431 + ], + "spans": [ + { + "bbox": [ + 106, + 418, + 174, + 431 + ], + "score": 1.0, + "content": "For SPARC and", + "type": "text" + }, + { + "bbox": [ + 174, + 418, + 210, + 429 + ], + "score": 0.25, + "content": "\\mathrm { C o S Q L }", + "type": "inline_equation" + }, + { + "bbox": [ + 210, + 418, + 505, + 431 + ], + "score": 1.0, + "content": "in Table 2, compared with ROBERTA, SCORE boosts the performance", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 429, + 505, + 442 + ], + "spans": [ + { + "bbox": [ + 105, + 429, + 119, + 442 + ], + "score": 1.0, + "content": "by", + "type": "text" + }, + { + "bbox": [ + 119, + 430, + 142, + 440 + ], + "score": 0.83, + "content": "4 . 0 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 142, + 429, + 167, + 442 + ], + "score": 1.0, + "content": "QM /", + "type": "text" + }, + { + "bbox": [ + 168, + 430, + 190, + 440 + ], + "score": 0.76, + "content": "5 . 8 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 191, + 429, + 273, + 442 + ], + "score": 1.0, + "content": "IM on SPARC, and", + "type": "text" + }, + { + "bbox": [ + 273, + 430, + 296, + 440 + ], + "score": 0.86, + "content": "2 . 0 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 296, + 429, + 321, + 442 + ], + "score": 1.0, + "content": "QM /", + "type": "text" + }, + { + "bbox": [ + 321, + 429, + 344, + 441 + ], + "score": 0.76, + "content": "2 . 7 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 345, + 429, + 505, + 442 + ], + "score": 1.0, + "content": "IM on COSQL. This demonstrates the", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 106, + 441, + 505, + 453 + ], + "spans": [ + { + "bbox": [ + 106, + 441, + 505, + 453 + ], + "score": 1.0, + "content": "effectiveness of SCORE on contextual semantic parsing tasks. In addition, on MWOZ dialog state", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 450, + 506, + 466 + ], + "spans": [ + { + "bbox": [ + 105, + 450, + 266, + 466 + ], + "score": 1.0, + "content": "tracking task in Table 3, TripPy achieves", + "type": "text" + }, + { + "bbox": [ + 266, + 451, + 293, + 462 + ], + "score": 0.86, + "content": "6 0 . 5 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 293, + 450, + 506, + 466 + ], + "score": 1.0, + "content": "JGA by replacing BERT with SCORE, outperforming", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 104, + 460, + 506, + 477 + ], + "spans": [ + { + "bbox": [ + 104, + 460, + 322, + 477 + ], + "score": 1.0, + "content": "the prior state-of-the-art (Hosseini-Asl et al., 2020) by", + "type": "text" + }, + { + "bbox": [ + 322, + 462, + 344, + 473 + ], + "score": 0.86, + "content": "4 . 8 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 344, + 460, + 506, + 477 + ], + "score": 1.0, + "content": ". This indicates that dialog state tracking", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 106, + 473, + 505, + 486 + ], + "spans": [ + { + "bbox": [ + 106, + 473, + 505, + 486 + ], + "score": 1.0, + "content": "also benefits from SCORE. Finally, SCORE also achieves higher performance than ROBERTA on", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 106, + 484, + 506, + 497 + ], + "spans": [ + { + "bbox": [ + 106, + 484, + 506, + 497 + ], + "score": 1.0, + "content": "weakly supervised sequential question answering SQA task. As Table 4 shows, SCORE improves", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 106, + 495, + 505, + 507 + ], + "spans": [ + { + "bbox": [ + 106, + 495, + 138, + 507 + ], + "score": 1.0, + "content": "QM by", + "type": "text" + }, + { + "bbox": [ + 139, + 495, + 162, + 506 + ], + "score": 0.85, + "content": "2 . 6 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 162, + 495, + 209, + 507 + ], + "score": 1.0, + "content": "and IM by", + "type": "text" + }, + { + "bbox": [ + 209, + 495, + 232, + 506 + ], + "score": 0.84, + "content": "4 . 9 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 232, + 495, + 505, + 507 + ], + "score": 1.0, + "content": "over ROBERTA with Wang et al. (2019) as the base model. This", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 106, + 506, + 506, + 519 + ], + "spans": [ + { + "bbox": [ + 106, + 506, + 506, + 519 + ], + "score": 1.0, + "content": "demonstrates that the enhanced ability of semantic parsing and context modeling in SCORE is", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 106, + 518, + 281, + 528 + ], + "spans": [ + { + "bbox": [ + 106, + 518, + 281, + 528 + ], + "score": 1.0, + "content": "transferable to denotation-based CSP tasks.", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 31.5 + }, + { + "type": "text", + "bbox": [ + 106, + 545, + 254, + 632 + ], + "lines": [ + { + "bbox": [ + 106, + 543, + 255, + 557 + ], + "spans": [ + { + "bbox": [ + 106, + 543, + 255, + 557 + ], + "score": 1.0, + "content": "What is the effect of each pre-", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 555, + 255, + 568 + ], + "spans": [ + { + "bbox": [ + 105, + 555, + 255, + 568 + ], + "score": 1.0, + "content": "training objective? Table 5 shows", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 106, + 567, + 255, + 578 + ], + "spans": [ + { + "bbox": [ + 106, + 567, + 255, + 578 + ], + "score": 1.0, + "content": "an ablation study on different pre-", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 578, + 255, + 590 + ], + "spans": [ + { + "bbox": [ + 105, + 578, + 255, + 590 + ], + "score": 1.0, + "content": "training objectives. We find that", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 106, + 589, + 254, + 600 + ], + "spans": [ + { + "bbox": [ + 106, + 589, + 254, + 600 + ], + "score": 1.0, + "content": "the best SCORE results are achieved", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 600, + 255, + 612 + ], + "spans": [ + { + "bbox": [ + 105, + 600, + 255, + 612 + ], + "score": 1.0, + "content": "by pre-training on only synthesized", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 610, + 256, + 623 + ], + "spans": [ + { + "bbox": [ + 105, + 610, + 129, + 623 + ], + "score": 1.0, + "content": "data", + "type": "text" + }, + { + "bbox": [ + 129, + 611, + 178, + 622 + ], + "score": 0.72, + "content": "( \\mathrm { C C S + T C S } )", + "type": "inline_equation" + }, + { + "bbox": [ + 178, + 610, + 256, + 623 + ], + "score": 1.0, + "content": ") without any nat-", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 621, + 255, + 635 + ], + "spans": [ + { + "bbox": [ + 105, + 621, + 255, + 635 + ], + "score": 1.0, + "content": "ural questions (MLM) on SPARC,", + "type": "text" + } + ], + "index": 44 + } + ], + "index": 40.5 + }, + { + "type": "table", + "bbox": [ + 262, + 550, + 503, + 601 + ], + "blocks": [ + { + "type": "table_body", + "bbox": [ + 262, + 550, + 503, + 601 + ], + "group_id": 3, + "lines": [ + { + "bbox": [ + 262, + 550, + 503, + 601 + ], + "spans": [ + { + "bbox": [ + 262, + 550, + 503, + 601 + ], + "score": 0.973, + "html": "
Learning ObjectiveSPARCCoSQLMWoZSQA
MLM only37.0(+0.3)20.3(+1.0)59.47(+1.10)34.7(+1.5)
CCS only41.3(+4.6)21.2(+1.9)59.32(+0.95)32.7(-0.5)
CCS+TCS42.5(+5.8)22.0(+2.7)38.5(+5.3)
CCS+TCS+MLM38.6(+1.9)21.7(+2.4)60.48(+2.11)33.7(+0.5)
", + "type": "table", + "image_path": "5f73eed5ea77f693ef380d40f80837cb4adfe8548834ac91354bf08fefc627a0.jpg" + } + ] + } + ], + "index": 46, + "virtual_lines": [ + { + "bbox": [ + 262, + 550, + 503, + 567.0 + ], + "spans": [], + "index": 45 + }, + { + "bbox": [ + 262, + 567.0, + 503, + 584.0 + ], + "spans": [], + "index": 46 + }, + { + "bbox": [ + 262, + 584.0, + 503, + 601.0 + ], + "spans": [], + "index": 47 + } + ] + } + ], + "index": 46 + }, + { + "type": "text", + "bbox": [ + 261, + 605, + 505, + 628 + ], + "lines": [ + { + "bbox": [ + 260, + 605, + 506, + 618 + ], + "spans": [ + { + "bbox": [ + 260, + 605, + 506, + 618 + ], + "score": 1.0, + "content": "Table 5: The effect of SCORE pre-training objectives. Im-", + "type": "text" + } + ], + "index": 48 + }, + { + "bbox": [ + 260, + 617, + 430, + 628 + ], + "spans": [ + { + "bbox": [ + 260, + 617, + 430, + 628 + ], + "score": 1.0, + "content": "provements are shown in the parentheses.", + "type": "text" + } + ], + "index": 49 + } + ], + "index": 48.5 + }, + { + "type": "text", + "bbox": [ + 106, + 633, + 506, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 633, + 507, + 646 + ], + "spans": [ + { + "bbox": [ + 106, + 633, + 389, + 646 + ], + "score": 1.0, + "content": "COSQL, and SQA but not on MWOZ. By adding MLM to", + "type": "text" + }, + { + "bbox": [ + 390, + 633, + 435, + 644 + ], + "score": 0.8, + "content": "\\mathrm { C C S + T C S }", + "type": "inline_equation" + }, + { + "bbox": [ + 442, + 633, + 488, + 644 + ], + "score": 0.69, + "content": "\\mathrm { C C S + T C S }", + "type": "inline_equation" + }, + { + "bbox": [ + 488, + 633, + 507, + 646 + ], + "score": 1.0, + "content": "vs.", + "type": "text" + } + ], + "index": 50 + }, + { + "bbox": [ + 106, + 642, + 507, + 658 + ], + "spans": [ + { + "bbox": [ + 106, + 644, + 182, + 654 + ], + "score": 0.87, + "content": "\\mathbf { C C S + T C S + M L M }", + "type": "inline_equation" + }, + { + "bbox": [ + 182, + 642, + 352, + 658 + ], + "score": 1.0, + "content": "), MLM actually hurts the performance", + "type": "text" + }, + { + "bbox": [ + 352, + 644, + 379, + 655 + ], + "score": 0.84, + "content": "- 3 . 9 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 379, + 642, + 430, + 658 + ], + "score": 1.0, + "content": "on SParC, -", + "type": "text" + }, + { + "bbox": [ + 431, + 644, + 454, + 655 + ], + "score": 0.86, + "content": ". 0 . 3 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 454, + 642, + 470, + 658 + ], + "score": 1.0, + "content": "on", + "type": "text" + }, + { + "bbox": [ + 470, + 644, + 502, + 655 + ], + "score": 0.34, + "content": "\\mathbf { C o S Q L }", + "type": "inline_equation" + }, + { + "bbox": [ + 503, + 642, + 507, + 658 + ], + "score": 1.0, + "content": ",", + "type": "text" + } + ], + "index": 51 + }, + { + "bbox": [ + 106, + 655, + 506, + 668 + ], + "spans": [ + { + "bbox": [ + 106, + 655, + 123, + 668 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 123, + 655, + 148, + 666 + ], + "score": 0.85, + "content": "- 4 . 4 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 149, + 655, + 506, + 668 + ], + "score": 1.0, + "content": "on SQA) while increases for MWOZ. One possible reason is that questions in MWOZ are", + "type": "text" + } + ], + "index": 52 + }, + { + "bbox": [ + 104, + 664, + 506, + 680 + ], + "spans": [ + { + "bbox": [ + 104, + 664, + 506, + 680 + ], + "score": 1.0, + "content": "more diverse in language but less compositional while semantic compositionality and turn changes", + "type": "text" + } + ], + "index": 53 + }, + { + "bbox": [ + 105, + 677, + 506, + 690 + ], + "spans": [ + { + "bbox": [ + 105, + 677, + 506, + 690 + ], + "score": 1.0, + "content": "are more important in the other three CSP tasks. Also, the synthesized data used to pre-train SCORE", + "type": "text" + } + ], + "index": 54 + }, + { + "bbox": [ + 105, + 686, + 506, + 701 + ], + "spans": [ + { + "bbox": [ + 105, + 686, + 506, + 701 + ], + "score": 1.0, + "content": "for SPARC and COSQL is generated by the grammar induced by SPARC, which might overfit to", + "type": "text" + } + ], + "index": 55 + }, + { + "bbox": [ + 105, + 698, + 506, + 712 + ], + "spans": [ + { + "bbox": [ + 105, + 698, + 458, + 712 + ], + "score": 1.0, + "content": "SPARC. In addition, SCORE pre-trained with only MLM loss improves the performance", + "type": "text" + }, + { + "bbox": [ + 459, + 699, + 489, + 710 + ], + "score": 0.85, + "content": "( \\ 1 . 0 \\% )", + "type": "inline_equation" + }, + { + "bbox": [ + 489, + 698, + 506, + 712 + ], + "score": 1.0, + "content": "but", + "type": "text" + } + ], + "index": 56 + }, + { + "bbox": [ + 105, + 709, + 506, + 722 + ], + "spans": [ + { + "bbox": [ + 105, + 709, + 165, + 722 + ], + "score": 1.0, + "content": "not as large as", + "type": "text" + }, + { + "bbox": [ + 165, + 710, + 210, + 720 + ], + "score": 0.78, + "content": "\\mathrm { C C S + T C S }", + "type": "inline_equation" + }, + { + "bbox": [ + 212, + 710, + 241, + 720 + ], + "score": 0.88, + "content": "( + 5 . 5 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 242, + 709, + 290, + 722 + ], + "score": 1.0, + "content": "on SPARC,", + "type": "text" + }, + { + "bbox": [ + 290, + 710, + 318, + 720 + ], + "score": 0.9, + "content": "+ 1 . 7 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 318, + 709, + 387, + 722 + ], + "score": 1.0, + "content": "on COSQL, and", + "type": "text" + }, + { + "bbox": [ + 387, + 710, + 415, + 720 + ], + "score": 0.9, + "content": "+ 3 . 4 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 416, + 709, + 506, + 722 + ], + "score": 1.0, + "content": "on SQA). Finally, we", + "type": "text" + } + ], + "index": 57 + }, + { + "bbox": [ + 105, + 720, + 507, + 734 + ], + "spans": [ + { + "bbox": [ + 105, + 720, + 507, + 734 + ], + "score": 1.0, + "content": "test the effectiveness of TCS on SPARC, COSQL, and SQA by adding TCS to CCS (CCS only vs.", + "type": "text" + } + ], + "index": 58 + } + ], + "index": 54 + } + ], + "page_idx": 6, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 108, + 27, + 292, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 26, + 293, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 26, + 293, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2021", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 302, + 751, + 308, + 759 + ], + "lines": [ + { + "bbox": [ + 302, + 750, + 309, + 762 + ], + "spans": [ + { + "bbox": [ + 302, + 750, + 309, + 762 + ], + "score": 1.0, + "content": "7", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "table", + "bbox": [ + 122, + 80, + 488, + 213 + ], + "blocks": [ + { + "type": "table_body", + "bbox": [ + 122, + 80, + 488, + 213 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 122, + 80, + 488, + 213 + ], + "spans": [ + { + "bbox": [ + 122, + 80, + 488, + 213 + ], + "score": 0.983, + "html": "
SPARCCoSQL
DevTestDevTest
QMIMQMIMQMIMQMIM
SyntaxSQL (Yu et al.,2018a)18.54.320.25.21-14.22.2
GAZP + BERT (Zhong et al., 2020)48.929.745.923.542.012.339.712.8
EditSQL + BERT (Zhang et al.,2019c)47.229.547.925.339.912.340.813.7
IGSQL +BERT50.732.551.229.544.115.842.515.0
R²SQL +BERT1-55.830.81-46.817.0
RAT-SQL + BERT (Wang et al., 2019)56.833.41148.419.11-
+ROBERTA58.236.7--50.119.3--
+ SCoRE62.242.562.438.152.122.051.621.2
", + "type": "table", + "image_path": "0b3f07feb9a8aece2fe44f989db7e6a0d4a81cdcc015ba0808e6b1599eee91db.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 122, + 80, + 488, + 124.33333333333334 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 122, + 124.33333333333334, + 488, + 168.66666666666669 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 122, + 168.66666666666669, + 488, + 213.00000000000003 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "table_caption", + "bbox": [ + 107, + 217, + 504, + 239 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 217, + 505, + 229 + ], + "spans": [ + { + "bbox": [ + 105, + 217, + 505, + 229 + ], + "score": 1.0, + "content": "Table 2: The SPARC and COSQL accuracy over all questions (QM) and all interactions (IM). The", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 227, + 434, + 239 + ], + "spans": [ + { + "bbox": [ + 105, + 227, + 175, + 239 + ], + "score": 1.0, + "content": "scores of IGSQL", + "type": "text" + }, + { + "bbox": [ + 176, + 228, + 185, + 238 + ], + "score": 0.63, + "content": "^ +", + "type": "inline_equation" + }, + { + "bbox": [ + 185, + 227, + 228, + 239 + ], + "score": 1.0, + "content": "BERT and", + "type": "text" + }, + { + "bbox": [ + 229, + 227, + 270, + 239 + ], + "score": 0.52, + "content": "\\mathrm { R ^ { 2 } S Q L + }", + "type": "inline_equation" + }, + { + "bbox": [ + 270, + 227, + 434, + 239 + ], + "score": 1.0, + "content": "BERT are from the official leaderboards.", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 3.5 + } + ], + "index": 2.25 + }, + { + "type": "table", + "bbox": [ + 106, + 247, + 304, + 360 + ], + "blocks": [ + { + "type": "table_body", + "bbox": [ + 106, + 247, + 304, + 360 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 106, + 247, + 304, + 360 + ], + "spans": [ + { + "bbox": [ + 106, + 247, + 304, + 360 + ], + "score": 0.977, + "html": "
ModelsMWoZ 2.1
DST-reader (Gao et al.,2019)36.40
TRADE (Wu et al., 2019)46.60
DS-DST (Zhang et al.,2019a)51.21
SOM-DST (Kim et al.,2020)52.57
DS-picklist (Zhang et al.,2019a)53.30
TripPy (Heck et al.,2020)55.29
SimpleToD (Hosseini-Asl et al.,2020)55.72
TripPy (ours)58.37
+ SCoRE60.48
", + "type": "table", + "image_path": "23f722752f88c933003aad1cdd53b78bc2ec0fd18f8c0a1463e04e068124dafd.jpg" + } + ] + } + ], + "index": 8.5, + "virtual_lines": [ + { + "bbox": [ + 106, + 247, + 304, + 261.125 + ], + "spans": [], + "index": 5 + }, + { + "bbox": [ + 106, + 261.125, + 304, + 275.25 + ], + "spans": [], + "index": 6 + }, + { + "bbox": [ + 106, + 275.25, + 304, + 289.375 + ], + "spans": [], + "index": 7 + }, + { + "bbox": [ + 106, + 289.375, + 304, + 303.5 + ], + "spans": [], + "index": 8 + }, + { + "bbox": [ + 106, + 303.5, + 304, + 317.625 + ], + "spans": [], + "index": 9 + }, + { + "bbox": [ + 106, + 317.625, + 304, + 331.75 + ], + "spans": [], + "index": 10 + }, + { + "bbox": [ + 106, + 331.75, + 304, + 345.875 + ], + "spans": [], + "index": 11 + }, + { + "bbox": [ + 106, + 345.875, + 304, + 360.0 + ], + "spans": [], + "index": 12 + } + ] + }, + { + "type": "table_caption", + "bbox": [ + 106, + 368, + 307, + 401 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 106, + 368, + 307, + 380 + ], + "spans": [ + { + "bbox": [ + 106, + 368, + 307, + 380 + ], + "score": 1.0, + "content": "Table 3: Joint goal accuracies (JGA) on MWOZ", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 378, + 309, + 391 + ], + "spans": [ + { + "bbox": [ + 105, + 378, + 309, + 391 + ], + "score": 1.0, + "content": "2.1 test set. All models use a BERT-like en-", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 106, + 390, + 155, + 402 + ], + "spans": [ + { + "bbox": [ + 106, + 390, + 155, + 402 + ], + "score": 1.0, + "content": "coder/GPT.", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 14 + } + ], + "index": 11.25 + }, + { + "type": "table", + "bbox": [ + 320, + 250, + 500, + 370 + ], + "blocks": [ + { + "type": "table_body", + "bbox": [ + 320, + 250, + 500, + 370 + ], + "group_id": 2, + "lines": [ + { + "bbox": [ + 320, + 250, + 500, + 370 + ], + "spans": [ + { + "bbox": [ + 320, + 250, + 500, + 370 + ], + "score": 0.979, + "html": "
ModelsSQA
QMIM
Pasupat & Liang (2015)33.27.7
Neelakantan et al. (2017)40.211.8
Iyyer et al. (2017)44.712.8
Sun et al. (2019a)45.613.2
Muller et al. (2019)55.128.1
Herzig et al. (2020)67.240.4
Wang et al. (2019)+RoBERTa62.833.2
Wang et al. (2019) + SCoRE65.438.5
", + "type": "table", + "image_path": "2d2a4c78e221b5b5b7f2e13d5d7a95722b0c4ed5c8115dfb11a1578c0b6508e4.jpg" + } + ] + } + ], + "index": 20, + "virtual_lines": [ + { + "bbox": [ + 320, + 250, + 500, + 263.3333333333333 + ], + "spans": [], + "index": 16 + }, + { + "bbox": [ + 320, + 263.3333333333333, + 500, + 276.66666666666663 + ], + "spans": [], + "index": 17 + }, + { + "bbox": [ + 320, + 276.66666666666663, + 500, + 289.99999999999994 + ], + "spans": [], + "index": 18 + }, + { + "bbox": [ + 320, + 289.99999999999994, + 500, + 303.33333333333326 + ], + "spans": [], + "index": 19 + }, + { + "bbox": [ + 320, + 303.33333333333326, + 500, + 316.6666666666666 + ], + "spans": [], + "index": 20 + }, + { + "bbox": [ + 320, + 316.6666666666666, + 500, + 329.9999999999999 + ], + "spans": [], + "index": 21 + }, + { + "bbox": [ + 320, + 329.9999999999999, + 500, + 343.3333333333332 + ], + "spans": [], + "index": 22 + }, + { + "bbox": [ + 320, + 343.3333333333332, + 500, + 356.6666666666665 + ], + "spans": [], + "index": 23 + }, + { + "bbox": [ + 320, + 356.6666666666665, + 500, + 369.99999999999983 + ], + "spans": [], + "index": 24 + } + ] + }, + { + "type": "table_caption", + "bbox": [ + 320, + 378, + 501, + 399 + ], + "group_id": 2, + "lines": [ + { + "bbox": [ + 320, + 377, + 502, + 390 + ], + "spans": [ + { + "bbox": [ + 320, + 377, + 502, + 390 + ], + "score": 1.0, + "content": "Table 4: Question (QM) and interaction (IM)", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 320, + 388, + 442, + 400 + ], + "spans": [ + { + "bbox": [ + 320, + 388, + 442, + 400 + ], + "score": 1.0, + "content": "accuracy on the SQA test set.", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 25.5 + } + ], + "index": 22.75 + }, + { + "type": "text", + "bbox": [ + 106, + 418, + 505, + 528 + ], + "lines": [ + { + "bbox": [ + 106, + 418, + 505, + 431 + ], + "spans": [ + { + "bbox": [ + 106, + 418, + 174, + 431 + ], + "score": 1.0, + "content": "For SPARC and", + "type": "text" + }, + { + "bbox": [ + 174, + 418, + 210, + 429 + ], + "score": 0.25, + "content": "\\mathrm { C o S Q L }", + "type": "inline_equation" + }, + { + "bbox": [ + 210, + 418, + 505, + 431 + ], + "score": 1.0, + "content": "in Table 2, compared with ROBERTA, SCORE boosts the performance", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 429, + 505, + 442 + ], + "spans": [ + { + "bbox": [ + 105, + 429, + 119, + 442 + ], + "score": 1.0, + "content": "by", + "type": "text" + }, + { + "bbox": [ + 119, + 430, + 142, + 440 + ], + "score": 0.83, + "content": "4 . 0 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 142, + 429, + 167, + 442 + ], + "score": 1.0, + "content": "QM /", + "type": "text" + }, + { + "bbox": [ + 168, + 430, + 190, + 440 + ], + "score": 0.76, + "content": "5 . 8 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 191, + 429, + 273, + 442 + ], + "score": 1.0, + "content": "IM on SPARC, and", + "type": "text" + }, + { + "bbox": [ + 273, + 430, + 296, + 440 + ], + "score": 0.86, + "content": "2 . 0 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 296, + 429, + 321, + 442 + ], + "score": 1.0, + "content": "QM /", + "type": "text" + }, + { + "bbox": [ + 321, + 429, + 344, + 441 + ], + "score": 0.76, + "content": "2 . 7 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 345, + 429, + 505, + 442 + ], + "score": 1.0, + "content": "IM on COSQL. This demonstrates the", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 106, + 441, + 505, + 453 + ], + "spans": [ + { + "bbox": [ + 106, + 441, + 505, + 453 + ], + "score": 1.0, + "content": "effectiveness of SCORE on contextual semantic parsing tasks. In addition, on MWOZ dialog state", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 450, + 506, + 466 + ], + "spans": [ + { + "bbox": [ + 105, + 450, + 266, + 466 + ], + "score": 1.0, + "content": "tracking task in Table 3, TripPy achieves", + "type": "text" + }, + { + "bbox": [ + 266, + 451, + 293, + 462 + ], + "score": 0.86, + "content": "6 0 . 5 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 293, + 450, + 506, + 466 + ], + "score": 1.0, + "content": "JGA by replacing BERT with SCORE, outperforming", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 104, + 460, + 506, + 477 + ], + "spans": [ + { + "bbox": [ + 104, + 460, + 322, + 477 + ], + "score": 1.0, + "content": "the prior state-of-the-art (Hosseini-Asl et al., 2020) by", + "type": "text" + }, + { + "bbox": [ + 322, + 462, + 344, + 473 + ], + "score": 0.86, + "content": "4 . 8 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 344, + 460, + 506, + 477 + ], + "score": 1.0, + "content": ". This indicates that dialog state tracking", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 106, + 473, + 505, + 486 + ], + "spans": [ + { + "bbox": [ + 106, + 473, + 505, + 486 + ], + "score": 1.0, + "content": "also benefits from SCORE. Finally, SCORE also achieves higher performance than ROBERTA on", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 106, + 484, + 506, + 497 + ], + "spans": [ + { + "bbox": [ + 106, + 484, + 506, + 497 + ], + "score": 1.0, + "content": "weakly supervised sequential question answering SQA task. As Table 4 shows, SCORE improves", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 106, + 495, + 505, + 507 + ], + "spans": [ + { + "bbox": [ + 106, + 495, + 138, + 507 + ], + "score": 1.0, + "content": "QM by", + "type": "text" + }, + { + "bbox": [ + 139, + 495, + 162, + 506 + ], + "score": 0.85, + "content": "2 . 6 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 162, + 495, + 209, + 507 + ], + "score": 1.0, + "content": "and IM by", + "type": "text" + }, + { + "bbox": [ + 209, + 495, + 232, + 506 + ], + "score": 0.84, + "content": "4 . 9 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 232, + 495, + 505, + 507 + ], + "score": 1.0, + "content": "over ROBERTA with Wang et al. (2019) as the base model. This", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 106, + 506, + 506, + 519 + ], + "spans": [ + { + "bbox": [ + 106, + 506, + 506, + 519 + ], + "score": 1.0, + "content": "demonstrates that the enhanced ability of semantic parsing and context modeling in SCORE is", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 106, + 518, + 281, + 528 + ], + "spans": [ + { + "bbox": [ + 106, + 518, + 281, + 528 + ], + "score": 1.0, + "content": "transferable to denotation-based CSP tasks.", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 31.5, + "bbox_fs": [ + 104, + 418, + 506, + 528 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 545, + 254, + 632 + ], + "lines": [ + { + "bbox": [ + 106, + 543, + 255, + 557 + ], + "spans": [ + { + "bbox": [ + 106, + 543, + 255, + 557 + ], + "score": 1.0, + "content": "What is the effect of each pre-", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 555, + 255, + 568 + ], + "spans": [ + { + "bbox": [ + 105, + 555, + 255, + 568 + ], + "score": 1.0, + "content": "training objective? Table 5 shows", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 106, + 567, + 255, + 578 + ], + "spans": [ + { + "bbox": [ + 106, + 567, + 255, + 578 + ], + "score": 1.0, + "content": "an ablation study on different pre-", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 578, + 255, + 590 + ], + "spans": [ + { + "bbox": [ + 105, + 578, + 255, + 590 + ], + "score": 1.0, + "content": "training objectives. We find that", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 106, + 589, + 254, + 600 + ], + "spans": [ + { + "bbox": [ + 106, + 589, + 254, + 600 + ], + "score": 1.0, + "content": "the best SCORE results are achieved", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 600, + 255, + 612 + ], + "spans": [ + { + "bbox": [ + 105, + 600, + 255, + 612 + ], + "score": 1.0, + "content": "by pre-training on only synthesized", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 610, + 256, + 623 + ], + "spans": [ + { + "bbox": [ + 105, + 610, + 129, + 623 + ], + "score": 1.0, + "content": "data", + "type": "text" + }, + { + "bbox": [ + 129, + 611, + 178, + 622 + ], + "score": 0.72, + "content": "( \\mathrm { C C S + T C S } )", + "type": "inline_equation" + }, + { + "bbox": [ + 178, + 610, + 256, + 623 + ], + "score": 1.0, + "content": ") without any nat-", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 621, + 255, + 635 + ], + "spans": [ + { + "bbox": [ + 105, + 621, + 255, + 635 + ], + "score": 1.0, + "content": "ural questions (MLM) on SPARC,", + "type": "text" + } + ], + "index": 44 + } + ], + "index": 40.5, + "bbox_fs": [ + 105, + 543, + 256, + 635 + ] + }, + { + "type": "table", + "bbox": [ + 262, + 550, + 503, + 601 + ], + "blocks": [ + { + "type": "table_body", + "bbox": [ + 262, + 550, + 503, + 601 + ], + "group_id": 3, + "lines": [ + { + "bbox": [ + 262, + 550, + 503, + 601 + ], + "spans": [ + { + "bbox": [ + 262, + 550, + 503, + 601 + ], + "score": 0.973, + "html": "
Learning ObjectiveSPARCCoSQLMWoZSQA
MLM only37.0(+0.3)20.3(+1.0)59.47(+1.10)34.7(+1.5)
CCS only41.3(+4.6)21.2(+1.9)59.32(+0.95)32.7(-0.5)
CCS+TCS42.5(+5.8)22.0(+2.7)38.5(+5.3)
CCS+TCS+MLM38.6(+1.9)21.7(+2.4)60.48(+2.11)33.7(+0.5)
", + "type": "table", + "image_path": "5f73eed5ea77f693ef380d40f80837cb4adfe8548834ac91354bf08fefc627a0.jpg" + } + ] + } + ], + "index": 46, + "virtual_lines": [ + { + "bbox": [ + 262, + 550, + 503, + 567.0 + ], + "spans": [], + "index": 45 + }, + { + "bbox": [ + 262, + 567.0, + 503, + 584.0 + ], + "spans": [], + "index": 46 + }, + { + "bbox": [ + 262, + 584.0, + 503, + 601.0 + ], + "spans": [], + "index": 47 + } + ] + } + ], + "index": 46 + }, + { + "type": "text", + "bbox": [ + 261, + 605, + 505, + 628 + ], + "lines": [ + { + "bbox": [ + 260, + 605, + 506, + 618 + ], + "spans": [ + { + "bbox": [ + 260, + 605, + 506, + 618 + ], + "score": 1.0, + "content": "Table 5: The effect of SCORE pre-training objectives. Im-", + "type": "text" + } + ], + "index": 48 + }, + { + "bbox": [ + 260, + 617, + 430, + 628 + ], + "spans": [ + { + "bbox": [ + 260, + 617, + 430, + 628 + ], + "score": 1.0, + "content": "provements are shown in the parentheses.", + "type": "text" + } + ], + "index": 49 + } + ], + "index": 48.5, + "bbox_fs": [ + 260, + 605, + 506, + 628 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 633, + 506, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 633, + 507, + 646 + ], + "spans": [ + { + "bbox": [ + 106, + 633, + 389, + 646 + ], + "score": 1.0, + "content": "COSQL, and SQA but not on MWOZ. By adding MLM to", + "type": "text" + }, + { + "bbox": [ + 390, + 633, + 435, + 644 + ], + "score": 0.8, + "content": "\\mathrm { C C S + T C S }", + "type": "inline_equation" + }, + { + "bbox": [ + 442, + 633, + 488, + 644 + ], + "score": 0.69, + "content": "\\mathrm { C C S + T C S }", + "type": "inline_equation" + }, + { + "bbox": [ + 488, + 633, + 507, + 646 + ], + "score": 1.0, + "content": "vs.", + "type": "text" + } + ], + "index": 50 + }, + { + "bbox": [ + 106, + 642, + 507, + 658 + ], + "spans": [ + { + "bbox": [ + 106, + 644, + 182, + 654 + ], + "score": 0.87, + "content": "\\mathbf { C C S + T C S + M L M }", + "type": "inline_equation" + }, + { + "bbox": [ + 182, + 642, + 352, + 658 + ], + "score": 1.0, + "content": "), MLM actually hurts the performance", + "type": "text" + }, + { + "bbox": [ + 352, + 644, + 379, + 655 + ], + "score": 0.84, + "content": "- 3 . 9 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 379, + 642, + 430, + 658 + ], + "score": 1.0, + "content": "on SParC, -", + "type": "text" + }, + { + "bbox": [ + 431, + 644, + 454, + 655 + ], + "score": 0.86, + "content": ". 0 . 3 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 454, + 642, + 470, + 658 + ], + "score": 1.0, + "content": "on", + "type": "text" + }, + { + "bbox": [ + 470, + 644, + 502, + 655 + ], + "score": 0.34, + "content": "\\mathbf { C o S Q L }", + "type": "inline_equation" + }, + { + "bbox": [ + 503, + 642, + 507, + 658 + ], + "score": 1.0, + "content": ",", + "type": "text" + } + ], + "index": 51 + }, + { + "bbox": [ + 106, + 655, + 506, + 668 + ], + "spans": [ + { + "bbox": [ + 106, + 655, + 123, + 668 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 123, + 655, + 148, + 666 + ], + "score": 0.85, + "content": "- 4 . 4 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 149, + 655, + 506, + 668 + ], + "score": 1.0, + "content": "on SQA) while increases for MWOZ. One possible reason is that questions in MWOZ are", + "type": "text" + } + ], + "index": 52 + }, + { + "bbox": [ + 104, + 664, + 506, + 680 + ], + "spans": [ + { + "bbox": [ + 104, + 664, + 506, + 680 + ], + "score": 1.0, + "content": "more diverse in language but less compositional while semantic compositionality and turn changes", + "type": "text" + } + ], + "index": 53 + }, + { + "bbox": [ + 105, + 677, + 506, + 690 + ], + "spans": [ + { + "bbox": [ + 105, + 677, + 506, + 690 + ], + "score": 1.0, + "content": "are more important in the other three CSP tasks. Also, the synthesized data used to pre-train SCORE", + "type": "text" + } + ], + "index": 54 + }, + { + "bbox": [ + 105, + 686, + 506, + 701 + ], + "spans": [ + { + "bbox": [ + 105, + 686, + 506, + 701 + ], + "score": 1.0, + "content": "for SPARC and COSQL is generated by the grammar induced by SPARC, which might overfit to", + "type": "text" + } + ], + "index": 55 + }, + { + "bbox": [ + 105, + 698, + 506, + 712 + ], + "spans": [ + { + "bbox": [ + 105, + 698, + 458, + 712 + ], + "score": 1.0, + "content": "SPARC. In addition, SCORE pre-trained with only MLM loss improves the performance", + "type": "text" + }, + { + "bbox": [ + 459, + 699, + 489, + 710 + ], + "score": 0.85, + "content": "( \\ 1 . 0 \\% )", + "type": "inline_equation" + }, + { + "bbox": [ + 489, + 698, + 506, + 712 + ], + "score": 1.0, + "content": "but", + "type": "text" + } + ], + "index": 56 + }, + { + "bbox": [ + 105, + 709, + 506, + 722 + ], + "spans": [ + { + "bbox": [ + 105, + 709, + 165, + 722 + ], + "score": 1.0, + "content": "not as large as", + "type": "text" + }, + { + "bbox": [ + 165, + 710, + 210, + 720 + ], + "score": 0.78, + "content": "\\mathrm { C C S + T C S }", + "type": "inline_equation" + }, + { + "bbox": [ + 212, + 710, + 241, + 720 + ], + "score": 0.88, + "content": "( + 5 . 5 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 242, + 709, + 290, + 722 + ], + "score": 1.0, + "content": "on SPARC,", + "type": "text" + }, + { + "bbox": [ + 290, + 710, + 318, + 720 + ], + "score": 0.9, + "content": "+ 1 . 7 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 318, + 709, + 387, + 722 + ], + "score": 1.0, + "content": "on COSQL, and", + "type": "text" + }, + { + "bbox": [ + 387, + 710, + 415, + 720 + ], + "score": 0.9, + "content": "+ 3 . 4 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 416, + 709, + 506, + 722 + ], + "score": 1.0, + "content": "on SQA). Finally, we", + "type": "text" + } + ], + "index": 57 + }, + { + "bbox": [ + 105, + 720, + 507, + 734 + ], + "spans": [ + { + "bbox": [ + 105, + 720, + 507, + 734 + ], + "score": 1.0, + "content": "test the effectiveness of TCS on SPARC, COSQL, and SQA by adding TCS to CCS (CCS only vs.", + "type": "text" + } + ], + "index": 58 + } + ], + "index": 54, + "bbox_fs": [ + 104, + 633, + 507, + 734 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 107, + 82, + 504, + 104 + ], + "lines": [ + { + "bbox": [ + 105, + 81, + 506, + 96 + ], + "spans": [ + { + "bbox": [ + 105, + 81, + 289, + 96 + ], + "score": 1.0, + "content": "CCS+TCS), SCORE gains improvements of", + "type": "text" + }, + { + "bbox": [ + 289, + 82, + 311, + 93 + ], + "score": 0.85, + "content": "1 . 2 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 312, + 81, + 375, + 96 + ], + "score": 1.0, + "content": "on SPARC and", + "type": "text" + }, + { + "bbox": [ + 376, + 82, + 398, + 93 + ], + "score": 0.84, + "content": "0 . 8 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 399, + 81, + 468, + 96 + ], + "score": 1.0, + "content": "on COSQL, and", + "type": "text" + }, + { + "bbox": [ + 469, + 82, + 491, + 93 + ], + "score": 0.82, + "content": "4 . 4 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 492, + 81, + 506, + 96 + ], + "score": 1.0, + "content": "on", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 92, + 135, + 107 + ], + "spans": [ + { + "bbox": [ + 105, + 92, + 135, + 107 + ], + "score": 1.0, + "content": "SQA.", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5 + }, + { + "type": "text", + "bbox": [ + 107, + 118, + 297, + 196 + ], + "lines": [ + { + "bbox": [ + 106, + 118, + 298, + 129 + ], + "spans": [ + { + "bbox": [ + 106, + 118, + 298, + 129 + ], + "score": 1.0, + "content": "Does SCORE improve question match accu-", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 128, + 298, + 140 + ], + "spans": [ + { + "bbox": [ + 105, + 128, + 298, + 140 + ], + "score": 1.0, + "content": "racy on individual turns? Table 6 shows de-", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 106, + 139, + 297, + 151 + ], + "spans": [ + { + "bbox": [ + 106, + 139, + 297, + 151 + ], + "score": 1.0, + "content": "tailed results of SCORE’s question accuracy for", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 106, + 150, + 297, + 162 + ], + "spans": [ + { + "bbox": [ + 106, + 150, + 297, + 162 + ], + "score": 1.0, + "content": "individual conversation turns on the SPARC dev", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 106, + 161, + 297, + 174 + ], + "spans": [ + { + "bbox": [ + 106, + 161, + 297, + 174 + ], + "score": 1.0, + "content": "set. SCORE provides a significant improvement", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 106, + 173, + 296, + 185 + ], + "spans": [ + { + "bbox": [ + 106, + 173, + 296, + 185 + ], + "score": 1.0, + "content": "for every conversation turn except the first (in", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 182, + 297, + 196 + ], + "spans": [ + { + "bbox": [ + 105, + 182, + 297, + 196 + ], + "score": 1.0, + "content": "which the task is more similar to single-turn", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 5 + }, + { + "type": "table", + "bbox": [ + 309, + 119, + 499, + 168 + ], + "blocks": [ + { + "type": "table_body", + "bbox": [ + 309, + 119, + 499, + 168 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 309, + 119, + 499, + 168 + ], + "spans": [ + { + "bbox": [ + 309, + 119, + 499, + 168 + ], + "score": 0.968, + "html": "
QMQ1Q2Q3Q4
RAT-SQL +BERT56.871.153.647.831.8
+RoBERTa58.268.758.548.935.2
+ SCoRE62.270.663.552.645.5
", + "type": "table", + "image_path": "716b55ab7ab41843425579c845c78f1bb9011d2084bcdd79d2c72afd62120fe6.jpg" + } + ] + } + ], + "index": 10, + "virtual_lines": [ + { + "bbox": [ + 309, + 119, + 499, + 135.33333333333334 + ], + "spans": [], + "index": 9 + }, + { + "bbox": [ + 309, + 135.33333333333334, + 499, + 151.66666666666669 + ], + "spans": [], + "index": 10 + }, + { + "bbox": [ + 309, + 151.66666666666669, + 499, + 168.00000000000003 + ], + "spans": [], + "index": 11 + } + ] + } + ], + "index": 10 + }, + { + "type": "text", + "bbox": [ + 304, + 170, + 506, + 192 + ], + "lines": [ + { + "bbox": [ + 303, + 169, + 506, + 182 + ], + "spans": [ + { + "bbox": [ + 303, + 169, + 506, + 182 + ], + "score": 1.0, + "content": "Table 6: Detailed results on the dev set of SPARC.", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 304, + 179, + 507, + 194 + ], + "spans": [ + { + "bbox": [ + 304, + 181, + 316, + 192 + ], + "score": 0.85, + "content": "\\mathrm { Q } _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 316, + 179, + 403, + 194 + ], + "score": 1.0, + "content": "is the accuracy of the", + "type": "text" + }, + { + "bbox": [ + 403, + 180, + 415, + 191 + ], + "score": 0.85, + "content": "i ^ { \\mathrm { { t h } } }", + "type": "inline_equation" + }, + { + "bbox": [ + 415, + 179, + 507, + 194 + ], + "score": 1.0, + "content": "conversation question.", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 12.5 + }, + { + "type": "text", + "bbox": [ + 107, + 195, + 491, + 206 + ], + "lines": [ + { + "bbox": [ + 106, + 193, + 492, + 208 + ], + "spans": [ + { + "bbox": [ + 106, + 193, + 492, + 208 + ], + "score": 1.0, + "content": "semantic parsing). COSQL and SQA exhibit similar behavior and are presented in Appendix A.", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 14 + }, + { + "type": "table", + "bbox": [ + 381, + 217, + 498, + 257 + ], + "blocks": [ + { + "type": "table_body", + "bbox": [ + 381, + 217, + 498, + 257 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 381, + 217, + 498, + 257 + ], + "spans": [ + { + "bbox": [ + 381, + 217, + 498, + 257 + ], + "score": 0.963, + "html": "
CoSQLMWoZ
no syn48.458.37
with syn48.658.45
", + "type": "table", + "image_path": "137164c930d245de3cb622845ba7a20896c3547770faa3ef97e81c7652abc76a.jpg" + } + ] + } + ], + "index": 17.5, + "virtual_lines": [ + { + "bbox": [ + 381, + 217, + 498, + 237.0 + ], + "spans": [], + "index": 16 + }, + { + "bbox": [ + 381, + 237.0, + 498, + 257.0 + ], + "spans": [], + "index": 19 + } + ] + } + ], + "index": 17.5 + }, + { + "type": "text", + "bbox": [ + 107, + 219, + 369, + 285 + ], + "lines": [ + { + "bbox": [ + 106, + 218, + 367, + 231 + ], + "spans": [ + { + "bbox": [ + 106, + 218, + 367, + 231 + ], + "score": 1.0, + "content": "What if we use the synthesized data to simply augment the", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 106, + 230, + 367, + 241 + ], + "spans": [ + { + "bbox": [ + 106, + 230, + 367, + 241 + ], + "score": 1.0, + "content": "training data? To answer this, we compare the results of the", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 240, + 367, + 252 + ], + "spans": [ + { + "bbox": [ + 105, + 240, + 367, + 252 + ], + "score": 1.0, + "content": "base models trained with or without the synthesized data on", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 106, + 251, + 367, + 263 + ], + "spans": [ + { + "bbox": [ + 106, + 251, + 367, + 263 + ], + "score": 1.0, + "content": "COSQL and MWOZ. As shown in Table 7, the extra synthetic", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 106, + 262, + 367, + 275 + ], + "spans": [ + { + "bbox": [ + 106, + 262, + 367, + 275 + ], + "score": 1.0, + "content": "data does not significantly improve the performance, indicating", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 106, + 273, + 367, + 286 + ], + "spans": [ + { + "bbox": [ + 106, + 273, + 367, + 286 + ], + "score": 1.0, + "content": "that directly augmenting the synthetic data to the training set is", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 19.0 + }, + { + "type": "text", + "bbox": [ + 375, + 259, + 504, + 281 + ], + "lines": [ + { + "bbox": [ + 374, + 258, + 505, + 271 + ], + "spans": [ + { + "bbox": [ + 374, + 258, + 505, + 271 + ], + "score": 1.0, + "content": "Table 7: Effect of synthetic data", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 374, + 270, + 497, + 282 + ], + "spans": [ + { + "bbox": [ + 374, + 270, + 497, + 282 + ], + "score": 1.0, + "content": "as training data augmentation.", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 23.0 + }, + { + "type": "text", + "bbox": [ + 106, + 285, + 500, + 317 + ], + "lines": [ + { + "bbox": [ + 105, + 283, + 502, + 297 + ], + "spans": [ + { + "bbox": [ + 105, + 283, + 444, + 297 + ], + "score": 1.0, + "content": "not effective. The similar findings are reported in many recent work (Zhang et al.,", + "type": "text" + }, + { + "bbox": [ + 444, + 284, + 471, + 295 + ], + "score": 0.4, + "content": "2 0 1 9 \\mathrm { c }", + "type": "inline_equation" + }, + { + "bbox": [ + 471, + 283, + 502, + 297 + ], + "score": 1.0, + "content": "; Herzig", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 296, + 502, + 308 + ], + "spans": [ + { + "bbox": [ + 105, + 296, + 502, + 308 + ], + "score": 1.0, + "content": "et al., 2020; Campagna et al., 2020; Zhong et al., 2020). In contrast, pre-training on the synthesized", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 106, + 306, + 414, + 318 + ], + "spans": [ + { + "bbox": [ + 106, + 306, + 414, + 318 + ], + "score": 1.0, + "content": "data with our objectives improves the performance on the downstream tasks.", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 26 + }, + { + "type": "text", + "bbox": [ + 107, + 330, + 311, + 417 + ], + "lines": [ + { + "bbox": [ + 106, + 330, + 312, + 343 + ], + "spans": [ + { + "bbox": [ + 106, + 330, + 312, + 343 + ], + "score": 1.0, + "content": "How general is SCORE and its synthetic gram-", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 106, + 341, + 311, + 354 + ], + "spans": [ + { + "bbox": [ + 106, + 341, + 311, + 354 + ], + "score": 1.0, + "content": "mar? For generalization in task settings, we have", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 106, + 352, + 311, + 365 + ], + "spans": [ + { + "bbox": [ + 106, + 352, + 311, + 365 + ], + "score": 1.0, + "content": "shown that the pre-training strategy of SCORE can", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 106, + 363, + 311, + 375 + ], + "spans": [ + { + "bbox": [ + 106, + 363, + 311, + 375 + ], + "score": 1.0, + "content": "improve the performance over different CSP tasks", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 373, + 312, + 387 + ], + "spans": [ + { + "bbox": [ + 105, + 373, + 312, + 387 + ], + "score": 1.0, + "content": "including semantic parsing (SPARC and COSQL),", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 106, + 385, + 312, + 397 + ], + "spans": [ + { + "bbox": [ + 106, + 385, + 312, + 397 + ], + "score": 1.0, + "content": "dialog state tracking (MWOZ), and weakly super-", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 396, + 312, + 408 + ], + "spans": [ + { + "bbox": [ + 105, + 396, + 312, + 408 + ], + "score": 1.0, + "content": "vised table question answering (SQA). In addition,", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 406, + 312, + 418 + ], + "spans": [ + { + "bbox": [ + 105, + 406, + 312, + 418 + ], + "score": 1.0, + "content": "we demonstrate the effectiveness of SCORE on dif-", + "type": "text" + } + ], + "index": 41 + } + ], + "index": 34.0 + }, + { + "type": "table", + "bbox": [ + 327, + 335, + 495, + 387 + ], + "blocks": [ + { + "type": "table_body", + "bbox": [ + 327, + 335, + 495, + 387 + ], + "group_id": 2, + "lines": [ + { + "bbox": [ + 327, + 335, + 495, + 387 + ], + "spans": [ + { + "bbox": [ + 327, + 335, + 495, + 387 + ], + "score": 0.973, + "html": "
MWoZ
SOM-DST+BERT52.57
+ SCoRE on syn. text-to-SQL53.57
+ SCoRE on syn. MWoZ54.61
", + "type": "table", + "image_path": "8767ee72ecde0f4df608eb5fcb436530a2e58fadb17549266edc9d1e8c004c0e.jpg" + } + ] + } + ], + "index": 33.0, + "virtual_lines": [ + { + "bbox": [ + 327, + 335, + 495, + 348.0 + ], + "spans": [], + "index": 29 + }, + { + "bbox": [ + 327, + 348.0, + 495, + 361.0 + ], + "spans": [], + "index": 32 + }, + { + "bbox": [ + 327, + 361.0, + 495, + 374.0 + ], + "spans": [], + "index": 34 + }, + { + "bbox": [ + 327, + 374.0, + 495, + 387.0 + ], + "spans": [], + "index": 36 + } + ] + }, + { + "type": "table_footnote", + "bbox": [ + 318, + 389, + 505, + 411 + ], + "group_id": 2, + "lines": [ + { + "bbox": [ + 317, + 389, + 505, + 401 + ], + "spans": [ + { + "bbox": [ + 317, + 389, + 505, + 401 + ], + "score": 1.0, + "content": "Table 8: Performance of SCORE pre-trained", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 318, + 400, + 484, + 411 + ], + "spans": [ + { + "bbox": [ + 318, + 400, + 484, + 411 + ], + "score": 1.0, + "content": "on different synthesized data on MWOZ.", + "type": "text" + } + ], + "index": 40 + } + ], + "index": 39.0 + } + ], + "index": 36.0 + }, + { + "type": "text", + "bbox": [ + 107, + 418, + 504, + 451 + ], + "lines": [ + { + "bbox": [ + 105, + 417, + 506, + 431 + ], + "spans": [ + { + "bbox": [ + 105, + 417, + 506, + 431 + ], + "score": 1.0, + "content": "ferent base models. To this end, we experiment with a different base model SOM-DST for MWOZ.", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 429, + 505, + 441 + ], + "spans": [ + { + "bbox": [ + 105, + 429, + 505, + 441 + ], + "score": 1.0, + "content": "As shown in Table 8, SCORE can still improve the performance with a different base model on", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 439, + 391, + 453 + ], + "spans": [ + { + "bbox": [ + 105, + 439, + 188, + 453 + ], + "score": 1.0, + "content": "MWOZ (SOM-DST", + "type": "text" + }, + { + "bbox": [ + 189, + 441, + 195, + 450 + ], + "score": 0.45, + "content": "+", + "type": "inline_equation" + }, + { + "bbox": [ + 196, + 439, + 279, + 453 + ], + "score": 1.0, + "content": "BERT vs. SOM-DST", + "type": "text" + }, + { + "bbox": [ + 280, + 441, + 290, + 450 + ], + "score": 0.34, + "content": "+ \\mathsfit { S }", + "type": "inline_equation" + }, + { + "bbox": [ + 290, + 439, + 391, + 453 + ], + "score": 1.0, + "content": "CORE on syn. MWOZ).", + "type": "text" + } + ], + "index": 44 + } + ], + "index": 43 + }, + { + "type": "text", + "bbox": [ + 106, + 456, + 505, + 545 + ], + "lines": [ + { + "bbox": [ + 104, + 456, + 506, + 470 + ], + "spans": [ + { + "bbox": [ + 104, + 456, + 506, + 470 + ], + "score": 1.0, + "content": "To demonstrate the generalization in synthetic grammar and data, as shown in Table 2 and 4, SCORE", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 108, + 468, + 506, + 480 + ], + "spans": [ + { + "bbox": [ + 108, + 468, + 155, + 479 + ], + "score": 0.64, + "content": "\\mathrm { ( T C S + C C S ) }", + "type": "inline_equation" + }, + { + "bbox": [ + 155, + 468, + 506, + 480 + ], + "score": 1.0, + "content": "is pre-trained on the synthesized data of the grammar induced from SPARC only, and it", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 106, + 479, + 505, + 491 + ], + "spans": [ + { + "bbox": [ + 106, + 479, + 283, + 491 + ], + "score": 1.0, + "content": "still improves the performance on COSQL", + "type": "text" + }, + { + "bbox": [ + 283, + 479, + 318, + 490 + ], + "score": 0.89, + "content": "( + 2 . 7 \\% )", + "type": "inline_equation" + }, + { + "bbox": [ + 318, + 479, + 361, + 491 + ], + "score": 1.0, + "content": "and SQA", + "type": "text" + }, + { + "bbox": [ + 361, + 479, + 396, + 490 + ], + "score": 0.89, + "content": "( + 4 . 9 \\% )", + "type": "inline_equation" + }, + { + "bbox": [ + 396, + 479, + 505, + 491 + ], + "score": 1.0, + "content": "where no any CoSQL and", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 106, + 490, + 505, + 502 + ], + "spans": [ + { + "bbox": [ + 106, + 490, + 505, + 502 + ], + "score": 1.0, + "content": "SQA annotated data is seen in any pre-training steps. Moreover, in Table 8 we show that SCORE", + "type": "text" + } + ], + "index": 48 + }, + { + "bbox": [ + 105, + 501, + 506, + 514 + ], + "spans": [ + { + "bbox": [ + 105, + 501, + 506, + 514 + ], + "score": 1.0, + "content": "pre-trained on the text-to-SQL synthesized data could also surprisingly improve the performance", + "type": "text" + } + ], + "index": 49 + }, + { + "bbox": [ + 106, + 511, + 505, + 523 + ], + "spans": [ + { + "bbox": [ + 106, + 511, + 505, + 523 + ], + "score": 1.0, + "content": "on MWOZ. We expect that higher performance could be achieved with SCORE pre-trained on", + "type": "text" + } + ], + "index": 50 + }, + { + "bbox": [ + 105, + 522, + 506, + 536 + ], + "spans": [ + { + "bbox": [ + 105, + 522, + 506, + 536 + ], + "score": 1.0, + "content": "task-specific synthesized data. Finally, our pre-training approach can be applied to any existing LMs", + "type": "text" + } + ], + "index": 51 + }, + { + "bbox": [ + 105, + 533, + 460, + 547 + ], + "spans": [ + { + "bbox": [ + 105, + 533, + 460, + 547 + ], + "score": 1.0, + "content": "including larger seq2seq LMs (e.g., BART (Lewis et al., 2020), T5 (Raffel et al., 2020)).", + "type": "text" + } + ], + "index": 52 + } + ], + "index": 48.5 + }, + { + "type": "text", + "bbox": [ + 106, + 558, + 387, + 635 + ], + "lines": [ + { + "bbox": [ + 106, + 557, + 387, + 569 + ], + "spans": [ + { + "bbox": [ + 106, + 557, + 387, + 569 + ], + "score": 1.0, + "content": "Can SCORE deliver more value when in-domain data is limited", + "type": "text" + } + ], + "index": 53 + }, + { + "bbox": [ + 105, + 568, + 387, + 581 + ], + "spans": [ + { + "bbox": [ + 105, + 568, + 387, + 581 + ], + "score": 1.0, + "content": "(e.g., in a low-resource setting)? We want to answer this question", + "type": "text" + } + ], + "index": 54 + }, + { + "bbox": [ + 105, + 579, + 388, + 591 + ], + "spans": [ + { + "bbox": [ + 105, + 579, + 388, + 591 + ], + "score": 1.0, + "content": "similar to experiments other investigations of LMs as few-shot learn-", + "type": "text" + } + ], + "index": 56 + }, + { + "bbox": [ + 105, + 590, + 388, + 603 + ], + "spans": [ + { + "bbox": [ + 105, + 590, + 388, + 603 + ], + "score": 1.0, + "content": "ers (Wu et al., 2020; Brown et al., 2020; Schick & Schutze, 2020). To ¨", + "type": "text" + } + ], + "index": 57 + }, + { + "bbox": [ + 105, + 601, + 388, + 614 + ], + "spans": [ + { + "bbox": [ + 105, + 601, + 388, + 614 + ], + "score": 1.0, + "content": "this end, we compare ROBERTA and SCORE under a few-shot setting", + "type": "text" + } + ], + "index": 59 + }, + { + "bbox": [ + 106, + 612, + 388, + 624 + ], + "spans": [ + { + "bbox": [ + 106, + 612, + 186, + 624 + ], + "score": 1.0, + "content": "on SQA when only", + "type": "text" + }, + { + "bbox": [ + 187, + 613, + 205, + 623 + ], + "score": 0.86, + "content": "10 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 206, + 612, + 388, + 624 + ], + "score": 1.0, + "content": "of training data is available. We choose SQA", + "type": "text" + } + ], + "index": 61 + }, + { + "bbox": [ + 106, + 623, + 388, + 636 + ], + "spans": [ + { + "bbox": [ + 106, + 623, + 388, + 636 + ], + "score": 1.0, + "content": "because its annotation is most different from the synthetic text-to-SQL", + "type": "text" + } + ], + "index": 63 + } + ], + "index": 57 + }, + { + "type": "table", + "bbox": [ + 401, + 562, + 498, + 601 + ], + "blocks": [ + { + "type": "table_body", + "bbox": [ + 401, + 562, + 498, + 601 + ], + "group_id": 3, + "lines": [ + { + "bbox": [ + 401, + 562, + 498, + 601 + ], + "spans": [ + { + "bbox": [ + 401, + 562, + 498, + 601 + ], + "score": 0.962, + "html": "
QMIM
RoBERTa53.321.2
SCoRE57.126.1
", + "type": "table", + "image_path": "184d394085803fcceb6851c05c1a7103cd90506541147a6c45ced68bc6a081cf.jpg" + } + ] + } + ], + "index": 56.5, + "virtual_lines": [ + { + "bbox": [ + 401, + 562, + 498, + 581.5 + ], + "spans": [], + "index": 55 + }, + { + "bbox": [ + 401, + 581.5, + 498, + 601.0 + ], + "spans": [], + "index": 58 + } + ] + }, + { + "type": "table_footnote", + "bbox": [ + 395, + 604, + 504, + 636 + ], + "group_id": 3, + "lines": [ + { + "bbox": [ + 393, + 602, + 506, + 615 + ], + "spans": [ + { + "bbox": [ + 393, + 602, + 506, + 615 + ], + "score": 1.0, + "content": "Table 9: Performance of", + "type": "text" + } + ], + "index": 60 + }, + { + "bbox": [ + 393, + 613, + 506, + 628 + ], + "spans": [ + { + "bbox": [ + 393, + 613, + 447, + 628 + ], + "score": 1.0, + "content": "SCORE on", + "type": "text" + }, + { + "bbox": [ + 447, + 615, + 468, + 626 + ], + "score": 0.82, + "content": "10 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 468, + 613, + 506, + 628 + ], + "score": 1.0, + "content": "training", + "type": "text" + } + ], + "index": 62 + }, + { + "bbox": [ + 394, + 625, + 452, + 638 + ], + "spans": [ + { + "bbox": [ + 394, + 625, + 452, + 638 + ], + "score": 1.0, + "content": "data of SQA.", + "type": "text" + } + ], + "index": 64 + } + ], + "index": 62 + } + ], + "index": 59.25 + }, + { + "type": "text", + "bbox": [ + 106, + 635, + 505, + 657 + ], + "lines": [ + { + "bbox": [ + 106, + 634, + 505, + 646 + ], + "spans": [ + { + "bbox": [ + 106, + 634, + 505, + 646 + ], + "score": 1.0, + "content": "dataset we use for pretraining. Table 9 demonstrates that SCORE delivers even larger improvements", + "type": "text" + } + ], + "index": 65 + }, + { + "bbox": [ + 105, + 645, + 488, + 657 + ], + "spans": [ + { + "bbox": [ + 105, + 645, + 300, + 657 + ], + "score": 1.0, + "content": "compared to the ROBERTA baseline when only", + "type": "text" + }, + { + "bbox": [ + 301, + 645, + 320, + 656 + ], + "score": 0.85, + "content": "10 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 320, + 645, + 424, + 657 + ], + "score": 1.0, + "content": "training data is available", + "type": "text" + }, + { + "bbox": [ + 424, + 645, + 446, + 656 + ], + "score": 0.83, + "content": "3 . 8 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 447, + 645, + 458, + 657 + ], + "score": 1.0, + "content": "vs", + "type": "text" + }, + { + "bbox": [ + 459, + 645, + 481, + 656 + ], + "score": 0.83, + "content": "2 . 6 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 482, + 645, + 488, + 657 + ], + "score": 1.0, + "content": ").", + "type": "text" + } + ], + "index": 66 + } + ], + "index": 65.5 + }, + { + "type": "title", + "bbox": [ + 108, + 673, + 211, + 686 + ], + "lines": [ + { + "bbox": [ + 105, + 672, + 213, + 688 + ], + "spans": [ + { + "bbox": [ + 105, + 672, + 213, + 688 + ], + "score": 1.0, + "content": "5 RELATED WORK", + "type": "text" + } + ], + "index": 67 + } + ], + "index": 67 + }, + { + "type": "text", + "bbox": [ + 108, + 699, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 699, + 505, + 711 + ], + "spans": [ + { + "bbox": [ + 106, + 699, + 505, + 711 + ], + "score": 1.0, + "content": "Conversational Semantic Parsing Conversational semantic parsing is one of the most important", + "type": "text" + } + ], + "index": 68 + }, + { + "bbox": [ + 105, + 710, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 105, + 710, + 505, + 722 + ], + "score": 1.0, + "content": "research topics in conversational AI and has been studied in different settings including task-oriented", + "type": "text" + } + ], + "index": 69 + }, + { + "bbox": [ + 105, + 720, + 507, + 734 + ], + "spans": [ + { + "bbox": [ + 105, + 720, + 507, + 734 + ], + "score": 1.0, + "content": "dialogues, question answering, and text-to-SQL. Task-oriented dialog systems (Henderson et al.,", + "type": "text" + } + ], + "index": 70 + } + ], + "index": 69 + } + ], + "page_idx": 7, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 108, + 27, + 292, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 26, + 293, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 26, + 293, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2021", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 302, + 751, + 308, + 760 + ], + "lines": [ + { + "bbox": [ + 300, + 750, + 309, + 761 + ], + "spans": [ + { + "bbox": [ + 300, + 750, + 309, + 761 + ], + "score": 1.0, + "content": "8", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 107, + 82, + 504, + 104 + ], + "lines": [ + { + "bbox": [ + 105, + 81, + 506, + 96 + ], + "spans": [ + { + "bbox": [ + 105, + 81, + 289, + 96 + ], + "score": 1.0, + "content": "CCS+TCS), SCORE gains improvements of", + "type": "text" + }, + { + "bbox": [ + 289, + 82, + 311, + 93 + ], + "score": 0.85, + "content": "1 . 2 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 312, + 81, + 375, + 96 + ], + "score": 1.0, + "content": "on SPARC and", + "type": "text" + }, + { + "bbox": [ + 376, + 82, + 398, + 93 + ], + "score": 0.84, + "content": "0 . 8 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 399, + 81, + 468, + 96 + ], + "score": 1.0, + "content": "on COSQL, and", + "type": "text" + }, + { + "bbox": [ + 469, + 82, + 491, + 93 + ], + "score": 0.82, + "content": "4 . 4 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 492, + 81, + 506, + 96 + ], + "score": 1.0, + "content": "on", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 92, + 135, + 107 + ], + "spans": [ + { + "bbox": [ + 105, + 92, + 135, + 107 + ], + "score": 1.0, + "content": "SQA.", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5, + "bbox_fs": [ + 105, + 81, + 506, + 107 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 118, + 297, + 196 + ], + "lines": [ + { + "bbox": [ + 106, + 118, + 298, + 129 + ], + "spans": [ + { + "bbox": [ + 106, + 118, + 298, + 129 + ], + "score": 1.0, + "content": "Does SCORE improve question match accu-", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 128, + 298, + 140 + ], + "spans": [ + { + "bbox": [ + 105, + 128, + 298, + 140 + ], + "score": 1.0, + "content": "racy on individual turns? Table 6 shows de-", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 106, + 139, + 297, + 151 + ], + "spans": [ + { + "bbox": [ + 106, + 139, + 297, + 151 + ], + "score": 1.0, + "content": "tailed results of SCORE’s question accuracy for", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 106, + 150, + 297, + 162 + ], + "spans": [ + { + "bbox": [ + 106, + 150, + 297, + 162 + ], + "score": 1.0, + "content": "individual conversation turns on the SPARC dev", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 106, + 161, + 297, + 174 + ], + "spans": [ + { + "bbox": [ + 106, + 161, + 297, + 174 + ], + "score": 1.0, + "content": "set. SCORE provides a significant improvement", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 106, + 173, + 296, + 185 + ], + "spans": [ + { + "bbox": [ + 106, + 173, + 296, + 185 + ], + "score": 1.0, + "content": "for every conversation turn except the first (in", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 182, + 297, + 196 + ], + "spans": [ + { + "bbox": [ + 105, + 182, + 297, + 196 + ], + "score": 1.0, + "content": "which the task is more similar to single-turn", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 5, + "bbox_fs": [ + 105, + 118, + 298, + 196 + ] + }, + { + "type": "table", + "bbox": [ + 309, + 119, + 499, + 168 + ], + "blocks": [ + { + "type": "table_body", + "bbox": [ + 309, + 119, + 499, + 168 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 309, + 119, + 499, + 168 + ], + "spans": [ + { + "bbox": [ + 309, + 119, + 499, + 168 + ], + "score": 0.968, + "html": "
QMQ1Q2Q3Q4
RAT-SQL +BERT56.871.153.647.831.8
+RoBERTa58.268.758.548.935.2
+ SCoRE62.270.663.552.645.5
", + "type": "table", + "image_path": "716b55ab7ab41843425579c845c78f1bb9011d2084bcdd79d2c72afd62120fe6.jpg" + } + ] + } + ], + "index": 10, + "virtual_lines": [ + { + "bbox": [ + 309, + 119, + 499, + 135.33333333333334 + ], + "spans": [], + "index": 9 + }, + { + "bbox": [ + 309, + 135.33333333333334, + 499, + 151.66666666666669 + ], + "spans": [], + "index": 10 + }, + { + "bbox": [ + 309, + 151.66666666666669, + 499, + 168.00000000000003 + ], + "spans": [], + "index": 11 + } + ] + } + ], + "index": 10 + }, + { + "type": "list", + "bbox": [ + 304, + 170, + 506, + 192 + ], + "lines": [ + { + "bbox": [ + 303, + 169, + 506, + 182 + ], + "spans": [ + { + "bbox": [ + 303, + 169, + 506, + 182 + ], + "score": 1.0, + "content": "Table 6: Detailed results on the dev set of SPARC.", + "type": "text" + } + ], + "index": 12, + "is_list_end_line": true + }, + { + "bbox": [ + 304, + 179, + 507, + 194 + ], + "spans": [ + { + "bbox": [ + 304, + 181, + 316, + 192 + ], + "score": 0.85, + "content": "\\mathrm { Q } _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 316, + 179, + 403, + 194 + ], + "score": 1.0, + "content": "is the accuracy of the", + "type": "text" + }, + { + "bbox": [ + 403, + 180, + 415, + 191 + ], + "score": 0.85, + "content": "i ^ { \\mathrm { { t h } } }", + "type": "inline_equation" + }, + { + "bbox": [ + 415, + 179, + 507, + 194 + ], + "score": 1.0, + "content": "conversation question.", + "type": "text" + } + ], + "index": 13, + "is_list_start_line": true, + "is_list_end_line": true + } + ], + "index": 12.5, + "bbox_fs": [ + 303, + 169, + 507, + 194 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 195, + 491, + 206 + ], + "lines": [ + { + "bbox": [ + 106, + 193, + 492, + 208 + ], + "spans": [ + { + "bbox": [ + 106, + 193, + 492, + 208 + ], + "score": 1.0, + "content": "semantic parsing). COSQL and SQA exhibit similar behavior and are presented in Appendix A.", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 14, + "bbox_fs": [ + 106, + 193, + 492, + 208 + ] + }, + { + "type": "table", + "bbox": [ + 381, + 217, + 498, + 257 + ], + "blocks": [ + { + "type": "table_body", + "bbox": [ + 381, + 217, + 498, + 257 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 381, + 217, + 498, + 257 + ], + "spans": [ + { + "bbox": [ + 381, + 217, + 498, + 257 + ], + "score": 0.963, + "html": "
CoSQLMWoZ
no syn48.458.37
with syn48.658.45
", + "type": "table", + "image_path": "137164c930d245de3cb622845ba7a20896c3547770faa3ef97e81c7652abc76a.jpg" + } + ] + } + ], + "index": 17.5, + "virtual_lines": [ + { + "bbox": [ + 381, + 217, + 498, + 237.0 + ], + "spans": [], + "index": 16 + }, + { + "bbox": [ + 381, + 237.0, + 498, + 257.0 + ], + "spans": [], + "index": 19 + } + ] + } + ], + "index": 17.5 + }, + { + "type": "text", + "bbox": [ + 107, + 219, + 369, + 285 + ], + "lines": [ + { + "bbox": [ + 106, + 218, + 367, + 231 + ], + "spans": [ + { + "bbox": [ + 106, + 218, + 367, + 231 + ], + "score": 1.0, + "content": "What if we use the synthesized data to simply augment the", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 106, + 230, + 367, + 241 + ], + "spans": [ + { + "bbox": [ + 106, + 230, + 367, + 241 + ], + "score": 1.0, + "content": "training data? To answer this, we compare the results of the", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 240, + 367, + 252 + ], + "spans": [ + { + "bbox": [ + 105, + 240, + 367, + 252 + ], + "score": 1.0, + "content": "base models trained with or without the synthesized data on", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 106, + 251, + 367, + 263 + ], + "spans": [ + { + "bbox": [ + 106, + 251, + 367, + 263 + ], + "score": 1.0, + "content": "COSQL and MWOZ. As shown in Table 7, the extra synthetic", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 106, + 262, + 367, + 275 + ], + "spans": [ + { + "bbox": [ + 106, + 262, + 367, + 275 + ], + "score": 1.0, + "content": "data does not significantly improve the performance, indicating", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 106, + 273, + 367, + 286 + ], + "spans": [ + { + "bbox": [ + 106, + 273, + 367, + 286 + ], + "score": 1.0, + "content": "that directly augmenting the synthetic data to the training set is", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 19.0, + "bbox_fs": [ + 105, + 218, + 367, + 286 + ] + }, + { + "type": "text", + "bbox": [ + 375, + 259, + 504, + 281 + ], + "lines": [ + { + "bbox": [ + 374, + 258, + 505, + 271 + ], + "spans": [ + { + "bbox": [ + 374, + 258, + 505, + 271 + ], + "score": 1.0, + "content": "Table 7: Effect of synthetic data", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 374, + 270, + 497, + 282 + ], + "spans": [ + { + "bbox": [ + 374, + 270, + 497, + 282 + ], + "score": 1.0, + "content": "as training data augmentation.", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 23.0, + "bbox_fs": [ + 374, + 258, + 505, + 282 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 285, + 500, + 317 + ], + "lines": [ + { + "bbox": [ + 105, + 283, + 502, + 297 + ], + "spans": [ + { + "bbox": [ + 105, + 283, + 444, + 297 + ], + "score": 1.0, + "content": "not effective. The similar findings are reported in many recent work (Zhang et al.,", + "type": "text" + }, + { + "bbox": [ + 444, + 284, + 471, + 295 + ], + "score": 0.4, + "content": "2 0 1 9 \\mathrm { c }", + "type": "inline_equation" + }, + { + "bbox": [ + 471, + 283, + 502, + 297 + ], + "score": 1.0, + "content": "; Herzig", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 296, + 502, + 308 + ], + "spans": [ + { + "bbox": [ + 105, + 296, + 502, + 308 + ], + "score": 1.0, + "content": "et al., 2020; Campagna et al., 2020; Zhong et al., 2020). In contrast, pre-training on the synthesized", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 106, + 306, + 414, + 318 + ], + "spans": [ + { + "bbox": [ + 106, + 306, + 414, + 318 + ], + "score": 1.0, + "content": "data with our objectives improves the performance on the downstream tasks.", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 26, + "bbox_fs": [ + 105, + 283, + 502, + 318 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 330, + 311, + 417 + ], + "lines": [ + { + "bbox": [ + 106, + 330, + 312, + 343 + ], + "spans": [ + { + "bbox": [ + 106, + 330, + 312, + 343 + ], + "score": 1.0, + "content": "How general is SCORE and its synthetic gram-", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 106, + 341, + 311, + 354 + ], + "spans": [ + { + "bbox": [ + 106, + 341, + 311, + 354 + ], + "score": 1.0, + "content": "mar? For generalization in task settings, we have", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 106, + 352, + 311, + 365 + ], + "spans": [ + { + "bbox": [ + 106, + 352, + 311, + 365 + ], + "score": 1.0, + "content": "shown that the pre-training strategy of SCORE can", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 106, + 363, + 311, + 375 + ], + "spans": [ + { + "bbox": [ + 106, + 363, + 311, + 375 + ], + "score": 1.0, + "content": "improve the performance over different CSP tasks", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 373, + 312, + 387 + ], + "spans": [ + { + "bbox": [ + 105, + 373, + 312, + 387 + ], + "score": 1.0, + "content": "including semantic parsing (SPARC and COSQL),", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 106, + 385, + 312, + 397 + ], + "spans": [ + { + "bbox": [ + 106, + 385, + 312, + 397 + ], + "score": 1.0, + "content": "dialog state tracking (MWOZ), and weakly super-", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 396, + 312, + 408 + ], + "spans": [ + { + "bbox": [ + 105, + 396, + 312, + 408 + ], + "score": 1.0, + "content": "vised table question answering (SQA). In addition,", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 406, + 312, + 418 + ], + "spans": [ + { + "bbox": [ + 105, + 406, + 312, + 418 + ], + "score": 1.0, + "content": "we demonstrate the effectiveness of SCORE on dif-", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 417, + 506, + 431 + ], + "spans": [ + { + "bbox": [ + 105, + 417, + 506, + 431 + ], + "score": 1.0, + "content": "ferent base models. To this end, we experiment with a different base model SOM-DST for MWOZ.", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 429, + 505, + 441 + ], + "spans": [ + { + "bbox": [ + 105, + 429, + 505, + 441 + ], + "score": 1.0, + "content": "As shown in Table 8, SCORE can still improve the performance with a different base model on", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 439, + 391, + 453 + ], + "spans": [ + { + "bbox": [ + 105, + 439, + 188, + 453 + ], + "score": 1.0, + "content": "MWOZ (SOM-DST", + "type": "text" + }, + { + "bbox": [ + 189, + 441, + 195, + 450 + ], + "score": 0.45, + "content": "+", + "type": "inline_equation" + }, + { + "bbox": [ + 196, + 439, + 279, + 453 + ], + "score": 1.0, + "content": "BERT vs. SOM-DST", + "type": "text" + }, + { + "bbox": [ + 280, + 441, + 290, + 450 + ], + "score": 0.34, + "content": "+ \\mathsfit { S }", + "type": "inline_equation" + }, + { + "bbox": [ + 290, + 439, + 391, + 453 + ], + "score": 1.0, + "content": "CORE on syn. MWOZ).", + "type": "text" + } + ], + "index": 44 + } + ], + "index": 34.0, + "bbox_fs": [ + 105, + 330, + 312, + 418 + ] + }, + { + "type": "table", + "bbox": [ + 327, + 335, + 495, + 387 + ], + "blocks": [ + { + "type": "table_body", + "bbox": [ + 327, + 335, + 495, + 387 + ], + "group_id": 2, + "lines": [ + { + "bbox": [ + 327, + 335, + 495, + 387 + ], + "spans": [ + { + "bbox": [ + 327, + 335, + 495, + 387 + ], + "score": 0.973, + "html": "
MWoZ
SOM-DST+BERT52.57
+ SCoRE on syn. text-to-SQL53.57
+ SCoRE on syn. MWoZ54.61
", + "type": "table", + "image_path": "8767ee72ecde0f4df608eb5fcb436530a2e58fadb17549266edc9d1e8c004c0e.jpg" + } + ] + } + ], + "index": 33.0, + "virtual_lines": [ + { + "bbox": [ + 327, + 335, + 495, + 348.0 + ], + "spans": [], + "index": 29 + }, + { + "bbox": [ + 327, + 348.0, + 495, + 361.0 + ], + "spans": [], + "index": 32 + }, + { + "bbox": [ + 327, + 361.0, + 495, + 374.0 + ], + "spans": [], + "index": 34 + }, + { + "bbox": [ + 327, + 374.0, + 495, + 387.0 + ], + "spans": [], + "index": 36 + } + ] + }, + { + "type": "table_footnote", + "bbox": [ + 318, + 389, + 505, + 411 + ], + "group_id": 2, + "lines": [ + { + "bbox": [ + 317, + 389, + 505, + 401 + ], + "spans": [ + { + "bbox": [ + 317, + 389, + 505, + 401 + ], + "score": 1.0, + "content": "Table 8: Performance of SCORE pre-trained", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 318, + 400, + 484, + 411 + ], + "spans": [ + { + "bbox": [ + 318, + 400, + 484, + 411 + ], + "score": 1.0, + "content": "on different synthesized data on MWOZ.", + "type": "text" + } + ], + "index": 40 + } + ], + "index": 39.0 + } + ], + "index": 36.0 + }, + { + "type": "text", + "bbox": [ + 107, + 418, + 504, + 451 + ], + "lines": [], + "index": 43, + "bbox_fs": [ + 105, + 417, + 506, + 453 + ], + "lines_deleted": true + }, + { + "type": "text", + "bbox": [ + 106, + 456, + 505, + 545 + ], + "lines": [ + { + "bbox": [ + 104, + 456, + 506, + 470 + ], + "spans": [ + { + "bbox": [ + 104, + 456, + 506, + 470 + ], + "score": 1.0, + "content": "To demonstrate the generalization in synthetic grammar and data, as shown in Table 2 and 4, SCORE", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 108, + 468, + 506, + 480 + ], + "spans": [ + { + "bbox": [ + 108, + 468, + 155, + 479 + ], + "score": 0.64, + "content": "\\mathrm { ( T C S + C C S ) }", + "type": "inline_equation" + }, + { + "bbox": [ + 155, + 468, + 506, + 480 + ], + "score": 1.0, + "content": "is pre-trained on the synthesized data of the grammar induced from SPARC only, and it", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 106, + 479, + 505, + 491 + ], + "spans": [ + { + "bbox": [ + 106, + 479, + 283, + 491 + ], + "score": 1.0, + "content": "still improves the performance on COSQL", + "type": "text" + }, + { + "bbox": [ + 283, + 479, + 318, + 490 + ], + "score": 0.89, + "content": "( + 2 . 7 \\% )", + "type": "inline_equation" + }, + { + "bbox": [ + 318, + 479, + 361, + 491 + ], + "score": 1.0, + "content": "and SQA", + "type": "text" + }, + { + "bbox": [ + 361, + 479, + 396, + 490 + ], + "score": 0.89, + "content": "( + 4 . 9 \\% )", + "type": "inline_equation" + }, + { + "bbox": [ + 396, + 479, + 505, + 491 + ], + "score": 1.0, + "content": "where no any CoSQL and", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 106, + 490, + 505, + 502 + ], + "spans": [ + { + "bbox": [ + 106, + 490, + 505, + 502 + ], + "score": 1.0, + "content": "SQA annotated data is seen in any pre-training steps. Moreover, in Table 8 we show that SCORE", + "type": "text" + } + ], + "index": 48 + }, + { + "bbox": [ + 105, + 501, + 506, + 514 + ], + "spans": [ + { + "bbox": [ + 105, + 501, + 506, + 514 + ], + "score": 1.0, + "content": "pre-trained on the text-to-SQL synthesized data could also surprisingly improve the performance", + "type": "text" + } + ], + "index": 49 + }, + { + "bbox": [ + 106, + 511, + 505, + 523 + ], + "spans": [ + { + "bbox": [ + 106, + 511, + 505, + 523 + ], + "score": 1.0, + "content": "on MWOZ. We expect that higher performance could be achieved with SCORE pre-trained on", + "type": "text" + } + ], + "index": 50 + }, + { + "bbox": [ + 105, + 522, + 506, + 536 + ], + "spans": [ + { + "bbox": [ + 105, + 522, + 506, + 536 + ], + "score": 1.0, + "content": "task-specific synthesized data. Finally, our pre-training approach can be applied to any existing LMs", + "type": "text" + } + ], + "index": 51 + }, + { + "bbox": [ + 105, + 533, + 460, + 547 + ], + "spans": [ + { + "bbox": [ + 105, + 533, + 460, + 547 + ], + "score": 1.0, + "content": "including larger seq2seq LMs (e.g., BART (Lewis et al., 2020), T5 (Raffel et al., 2020)).", + "type": "text" + } + ], + "index": 52 + } + ], + "index": 48.5, + "bbox_fs": [ + 104, + 456, + 506, + 547 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 558, + 387, + 635 + ], + "lines": [ + { + "bbox": [ + 106, + 557, + 387, + 569 + ], + "spans": [ + { + "bbox": [ + 106, + 557, + 387, + 569 + ], + "score": 1.0, + "content": "Can SCORE deliver more value when in-domain data is limited", + "type": "text" + } + ], + "index": 53 + }, + { + "bbox": [ + 105, + 568, + 387, + 581 + ], + "spans": [ + { + "bbox": [ + 105, + 568, + 387, + 581 + ], + "score": 1.0, + "content": "(e.g., in a low-resource setting)? We want to answer this question", + "type": "text" + } + ], + "index": 54 + }, + { + "bbox": [ + 105, + 579, + 388, + 591 + ], + "spans": [ + { + "bbox": [ + 105, + 579, + 388, + 591 + ], + "score": 1.0, + "content": "similar to experiments other investigations of LMs as few-shot learn-", + "type": "text" + } + ], + "index": 56 + }, + { + "bbox": [ + 105, + 590, + 388, + 603 + ], + "spans": [ + { + "bbox": [ + 105, + 590, + 388, + 603 + ], + "score": 1.0, + "content": "ers (Wu et al., 2020; Brown et al., 2020; Schick & Schutze, 2020). To ¨", + "type": "text" + } + ], + "index": 57 + }, + { + "bbox": [ + 105, + 601, + 388, + 614 + ], + "spans": [ + { + "bbox": [ + 105, + 601, + 388, + 614 + ], + "score": 1.0, + "content": "this end, we compare ROBERTA and SCORE under a few-shot setting", + "type": "text" + } + ], + "index": 59 + }, + { + "bbox": [ + 106, + 612, + 388, + 624 + ], + "spans": [ + { + "bbox": [ + 106, + 612, + 186, + 624 + ], + "score": 1.0, + "content": "on SQA when only", + "type": "text" + }, + { + "bbox": [ + 187, + 613, + 205, + 623 + ], + "score": 0.86, + "content": "10 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 206, + 612, + 388, + 624 + ], + "score": 1.0, + "content": "of training data is available. We choose SQA", + "type": "text" + } + ], + "index": 61 + }, + { + "bbox": [ + 106, + 623, + 388, + 636 + ], + "spans": [ + { + "bbox": [ + 106, + 623, + 388, + 636 + ], + "score": 1.0, + "content": "because its annotation is most different from the synthetic text-to-SQL", + "type": "text" + } + ], + "index": 63 + }, + { + "bbox": [ + 106, + 634, + 505, + 646 + ], + "spans": [ + { + "bbox": [ + 106, + 634, + 505, + 646 + ], + "score": 1.0, + "content": "dataset we use for pretraining. Table 9 demonstrates that SCORE delivers even larger improvements", + "type": "text" + } + ], + "index": 65 + }, + { + "bbox": [ + 105, + 645, + 488, + 657 + ], + "spans": [ + { + "bbox": [ + 105, + 645, + 300, + 657 + ], + "score": 1.0, + "content": "compared to the ROBERTA baseline when only", + "type": "text" + }, + { + "bbox": [ + 301, + 645, + 320, + 656 + ], + "score": 0.85, + "content": "10 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 320, + 645, + 424, + 657 + ], + "score": 1.0, + "content": "training data is available", + "type": "text" + }, + { + "bbox": [ + 424, + 645, + 446, + 656 + ], + "score": 0.83, + "content": "3 . 8 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 447, + 645, + 458, + 657 + ], + "score": 1.0, + "content": "vs", + "type": "text" + }, + { + "bbox": [ + 459, + 645, + 481, + 656 + ], + "score": 0.83, + "content": "2 . 6 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 482, + 645, + 488, + 657 + ], + "score": 1.0, + "content": ").", + "type": "text" + } + ], + "index": 66 + } + ], + "index": 57, + "bbox_fs": [ + 105, + 557, + 388, + 636 + ] + }, + { + "type": "table", + "bbox": [ + 401, + 562, + 498, + 601 + ], + "blocks": [ + { + "type": "table_body", + "bbox": [ + 401, + 562, + 498, + 601 + ], + "group_id": 3, + "lines": [ + { + "bbox": [ + 401, + 562, + 498, + 601 + ], + "spans": [ + { + "bbox": [ + 401, + 562, + 498, + 601 + ], + "score": 0.962, + "html": "
QMIM
RoBERTa53.321.2
SCoRE57.126.1
", + "type": "table", + "image_path": "184d394085803fcceb6851c05c1a7103cd90506541147a6c45ced68bc6a081cf.jpg" + } + ] + } + ], + "index": 56.5, + "virtual_lines": [ + { + "bbox": [ + 401, + 562, + 498, + 581.5 + ], + "spans": [], + "index": 55 + }, + { + "bbox": [ + 401, + 581.5, + 498, + 601.0 + ], + "spans": [], + "index": 58 + } + ] + }, + { + "type": "table_footnote", + "bbox": [ + 395, + 604, + 504, + 636 + ], + "group_id": 3, + "lines": [ + { + "bbox": [ + 393, + 602, + 506, + 615 + ], + "spans": [ + { + "bbox": [ + 393, + 602, + 506, + 615 + ], + "score": 1.0, + "content": "Table 9: Performance of", + "type": "text" + } + ], + "index": 60 + }, + { + "bbox": [ + 393, + 613, + 506, + 628 + ], + "spans": [ + { + "bbox": [ + 393, + 613, + 447, + 628 + ], + "score": 1.0, + "content": "SCORE on", + "type": "text" + }, + { + "bbox": [ + 447, + 615, + 468, + 626 + ], + "score": 0.82, + "content": "10 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 468, + 613, + 506, + 628 + ], + "score": 1.0, + "content": "training", + "type": "text" + } + ], + "index": 62 + }, + { + "bbox": [ + 394, + 625, + 452, + 638 + ], + "spans": [ + { + "bbox": [ + 394, + 625, + 452, + 638 + ], + "score": 1.0, + "content": "data of SQA.", + "type": "text" + } + ], + "index": 64 + } + ], + "index": 62 + } + ], + "index": 59.25 + }, + { + "type": "text", + "bbox": [ + 106, + 635, + 505, + 657 + ], + "lines": [], + "index": 65.5, + "bbox_fs": [ + 105, + 634, + 505, + 657 + ], + "lines_deleted": true + }, + { + "type": "title", + "bbox": [ + 108, + 673, + 211, + 686 + ], + "lines": [ + { + "bbox": [ + 105, + 672, + 213, + 688 + ], + "spans": [ + { + "bbox": [ + 105, + 672, + 213, + 688 + ], + "score": 1.0, + "content": "5 RELATED WORK", + "type": "text" + } + ], + "index": 67 + } + ], + "index": 67 + }, + { + "type": "text", + "bbox": [ + 108, + 699, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 699, + 505, + 711 + ], + "spans": [ + { + "bbox": [ + 106, + 699, + 505, + 711 + ], + "score": 1.0, + "content": "Conversational Semantic Parsing Conversational semantic parsing is one of the most important", + "type": "text" + } + ], + "index": 68 + }, + { + "bbox": [ + 105, + 710, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 105, + 710, + 505, + 722 + ], + "score": 1.0, + "content": "research topics in conversational AI and has been studied in different settings including task-oriented", + "type": "text" + } + ], + "index": 69 + }, + { + "bbox": [ + 105, + 720, + 507, + 734 + ], + "spans": [ + { + "bbox": [ + 105, + 720, + 507, + 734 + ], + "score": 1.0, + "content": "dialogues, question answering, and text-to-SQL. Task-oriented dialog systems (Henderson et al.,", + "type": "text" + } + ], + "index": 70 + } + ], + "index": 69, + "bbox_fs": [ + 105, + 699, + 507, + 734 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 107, + 82, + 505, + 192 + ], + "lines": [ + { + "bbox": [ + 106, + 83, + 504, + 94 + ], + "spans": [ + { + "bbox": [ + 106, + 83, + 504, + 94 + ], + "score": 1.0, + "content": "2014; Wen et al., 2016; Mrksiˇ c et al., 2017; Budzianowski et al., 2018) aim to help users accomplish´", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 93, + 506, + 106 + ], + "spans": [ + { + "bbox": [ + 105, + 93, + 506, + 106 + ], + "score": 1.0, + "content": "a specific task (e.g. flight booking) and often pre-define slot templates grounded in a domain-", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 104, + 505, + 117 + ], + "spans": [ + { + "bbox": [ + 105, + 104, + 505, + 117 + ], + "score": 1.0, + "content": "specific ontology. In comparison, several other datasets were recently introduced for cross-domain", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 115, + 504, + 128 + ], + "spans": [ + { + "bbox": [ + 105, + 115, + 504, + 128 + ], + "score": 1.0, + "content": "conversational text-to-SQL tasks (SPARC and COSQL (Yu et al., 2019a;b)) and sequential questions", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 126, + 505, + 139 + ], + "spans": [ + { + "bbox": [ + 105, + 126, + 505, + 139 + ], + "score": 1.0, + "content": "answers over tables (Iyyer et al., 2017). While the previous work has achieved significant progress", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 104, + 136, + 506, + 151 + ], + "spans": [ + { + "bbox": [ + 104, + 136, + 506, + 151 + ], + "score": 1.0, + "content": "in different datasets separately, to the best of our knowledge, we are the first to study four different", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 106, + 149, + 505, + 160 + ], + "spans": [ + { + "bbox": [ + 106, + 149, + 505, + 160 + ], + "score": 1.0, + "content": "CSP tasks together (sequential text-to-SQL, conversational text-to-SQL, dialog state tracking, and", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 158, + 505, + 173 + ], + "spans": [ + { + "bbox": [ + 105, + 158, + 505, + 173 + ], + "score": 1.0, + "content": "weakly-supervised sequential question answering) by addressing the shared key challenge of learning", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 170, + 505, + 183 + ], + "spans": [ + { + "bbox": [ + 105, + 170, + 505, + 183 + ], + "score": 1.0, + "content": "representations in pre-trained language models that capture the alignment between the dialogue flow", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 106, + 181, + 212, + 193 + ], + "spans": [ + { + "bbox": [ + 106, + 181, + 212, + 193 + ], + "score": 1.0, + "content": "and the structural context.", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 4.5 + }, + { + "type": "text", + "bbox": [ + 107, + 205, + 505, + 402 + ], + "lines": [ + { + "bbox": [ + 106, + 206, + 505, + 217 + ], + "spans": [ + { + "bbox": [ + 106, + 206, + 505, + 217 + ], + "score": 1.0, + "content": "Conversational Language Model Pre-training Several recent efforts have demonstrated the value", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 215, + 507, + 230 + ], + "spans": [ + { + "bbox": [ + 105, + 215, + 507, + 230 + ], + "score": 1.0, + "content": "of adapting pre-trained LMs to specific tasks using different pre-training objectives, e.g., summariza-", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 227, + 505, + 239 + ], + "spans": [ + { + "bbox": [ + 105, + 227, + 505, + 239 + ], + "score": 1.0, + "content": "tion (Zhang et al., 2019b), knowledge inference (Sun et al., 2019b; Liu et al., 2019a), etc. Closest", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 238, + 506, + 251 + ], + "spans": [ + { + "bbox": [ + 105, + 238, + 506, + 251 + ], + "score": 1.0, + "content": "to our work is adapting pre-trained LMs for open-domain chit-chat models and for tabular data", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 248, + 505, + 263 + ], + "spans": [ + { + "bbox": [ + 105, + 248, + 505, + 263 + ], + "score": 1.0, + "content": "representation. The former focuses on improving response generation on open-ended dialogues by", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 259, + 507, + 273 + ], + "spans": [ + { + "bbox": [ + 105, + 259, + 507, + 273 + ], + "score": 1.0, + "content": "adding a pre-training step on open-domain conversations data, such as Reddit data (Zhang et al.,", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 271, + 506, + 284 + ], + "spans": [ + { + "bbox": [ + 105, + 271, + 506, + 284 + ], + "score": 1.0, + "content": "2020; Henderson et al., 2019). For example, Wu et al. (2020) introduced ToD-BERT, a pre-trained", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 282, + 506, + 295 + ], + "spans": [ + { + "bbox": [ + 105, + 282, + 506, + 295 + ], + "score": 1.0, + "content": "language model combining 9 high-quality human-human task-oriented dialogue datasets to conduct", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 104, + 292, + 506, + 307 + ], + "spans": [ + { + "bbox": [ + 104, + 292, + 506, + 307 + ], + "score": 1.0, + "content": "language model and response selection pre-training. However, they use language modeling training", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 106, + 304, + 505, + 316 + ], + "spans": [ + { + "bbox": [ + 106, + 304, + 505, + 316 + ], + "score": 1.0, + "content": "objectives over free-form text and therefore have limited ability to represent structural data. The", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 315, + 506, + 327 + ], + "spans": [ + { + "bbox": [ + 105, + 315, + 506, + 327 + ], + "score": 1.0, + "content": "latter has focused on improving language model pre-training for encoding tabular data (Yin et al.,", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 324, + 506, + 339 + ], + "spans": [ + { + "bbox": [ + 105, + 324, + 506, + 339 + ], + "score": 1.0, + "content": "2020; Herzig et al., 2020), but they focus on the single turn semantic parsing setting. Our approach is", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 335, + 506, + 351 + ], + "spans": [ + { + "bbox": [ + 105, + 335, + 506, + 351 + ], + "score": 1.0, + "content": "different from previous work because we address the challenge of conversational semantic parsing", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 348, + 506, + 360 + ], + "spans": [ + { + "bbox": [ + 105, + 348, + 506, + 360 + ], + "score": 1.0, + "content": "tasks by learning pretrained representation for both the multi-turn dynamics of the dialog and the", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 358, + 506, + 371 + ], + "spans": [ + { + "bbox": [ + 105, + 358, + 506, + 371 + ], + "score": 1.0, + "content": "relation between the unstructured language utterance and the structured ontology. Furthermore, our", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 104, + 369, + 506, + 382 + ], + "spans": [ + { + "bbox": [ + 104, + 369, + 506, + 382 + ], + "score": 1.0, + "content": "pre-training approach is much more data-efficient than prior LM pre-training work and saves a lot", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 381, + 505, + 393 + ], + "spans": [ + { + "bbox": [ + 105, + 381, + 505, + 393 + ], + "score": 1.0, + "content": "of time and computing resources (Appendix D for more details). Our pre-training step can be done", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 391, + 273, + 403 + ], + "spans": [ + { + "bbox": [ + 105, + 391, + 273, + 403 + ], + "score": 1.0, + "content": "within only one day using 8 V100 GPUs.", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 18.5 + }, + { + "type": "text", + "bbox": [ + 107, + 415, + 505, + 569 + ], + "lines": [ + { + "bbox": [ + 106, + 415, + 506, + 428 + ], + "spans": [ + { + "bbox": [ + 106, + 415, + 506, + 428 + ], + "score": 1.0, + "content": "Using Synthesized Data for Semantic Parsing Synthesized data has been frequently used in", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 106, + 427, + 506, + 438 + ], + "spans": [ + { + "bbox": [ + 106, + 427, + 506, + 438 + ], + "score": 1.0, + "content": "semantic parsing to alleviate the challenge of labeled data scarcity. For example, Wang et al. (2015)", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 104, + 437, + 506, + 450 + ], + "spans": [ + { + "bbox": [ + 104, + 437, + 506, + 450 + ], + "score": 1.0, + "content": "proposed a method for training semantic parsers in new domains by generating logical forms and", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 106, + 449, + 506, + 460 + ], + "spans": [ + { + "bbox": [ + 106, + 449, + 506, + 460 + ], + "score": 1.0, + "content": "canonical utterances and then paraphrasing the canonical utterances via crowd-sourcing. Similar", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 460, + 506, + 472 + ], + "spans": [ + { + "bbox": [ + 105, + 460, + 506, + 472 + ], + "score": 1.0, + "content": "approaches were used to train semantic parsers in other domains and settings (Zhong et al., 2017;", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 470, + 505, + 484 + ], + "spans": [ + { + "bbox": [ + 105, + 470, + 505, + 484 + ], + "score": 1.0, + "content": "Su et al., 2017; Cheng et al., 2018; Shah et al., 2018). Another line of work has proposed using", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 480, + 506, + 495 + ], + "spans": [ + { + "bbox": [ + 105, + 480, + 506, + 495 + ], + "score": 1.0, + "content": "synthesized data to adapt single turn semantic parsing models to new domains (Jia & Liang, 2016; Yoo", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 492, + 506, + 505 + ], + "spans": [ + { + "bbox": [ + 105, + 492, + 506, + 505 + ], + "score": 1.0, + "content": "et al., 2018; Campagna et al., 2019) and task-oriented dialogues (Campagna et al., 2020). However,", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 502, + 506, + 516 + ], + "spans": [ + { + "bbox": [ + 105, + 502, + 506, + 516 + ], + "score": 1.0, + "content": "they reported that combining synthetic data and the supervised data does not yield significant", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 514, + 506, + 527 + ], + "spans": [ + { + "bbox": [ + 105, + 514, + 506, + 527 + ], + "score": 1.0, + "content": "improvements, consistent with results by Herzig et al. (2020). By contrast, we introduce a new", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 525, + 505, + 538 + ], + "spans": [ + { + "bbox": [ + 105, + 525, + 505, + 538 + ], + "score": 1.0, + "content": "data synthesize procedure for conversational text-to-SQL dialogues and use it in a different way by", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 536, + 506, + 549 + ], + "spans": [ + { + "bbox": [ + 105, + 536, + 506, + 549 + ], + "score": 1.0, + "content": "pretraining language models to induce better representations for many CSP tasks. Our synthesized", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 547, + 506, + 559 + ], + "spans": [ + { + "bbox": [ + 105, + 547, + 506, + 559 + ], + "score": 1.0, + "content": "data can be easily generated without human involvement and the pre-trained models add value to", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 557, + 230, + 571 + ], + "spans": [ + { + "bbox": [ + 105, + 557, + 230, + 571 + ], + "score": 1.0, + "content": "different tasks simultaneously.", + "type": "text" + } + ], + "index": 41 + } + ], + "index": 34.5 + }, + { + "type": "title", + "bbox": [ + 108, + 586, + 195, + 598 + ], + "lines": [ + { + "bbox": [ + 104, + 583, + 197, + 601 + ], + "spans": [ + { + "bbox": [ + 104, + 583, + 197, + 601 + ], + "score": 1.0, + "content": "6 CONCLUSION", + "type": "text" + } + ], + "index": 42 + } + ], + "index": 42 + }, + { + "type": "text", + "bbox": [ + 107, + 610, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 609, + 505, + 625 + ], + "spans": [ + { + "bbox": [ + 105, + 609, + 505, + 625 + ], + "score": 1.0, + "content": "We presented SCORE a new pre-training approach for conversational semantic parsing. The training", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 106, + 622, + 505, + 635 + ], + "spans": [ + { + "bbox": [ + 106, + 622, + 505, + 635 + ], + "score": 1.0, + "content": "objectives of SCORE aim to induce natural language representations that capture the multi-turn", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 632, + 505, + 647 + ], + "spans": [ + { + "bbox": [ + 105, + 632, + 505, + 647 + ], + "score": 1.0, + "content": "dynamics, compositional semantic of the target language, and the references to the structural ontology", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 104, + 643, + 506, + 658 + ], + "spans": [ + { + "bbox": [ + 104, + 643, + 506, + 658 + ], + "score": 1.0, + "content": "appearing in the dialog. SCORE can be used with many semantic parsing models as a drop-in", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 105, + 654, + 506, + 668 + ], + "spans": [ + { + "bbox": [ + 105, + 654, + 506, + 668 + ], + "score": 1.0, + "content": "replacement for general pretrained LMs. We demonstrated SCORE effectiveness by using it as", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 105, + 666, + 505, + 678 + ], + "spans": [ + { + "bbox": [ + 105, + 666, + 505, + 678 + ], + "score": 1.0, + "content": "a feature representation encoder with strong baseline models for a wide range of CSP tasks. In", + "type": "text" + } + ], + "index": 48 + }, + { + "bbox": [ + 105, + 677, + 505, + 689 + ], + "spans": [ + { + "bbox": [ + 105, + 677, + 505, + 689 + ], + "score": 1.0, + "content": "particular, our empirical results on four different CSP tasks demonstrated that SCORE can be used", + "type": "text" + } + ], + "index": 49 + }, + { + "bbox": [ + 105, + 687, + 506, + 701 + ], + "spans": [ + { + "bbox": [ + 105, + 687, + 506, + 701 + ], + "score": 1.0, + "content": "to significantly improve the performance of existing strong baseline models by simply replacing an", + "type": "text" + } + ], + "index": 50 + }, + { + "bbox": [ + 105, + 698, + 505, + 712 + ], + "spans": [ + { + "bbox": [ + 105, + 698, + 505, + 712 + ], + "score": 1.0, + "content": "existing pre-trained LM with our SCORE pre-trained model. Furthermore, we are able to achieve", + "type": "text" + } + ], + "index": 51 + }, + { + "bbox": [ + 105, + 710, + 506, + 722 + ], + "spans": [ + { + "bbox": [ + 105, + 710, + 506, + 722 + ], + "score": 1.0, + "content": "state-of-the-art results on three of these tasks. We hope SCORE will encourage further exploration of", + "type": "text" + } + ], + "index": 52 + }, + { + "bbox": [ + 105, + 720, + 394, + 733 + ], + "spans": [ + { + "bbox": [ + 105, + 720, + 394, + 733 + ], + "score": 1.0, + "content": "the benefits and limitations of pre-training approaches for CSP systems.", + "type": "text" + } + ], + "index": 53 + } + ], + "index": 48 + } + ], + "page_idx": 8, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 108, + 27, + 292, + 37 + ], + "lines": [ + { + "bbox": [ + 105, + 25, + 293, + 39 + ], + "spans": [ + { + "bbox": [ + 105, + 25, + 293, + 39 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2021", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 302, + 751, + 308, + 759 + ], + "lines": [ + { + "bbox": [ + 302, + 751, + 309, + 762 + ], + "spans": [ + { + "bbox": [ + 302, + 751, + 309, + 762 + ], + "score": 1.0, + "content": "9", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 107, + 82, + 505, + 192 + ], + "lines": [ + { + "bbox": [ + 106, + 83, + 504, + 94 + ], + "spans": [ + { + "bbox": [ + 106, + 83, + 504, + 94 + ], + "score": 1.0, + "content": "2014; Wen et al., 2016; Mrksiˇ c et al., 2017; Budzianowski et al., 2018) aim to help users accomplish´", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 93, + 506, + 106 + ], + "spans": [ + { + "bbox": [ + 105, + 93, + 506, + 106 + ], + "score": 1.0, + "content": "a specific task (e.g. flight booking) and often pre-define slot templates grounded in a domain-", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 104, + 505, + 117 + ], + "spans": [ + { + "bbox": [ + 105, + 104, + 505, + 117 + ], + "score": 1.0, + "content": "specific ontology. In comparison, several other datasets were recently introduced for cross-domain", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 115, + 504, + 128 + ], + "spans": [ + { + "bbox": [ + 105, + 115, + 504, + 128 + ], + "score": 1.0, + "content": "conversational text-to-SQL tasks (SPARC and COSQL (Yu et al., 2019a;b)) and sequential questions", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 126, + 505, + 139 + ], + "spans": [ + { + "bbox": [ + 105, + 126, + 505, + 139 + ], + "score": 1.0, + "content": "answers over tables (Iyyer et al., 2017). While the previous work has achieved significant progress", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 104, + 136, + 506, + 151 + ], + "spans": [ + { + "bbox": [ + 104, + 136, + 506, + 151 + ], + "score": 1.0, + "content": "in different datasets separately, to the best of our knowledge, we are the first to study four different", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 106, + 149, + 505, + 160 + ], + "spans": [ + { + "bbox": [ + 106, + 149, + 505, + 160 + ], + "score": 1.0, + "content": "CSP tasks together (sequential text-to-SQL, conversational text-to-SQL, dialog state tracking, and", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 158, + 505, + 173 + ], + "spans": [ + { + "bbox": [ + 105, + 158, + 505, + 173 + ], + "score": 1.0, + "content": "weakly-supervised sequential question answering) by addressing the shared key challenge of learning", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 170, + 505, + 183 + ], + "spans": [ + { + "bbox": [ + 105, + 170, + 505, + 183 + ], + "score": 1.0, + "content": "representations in pre-trained language models that capture the alignment between the dialogue flow", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 106, + 181, + 212, + 193 + ], + "spans": [ + { + "bbox": [ + 106, + 181, + 212, + 193 + ], + "score": 1.0, + "content": "and the structural context.", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 4.5, + "bbox_fs": [ + 104, + 83, + 506, + 193 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 205, + 505, + 402 + ], + "lines": [ + { + "bbox": [ + 106, + 206, + 505, + 217 + ], + "spans": [ + { + "bbox": [ + 106, + 206, + 505, + 217 + ], + "score": 1.0, + "content": "Conversational Language Model Pre-training Several recent efforts have demonstrated the value", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 215, + 507, + 230 + ], + "spans": [ + { + "bbox": [ + 105, + 215, + 507, + 230 + ], + "score": 1.0, + "content": "of adapting pre-trained LMs to specific tasks using different pre-training objectives, e.g., summariza-", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 227, + 505, + 239 + ], + "spans": [ + { + "bbox": [ + 105, + 227, + 505, + 239 + ], + "score": 1.0, + "content": "tion (Zhang et al., 2019b), knowledge inference (Sun et al., 2019b; Liu et al., 2019a), etc. Closest", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 238, + 506, + 251 + ], + "spans": [ + { + "bbox": [ + 105, + 238, + 506, + 251 + ], + "score": 1.0, + "content": "to our work is adapting pre-trained LMs for open-domain chit-chat models and for tabular data", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 248, + 505, + 263 + ], + "spans": [ + { + "bbox": [ + 105, + 248, + 505, + 263 + ], + "score": 1.0, + "content": "representation. The former focuses on improving response generation on open-ended dialogues by", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 259, + 507, + 273 + ], + "spans": [ + { + "bbox": [ + 105, + 259, + 507, + 273 + ], + "score": 1.0, + "content": "adding a pre-training step on open-domain conversations data, such as Reddit data (Zhang et al.,", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 271, + 506, + 284 + ], + "spans": [ + { + "bbox": [ + 105, + 271, + 506, + 284 + ], + "score": 1.0, + "content": "2020; Henderson et al., 2019). For example, Wu et al. (2020) introduced ToD-BERT, a pre-trained", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 282, + 506, + 295 + ], + "spans": [ + { + "bbox": [ + 105, + 282, + 506, + 295 + ], + "score": 1.0, + "content": "language model combining 9 high-quality human-human task-oriented dialogue datasets to conduct", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 104, + 292, + 506, + 307 + ], + "spans": [ + { + "bbox": [ + 104, + 292, + 506, + 307 + ], + "score": 1.0, + "content": "language model and response selection pre-training. However, they use language modeling training", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 106, + 304, + 505, + 316 + ], + "spans": [ + { + "bbox": [ + 106, + 304, + 505, + 316 + ], + "score": 1.0, + "content": "objectives over free-form text and therefore have limited ability to represent structural data. The", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 315, + 506, + 327 + ], + "spans": [ + { + "bbox": [ + 105, + 315, + 506, + 327 + ], + "score": 1.0, + "content": "latter has focused on improving language model pre-training for encoding tabular data (Yin et al.,", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 324, + 506, + 339 + ], + "spans": [ + { + "bbox": [ + 105, + 324, + 506, + 339 + ], + "score": 1.0, + "content": "2020; Herzig et al., 2020), but they focus on the single turn semantic parsing setting. Our approach is", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 335, + 506, + 351 + ], + "spans": [ + { + "bbox": [ + 105, + 335, + 506, + 351 + ], + "score": 1.0, + "content": "different from previous work because we address the challenge of conversational semantic parsing", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 348, + 506, + 360 + ], + "spans": [ + { + "bbox": [ + 105, + 348, + 506, + 360 + ], + "score": 1.0, + "content": "tasks by learning pretrained representation for both the multi-turn dynamics of the dialog and the", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 358, + 506, + 371 + ], + "spans": [ + { + "bbox": [ + 105, + 358, + 506, + 371 + ], + "score": 1.0, + "content": "relation between the unstructured language utterance and the structured ontology. Furthermore, our", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 104, + 369, + 506, + 382 + ], + "spans": [ + { + "bbox": [ + 104, + 369, + 506, + 382 + ], + "score": 1.0, + "content": "pre-training approach is much more data-efficient than prior LM pre-training work and saves a lot", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 381, + 505, + 393 + ], + "spans": [ + { + "bbox": [ + 105, + 381, + 505, + 393 + ], + "score": 1.0, + "content": "of time and computing resources (Appendix D for more details). Our pre-training step can be done", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 391, + 273, + 403 + ], + "spans": [ + { + "bbox": [ + 105, + 391, + 273, + 403 + ], + "score": 1.0, + "content": "within only one day using 8 V100 GPUs.", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 18.5, + "bbox_fs": [ + 104, + 206, + 507, + 403 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 415, + 505, + 569 + ], + "lines": [ + { + "bbox": [ + 106, + 415, + 506, + 428 + ], + "spans": [ + { + "bbox": [ + 106, + 415, + 506, + 428 + ], + "score": 1.0, + "content": "Using Synthesized Data for Semantic Parsing Synthesized data has been frequently used in", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 106, + 427, + 506, + 438 + ], + "spans": [ + { + "bbox": [ + 106, + 427, + 506, + 438 + ], + "score": 1.0, + "content": "semantic parsing to alleviate the challenge of labeled data scarcity. For example, Wang et al. (2015)", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 104, + 437, + 506, + 450 + ], + "spans": [ + { + "bbox": [ + 104, + 437, + 506, + 450 + ], + "score": 1.0, + "content": "proposed a method for training semantic parsers in new domains by generating logical forms and", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 106, + 449, + 506, + 460 + ], + "spans": [ + { + "bbox": [ + 106, + 449, + 506, + 460 + ], + "score": 1.0, + "content": "canonical utterances and then paraphrasing the canonical utterances via crowd-sourcing. Similar", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 460, + 506, + 472 + ], + "spans": [ + { + "bbox": [ + 105, + 460, + 506, + 472 + ], + "score": 1.0, + "content": "approaches were used to train semantic parsers in other domains and settings (Zhong et al., 2017;", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 470, + 505, + 484 + ], + "spans": [ + { + "bbox": [ + 105, + 470, + 505, + 484 + ], + "score": 1.0, + "content": "Su et al., 2017; Cheng et al., 2018; Shah et al., 2018). Another line of work has proposed using", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 480, + 506, + 495 + ], + "spans": [ + { + "bbox": [ + 105, + 480, + 506, + 495 + ], + "score": 1.0, + "content": "synthesized data to adapt single turn semantic parsing models to new domains (Jia & Liang, 2016; Yoo", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 492, + 506, + 505 + ], + "spans": [ + { + "bbox": [ + 105, + 492, + 506, + 505 + ], + "score": 1.0, + "content": "et al., 2018; Campagna et al., 2019) and task-oriented dialogues (Campagna et al., 2020). However,", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 502, + 506, + 516 + ], + "spans": [ + { + "bbox": [ + 105, + 502, + 506, + 516 + ], + "score": 1.0, + "content": "they reported that combining synthetic data and the supervised data does not yield significant", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 514, + 506, + 527 + ], + "spans": [ + { + "bbox": [ + 105, + 514, + 506, + 527 + ], + "score": 1.0, + "content": "improvements, consistent with results by Herzig et al. (2020). By contrast, we introduce a new", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 525, + 505, + 538 + ], + "spans": [ + { + "bbox": [ + 105, + 525, + 505, + 538 + ], + "score": 1.0, + "content": "data synthesize procedure for conversational text-to-SQL dialogues and use it in a different way by", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 536, + 506, + 549 + ], + "spans": [ + { + "bbox": [ + 105, + 536, + 506, + 549 + ], + "score": 1.0, + "content": "pretraining language models to induce better representations for many CSP tasks. Our synthesized", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 547, + 506, + 559 + ], + "spans": [ + { + "bbox": [ + 105, + 547, + 506, + 559 + ], + "score": 1.0, + "content": "data can be easily generated without human involvement and the pre-trained models add value to", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 557, + 230, + 571 + ], + "spans": [ + { + "bbox": [ + 105, + 557, + 230, + 571 + ], + "score": 1.0, + "content": "different tasks simultaneously.", + "type": "text" + } + ], + "index": 41 + } + ], + "index": 34.5, + "bbox_fs": [ + 104, + 415, + 506, + 571 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 586, + 195, + 598 + ], + "lines": [ + { + "bbox": [ + 104, + 583, + 197, + 601 + ], + "spans": [ + { + "bbox": [ + 104, + 583, + 197, + 601 + ], + "score": 1.0, + "content": "6 CONCLUSION", + "type": "text" + } + ], + "index": 42 + } + ], + "index": 42 + }, + { + "type": "text", + "bbox": [ + 107, + 610, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 609, + 505, + 625 + ], + "spans": [ + { + "bbox": [ + 105, + 609, + 505, + 625 + ], + "score": 1.0, + "content": "We presented SCORE a new pre-training approach for conversational semantic parsing. The training", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 106, + 622, + 505, + 635 + ], + "spans": [ + { + "bbox": [ + 106, + 622, + 505, + 635 + ], + "score": 1.0, + "content": "objectives of SCORE aim to induce natural language representations that capture the multi-turn", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 632, + 505, + 647 + ], + "spans": [ + { + "bbox": [ + 105, + 632, + 505, + 647 + ], + "score": 1.0, + "content": "dynamics, compositional semantic of the target language, and the references to the structural ontology", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 104, + 643, + 506, + 658 + ], + "spans": [ + { + "bbox": [ + 104, + 643, + 506, + 658 + ], + "score": 1.0, + "content": "appearing in the dialog. SCORE can be used with many semantic parsing models as a drop-in", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 105, + 654, + 506, + 668 + ], + "spans": [ + { + "bbox": [ + 105, + 654, + 506, + 668 + ], + "score": 1.0, + "content": "replacement for general pretrained LMs. We demonstrated SCORE effectiveness by using it as", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 105, + 666, + 505, + 678 + ], + "spans": [ + { + "bbox": [ + 105, + 666, + 505, + 678 + ], + "score": 1.0, + "content": "a feature representation encoder with strong baseline models for a wide range of CSP tasks. In", + "type": "text" + } + ], + "index": 48 + }, + { + "bbox": [ + 105, + 677, + 505, + 689 + ], + "spans": [ + { + "bbox": [ + 105, + 677, + 505, + 689 + ], + "score": 1.0, + "content": "particular, our empirical results on four different CSP tasks demonstrated that SCORE can be used", + "type": "text" + } + ], + "index": 49 + }, + { + "bbox": [ + 105, + 687, + 506, + 701 + ], + "spans": [ + { + "bbox": [ + 105, + 687, + 506, + 701 + ], + "score": 1.0, + "content": "to significantly improve the performance of existing strong baseline models by simply replacing an", + "type": "text" + } + ], + "index": 50 + }, + { + "bbox": [ + 105, + 698, + 505, + 712 + ], + "spans": [ + { + "bbox": [ + 105, + 698, + 505, + 712 + ], + "score": 1.0, + "content": "existing pre-trained LM with our SCORE pre-trained model. Furthermore, we are able to achieve", + "type": "text" + } + ], + "index": 51 + }, + { + "bbox": [ + 105, + 710, + 506, + 722 + ], + "spans": [ + { + "bbox": [ + 105, + 710, + 506, + 722 + ], + "score": 1.0, + "content": "state-of-the-art results on three of these tasks. We hope SCORE will encourage further exploration of", + "type": "text" + } + ], + "index": 52 + }, + { + "bbox": [ + 105, + 720, + 394, + 733 + ], + "spans": [ + { + "bbox": [ + 105, + 720, + 394, + 733 + ], + "score": 1.0, + "content": "the benefits and limitations of pre-training approaches for CSP systems.", + "type": "text" + } + ], + "index": 53 + } + ], + "index": 48, + "bbox_fs": [ + 104, + 609, + 506, + 733 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "title", + "bbox": [ + 107, + 81, + 176, + 93 + ], + "lines": [ + { + "bbox": [ + 106, + 82, + 176, + 95 + ], + "spans": [ + { + "bbox": [ + 106, + 82, + 176, + 95 + ], + "score": 1.0, + "content": "REFERENCES", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "text", + "bbox": [ + 106, + 100, + 505, + 123 + ], + "lines": [ + { + "bbox": [ + 106, + 99, + 505, + 111 + ], + "spans": [ + { + "bbox": [ + 106, + 99, + 505, + 111 + ], + "score": 1.0, + "content": "Jimmy Ba, Jamie Ryan Kiros, and Geoffrey E. Hinton. Layer normalization. ArXiv, abs/1607.06450,", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 115, + 110, + 142, + 123 + ], + "spans": [ + { + "bbox": [ + 115, + 110, + 142, + 123 + ], + "score": 1.0, + "content": "2016.", + "type": "text" + } + ], + "index": 2 + } + ], + "index": 1.5 + }, + { + "type": "text", + "bbox": [ + 106, + 129, + 504, + 152 + ], + "lines": [ + { + "bbox": [ + 106, + 127, + 506, + 143 + ], + "spans": [ + { + "bbox": [ + 106, + 127, + 506, + 143 + ], + "score": 1.0, + "content": "Chandra Bhagavatula, Thanapon Noraset, and Doug Downey. Tabel: Entity linking in web tables. In", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 116, + 140, + 304, + 151 + ], + "spans": [ + { + "bbox": [ + 116, + 140, + 304, + 151 + ], + "score": 1.0, + "content": "International Semantic Web Conference, 2015.", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 3.5 + }, + { + "type": "text", + "bbox": [ + 106, + 158, + 506, + 192 + ], + "lines": [ + { + "bbox": [ + 105, + 158, + 506, + 172 + ], + "spans": [ + { + "bbox": [ + 105, + 158, + 506, + 172 + ], + "score": 1.0, + "content": "Tom B Brown, Benjamin Mann, Nick Ryder, Melanie Subbiah, Jared Kaplan, Prafulla Dhariwal,", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 116, + 169, + 505, + 182 + ], + "spans": [ + { + "bbox": [ + 116, + 169, + 505, + 182 + ], + "score": 1.0, + "content": "Arvind Neelakantan, Pranav Shyam, Girish Sastry, Amanda Askell, et al. Language models are", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 116, + 180, + 353, + 192 + ], + "spans": [ + { + "bbox": [ + 116, + 180, + 353, + 192 + ], + "score": 1.0, + "content": "few-shot learners. arXiv preprint arXiv:2005.14165, 2020.", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 6 + }, + { + "type": "text", + "bbox": [ + 108, + 199, + 504, + 233 + ], + "lines": [ + { + "bbox": [ + 106, + 199, + 505, + 211 + ], + "spans": [ + { + "bbox": [ + 106, + 199, + 505, + 211 + ], + "score": 1.0, + "content": "Pawel Budzianowski, Tsung-Hsien Wen, Bo-Hsiang Tseng, Inigo Casanueva, Stefan Ultes, Osman ˜", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 116, + 210, + 506, + 223 + ], + "spans": [ + { + "bbox": [ + 116, + 210, + 506, + 223 + ], + "score": 1.0, + "content": "Ramadan, and Milica Gasic. Multiwoz - a large-scale multi-domain wizard-of-oz dataset for", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 116, + 221, + 327, + 233 + ], + "spans": [ + { + "bbox": [ + 116, + 221, + 327, + 233 + ], + "score": 1.0, + "content": "task-oriented dialogue modelling. In EMNLP, 2018.", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 9 + }, + { + "type": "text", + "bbox": [ + 106, + 239, + 506, + 285 + ], + "lines": [ + { + "bbox": [ + 106, + 239, + 506, + 252 + ], + "spans": [ + { + "bbox": [ + 106, + 239, + 506, + 252 + ], + "score": 1.0, + "content": "Giovanni Campagna, Silei Xu, Mehrad Moradshahi, Richard Socher, and Monica S. Lam. Genie: A", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 115, + 250, + 506, + 264 + ], + "spans": [ + { + "bbox": [ + 115, + 250, + 506, + 264 + ], + "score": 1.0, + "content": "generator of natural language semantic parsers for virtual assistant commands. In Proceedings of", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 114, + 260, + 507, + 275 + ], + "spans": [ + { + "bbox": [ + 114, + 260, + 507, + 275 + ], + "score": 1.0, + "content": "the 40th ACM SIGPLAN Conference on Programming Language Design and Implementation, pp.", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 116, + 273, + 339, + 285 + ], + "spans": [ + { + "bbox": [ + 116, + 273, + 339, + 285 + ], + "score": 1.0, + "content": "394–410. Association for Computing Machinery, 2019.", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 12.5 + }, + { + "type": "text", + "bbox": [ + 107, + 290, + 505, + 325 + ], + "lines": [ + { + "bbox": [ + 106, + 290, + 506, + 304 + ], + "spans": [ + { + "bbox": [ + 106, + 290, + 506, + 304 + ], + "score": 1.0, + "content": "Giovanni Campagna, Agata Foryciarz, Mehrad Moradshahi, and Monica S. Lam. Zero-shot transfer", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 115, + 302, + 505, + 314 + ], + "spans": [ + { + "bbox": [ + 115, + 302, + 505, + 314 + ], + "score": 1.0, + "content": "learning with synthesized data for multi-domain dialogue state tracking. In Proceedings of 58th", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 114, + 312, + 506, + 326 + ], + "spans": [ + { + "bbox": [ + 114, + 312, + 506, + 326 + ], + "score": 1.0, + "content": "Annual Meeting of the Association for Computational Linguistics (Volume 1: Long Papers), 2020.", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 16 + }, + { + "type": "text", + "bbox": [ + 104, + 330, + 505, + 354 + ], + "lines": [ + { + "bbox": [ + 105, + 329, + 505, + 345 + ], + "spans": [ + { + "bbox": [ + 105, + 329, + 505, + 345 + ], + "score": 1.0, + "content": "Joyce Y Chai, Qiaozi Gao, Lanbo She, Shaohua Yang, Sari Saba-Sadiya, and Guangyue Xu. Language", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 115, + 341, + 478, + 354 + ], + "spans": [ + { + "bbox": [ + 115, + 341, + 478, + 354 + ], + "score": 1.0, + "content": "to action: Towards interactive task learning with physical agents. In IJCAI, pp. 2–9, 2018.", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 18.5 + }, + { + "type": "text", + "bbox": [ + 104, + 360, + 505, + 383 + ], + "lines": [ + { + "bbox": [ + 105, + 361, + 505, + 374 + ], + "spans": [ + { + "bbox": [ + 105, + 361, + 505, + 374 + ], + "score": 1.0, + "content": "Jianpeng Cheng, Siva Reddy, and Mirella Lapata. Building a neural semantic parser from a domain", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 115, + 372, + 279, + 383 + ], + "spans": [ + { + "bbox": [ + 115, + 372, + 279, + 383 + ], + "score": 1.0, + "content": "ontology. ArXiv, abs/1812.10037, 2018.", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 20.5 + }, + { + "type": "text", + "bbox": [ + 102, + 389, + 504, + 413 + ], + "lines": [ + { + "bbox": [ + 105, + 388, + 506, + 404 + ], + "spans": [ + { + "bbox": [ + 105, + 388, + 506, + 404 + ], + "score": 1.0, + "content": "Jacob Devlin, Ming-Wei Chang, Kenton Lee, and Kristina Toutanova. Bert: Pre-training of deep", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 116, + 401, + 430, + 414 + ], + "spans": [ + { + "bbox": [ + 116, + 401, + 430, + 414 + ], + "score": 1.0, + "content": "bidirectional transformers for language understanding. In NAACL-HLT, 2019.", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 22.5 + }, + { + "type": "text", + "bbox": [ + 106, + 419, + 504, + 453 + ], + "lines": [ + { + "bbox": [ + 105, + 418, + 506, + 432 + ], + "spans": [ + { + "bbox": [ + 105, + 418, + 506, + 432 + ], + "score": 1.0, + "content": "Mihail Eric, Rahul Goel, Shachi Paul, Abhishek Sethi, Sanchit Agarwal, Shuyag Gao, and Dilek", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 115, + 430, + 506, + 443 + ], + "spans": [ + { + "bbox": [ + 115, + 430, + 506, + 443 + ], + "score": 1.0, + "content": "Hakkani-Tur. Multiwoz 2.1: Multi-domain dialogue state corrections and state tracking baselines.", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 116, + 441, + 279, + 453 + ], + "spans": [ + { + "bbox": [ + 116, + 441, + 279, + 453 + ], + "score": 1.0, + "content": "arXiv preprint arXiv:1907.01669, 2019.", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 25 + }, + { + "type": "text", + "bbox": [ + 104, + 459, + 505, + 483 + ], + "lines": [ + { + "bbox": [ + 105, + 458, + 506, + 473 + ], + "spans": [ + { + "bbox": [ + 105, + 458, + 506, + 473 + ], + "score": 1.0, + "content": "Shuyang Gao, Abhishek Sethi, Sanchit Agarwal, Tagyoung Chung, and Dilek Hakkani-Tur. Dialog", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 115, + 470, + 425, + 483 + ], + "spans": [ + { + "bbox": [ + 115, + 470, + 425, + 483 + ], + "score": 1.0, + "content": "state tracking: A neural reading comprehension approach. In SIGDial, 2019.", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 27.5 + }, + { + "type": "text", + "bbox": [ + 107, + 488, + 506, + 534 + ], + "lines": [ + { + "bbox": [ + 105, + 488, + 506, + 503 + ], + "spans": [ + { + "bbox": [ + 105, + 488, + 506, + 503 + ], + "score": 1.0, + "content": "Suchin Gururangan, Ana Marasovic, Swabha Swayamdipta, Kyle Lo, Iz Beltagy, Doug Downey, ´", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 115, + 500, + 506, + 513 + ], + "spans": [ + { + "bbox": [ + 115, + 500, + 506, + 513 + ], + "score": 1.0, + "content": "and Noah A. Smith. Don’t stop pretraining: Adapt language models to domains and tasks. In", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 115, + 511, + 506, + 524 + ], + "spans": [ + { + "bbox": [ + 115, + 511, + 506, + 524 + ], + "score": 1.0, + "content": "Proceedings of the 58th Annual Meeting of the Association for Computational Linguistics, Online,", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 115, + 523, + 335, + 534 + ], + "spans": [ + { + "bbox": [ + 115, + 523, + 335, + 534 + ], + "score": 1.0, + "content": "July 2020. Association for Computational Linguistics.", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 30.5 + }, + { + "type": "text", + "bbox": [ + 107, + 540, + 505, + 574 + ], + "lines": [ + { + "bbox": [ + 106, + 540, + 505, + 552 + ], + "spans": [ + { + "bbox": [ + 106, + 540, + 505, + 552 + ], + "score": 1.0, + "content": "M. Heck, Carel van Niekerk, Nurul Lubis, Christian Geishauser, Hsien-Chin Lin, M. Moresi, and", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 115, + 550, + 507, + 565 + ], + "spans": [ + { + "bbox": [ + 115, + 550, + 507, + 565 + ], + "score": 1.0, + "content": "Milica Gavsi’c. Trippy: A triple copy strategy for value independent neural dialog state tracking.", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 116, + 562, + 187, + 574 + ], + "spans": [ + { + "bbox": [ + 116, + 562, + 187, + 574 + ], + "score": 1.0, + "content": "In SIGdial, 2020.", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 34 + }, + { + "type": "text", + "bbox": [ + 107, + 580, + 503, + 604 + ], + "lines": [ + { + "bbox": [ + 105, + 578, + 505, + 595 + ], + "spans": [ + { + "bbox": [ + 105, + 578, + 505, + 595 + ], + "score": 1.0, + "content": "Matthew Henderson, Blaise Thomson, and Jason D. Williams. The second dialog state tracking", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 116, + 591, + 288, + 604 + ], + "spans": [ + { + "bbox": [ + 116, + 591, + 288, + 604 + ], + "score": 1.0, + "content": "challenge. In SIGDIAL Conference, 2014.", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 36.5 + }, + { + "type": "text", + "bbox": [ + 106, + 609, + 506, + 644 + ], + "lines": [ + { + "bbox": [ + 105, + 609, + 506, + 623 + ], + "spans": [ + { + "bbox": [ + 105, + 609, + 506, + 623 + ], + "score": 1.0, + "content": "Matthew Henderson, Inigo Casanueva, Nikola Mrkvsi’c, P. Su, Tsung-Hsien, and Ivan Vulic. Convert: ˜", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 116, + 621, + 507, + 633 + ], + "spans": [ + { + "bbox": [ + 116, + 621, + 507, + 633 + ], + "score": 1.0, + "content": "Efficient and accurate conversational representations from transformers. ArXiv, abs/1911.03688,", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 114, + 631, + 143, + 644 + ], + "spans": [ + { + "bbox": [ + 114, + 631, + 143, + 644 + ], + "score": 1.0, + "content": "2019.", + "type": "text" + } + ], + "index": 40 + } + ], + "index": 39 + }, + { + "type": "text", + "bbox": [ + 106, + 650, + 504, + 673 + ], + "lines": [ + { + "bbox": [ + 106, + 650, + 505, + 663 + ], + "spans": [ + { + "bbox": [ + 106, + 650, + 505, + 663 + ], + "score": 1.0, + "content": "Dan Hendrycks and Kevin Gimpel. A baseline for detecting misclassified and out-of-distribution", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 115, + 662, + 358, + 673 + ], + "spans": [ + { + "bbox": [ + 115, + 662, + 358, + 673 + ], + "score": 1.0, + "content": "examples in neural networks. ArXiv, abs/1610.02136, 2016.", + "type": "text" + } + ], + "index": 42 + } + ], + "index": 41.5 + }, + { + "type": "text", + "bbox": [ + 109, + 679, + 504, + 703 + ], + "lines": [ + { + "bbox": [ + 107, + 680, + 506, + 692 + ], + "spans": [ + { + "bbox": [ + 107, + 680, + 506, + 692 + ], + "score": 1.0, + "content": "Jonathan Herzig, P. Nowak, Thomas Muller, Francesco Piccinno, and Julian Martin Eisenschlos. ¨", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 115, + 691, + 403, + 703 + ], + "spans": [ + { + "bbox": [ + 115, + 691, + 403, + 703 + ], + "score": 1.0, + "content": "Tapas: Weakly supervised table parsing via pre-training. In ACL, 2020.", + "type": "text" + } + ], + "index": 44 + } + ], + "index": 43.5 + }, + { + "type": "text", + "bbox": [ + 108, + 709, + 503, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 707, + 505, + 723 + ], + "spans": [ + { + "bbox": [ + 105, + 707, + 505, + 723 + ], + "score": 1.0, + "content": "Ehsan Hosseini-Asl, B. McCann, Chien-Sheng Wu, Semih Yavuz, and R. Socher. A simple language", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 115, + 720, + 374, + 732 + ], + "spans": [ + { + "bbox": [ + 115, + 720, + 374, + 732 + ], + "score": 1.0, + "content": "model for task-oriented dialogue. ArXiv, abs/2005.00796, 2020.", + "type": "text" + } + ], + "index": 46 + } + ], + "index": 45.5 + } + ], + "page_idx": 9, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 108, + 27, + 292, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 26, + 293, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 26, + 293, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2021", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 300, + 751, + 311, + 760 + ], + "lines": [ + { + "bbox": [ + 299, + 750, + 312, + 764 + ], + "spans": [ + { + "bbox": [ + 299, + 750, + 312, + 764 + ], + "score": 1.0, + "content": "10", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "title", + "bbox": [ + 107, + 81, + 176, + 93 + ], + "lines": [ + { + "bbox": [ + 106, + 82, + 176, + 95 + ], + "spans": [ + { + "bbox": [ + 106, + 82, + 176, + 95 + ], + "score": 1.0, + "content": "REFERENCES", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "text", + "bbox": [ + 106, + 100, + 505, + 123 + ], + "lines": [ + { + "bbox": [ + 106, + 99, + 505, + 111 + ], + "spans": [ + { + "bbox": [ + 106, + 99, + 505, + 111 + ], + "score": 1.0, + "content": "Jimmy Ba, Jamie Ryan Kiros, and Geoffrey E. Hinton. Layer normalization. ArXiv, abs/1607.06450,", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 115, + 110, + 142, + 123 + ], + "spans": [ + { + "bbox": [ + 115, + 110, + 142, + 123 + ], + "score": 1.0, + "content": "2016.", + "type": "text" + } + ], + "index": 2 + } + ], + "index": 1.5, + "bbox_fs": [ + 106, + 99, + 505, + 123 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 129, + 504, + 152 + ], + "lines": [ + { + "bbox": [ + 106, + 127, + 506, + 143 + ], + "spans": [ + { + "bbox": [ + 106, + 127, + 506, + 143 + ], + "score": 1.0, + "content": "Chandra Bhagavatula, Thanapon Noraset, and Doug Downey. Tabel: Entity linking in web tables. In", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 116, + 140, + 304, + 151 + ], + "spans": [ + { + "bbox": [ + 116, + 140, + 304, + 151 + ], + "score": 1.0, + "content": "International Semantic Web Conference, 2015.", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 3.5, + "bbox_fs": [ + 106, + 127, + 506, + 151 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 158, + 506, + 192 + ], + "lines": [ + { + "bbox": [ + 105, + 158, + 506, + 172 + ], + "spans": [ + { + "bbox": [ + 105, + 158, + 506, + 172 + ], + "score": 1.0, + "content": "Tom B Brown, Benjamin Mann, Nick Ryder, Melanie Subbiah, Jared Kaplan, Prafulla Dhariwal,", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 116, + 169, + 505, + 182 + ], + "spans": [ + { + "bbox": [ + 116, + 169, + 505, + 182 + ], + "score": 1.0, + "content": "Arvind Neelakantan, Pranav Shyam, Girish Sastry, Amanda Askell, et al. Language models are", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 116, + 180, + 353, + 192 + ], + "spans": [ + { + "bbox": [ + 116, + 180, + 353, + 192 + ], + "score": 1.0, + "content": "few-shot learners. arXiv preprint arXiv:2005.14165, 2020.", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 6, + "bbox_fs": [ + 105, + 158, + 506, + 192 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 199, + 504, + 233 + ], + "lines": [ + { + "bbox": [ + 106, + 199, + 505, + 211 + ], + "spans": [ + { + "bbox": [ + 106, + 199, + 505, + 211 + ], + "score": 1.0, + "content": "Pawel Budzianowski, Tsung-Hsien Wen, Bo-Hsiang Tseng, Inigo Casanueva, Stefan Ultes, Osman ˜", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 116, + 210, + 506, + 223 + ], + "spans": [ + { + "bbox": [ + 116, + 210, + 506, + 223 + ], + "score": 1.0, + "content": "Ramadan, and Milica Gasic. Multiwoz - a large-scale multi-domain wizard-of-oz dataset for", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 116, + 221, + 327, + 233 + ], + "spans": [ + { + "bbox": [ + 116, + 221, + 327, + 233 + ], + "score": 1.0, + "content": "task-oriented dialogue modelling. In EMNLP, 2018.", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 9, + "bbox_fs": [ + 106, + 199, + 506, + 233 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 239, + 506, + 285 + ], + "lines": [ + { + "bbox": [ + 106, + 239, + 506, + 252 + ], + "spans": [ + { + "bbox": [ + 106, + 239, + 506, + 252 + ], + "score": 1.0, + "content": "Giovanni Campagna, Silei Xu, Mehrad Moradshahi, Richard Socher, and Monica S. Lam. Genie: A", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 115, + 250, + 506, + 264 + ], + "spans": [ + { + "bbox": [ + 115, + 250, + 506, + 264 + ], + "score": 1.0, + "content": "generator of natural language semantic parsers for virtual assistant commands. In Proceedings of", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 114, + 260, + 507, + 275 + ], + "spans": [ + { + "bbox": [ + 114, + 260, + 507, + 275 + ], + "score": 1.0, + "content": "the 40th ACM SIGPLAN Conference on Programming Language Design and Implementation, pp.", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 116, + 273, + 339, + 285 + ], + "spans": [ + { + "bbox": [ + 116, + 273, + 339, + 285 + ], + "score": 1.0, + "content": "394–410. Association for Computing Machinery, 2019.", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 12.5, + "bbox_fs": [ + 106, + 239, + 507, + 285 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 290, + 505, + 325 + ], + "lines": [ + { + "bbox": [ + 106, + 290, + 506, + 304 + ], + "spans": [ + { + "bbox": [ + 106, + 290, + 506, + 304 + ], + "score": 1.0, + "content": "Giovanni Campagna, Agata Foryciarz, Mehrad Moradshahi, and Monica S. Lam. Zero-shot transfer", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 115, + 302, + 505, + 314 + ], + "spans": [ + { + "bbox": [ + 115, + 302, + 505, + 314 + ], + "score": 1.0, + "content": "learning with synthesized data for multi-domain dialogue state tracking. In Proceedings of 58th", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 114, + 312, + 506, + 326 + ], + "spans": [ + { + "bbox": [ + 114, + 312, + 506, + 326 + ], + "score": 1.0, + "content": "Annual Meeting of the Association for Computational Linguistics (Volume 1: Long Papers), 2020.", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 16, + "bbox_fs": [ + 106, + 290, + 506, + 326 + ] + }, + { + "type": "text", + "bbox": [ + 104, + 330, + 505, + 354 + ], + "lines": [ + { + "bbox": [ + 105, + 329, + 505, + 345 + ], + "spans": [ + { + "bbox": [ + 105, + 329, + 505, + 345 + ], + "score": 1.0, + "content": "Joyce Y Chai, Qiaozi Gao, Lanbo She, Shaohua Yang, Sari Saba-Sadiya, and Guangyue Xu. Language", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 115, + 341, + 478, + 354 + ], + "spans": [ + { + "bbox": [ + 115, + 341, + 478, + 354 + ], + "score": 1.0, + "content": "to action: Towards interactive task learning with physical agents. In IJCAI, pp. 2–9, 2018.", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 18.5, + "bbox_fs": [ + 105, + 329, + 505, + 354 + ] + }, + { + "type": "text", + "bbox": [ + 104, + 360, + 505, + 383 + ], + "lines": [ + { + "bbox": [ + 105, + 361, + 505, + 374 + ], + "spans": [ + { + "bbox": [ + 105, + 361, + 505, + 374 + ], + "score": 1.0, + "content": "Jianpeng Cheng, Siva Reddy, and Mirella Lapata. Building a neural semantic parser from a domain", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 115, + 372, + 279, + 383 + ], + "spans": [ + { + "bbox": [ + 115, + 372, + 279, + 383 + ], + "score": 1.0, + "content": "ontology. ArXiv, abs/1812.10037, 2018.", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 20.5, + "bbox_fs": [ + 105, + 361, + 505, + 383 + ] + }, + { + "type": "text", + "bbox": [ + 102, + 389, + 504, + 413 + ], + "lines": [ + { + "bbox": [ + 105, + 388, + 506, + 404 + ], + "spans": [ + { + "bbox": [ + 105, + 388, + 506, + 404 + ], + "score": 1.0, + "content": "Jacob Devlin, Ming-Wei Chang, Kenton Lee, and Kristina Toutanova. Bert: Pre-training of deep", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 116, + 401, + 430, + 414 + ], + "spans": [ + { + "bbox": [ + 116, + 401, + 430, + 414 + ], + "score": 1.0, + "content": "bidirectional transformers for language understanding. In NAACL-HLT, 2019.", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 22.5, + "bbox_fs": [ + 105, + 388, + 506, + 414 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 419, + 504, + 453 + ], + "lines": [ + { + "bbox": [ + 105, + 418, + 506, + 432 + ], + "spans": [ + { + "bbox": [ + 105, + 418, + 506, + 432 + ], + "score": 1.0, + "content": "Mihail Eric, Rahul Goel, Shachi Paul, Abhishek Sethi, Sanchit Agarwal, Shuyag Gao, and Dilek", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 115, + 430, + 506, + 443 + ], + "spans": [ + { + "bbox": [ + 115, + 430, + 506, + 443 + ], + "score": 1.0, + "content": "Hakkani-Tur. Multiwoz 2.1: Multi-domain dialogue state corrections and state tracking baselines.", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 116, + 441, + 279, + 453 + ], + "spans": [ + { + "bbox": [ + 116, + 441, + 279, + 453 + ], + "score": 1.0, + "content": "arXiv preprint arXiv:1907.01669, 2019.", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 25, + "bbox_fs": [ + 105, + 418, + 506, + 453 + ] + }, + { + "type": "text", + "bbox": [ + 104, + 459, + 505, + 483 + ], + "lines": [ + { + "bbox": [ + 105, + 458, + 506, + 473 + ], + "spans": [ + { + "bbox": [ + 105, + 458, + 506, + 473 + ], + "score": 1.0, + "content": "Shuyang Gao, Abhishek Sethi, Sanchit Agarwal, Tagyoung Chung, and Dilek Hakkani-Tur. Dialog", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 115, + 470, + 425, + 483 + ], + "spans": [ + { + "bbox": [ + 115, + 470, + 425, + 483 + ], + "score": 1.0, + "content": "state tracking: A neural reading comprehension approach. In SIGDial, 2019.", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 27.5, + "bbox_fs": [ + 105, + 458, + 506, + 483 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 488, + 506, + 534 + ], + "lines": [ + { + "bbox": [ + 105, + 488, + 506, + 503 + ], + "spans": [ + { + "bbox": [ + 105, + 488, + 506, + 503 + ], + "score": 1.0, + "content": "Suchin Gururangan, Ana Marasovic, Swabha Swayamdipta, Kyle Lo, Iz Beltagy, Doug Downey, ´", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 115, + 500, + 506, + 513 + ], + "spans": [ + { + "bbox": [ + 115, + 500, + 506, + 513 + ], + "score": 1.0, + "content": "and Noah A. Smith. Don’t stop pretraining: Adapt language models to domains and tasks. In", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 115, + 511, + 506, + 524 + ], + "spans": [ + { + "bbox": [ + 115, + 511, + 506, + 524 + ], + "score": 1.0, + "content": "Proceedings of the 58th Annual Meeting of the Association for Computational Linguistics, Online,", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 115, + 523, + 335, + 534 + ], + "spans": [ + { + "bbox": [ + 115, + 523, + 335, + 534 + ], + "score": 1.0, + "content": "July 2020. Association for Computational Linguistics.", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 30.5, + "bbox_fs": [ + 105, + 488, + 506, + 534 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 540, + 505, + 574 + ], + "lines": [ + { + "bbox": [ + 106, + 540, + 505, + 552 + ], + "spans": [ + { + "bbox": [ + 106, + 540, + 505, + 552 + ], + "score": 1.0, + "content": "M. Heck, Carel van Niekerk, Nurul Lubis, Christian Geishauser, Hsien-Chin Lin, M. Moresi, and", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 115, + 550, + 507, + 565 + ], + "spans": [ + { + "bbox": [ + 115, + 550, + 507, + 565 + ], + "score": 1.0, + "content": "Milica Gavsi’c. Trippy: A triple copy strategy for value independent neural dialog state tracking.", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 116, + 562, + 187, + 574 + ], + "spans": [ + { + "bbox": [ + 116, + 562, + 187, + 574 + ], + "score": 1.0, + "content": "In SIGdial, 2020.", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 34, + "bbox_fs": [ + 106, + 540, + 507, + 574 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 580, + 503, + 604 + ], + "lines": [ + { + "bbox": [ + 105, + 578, + 505, + 595 + ], + "spans": [ + { + "bbox": [ + 105, + 578, + 505, + 595 + ], + "score": 1.0, + "content": "Matthew Henderson, Blaise Thomson, and Jason D. Williams. The second dialog state tracking", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 116, + 591, + 288, + 604 + ], + "spans": [ + { + "bbox": [ + 116, + 591, + 288, + 604 + ], + "score": 1.0, + "content": "challenge. In SIGDIAL Conference, 2014.", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 36.5, + "bbox_fs": [ + 105, + 578, + 505, + 604 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 609, + 506, + 644 + ], + "lines": [ + { + "bbox": [ + 105, + 609, + 506, + 623 + ], + "spans": [ + { + "bbox": [ + 105, + 609, + 506, + 623 + ], + "score": 1.0, + "content": "Matthew Henderson, Inigo Casanueva, Nikola Mrkvsi’c, P. Su, Tsung-Hsien, and Ivan Vulic. Convert: ˜", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 116, + 621, + 507, + 633 + ], + "spans": [ + { + "bbox": [ + 116, + 621, + 507, + 633 + ], + "score": 1.0, + "content": "Efficient and accurate conversational representations from transformers. ArXiv, abs/1911.03688,", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 114, + 631, + 143, + 644 + ], + "spans": [ + { + "bbox": [ + 114, + 631, + 143, + 644 + ], + "score": 1.0, + "content": "2019.", + "type": "text" + } + ], + "index": 40 + } + ], + "index": 39, + "bbox_fs": [ + 105, + 609, + 507, + 644 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 650, + 504, + 673 + ], + "lines": [ + { + "bbox": [ + 106, + 650, + 505, + 663 + ], + "spans": [ + { + "bbox": [ + 106, + 650, + 505, + 663 + ], + "score": 1.0, + "content": "Dan Hendrycks and Kevin Gimpel. A baseline for detecting misclassified and out-of-distribution", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 115, + 662, + 358, + 673 + ], + "spans": [ + { + "bbox": [ + 115, + 662, + 358, + 673 + ], + "score": 1.0, + "content": "examples in neural networks. ArXiv, abs/1610.02136, 2016.", + "type": "text" + } + ], + "index": 42 + } + ], + "index": 41.5, + "bbox_fs": [ + 106, + 650, + 505, + 673 + ] + }, + { + "type": "text", + "bbox": [ + 109, + 679, + 504, + 703 + ], + "lines": [ + { + "bbox": [ + 107, + 680, + 506, + 692 + ], + "spans": [ + { + "bbox": [ + 107, + 680, + 506, + 692 + ], + "score": 1.0, + "content": "Jonathan Herzig, P. Nowak, Thomas Muller, Francesco Piccinno, and Julian Martin Eisenschlos. ¨", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 115, + 691, + 403, + 703 + ], + "spans": [ + { + "bbox": [ + 115, + 691, + 403, + 703 + ], + "score": 1.0, + "content": "Tapas: Weakly supervised table parsing via pre-training. In ACL, 2020.", + "type": "text" + } + ], + "index": 44 + } + ], + "index": 43.5, + "bbox_fs": [ + 107, + 680, + 506, + 703 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 709, + 503, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 707, + 505, + 723 + ], + "spans": [ + { + "bbox": [ + 105, + 707, + 505, + 723 + ], + "score": 1.0, + "content": "Ehsan Hosseini-Asl, B. McCann, Chien-Sheng Wu, Semih Yavuz, and R. Socher. A simple language", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 115, + 720, + 374, + 732 + ], + "spans": [ + { + "bbox": [ + 115, + 720, + 374, + 732 + ], + "score": 1.0, + "content": "model for task-oriented dialogue. ArXiv, abs/2005.00796, 2020.", + "type": "text" + } + ], + "index": 46 + } + ], + "index": 45.5, + "bbox_fs": [ + 105, + 707, + 505, + 732 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 105, + 82, + 504, + 105 + ], + "lines": [ + { + "bbox": [ + 106, + 82, + 505, + 95 + ], + "spans": [ + { + "bbox": [ + 106, + 82, + 505, + 95 + ], + "score": 1.0, + "content": "Wonseok Hwang, Jinyeung Yim, Seunghyun Park, and Minjoon Seo. A comprehensive exploration", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 117, + 93, + 449, + 106 + ], + "spans": [ + { + "bbox": [ + 117, + 93, + 449, + 106 + ], + "score": 1.0, + "content": "on wikisql with table-aware word contextualization. ArXiv, abs/1902.01069, 2019.", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5 + }, + { + "type": "text", + "bbox": [ + 106, + 113, + 505, + 158 + ], + "lines": [ + { + "bbox": [ + 105, + 114, + 506, + 127 + ], + "spans": [ + { + "bbox": [ + 105, + 114, + 506, + 127 + ], + "score": 1.0, + "content": "Mohit Iyyer, Wen-tau Yih, and Ming-Wei Chang. Search-based neural structured learning for", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 115, + 125, + 506, + 137 + ], + "spans": [ + { + "bbox": [ + 115, + 125, + 506, + 137 + ], + "score": 1.0, + "content": "sequential question answering. In Proceedings of the 55th Annual Meeting of the Association for", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 116, + 136, + 505, + 149 + ], + "spans": [ + { + "bbox": [ + 116, + 136, + 505, + 149 + ], + "score": 1.0, + "content": "Computational Linguistics (Volume 1: Long Papers), Vancouver, Canada, July 2017. Association", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 116, + 146, + 241, + 159 + ], + "spans": [ + { + "bbox": [ + 116, + 146, + 241, + 159 + ], + "score": 1.0, + "content": "for Computational Linguistics.", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 3.5 + }, + { + "type": "text", + "bbox": [ + 108, + 167, + 504, + 190 + ], + "lines": [ + { + "bbox": [ + 105, + 166, + 506, + 181 + ], + "spans": [ + { + "bbox": [ + 105, + 166, + 506, + 181 + ], + "score": 1.0, + "content": "Sina Jafarpour, Christopher JC Burges, and Alan Ritter. Filter, rank, and transfer the knowledge:", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 116, + 178, + 365, + 191 + ], + "spans": [ + { + "bbox": [ + 116, + 178, + 365, + 191 + ], + "score": 1.0, + "content": "Learning to chat. Advances in Ranking, 10:2329–9290, 2010.", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 6.5 + }, + { + "type": "text", + "bbox": [ + 107, + 198, + 507, + 232 + ], + "lines": [ + { + "bbox": [ + 105, + 198, + 505, + 212 + ], + "spans": [ + { + "bbox": [ + 105, + 198, + 505, + 212 + ], + "score": 1.0, + "content": "Robin Jia and Percy Liang. Data recombination for neural semantic parsing. In Proceedings of the", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 114, + 209, + 507, + 223 + ], + "spans": [ + { + "bbox": [ + 114, + 209, + 507, + 223 + ], + "score": 1.0, + "content": "54th Annual Meeting of the Association for Computational Linguistics (Volume 1: Long Papers),", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 115, + 219, + 142, + 233 + ], + "spans": [ + { + "bbox": [ + 115, + 219, + 142, + 233 + ], + "score": 1.0, + "content": "2016.", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 9 + }, + { + "type": "text", + "bbox": [ + 105, + 241, + 504, + 264 + ], + "lines": [ + { + "bbox": [ + 105, + 239, + 505, + 256 + ], + "spans": [ + { + "bbox": [ + 105, + 239, + 505, + 256 + ], + "score": 1.0, + "content": "Sung-Dong Kim, Sohee Yang, Gyuwan Kim, and S. Lee. Efficient dialogue state tracking by", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 115, + 252, + 307, + 264 + ], + "spans": [ + { + "bbox": [ + 115, + 252, + 307, + 264 + ], + "score": 1.0, + "content": "selectively overwriting memory. In ACL, 2020.", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 11.5 + }, + { + "type": "text", + "bbox": [ + 106, + 272, + 505, + 295 + ], + "lines": [ + { + "bbox": [ + 105, + 271, + 507, + 286 + ], + "spans": [ + { + "bbox": [ + 105, + 271, + 507, + 286 + ], + "score": 1.0, + "content": "Diederik P. Kingma and Jimmy Ba. Adam: A method for stochastic optimization. CoRR,", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 116, + 283, + 206, + 296 + ], + "spans": [ + { + "bbox": [ + 116, + 283, + 206, + 296 + ], + "score": 1.0, + "content": "abs/1412.6980, 2014.", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 13.5 + }, + { + "type": "text", + "bbox": [ + 106, + 304, + 506, + 360 + ], + "lines": [ + { + "bbox": [ + 105, + 303, + 506, + 317 + ], + "spans": [ + { + "bbox": [ + 105, + 303, + 506, + 317 + ], + "score": 1.0, + "content": "Mike Lewis, Yinhan Liu, Naman Goyal, Marjan Ghazvininejad, Abdelrahman Mohamed, Omer Levy,", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 117, + 315, + 505, + 327 + ], + "spans": [ + { + "bbox": [ + 117, + 315, + 505, + 327 + ], + "score": 1.0, + "content": "Veselin Stoyanov, and Luke Zettlemoyer. BART: Denoising sequence-to-sequence pre-training for", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 115, + 326, + 506, + 339 + ], + "spans": [ + { + "bbox": [ + 115, + 326, + 506, + 339 + ], + "score": 1.0, + "content": "natural language generation, translation, and comprehension. In Proceedings of the 58th Annual", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 115, + 337, + 506, + 350 + ], + "spans": [ + { + "bbox": [ + 115, + 337, + 506, + 350 + ], + "score": 1.0, + "content": "Meeting of the Association for Computational Linguistics, Online, July 2020. Association for", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 116, + 348, + 227, + 361 + ], + "spans": [ + { + "bbox": [ + 116, + 348, + 227, + 361 + ], + "score": 1.0, + "content": "Computational Linguistics.", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 17 + }, + { + "type": "text", + "bbox": [ + 106, + 368, + 504, + 402 + ], + "lines": [ + { + "bbox": [ + 105, + 366, + 506, + 383 + ], + "spans": [ + { + "bbox": [ + 105, + 366, + 506, + 383 + ], + "score": 1.0, + "content": "Q. Liu, B. Chen, Jiaqi Guo, Jian-Guang Lou, Bin Zhou, and Dongmei Zhang. How far are we", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 115, + 379, + 507, + 393 + ], + "spans": [ + { + "bbox": [ + 115, + 379, + 507, + 393 + ], + "score": 1.0, + "content": "from effective context modeling ? an exploratory study on semantic parsing in context. ArXiv,", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 116, + 391, + 209, + 402 + ], + "spans": [ + { + "bbox": [ + 116, + 391, + 209, + 402 + ], + "score": 1.0, + "content": "abs/2002.00652, 2020.", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 21 + }, + { + "type": "text", + "bbox": [ + 104, + 410, + 505, + 434 + ], + "lines": [ + { + "bbox": [ + 106, + 410, + 506, + 425 + ], + "spans": [ + { + "bbox": [ + 106, + 410, + 506, + 425 + ], + "score": 1.0, + "content": "Weijie Liu, Peng Zhou, Zhe Zhao, Zhiruo Wang, Qi Ju, Haotang Deng, and Ping Wang. K-bert:", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 116, + 421, + 376, + 434 + ], + "spans": [ + { + "bbox": [ + 116, + 421, + 376, + 434 + ], + "score": 1.0, + "content": "Enabling language representation with knowledge graph, 2019a.", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 23.5 + }, + { + "type": "text", + "bbox": [ + 107, + 442, + 505, + 476 + ], + "lines": [ + { + "bbox": [ + 106, + 442, + 504, + 455 + ], + "spans": [ + { + "bbox": [ + 106, + 442, + 504, + 455 + ], + "score": 1.0, + "content": "Yinhan Liu, Myle Ott, Naman Goyal, Jingfei Du, Mandar Joshi, Danqi Chen, Omer Levy, Mike", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 114, + 452, + 505, + 467 + ], + "spans": [ + { + "bbox": [ + 114, + 452, + 505, + 467 + ], + "score": 1.0, + "content": "Lewis, Luke S. Zettlemoyer, and Veselin Stoyanov. Roberta: A robustly optimized bert pretraining", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 115, + 465, + 285, + 476 + ], + "spans": [ + { + "bbox": [ + 115, + 465, + 285, + 476 + ], + "score": 1.0, + "content": "approach. ArXiv, abs/1907.11692, 2019b.", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 26 + }, + { + "type": "text", + "bbox": [ + 107, + 485, + 505, + 531 + ], + "lines": [ + { + "bbox": [ + 105, + 485, + 506, + 499 + ], + "spans": [ + { + "bbox": [ + 105, + 485, + 506, + 499 + ], + "score": 1.0, + "content": "Nikola Mrksiˇ c, Diarmuid ´ O S ´ eaghdha, Tsung-Hsien Wen, Blaise Thomson, and Steve Young. Neural ´", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 114, + 496, + 505, + 510 + ], + "spans": [ + { + "bbox": [ + 114, + 496, + 505, + 510 + ], + "score": 1.0, + "content": "belief tracker: Data-driven dialogue state tracking. In Proceedings of the 55th Annual Meeting of the", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 114, + 508, + 505, + 522 + ], + "spans": [ + { + "bbox": [ + 114, + 508, + 505, + 522 + ], + "score": 1.0, + "content": "Association for Computational Linguistics (Volume 1: Long Papers), pp. 1777–1788. Association", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 115, + 519, + 266, + 531 + ], + "spans": [ + { + "bbox": [ + 115, + 519, + 266, + 531 + ], + "score": 1.0, + "content": "for Computational Linguistics, 2017.", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 29.5 + }, + { + "type": "text", + "bbox": [ + 105, + 539, + 505, + 563 + ], + "lines": [ + { + "bbox": [ + 106, + 538, + 505, + 554 + ], + "spans": [ + { + "bbox": [ + 106, + 538, + 505, + 554 + ], + "score": 1.0, + "content": "Thomas Muller, Francesco Piccinno, Massimo Nicosia, Peter Shaw, and Yasemin Altun. Answering ¨", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 116, + 551, + 491, + 563 + ], + "spans": [ + { + "bbox": [ + 116, + 551, + 491, + 563 + ], + "score": 1.0, + "content": "conversational questions on structured data without logical forms. In EMNLP/IJCNLP, 2019.", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 32.5 + }, + { + "type": "text", + "bbox": [ + 106, + 570, + 504, + 594 + ], + "lines": [ + { + "bbox": [ + 106, + 572, + 505, + 583 + ], + "spans": [ + { + "bbox": [ + 106, + 572, + 505, + 583 + ], + "score": 1.0, + "content": "Arvind Neelakantan, Quoc V. Le, M. Abadi, A. McCallum, and Dario Amodei. Learning a natural", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 115, + 582, + 416, + 594 + ], + "spans": [ + { + "bbox": [ + 115, + 582, + 416, + 594 + ], + "score": 1.0, + "content": "language interface with neural programmer. ArXiv, abs/1611.08945, 2017.", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 34.5 + }, + { + "type": "text", + "bbox": [ + 106, + 602, + 505, + 658 + ], + "lines": [ + { + "bbox": [ + 106, + 602, + 505, + 615 + ], + "spans": [ + { + "bbox": [ + 106, + 602, + 505, + 615 + ], + "score": 1.0, + "content": "Panupong Pasupat and Percy Liang. Compositional semantic parsing on semi-structured tables. In", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 115, + 613, + 506, + 627 + ], + "spans": [ + { + "bbox": [ + 115, + 613, + 506, + 627 + ], + "score": 1.0, + "content": "Proceedings of the 53rd Annual Meeting of the Association for Computational Linguistics and", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 115, + 624, + 506, + 638 + ], + "spans": [ + { + "bbox": [ + 115, + 624, + 506, + 638 + ], + "score": 1.0, + "content": "the 7th International Joint Conference on Natural Language Processing of the Asian Federation", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 115, + 633, + 505, + 650 + ], + "spans": [ + { + "bbox": [ + 115, + 633, + 505, + 650 + ], + "score": 1.0, + "content": "of Natural Language Processing, ACL 2015, July 26-31, 2015, Beijing, China, Volume 1: Long", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 115, + 646, + 238, + 659 + ], + "spans": [ + { + "bbox": [ + 115, + 646, + 238, + 659 + ], + "score": 1.0, + "content": "Papers, pp. 1470–1480, 2015.", + "type": "text" + } + ], + "index": 40 + } + ], + "index": 38 + }, + { + "type": "text", + "bbox": [ + 104, + 666, + 504, + 690 + ], + "lines": [ + { + "bbox": [ + 105, + 665, + 505, + 681 + ], + "spans": [ + { + "bbox": [ + 105, + 665, + 505, + 681 + ], + "score": 1.0, + "content": "Alec Radford, Jeffrey Wu, Rewon Child, David Luan, Dario Amodei, and Ilya Sutskever. Language", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 115, + 677, + 377, + 690 + ], + "spans": [ + { + "bbox": [ + 115, + 677, + 377, + 690 + ], + "score": 1.0, + "content": "models are unsupervised multitask learners. OpenAI Blog, 2019.", + "type": "text" + } + ], + "index": 42 + } + ], + "index": 41.5 + }, + { + "type": "text", + "bbox": [ + 107, + 698, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 697, + 505, + 712 + ], + "spans": [ + { + "bbox": [ + 105, + 697, + 505, + 712 + ], + "score": 1.0, + "content": "Colin Raffel, Noam Shazeer, Adam Roberts, Katherine Lee, Sharan Narang, Michael Matena, Yanqi", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 116, + 709, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 116, + 709, + 505, + 722 + ], + "score": 1.0, + "content": "Zhou, Wei Li, and Peter J. Liu. Exploring the limits of transfer learning with a unified text-to-text", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 116, + 720, + 413, + 733 + ], + "spans": [ + { + "bbox": [ + 116, + 720, + 413, + 733 + ], + "score": 1.0, + "content": "transformer. Journal of Machine Learning Research, 21(140):1–67, 2020.", + "type": "text" + } + ], + "index": 45 + } + ], + "index": 44 + } + ], + "page_idx": 10, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 108, + 27, + 292, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 26, + 293, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 26, + 293, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2021", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 300, + 751, + 309, + 760 + ], + "lines": [ + { + "bbox": [ + 299, + 750, + 312, + 765 + ], + "spans": [ + { + "bbox": [ + 299, + 750, + 312, + 765 + ], + "score": 1.0, + "content": "", + "type": "text", + "height": 15, + "width": 13 + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 105, + 82, + 504, + 105 + ], + "lines": [ + { + "bbox": [ + 106, + 82, + 505, + 95 + ], + "spans": [ + { + "bbox": [ + 106, + 82, + 505, + 95 + ], + "score": 1.0, + "content": "Wonseok Hwang, Jinyeung Yim, Seunghyun Park, and Minjoon Seo. A comprehensive exploration", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 117, + 93, + 449, + 106 + ], + "spans": [ + { + "bbox": [ + 117, + 93, + 449, + 106 + ], + "score": 1.0, + "content": "on wikisql with table-aware word contextualization. ArXiv, abs/1902.01069, 2019.", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5, + "bbox_fs": [ + 106, + 82, + 505, + 106 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 113, + 505, + 158 + ], + "lines": [ + { + "bbox": [ + 105, + 114, + 506, + 127 + ], + "spans": [ + { + "bbox": [ + 105, + 114, + 506, + 127 + ], + "score": 1.0, + "content": "Mohit Iyyer, Wen-tau Yih, and Ming-Wei Chang. Search-based neural structured learning for", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 115, + 125, + 506, + 137 + ], + "spans": [ + { + "bbox": [ + 115, + 125, + 506, + 137 + ], + "score": 1.0, + "content": "sequential question answering. In Proceedings of the 55th Annual Meeting of the Association for", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 116, + 136, + 505, + 149 + ], + "spans": [ + { + "bbox": [ + 116, + 136, + 505, + 149 + ], + "score": 1.0, + "content": "Computational Linguistics (Volume 1: Long Papers), Vancouver, Canada, July 2017. Association", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 116, + 146, + 241, + 159 + ], + "spans": [ + { + "bbox": [ + 116, + 146, + 241, + 159 + ], + "score": 1.0, + "content": "for Computational Linguistics.", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 3.5, + "bbox_fs": [ + 105, + 114, + 506, + 159 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 167, + 504, + 190 + ], + "lines": [ + { + "bbox": [ + 105, + 166, + 506, + 181 + ], + "spans": [ + { + "bbox": [ + 105, + 166, + 506, + 181 + ], + "score": 1.0, + "content": "Sina Jafarpour, Christopher JC Burges, and Alan Ritter. Filter, rank, and transfer the knowledge:", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 116, + 178, + 365, + 191 + ], + "spans": [ + { + "bbox": [ + 116, + 178, + 365, + 191 + ], + "score": 1.0, + "content": "Learning to chat. Advances in Ranking, 10:2329–9290, 2010.", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 6.5, + "bbox_fs": [ + 105, + 166, + 506, + 191 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 198, + 507, + 232 + ], + "lines": [ + { + "bbox": [ + 105, + 198, + 505, + 212 + ], + "spans": [ + { + "bbox": [ + 105, + 198, + 505, + 212 + ], + "score": 1.0, + "content": "Robin Jia and Percy Liang. Data recombination for neural semantic parsing. In Proceedings of the", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 114, + 209, + 507, + 223 + ], + "spans": [ + { + "bbox": [ + 114, + 209, + 507, + 223 + ], + "score": 1.0, + "content": "54th Annual Meeting of the Association for Computational Linguistics (Volume 1: Long Papers),", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 115, + 219, + 142, + 233 + ], + "spans": [ + { + "bbox": [ + 115, + 219, + 142, + 233 + ], + "score": 1.0, + "content": "2016.", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 9, + "bbox_fs": [ + 105, + 198, + 507, + 233 + ] + }, + { + "type": "text", + "bbox": [ + 105, + 241, + 504, + 264 + ], + "lines": [ + { + "bbox": [ + 105, + 239, + 505, + 256 + ], + "spans": [ + { + "bbox": [ + 105, + 239, + 505, + 256 + ], + "score": 1.0, + "content": "Sung-Dong Kim, Sohee Yang, Gyuwan Kim, and S. Lee. Efficient dialogue state tracking by", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 115, + 252, + 307, + 264 + ], + "spans": [ + { + "bbox": [ + 115, + 252, + 307, + 264 + ], + "score": 1.0, + "content": "selectively overwriting memory. In ACL, 2020.", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 11.5, + "bbox_fs": [ + 105, + 239, + 505, + 264 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 272, + 505, + 295 + ], + "lines": [ + { + "bbox": [ + 105, + 271, + 507, + 286 + ], + "spans": [ + { + "bbox": [ + 105, + 271, + 507, + 286 + ], + "score": 1.0, + "content": "Diederik P. Kingma and Jimmy Ba. Adam: A method for stochastic optimization. CoRR,", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 116, + 283, + 206, + 296 + ], + "spans": [ + { + "bbox": [ + 116, + 283, + 206, + 296 + ], + "score": 1.0, + "content": "abs/1412.6980, 2014.", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 13.5, + "bbox_fs": [ + 105, + 271, + 507, + 296 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 304, + 506, + 360 + ], + "lines": [ + { + "bbox": [ + 105, + 303, + 506, + 317 + ], + "spans": [ + { + "bbox": [ + 105, + 303, + 506, + 317 + ], + "score": 1.0, + "content": "Mike Lewis, Yinhan Liu, Naman Goyal, Marjan Ghazvininejad, Abdelrahman Mohamed, Omer Levy,", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 117, + 315, + 505, + 327 + ], + "spans": [ + { + "bbox": [ + 117, + 315, + 505, + 327 + ], + "score": 1.0, + "content": "Veselin Stoyanov, and Luke Zettlemoyer. BART: Denoising sequence-to-sequence pre-training for", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 115, + 326, + 506, + 339 + ], + "spans": [ + { + "bbox": [ + 115, + 326, + 506, + 339 + ], + "score": 1.0, + "content": "natural language generation, translation, and comprehension. In Proceedings of the 58th Annual", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 115, + 337, + 506, + 350 + ], + "spans": [ + { + "bbox": [ + 115, + 337, + 506, + 350 + ], + "score": 1.0, + "content": "Meeting of the Association for Computational Linguistics, Online, July 2020. Association for", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 116, + 348, + 227, + 361 + ], + "spans": [ + { + "bbox": [ + 116, + 348, + 227, + 361 + ], + "score": 1.0, + "content": "Computational Linguistics.", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 17, + "bbox_fs": [ + 105, + 303, + 506, + 361 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 368, + 504, + 402 + ], + "lines": [ + { + "bbox": [ + 105, + 366, + 506, + 383 + ], + "spans": [ + { + "bbox": [ + 105, + 366, + 506, + 383 + ], + "score": 1.0, + "content": "Q. Liu, B. Chen, Jiaqi Guo, Jian-Guang Lou, Bin Zhou, and Dongmei Zhang. How far are we", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 115, + 379, + 507, + 393 + ], + "spans": [ + { + "bbox": [ + 115, + 379, + 507, + 393 + ], + "score": 1.0, + "content": "from effective context modeling ? an exploratory study on semantic parsing in context. ArXiv,", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 116, + 391, + 209, + 402 + ], + "spans": [ + { + "bbox": [ + 116, + 391, + 209, + 402 + ], + "score": 1.0, + "content": "abs/2002.00652, 2020.", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 21, + "bbox_fs": [ + 105, + 366, + 507, + 402 + ] + }, + { + "type": "text", + "bbox": [ + 104, + 410, + 505, + 434 + ], + "lines": [ + { + "bbox": [ + 106, + 410, + 506, + 425 + ], + "spans": [ + { + "bbox": [ + 106, + 410, + 506, + 425 + ], + "score": 1.0, + "content": "Weijie Liu, Peng Zhou, Zhe Zhao, Zhiruo Wang, Qi Ju, Haotang Deng, and Ping Wang. K-bert:", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 116, + 421, + 376, + 434 + ], + "spans": [ + { + "bbox": [ + 116, + 421, + 376, + 434 + ], + "score": 1.0, + "content": "Enabling language representation with knowledge graph, 2019a.", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 23.5, + "bbox_fs": [ + 106, + 410, + 506, + 434 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 442, + 505, + 476 + ], + "lines": [ + { + "bbox": [ + 106, + 442, + 504, + 455 + ], + "spans": [ + { + "bbox": [ + 106, + 442, + 504, + 455 + ], + "score": 1.0, + "content": "Yinhan Liu, Myle Ott, Naman Goyal, Jingfei Du, Mandar Joshi, Danqi Chen, Omer Levy, Mike", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 114, + 452, + 505, + 467 + ], + "spans": [ + { + "bbox": [ + 114, + 452, + 505, + 467 + ], + "score": 1.0, + "content": "Lewis, Luke S. Zettlemoyer, and Veselin Stoyanov. Roberta: A robustly optimized bert pretraining", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 115, + 465, + 285, + 476 + ], + "spans": [ + { + "bbox": [ + 115, + 465, + 285, + 476 + ], + "score": 1.0, + "content": "approach. ArXiv, abs/1907.11692, 2019b.", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 26, + "bbox_fs": [ + 106, + 442, + 505, + 476 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 485, + 505, + 531 + ], + "lines": [ + { + "bbox": [ + 105, + 485, + 506, + 499 + ], + "spans": [ + { + "bbox": [ + 105, + 485, + 506, + 499 + ], + "score": 1.0, + "content": "Nikola Mrksiˇ c, Diarmuid ´ O S ´ eaghdha, Tsung-Hsien Wen, Blaise Thomson, and Steve Young. Neural ´", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 114, + 496, + 505, + 510 + ], + "spans": [ + { + "bbox": [ + 114, + 496, + 505, + 510 + ], + "score": 1.0, + "content": "belief tracker: Data-driven dialogue state tracking. In Proceedings of the 55th Annual Meeting of the", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 114, + 508, + 505, + 522 + ], + "spans": [ + { + "bbox": [ + 114, + 508, + 505, + 522 + ], + "score": 1.0, + "content": "Association for Computational Linguistics (Volume 1: Long Papers), pp. 1777–1788. Association", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 115, + 519, + 266, + 531 + ], + "spans": [ + { + "bbox": [ + 115, + 519, + 266, + 531 + ], + "score": 1.0, + "content": "for Computational Linguistics, 2017.", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 29.5, + "bbox_fs": [ + 105, + 485, + 506, + 531 + ] + }, + { + "type": "text", + "bbox": [ + 105, + 539, + 505, + 563 + ], + "lines": [ + { + "bbox": [ + 106, + 538, + 505, + 554 + ], + "spans": [ + { + "bbox": [ + 106, + 538, + 505, + 554 + ], + "score": 1.0, + "content": "Thomas Muller, Francesco Piccinno, Massimo Nicosia, Peter Shaw, and Yasemin Altun. Answering ¨", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 116, + 551, + 491, + 563 + ], + "spans": [ + { + "bbox": [ + 116, + 551, + 491, + 563 + ], + "score": 1.0, + "content": "conversational questions on structured data without logical forms. In EMNLP/IJCNLP, 2019.", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 32.5, + "bbox_fs": [ + 106, + 538, + 505, + 563 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 570, + 504, + 594 + ], + "lines": [ + { + "bbox": [ + 106, + 572, + 505, + 583 + ], + "spans": [ + { + "bbox": [ + 106, + 572, + 505, + 583 + ], + "score": 1.0, + "content": "Arvind Neelakantan, Quoc V. Le, M. Abadi, A. McCallum, and Dario Amodei. Learning a natural", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 115, + 582, + 416, + 594 + ], + "spans": [ + { + "bbox": [ + 115, + 582, + 416, + 594 + ], + "score": 1.0, + "content": "language interface with neural programmer. ArXiv, abs/1611.08945, 2017.", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 34.5, + "bbox_fs": [ + 106, + 572, + 505, + 594 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 602, + 505, + 658 + ], + "lines": [ + { + "bbox": [ + 106, + 602, + 505, + 615 + ], + "spans": [ + { + "bbox": [ + 106, + 602, + 505, + 615 + ], + "score": 1.0, + "content": "Panupong Pasupat and Percy Liang. Compositional semantic parsing on semi-structured tables. In", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 115, + 613, + 506, + 627 + ], + "spans": [ + { + "bbox": [ + 115, + 613, + 506, + 627 + ], + "score": 1.0, + "content": "Proceedings of the 53rd Annual Meeting of the Association for Computational Linguistics and", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 115, + 624, + 506, + 638 + ], + "spans": [ + { + "bbox": [ + 115, + 624, + 506, + 638 + ], + "score": 1.0, + "content": "the 7th International Joint Conference on Natural Language Processing of the Asian Federation", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 115, + 633, + 505, + 650 + ], + "spans": [ + { + "bbox": [ + 115, + 633, + 505, + 650 + ], + "score": 1.0, + "content": "of Natural Language Processing, ACL 2015, July 26-31, 2015, Beijing, China, Volume 1: Long", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 115, + 646, + 238, + 659 + ], + "spans": [ + { + "bbox": [ + 115, + 646, + 238, + 659 + ], + "score": 1.0, + "content": "Papers, pp. 1470–1480, 2015.", + "type": "text" + } + ], + "index": 40 + } + ], + "index": 38, + "bbox_fs": [ + 106, + 602, + 506, + 659 + ] + }, + { + "type": "text", + "bbox": [ + 104, + 666, + 504, + 690 + ], + "lines": [ + { + "bbox": [ + 105, + 665, + 505, + 681 + ], + "spans": [ + { + "bbox": [ + 105, + 665, + 505, + 681 + ], + "score": 1.0, + "content": "Alec Radford, Jeffrey Wu, Rewon Child, David Luan, Dario Amodei, and Ilya Sutskever. Language", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 115, + 677, + 377, + 690 + ], + "spans": [ + { + "bbox": [ + 115, + 677, + 377, + 690 + ], + "score": 1.0, + "content": "models are unsupervised multitask learners. OpenAI Blog, 2019.", + "type": "text" + } + ], + "index": 42 + } + ], + "index": 41.5, + "bbox_fs": [ + 105, + 665, + 505, + 690 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 698, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 697, + 505, + 712 + ], + "spans": [ + { + "bbox": [ + 105, + 697, + 505, + 712 + ], + "score": 1.0, + "content": "Colin Raffel, Noam Shazeer, Adam Roberts, Katherine Lee, Sharan Narang, Michael Matena, Yanqi", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 116, + 709, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 116, + 709, + 505, + 722 + ], + "score": 1.0, + "content": "Zhou, Wei Li, and Peter J. Liu. Exploring the limits of transfer learning with a unified text-to-text", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 116, + 720, + 413, + 733 + ], + "spans": [ + { + "bbox": [ + 116, + 720, + 413, + 733 + ], + "score": 1.0, + "content": "transformer. Journal of Machine Learning Research, 21(140):1–67, 2020.", + "type": "text" + } + ], + "index": 45 + } + ], + "index": 44, + "bbox_fs": [ + 105, + 697, + 505, + 733 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 108, + 82, + 505, + 116 + ], + "lines": [ + { + "bbox": [ + 106, + 82, + 506, + 96 + ], + "spans": [ + { + "bbox": [ + 106, + 82, + 506, + 96 + ], + "score": 1.0, + "content": "Alan Ritter, Colin Cherry, and William B. Dolan. Data-driven response generation in social media.", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 115, + 92, + 507, + 108 + ], + "spans": [ + { + "bbox": [ + 115, + 92, + 507, + 108 + ], + "score": 1.0, + "content": "In Proceedings of the 2011 Conference on Empirical Methods in Natural Language Processing,", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 115, + 104, + 499, + 118 + ], + "spans": [ + { + "bbox": [ + 115, + 104, + 499, + 118 + ], + "score": 1.0, + "content": "pp. 583–593, Edinburgh, Scotland, UK., July 2011. Association for Computational Linguistics.", + "type": "text" + } + ], + "index": 2 + } + ], + "index": 1 + }, + { + "type": "text", + "bbox": [ + 106, + 123, + 504, + 145 + ], + "lines": [ + { + "bbox": [ + 106, + 123, + 505, + 136 + ], + "spans": [ + { + "bbox": [ + 106, + 123, + 505, + 136 + ], + "score": 1.0, + "content": "Ohad Rubin and Jonathan Berant. Smbop: Semi-autoregressive bottom-up semantic parsing. arXiv", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 115, + 134, + 253, + 146 + ], + "spans": [ + { + "bbox": [ + 115, + 134, + 253, + 146 + ], + "score": 1.0, + "content": "preprint arXiv:2010.12412, 2020.", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 3.5 + }, + { + "type": "text", + "bbox": [ + 106, + 152, + 504, + 175 + ], + "lines": [ + { + "bbox": [ + 106, + 152, + 505, + 165 + ], + "spans": [ + { + "bbox": [ + 106, + 152, + 505, + 165 + ], + "score": 1.0, + "content": "Timo Schick and Hinrich Schutze. It’s not just size that matters: Small language models are also ¨", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 116, + 164, + 353, + 175 + ], + "spans": [ + { + "bbox": [ + 116, + 164, + 353, + 175 + ], + "score": 1.0, + "content": "few-shot learners. arXiv preprint arXiv:2009.07118, 2020.", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 5.5 + }, + { + "type": "text", + "bbox": [ + 105, + 182, + 505, + 205 + ], + "lines": [ + { + "bbox": [ + 106, + 182, + 505, + 195 + ], + "spans": [ + { + "bbox": [ + 106, + 182, + 505, + 195 + ], + "score": 1.0, + "content": "Pararth Shah, Dilek Hakkani-Tur, Gokhan T ¨ ur, Abhinav Rastogi, Ankur Bapna, Neha Nayak, and ¨", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 115, + 193, + 458, + 206 + ], + "spans": [ + { + "bbox": [ + 115, + 193, + 458, + 206 + ], + "score": 1.0, + "content": "Larry Heck. Building a conversational agent overnight with dialogue self-play, 2018.", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 7.5 + }, + { + "type": "text", + "bbox": [ + 107, + 211, + 506, + 257 + ], + "lines": [ + { + "bbox": [ + 105, + 211, + 506, + 224 + ], + "spans": [ + { + "bbox": [ + 105, + 211, + 506, + 224 + ], + "score": 1.0, + "content": "Peter Shaw, Jakob Uszkoreit, and Ashish Vaswani. Self-attention with relative position representations.", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 115, + 223, + 505, + 235 + ], + "spans": [ + { + "bbox": [ + 115, + 223, + 505, + 235 + ], + "score": 1.0, + "content": "In Proceedings of the 2018 Conference of the North American Chapter of the Association for", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 115, + 234, + 507, + 247 + ], + "spans": [ + { + "bbox": [ + 115, + 234, + 507, + 247 + ], + "score": 1.0, + "content": "Computational Linguistics: Human Language Technologies, Volume 2 (Short Papers), New Orleans,", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 115, + 244, + 381, + 258 + ], + "spans": [ + { + "bbox": [ + 115, + 244, + 381, + 258 + ], + "score": 1.0, + "content": "Louisiana, June 2018. Association for Computational Linguistics.", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 10.5 + }, + { + "type": "text", + "bbox": [ + 107, + 263, + 505, + 297 + ], + "lines": [ + { + "bbox": [ + 105, + 263, + 506, + 276 + ], + "spans": [ + { + "bbox": [ + 105, + 263, + 506, + 276 + ], + "score": 1.0, + "content": "Peter Shaw, Ming-Wei Chang, Panupong Pasupat, and Kristina Toutanova. Compositional generaliza-", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 116, + 275, + 505, + 287 + ], + "spans": [ + { + "bbox": [ + 116, + 275, + 505, + 287 + ], + "score": 1.0, + "content": "tion and natural language variation: Can a semantic parsing approach handle both? arXiv preprint", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 116, + 285, + 219, + 296 + ], + "spans": [ + { + "bbox": [ + 116, + 285, + 219, + 296 + ], + "score": 1.0, + "content": "arXiv:2010.12725, 2020.", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 14 + }, + { + "type": "text", + "bbox": [ + 107, + 303, + 506, + 338 + ], + "lines": [ + { + "bbox": [ + 106, + 303, + 506, + 316 + ], + "spans": [ + { + "bbox": [ + 106, + 303, + 506, + 316 + ], + "score": 1.0, + "content": "Yu Su, Ahmed Hassan Awadallah, Madian Khabsa, P. Pantel, M. Gamon, and Mark J. Encarnacion. ´", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 115, + 314, + 505, + 328 + ], + "spans": [ + { + "bbox": [ + 115, + 314, + 505, + 328 + ], + "score": 1.0, + "content": "Building natural language interfaces to web apis. Proceedings of the 2017 ACM on Conference on", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 115, + 325, + 314, + 339 + ], + "spans": [ + { + "bbox": [ + 115, + 325, + 314, + 339 + ], + "score": 1.0, + "content": "Information and Knowledge Management, 2017.", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 17 + }, + { + "type": "text", + "bbox": [ + 107, + 344, + 504, + 367 + ], + "lines": [ + { + "bbox": [ + 106, + 344, + 506, + 358 + ], + "spans": [ + { + "bbox": [ + 106, + 344, + 506, + 358 + ], + "score": 1.0, + "content": "Yibo Sun, Duyu Tang, Nan Duan, Jingjing Xu, X. Feng, and B. Qin. Knowledge-aware conversational", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 115, + 356, + 332, + 367 + ], + "spans": [ + { + "bbox": [ + 115, + 356, + 332, + 367 + ], + "score": 1.0, + "content": "semantic parsing over web tables. In NLPCC, 2019a.", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 19.5 + }, + { + "type": "text", + "bbox": [ + 108, + 373, + 505, + 397 + ], + "lines": [ + { + "bbox": [ + 106, + 373, + 505, + 387 + ], + "spans": [ + { + "bbox": [ + 106, + 373, + 505, + 387 + ], + "score": 1.0, + "content": "Yu Sun, Shuohuan Wang, Yukun Li, Shikun Feng, Xuyi Chen, Han Zhang, Xin Tian, Danxiang Zhu,", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 115, + 384, + 500, + 398 + ], + "spans": [ + { + "bbox": [ + 115, + 384, + 500, + 398 + ], + "score": 1.0, + "content": "Hao Tian, and Hua Wu. Ernie: Enhanced representation through knowledge integration, 2019b.", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 21.5 + }, + { + "type": "text", + "bbox": [ + 108, + 403, + 504, + 426 + ], + "lines": [ + { + "bbox": [ + 106, + 402, + 505, + 416 + ], + "spans": [ + { + "bbox": [ + 106, + 402, + 505, + 416 + ], + "score": 1.0, + "content": "Gokhan Tur and Renato De Mori. Spoken language understanding: Systems for extracting semantic", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 115, + 415, + 327, + 427 + ], + "spans": [ + { + "bbox": [ + 115, + 415, + 327, + 427 + ], + "score": 1.0, + "content": "information from speech. John Wiley & Sons, 2011.", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 23.5 + }, + { + "type": "text", + "bbox": [ + 106, + 433, + 502, + 456 + ], + "lines": [ + { + "bbox": [ + 105, + 433, + 504, + 446 + ], + "spans": [ + { + "bbox": [ + 105, + 433, + 504, + 446 + ], + "score": 1.0, + "content": "Bailin Wang, Ivan Titov, and Mirella Lapata. Learning semantic parsers from denotations with latent", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 115, + 444, + 434, + 456 + ], + "spans": [ + { + "bbox": [ + 115, + 444, + 434, + 456 + ], + "score": 1.0, + "content": "structured alignments and abstract programs. In Proceedings of EMNLP, 2019.", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 25.5 + }, + { + "type": "text", + "bbox": [ + 107, + 462, + 505, + 507 + ], + "lines": [ + { + "bbox": [ + 106, + 463, + 506, + 475 + ], + "spans": [ + { + "bbox": [ + 106, + 463, + 506, + 475 + ], + "score": 1.0, + "content": "Bailin Wang, Richard Shin, Xiaodong Liu, Oleksandr Polozov, and Matthew Richardson. RAT-SQL:", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 115, + 474, + 506, + 486 + ], + "spans": [ + { + "bbox": [ + 115, + 474, + 506, + 486 + ], + "score": 1.0, + "content": "Relation-aware schema encoding and linking for text-to-SQL parsers. In Proceedings of the 58th", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 114, + 484, + 506, + 498 + ], + "spans": [ + { + "bbox": [ + 114, + 484, + 506, + 498 + ], + "score": 1.0, + "content": "Annual Meeting of the Association for Computational Linguistics, pp. 7567–7578, Online, July", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 115, + 495, + 469, + 508 + ], + "spans": [ + { + "bbox": [ + 115, + 495, + 469, + 508 + ], + "score": 1.0, + "content": "2020. Association for Computational Linguistics. doi: 10.18653/v1/2020.acl-main.677.", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 28.5 + }, + { + "type": "text", + "bbox": [ + 106, + 514, + 505, + 559 + ], + "lines": [ + { + "bbox": [ + 106, + 514, + 505, + 528 + ], + "spans": [ + { + "bbox": [ + 106, + 514, + 505, + 528 + ], + "score": 1.0, + "content": "Yushi Wang, Jonathan Berant, and Percy Liang. Building a semantic parser overnight. In Proceedings", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 116, + 525, + 507, + 538 + ], + "spans": [ + { + "bbox": [ + 116, + 525, + 507, + 538 + ], + "score": 1.0, + "content": "of the 53rd Annual Meeting of the Association for Computational Linguistics and the 7th Interna-", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 116, + 537, + 506, + 549 + ], + "spans": [ + { + "bbox": [ + 116, + 537, + 506, + 549 + ], + "score": 1.0, + "content": "tional Joint Conference on Natural Language Processing (Volume 1: Long Papers), pp. 1332–1342,", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 115, + 547, + 507, + 559 + ], + "spans": [ + { + "bbox": [ + 115, + 547, + 507, + 559 + ], + "score": 1.0, + "content": "Beijing, China, July 2015. Association for Computational Linguistics. doi: 10.3115/v1/P15-1129.", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 32.5 + }, + { + "type": "text", + "bbox": [ + 107, + 565, + 505, + 600 + ], + "lines": [ + { + "bbox": [ + 106, + 565, + 505, + 578 + ], + "spans": [ + { + "bbox": [ + 106, + 565, + 505, + 578 + ], + "score": 1.0, + "content": "Tsung-Hsien Wen, David Vandyke, Nikola Mrksic, Milica Gasic, Lina M Rojas-Barahona, Pei-Hao", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 115, + 576, + 505, + 590 + ], + "spans": [ + { + "bbox": [ + 115, + 576, + 505, + 590 + ], + "score": 1.0, + "content": "Su, Stefan Ultes, and Steve Young. A network-based end-to-end trainable task-oriented dialogue", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 115, + 588, + 312, + 600 + ], + "spans": [ + { + "bbox": [ + 115, + 588, + 312, + 600 + ], + "score": 1.0, + "content": "system. arXiv preprint arXiv:1604.04562, 2016.", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 36 + }, + { + "type": "text", + "bbox": [ + 107, + 606, + 505, + 641 + ], + "lines": [ + { + "bbox": [ + 105, + 605, + 506, + 620 + ], + "spans": [ + { + "bbox": [ + 105, + 605, + 506, + 620 + ], + "score": 1.0, + "content": "Thomas Wolf, Lysandre Debut, Victor Sanh, Julien Chaumond, Clement Delangue, Anthony Moi,", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 116, + 617, + 506, + 630 + ], + "spans": [ + { + "bbox": [ + 116, + 617, + 506, + 630 + ], + "score": 1.0, + "content": "Pierric Cistac, Tim Rault, R’emi Louf, Morgan Funtowicz, and Jamie Brew. Huggingface’s", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 116, + 628, + 475, + 642 + ], + "spans": [ + { + "bbox": [ + 116, + 628, + 475, + 642 + ], + "score": 1.0, + "content": "transformers: State-of-the-art natural language processing. ArXiv, abs/1910.03771, 2019.", + "type": "text" + } + ], + "index": 40 + } + ], + "index": 39 + }, + { + "type": "text", + "bbox": [ + 107, + 646, + 506, + 692 + ], + "lines": [ + { + "bbox": [ + 106, + 647, + 505, + 659 + ], + "spans": [ + { + "bbox": [ + 106, + 647, + 505, + 659 + ], + "score": 1.0, + "content": "Chien-Sheng Wu, Andrea Madotto, Ehsan Hosseini-Asl, Caiming Xiong, Richard Socher, and", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 115, + 658, + 505, + 671 + ], + "spans": [ + { + "bbox": [ + 115, + 658, + 505, + 671 + ], + "score": 1.0, + "content": "Pascale Fung. Transferable multi-domain state generator for task-oriented dialogue systems. In", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 115, + 668, + 507, + 683 + ], + "spans": [ + { + "bbox": [ + 115, + 668, + 507, + 683 + ], + "score": 1.0, + "content": "Proceedings of the 57th Annual Meeting of the Association for Computational Linguistics, Florence,", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 115, + 680, + 358, + 693 + ], + "spans": [ + { + "bbox": [ + 115, + 680, + 358, + 693 + ], + "score": 1.0, + "content": "Italy, July 2019. Association for Computational Linguistics.", + "type": "text" + } + ], + "index": 44 + } + ], + "index": 42.5 + }, + { + "type": "text", + "bbox": [ + 107, + 698, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 698, + 506, + 712 + ], + "spans": [ + { + "bbox": [ + 106, + 698, + 506, + 712 + ], + "score": 1.0, + "content": "Chien-Sheng Wu, Steven C.H. Hoi, Richard Socher, and Caiming Xiong. TOD-BERT: Pre-trained", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 116, + 710, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 116, + 710, + 505, + 722 + ], + "score": 1.0, + "content": "natural language understanding for task-oriented dialogue. In Proceedings of the 2020 Conference", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 116, + 721, + 409, + 732 + ], + "spans": [ + { + "bbox": [ + 116, + 721, + 409, + 732 + ], + "score": 1.0, + "content": "on Empirical Methods in Natural Language Processing (EMNLP), 2020.", + "type": "text" + } + ], + "index": 47 + } + ], + "index": 46 + } + ], + "page_idx": 11, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 108, + 27, + 292, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 26, + 293, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 26, + 293, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2021", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 300, + 751, + 310, + 760 + ], + "lines": [ + { + "bbox": [ + 299, + 750, + 312, + 764 + ], + "spans": [ + { + "bbox": [ + 299, + 750, + 312, + 764 + ], + "score": 1.0, + "content": "", + "type": "text", + "height": 14, + "width": 13 + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 108, + 82, + 505, + 116 + ], + "lines": [ + { + "bbox": [ + 106, + 82, + 506, + 96 + ], + "spans": [ + { + "bbox": [ + 106, + 82, + 506, + 96 + ], + "score": 1.0, + "content": "Alan Ritter, Colin Cherry, and William B. Dolan. Data-driven response generation in social media.", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 115, + 92, + 507, + 108 + ], + "spans": [ + { + "bbox": [ + 115, + 92, + 507, + 108 + ], + "score": 1.0, + "content": "In Proceedings of the 2011 Conference on Empirical Methods in Natural Language Processing,", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 115, + 104, + 499, + 118 + ], + "spans": [ + { + "bbox": [ + 115, + 104, + 499, + 118 + ], + "score": 1.0, + "content": "pp. 583–593, Edinburgh, Scotland, UK., July 2011. Association for Computational Linguistics.", + "type": "text" + } + ], + "index": 2 + } + ], + "index": 1, + "bbox_fs": [ + 106, + 82, + 507, + 118 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 123, + 504, + 145 + ], + "lines": [ + { + "bbox": [ + 106, + 123, + 505, + 136 + ], + "spans": [ + { + "bbox": [ + 106, + 123, + 505, + 136 + ], + "score": 1.0, + "content": "Ohad Rubin and Jonathan Berant. Smbop: Semi-autoregressive bottom-up semantic parsing. arXiv", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 115, + 134, + 253, + 146 + ], + "spans": [ + { + "bbox": [ + 115, + 134, + 253, + 146 + ], + "score": 1.0, + "content": "preprint arXiv:2010.12412, 2020.", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 3.5, + "bbox_fs": [ + 106, + 123, + 505, + 146 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 152, + 504, + 175 + ], + "lines": [ + { + "bbox": [ + 106, + 152, + 505, + 165 + ], + "spans": [ + { + "bbox": [ + 106, + 152, + 505, + 165 + ], + "score": 1.0, + "content": "Timo Schick and Hinrich Schutze. It’s not just size that matters: Small language models are also ¨", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 116, + 164, + 353, + 175 + ], + "spans": [ + { + "bbox": [ + 116, + 164, + 353, + 175 + ], + "score": 1.0, + "content": "few-shot learners. arXiv preprint arXiv:2009.07118, 2020.", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 5.5, + "bbox_fs": [ + 106, + 152, + 505, + 175 + ] + }, + { + "type": "text", + "bbox": [ + 105, + 182, + 505, + 205 + ], + "lines": [ + { + "bbox": [ + 106, + 182, + 505, + 195 + ], + "spans": [ + { + "bbox": [ + 106, + 182, + 505, + 195 + ], + "score": 1.0, + "content": "Pararth Shah, Dilek Hakkani-Tur, Gokhan T ¨ ur, Abhinav Rastogi, Ankur Bapna, Neha Nayak, and ¨", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 115, + 193, + 458, + 206 + ], + "spans": [ + { + "bbox": [ + 115, + 193, + 458, + 206 + ], + "score": 1.0, + "content": "Larry Heck. Building a conversational agent overnight with dialogue self-play, 2018.", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 7.5, + "bbox_fs": [ + 106, + 182, + 505, + 206 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 211, + 506, + 257 + ], + "lines": [ + { + "bbox": [ + 105, + 211, + 506, + 224 + ], + "spans": [ + { + "bbox": [ + 105, + 211, + 506, + 224 + ], + "score": 1.0, + "content": "Peter Shaw, Jakob Uszkoreit, and Ashish Vaswani. Self-attention with relative position representations.", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 115, + 223, + 505, + 235 + ], + "spans": [ + { + "bbox": [ + 115, + 223, + 505, + 235 + ], + "score": 1.0, + "content": "In Proceedings of the 2018 Conference of the North American Chapter of the Association for", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 115, + 234, + 507, + 247 + ], + "spans": [ + { + "bbox": [ + 115, + 234, + 507, + 247 + ], + "score": 1.0, + "content": "Computational Linguistics: Human Language Technologies, Volume 2 (Short Papers), New Orleans,", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 115, + 244, + 381, + 258 + ], + "spans": [ + { + "bbox": [ + 115, + 244, + 381, + 258 + ], + "score": 1.0, + "content": "Louisiana, June 2018. Association for Computational Linguistics.", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 10.5, + "bbox_fs": [ + 105, + 211, + 507, + 258 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 263, + 505, + 297 + ], + "lines": [ + { + "bbox": [ + 105, + 263, + 506, + 276 + ], + "spans": [ + { + "bbox": [ + 105, + 263, + 506, + 276 + ], + "score": 1.0, + "content": "Peter Shaw, Ming-Wei Chang, Panupong Pasupat, and Kristina Toutanova. Compositional generaliza-", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 116, + 275, + 505, + 287 + ], + "spans": [ + { + "bbox": [ + 116, + 275, + 505, + 287 + ], + "score": 1.0, + "content": "tion and natural language variation: Can a semantic parsing approach handle both? arXiv preprint", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 116, + 285, + 219, + 296 + ], + "spans": [ + { + "bbox": [ + 116, + 285, + 219, + 296 + ], + "score": 1.0, + "content": "arXiv:2010.12725, 2020.", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 14, + "bbox_fs": [ + 105, + 263, + 506, + 296 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 303, + 506, + 338 + ], + "lines": [ + { + "bbox": [ + 106, + 303, + 506, + 316 + ], + "spans": [ + { + "bbox": [ + 106, + 303, + 506, + 316 + ], + "score": 1.0, + "content": "Yu Su, Ahmed Hassan Awadallah, Madian Khabsa, P. Pantel, M. Gamon, and Mark J. Encarnacion. ´", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 115, + 314, + 505, + 328 + ], + "spans": [ + { + "bbox": [ + 115, + 314, + 505, + 328 + ], + "score": 1.0, + "content": "Building natural language interfaces to web apis. Proceedings of the 2017 ACM on Conference on", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 115, + 325, + 314, + 339 + ], + "spans": [ + { + "bbox": [ + 115, + 325, + 314, + 339 + ], + "score": 1.0, + "content": "Information and Knowledge Management, 2017.", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 17, + "bbox_fs": [ + 106, + 303, + 506, + 339 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 344, + 504, + 367 + ], + "lines": [ + { + "bbox": [ + 106, + 344, + 506, + 358 + ], + "spans": [ + { + "bbox": [ + 106, + 344, + 506, + 358 + ], + "score": 1.0, + "content": "Yibo Sun, Duyu Tang, Nan Duan, Jingjing Xu, X. Feng, and B. Qin. Knowledge-aware conversational", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 115, + 356, + 332, + 367 + ], + "spans": [ + { + "bbox": [ + 115, + 356, + 332, + 367 + ], + "score": 1.0, + "content": "semantic parsing over web tables. In NLPCC, 2019a.", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 19.5, + "bbox_fs": [ + 106, + 344, + 506, + 367 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 373, + 505, + 397 + ], + "lines": [ + { + "bbox": [ + 106, + 373, + 505, + 387 + ], + "spans": [ + { + "bbox": [ + 106, + 373, + 505, + 387 + ], + "score": 1.0, + "content": "Yu Sun, Shuohuan Wang, Yukun Li, Shikun Feng, Xuyi Chen, Han Zhang, Xin Tian, Danxiang Zhu,", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 115, + 384, + 500, + 398 + ], + "spans": [ + { + "bbox": [ + 115, + 384, + 500, + 398 + ], + "score": 1.0, + "content": "Hao Tian, and Hua Wu. Ernie: Enhanced representation through knowledge integration, 2019b.", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 21.5, + "bbox_fs": [ + 106, + 373, + 505, + 398 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 403, + 504, + 426 + ], + "lines": [ + { + "bbox": [ + 106, + 402, + 505, + 416 + ], + "spans": [ + { + "bbox": [ + 106, + 402, + 505, + 416 + ], + "score": 1.0, + "content": "Gokhan Tur and Renato De Mori. Spoken language understanding: Systems for extracting semantic", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 115, + 415, + 327, + 427 + ], + "spans": [ + { + "bbox": [ + 115, + 415, + 327, + 427 + ], + "score": 1.0, + "content": "information from speech. John Wiley & Sons, 2011.", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 23.5, + "bbox_fs": [ + 106, + 402, + 505, + 427 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 433, + 502, + 456 + ], + "lines": [ + { + "bbox": [ + 105, + 433, + 504, + 446 + ], + "spans": [ + { + "bbox": [ + 105, + 433, + 504, + 446 + ], + "score": 1.0, + "content": "Bailin Wang, Ivan Titov, and Mirella Lapata. Learning semantic parsers from denotations with latent", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 115, + 444, + 434, + 456 + ], + "spans": [ + { + "bbox": [ + 115, + 444, + 434, + 456 + ], + "score": 1.0, + "content": "structured alignments and abstract programs. In Proceedings of EMNLP, 2019.", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 25.5, + "bbox_fs": [ + 105, + 433, + 504, + 456 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 462, + 505, + 507 + ], + "lines": [ + { + "bbox": [ + 106, + 463, + 506, + 475 + ], + "spans": [ + { + "bbox": [ + 106, + 463, + 506, + 475 + ], + "score": 1.0, + "content": "Bailin Wang, Richard Shin, Xiaodong Liu, Oleksandr Polozov, and Matthew Richardson. RAT-SQL:", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 115, + 474, + 506, + 486 + ], + "spans": [ + { + "bbox": [ + 115, + 474, + 506, + 486 + ], + "score": 1.0, + "content": "Relation-aware schema encoding and linking for text-to-SQL parsers. In Proceedings of the 58th", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 114, + 484, + 506, + 498 + ], + "spans": [ + { + "bbox": [ + 114, + 484, + 506, + 498 + ], + "score": 1.0, + "content": "Annual Meeting of the Association for Computational Linguistics, pp. 7567–7578, Online, July", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 115, + 495, + 469, + 508 + ], + "spans": [ + { + "bbox": [ + 115, + 495, + 469, + 508 + ], + "score": 1.0, + "content": "2020. Association for Computational Linguistics. doi: 10.18653/v1/2020.acl-main.677.", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 28.5, + "bbox_fs": [ + 106, + 463, + 506, + 508 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 514, + 505, + 559 + ], + "lines": [ + { + "bbox": [ + 106, + 514, + 505, + 528 + ], + "spans": [ + { + "bbox": [ + 106, + 514, + 505, + 528 + ], + "score": 1.0, + "content": "Yushi Wang, Jonathan Berant, and Percy Liang. Building a semantic parser overnight. In Proceedings", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 116, + 525, + 507, + 538 + ], + "spans": [ + { + "bbox": [ + 116, + 525, + 507, + 538 + ], + "score": 1.0, + "content": "of the 53rd Annual Meeting of the Association for Computational Linguistics and the 7th Interna-", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 116, + 537, + 506, + 549 + ], + "spans": [ + { + "bbox": [ + 116, + 537, + 506, + 549 + ], + "score": 1.0, + "content": "tional Joint Conference on Natural Language Processing (Volume 1: Long Papers), pp. 1332–1342,", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 115, + 547, + 507, + 559 + ], + "spans": [ + { + "bbox": [ + 115, + 547, + 507, + 559 + ], + "score": 1.0, + "content": "Beijing, China, July 2015. Association for Computational Linguistics. doi: 10.3115/v1/P15-1129.", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 32.5, + "bbox_fs": [ + 106, + 514, + 507, + 559 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 565, + 505, + 600 + ], + "lines": [ + { + "bbox": [ + 106, + 565, + 505, + 578 + ], + "spans": [ + { + "bbox": [ + 106, + 565, + 505, + 578 + ], + "score": 1.0, + "content": "Tsung-Hsien Wen, David Vandyke, Nikola Mrksic, Milica Gasic, Lina M Rojas-Barahona, Pei-Hao", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 115, + 576, + 505, + 590 + ], + "spans": [ + { + "bbox": [ + 115, + 576, + 505, + 590 + ], + "score": 1.0, + "content": "Su, Stefan Ultes, and Steve Young. A network-based end-to-end trainable task-oriented dialogue", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 115, + 588, + 312, + 600 + ], + "spans": [ + { + "bbox": [ + 115, + 588, + 312, + 600 + ], + "score": 1.0, + "content": "system. arXiv preprint arXiv:1604.04562, 2016.", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 36, + "bbox_fs": [ + 106, + 565, + 505, + 600 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 606, + 505, + 641 + ], + "lines": [ + { + "bbox": [ + 105, + 605, + 506, + 620 + ], + "spans": [ + { + "bbox": [ + 105, + 605, + 506, + 620 + ], + "score": 1.0, + "content": "Thomas Wolf, Lysandre Debut, Victor Sanh, Julien Chaumond, Clement Delangue, Anthony Moi,", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 116, + 617, + 506, + 630 + ], + "spans": [ + { + "bbox": [ + 116, + 617, + 506, + 630 + ], + "score": 1.0, + "content": "Pierric Cistac, Tim Rault, R’emi Louf, Morgan Funtowicz, and Jamie Brew. Huggingface’s", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 116, + 628, + 475, + 642 + ], + "spans": [ + { + "bbox": [ + 116, + 628, + 475, + 642 + ], + "score": 1.0, + "content": "transformers: State-of-the-art natural language processing. ArXiv, abs/1910.03771, 2019.", + "type": "text" + } + ], + "index": 40 + } + ], + "index": 39, + "bbox_fs": [ + 105, + 605, + 506, + 642 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 646, + 506, + 692 + ], + "lines": [ + { + "bbox": [ + 106, + 647, + 505, + 659 + ], + "spans": [ + { + "bbox": [ + 106, + 647, + 505, + 659 + ], + "score": 1.0, + "content": "Chien-Sheng Wu, Andrea Madotto, Ehsan Hosseini-Asl, Caiming Xiong, Richard Socher, and", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 115, + 658, + 505, + 671 + ], + "spans": [ + { + "bbox": [ + 115, + 658, + 505, + 671 + ], + "score": 1.0, + "content": "Pascale Fung. Transferable multi-domain state generator for task-oriented dialogue systems. In", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 115, + 668, + 507, + 683 + ], + "spans": [ + { + "bbox": [ + 115, + 668, + 507, + 683 + ], + "score": 1.0, + "content": "Proceedings of the 57th Annual Meeting of the Association for Computational Linguistics, Florence,", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 115, + 680, + 358, + 693 + ], + "spans": [ + { + "bbox": [ + 115, + 680, + 358, + 693 + ], + "score": 1.0, + "content": "Italy, July 2019. Association for Computational Linguistics.", + "type": "text" + } + ], + "index": 44 + } + ], + "index": 42.5, + "bbox_fs": [ + 106, + 647, + 507, + 693 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 698, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 698, + 506, + 712 + ], + "spans": [ + { + "bbox": [ + 106, + 698, + 506, + 712 + ], + "score": 1.0, + "content": "Chien-Sheng Wu, Steven C.H. Hoi, Richard Socher, and Caiming Xiong. TOD-BERT: Pre-trained", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 116, + 710, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 116, + 710, + 505, + 722 + ], + "score": 1.0, + "content": "natural language understanding for task-oriented dialogue. In Proceedings of the 2020 Conference", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 116, + 721, + 409, + 732 + ], + "spans": [ + { + "bbox": [ + 116, + 721, + 409, + 732 + ], + "score": 1.0, + "content": "on Empirical Methods in Natural Language Processing (EMNLP), 2020.", + "type": "text" + } + ], + "index": 47 + } + ], + "index": 46, + "bbox_fs": [ + 106, + 698, + 506, + 732 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 107, + 82, + 505, + 127 + ], + "lines": [ + { + "bbox": [ + 105, + 82, + 506, + 95 + ], + "spans": [ + { + "bbox": [ + 105, + 82, + 506, + 95 + ], + "score": 1.0, + "content": "Pengcheng Yin, Graham Neubig, Wen-tau Yih, and Sebastian Riedel. TaBERT: Pretraining for", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 114, + 93, + 505, + 106 + ], + "spans": [ + { + "bbox": [ + 114, + 93, + 505, + 106 + ], + "score": 1.0, + "content": "joint understanding of textual and tabular data. In Proceedings of the 58th Annual Meeting of the", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 114, + 104, + 506, + 117 + ], + "spans": [ + { + "bbox": [ + 114, + 104, + 506, + 117 + ], + "score": 1.0, + "content": "Association for Computational Linguistics, pp. 8413–8426, Online, July 2020. Association for", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 115, + 115, + 380, + 127 + ], + "spans": [ + { + "bbox": [ + 115, + 115, + 380, + 127 + ], + "score": 1.0, + "content": "Computational Linguistics. doi: 10.18653/v1/2020.acl-main.745.", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 1.5 + }, + { + "type": "text", + "bbox": [ + 105, + 134, + 505, + 156 + ], + "lines": [ + { + "bbox": [ + 106, + 133, + 506, + 147 + ], + "spans": [ + { + "bbox": [ + 106, + 133, + 506, + 147 + ], + "score": 1.0, + "content": "Kang Min Yoo, Youhyun Shin, and Sang goo Lee. Data augmentation for spoken language under-", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 115, + 145, + 305, + 157 + ], + "spans": [ + { + "bbox": [ + 115, + 145, + 305, + 157 + ], + "score": 1.0, + "content": "standing via joint variational generation, 2018.", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 4.5 + }, + { + "type": "text", + "bbox": [ + 107, + 164, + 506, + 198 + ], + "lines": [ + { + "bbox": [ + 106, + 164, + 506, + 177 + ], + "spans": [ + { + "bbox": [ + 106, + 164, + 506, + 177 + ], + "score": 1.0, + "content": "Tao Yu, Michihiro Yasunaga, Kai Yang, Rui Zhang, Dongxu Wang, Zifan Li, and Dragomir Radev.", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 115, + 174, + 506, + 189 + ], + "spans": [ + { + "bbox": [ + 115, + 174, + 506, + 189 + ], + "score": 1.0, + "content": "Syntaxsqlnet: Syntax tree networks for complex and cross-domain text-to-sql task. In Proceedings", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 116, + 186, + 368, + 199 + ], + "spans": [ + { + "bbox": [ + 116, + 186, + 368, + 199 + ], + "score": 1.0, + "content": "of EMNLP. Association for Computational Linguistics, 2018a.", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 7 + }, + { + "type": "text", + "bbox": [ + 107, + 204, + 505, + 249 + ], + "lines": [ + { + "bbox": [ + 106, + 204, + 506, + 217 + ], + "spans": [ + { + "bbox": [ + 106, + 204, + 506, + 217 + ], + "score": 1.0, + "content": "Tao Yu, Rui Zhang, Kai Yang, Michihiro Yasunaga, Dongxu Wang, Zifan Li, James Ma, Irene", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 115, + 216, + 505, + 228 + ], + "spans": [ + { + "bbox": [ + 115, + 216, + 505, + 228 + ], + "score": 1.0, + "content": "Li, Qingning Yao, Shanelle Roman, Zilin Zhang, and Dragomir Radev. Spider: A large-scale", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 115, + 226, + 506, + 240 + ], + "spans": [ + { + "bbox": [ + 115, + 226, + 506, + 240 + ], + "score": 1.0, + "content": "human-labeled dataset for complex and cross-domain semantic parsing and text-to-sql task. In", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 116, + 238, + 183, + 249 + ], + "spans": [ + { + "bbox": [ + 116, + 238, + 183, + 249 + ], + "score": 1.0, + "content": "EMNLP, 2018b.", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 10.5 + }, + { + "type": "text", + "bbox": [ + 107, + 256, + 505, + 334 + ], + "lines": [ + { + "bbox": [ + 106, + 257, + 505, + 269 + ], + "spans": [ + { + "bbox": [ + 106, + 257, + 505, + 269 + ], + "score": 1.0, + "content": "Tao Yu, Rui Zhang, He Yang Er, Suyi Li, Eric Xue, Bo Pang, Xi Victoria Lin, Yi Chern Tan, Tianze", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 116, + 268, + 506, + 280 + ], + "spans": [ + { + "bbox": [ + 116, + 268, + 506, + 280 + ], + "score": 1.0, + "content": "Shi, Zihan Li, Youxuan Jiang, Michihiro Yasunaga, Sungrok Shim, Tao Chen, Alexander Fabbri,", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 115, + 277, + 506, + 292 + ], + "spans": [ + { + "bbox": [ + 115, + 277, + 506, + 292 + ], + "score": 1.0, + "content": "Zifan Li, Luyao Chen, Yuwen Zhang, Shreya Dixit, Vincent Zhang, Caiming Xiong, Richard", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 115, + 288, + 506, + 304 + ], + "spans": [ + { + "bbox": [ + 115, + 288, + 506, + 304 + ], + "score": 1.0, + "content": "Socher, Walter Lasecki, and Dragomir Radev. Cosql: A conversational text-to-sql challenge", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 115, + 301, + 506, + 313 + ], + "spans": [ + { + "bbox": [ + 115, + 301, + 506, + 313 + ], + "score": 1.0, + "content": "towards cross-domain natural language interfaces to databases. In Proceedings of the 2019", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 116, + 312, + 506, + 325 + ], + "spans": [ + { + "bbox": [ + 116, + 312, + 506, + 325 + ], + "score": 1.0, + "content": "Conference on Empirical Methods in Natural Language Processing and 9th International Joint", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 116, + 322, + 505, + 335 + ], + "spans": [ + { + "bbox": [ + 116, + 322, + 505, + 335 + ], + "score": 1.0, + "content": "Conference on Natural Language Processing. Association for Computational Linguistics, 2019a.", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 16 + }, + { + "type": "text", + "bbox": [ + 107, + 341, + 506, + 397 + ], + "lines": [ + { + "bbox": [ + 106, + 340, + 506, + 354 + ], + "spans": [ + { + "bbox": [ + 106, + 340, + 506, + 354 + ], + "score": 1.0, + "content": "Tao Yu, Rui Zhang, Michihiro Yasunaga, Yi Chern Tan, Xi Victoria Lin, Suyi Li, Irene Li Heyang Er,", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 115, + 351, + 506, + 366 + ], + "spans": [ + { + "bbox": [ + 115, + 351, + 506, + 366 + ], + "score": 1.0, + "content": "Bo Pang, Tao Chen, Emily Ji, Shreya Dixit, David Proctor, Sungrok Shim, Vincent Zhang", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 116, + 363, + 505, + 375 + ], + "spans": [ + { + "bbox": [ + 116, + 363, + 505, + 375 + ], + "score": 1.0, + "content": "Jonathan Kraft, Caiming Xiong, Richard Socher, and Dragomir Radev. Sparc: Cross-domain", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 115, + 373, + 506, + 389 + ], + "spans": [ + { + "bbox": [ + 115, + 373, + 506, + 389 + ], + "score": 1.0, + "content": "semantic parsing in context. In Proceedings of the 57th Annual Meeting of the Association for", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 116, + 385, + 494, + 399 + ], + "spans": [ + { + "bbox": [ + 116, + 385, + 494, + 399 + ], + "score": 1.0, + "content": "Computational Linguistics, Florence, Italy, 2019b. Association for Computational Linguistics.", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 22 + }, + { + "type": "text", + "bbox": [ + 107, + 404, + 505, + 438 + ], + "lines": [ + { + "bbox": [ + 106, + 404, + 505, + 416 + ], + "spans": [ + { + "bbox": [ + 106, + 404, + 505, + 416 + ], + "score": 1.0, + "content": "Jian-Guo Zhang, Kazuma Hashimoto, Chien-Sheng Wu, Yao Wan, Philip S Yu, Richard Socher, and", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 117, + 415, + 504, + 427 + ], + "spans": [ + { + "bbox": [ + 117, + 415, + 504, + 427 + ], + "score": 1.0, + "content": "Caiming Xiong. Find or classify? dual strategy for slot-value predictions on multi-domain dialog", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 115, + 427, + 342, + 438 + ], + "spans": [ + { + "bbox": [ + 115, + 427, + 342, + 438 + ], + "score": 1.0, + "content": "state tracking. arXiv preprint arXiv:1910.03544, 2019a.", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 26 + }, + { + "type": "text", + "bbox": [ + 106, + 444, + 504, + 468 + ], + "lines": [ + { + "bbox": [ + 105, + 444, + 505, + 457 + ], + "spans": [ + { + "bbox": [ + 105, + 444, + 505, + 457 + ], + "score": 1.0, + "content": "Jingqing Zhang, Yao Zhao, Mohammad Saleh, and Peter J Liu. Pegasus: Pre-training with extracted", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 115, + 456, + 467, + 469 + ], + "spans": [ + { + "bbox": [ + 115, + 456, + 467, + 469 + ], + "score": 1.0, + "content": "gap-sentences for abstractive summarization. arXiv preprint arXiv:1912.08777, 2019b.", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 28.5 + }, + { + "type": "text", + "bbox": [ + 106, + 474, + 505, + 530 + ], + "lines": [ + { + "bbox": [ + 105, + 473, + 506, + 489 + ], + "spans": [ + { + "bbox": [ + 105, + 473, + 506, + 489 + ], + "score": 1.0, + "content": "Rui Zhang, Tao Yu, He Yang Er, Sungrok Shim, Eric Xue, Xi Victoria Lin, Tianze Shi, Caiming", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 116, + 486, + 505, + 498 + ], + "spans": [ + { + "bbox": [ + 116, + 486, + 505, + 498 + ], + "score": 1.0, + "content": "Xiong, Richard Socher, and Dragomir Radev. Editing-based sql query generation for cross-domain", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 116, + 497, + 505, + 509 + ], + "spans": [ + { + "bbox": [ + 116, + 497, + 505, + 509 + ], + "score": 1.0, + "content": "context-dependent questions. In Proceedings of the 2019 Conference on Empirical Methods", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 115, + 506, + 506, + 522 + ], + "spans": [ + { + "bbox": [ + 115, + 506, + 506, + 522 + ], + "score": 1.0, + "content": "in Natural Language Processing and 9th International Joint Conference on Natural Language", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 116, + 519, + 369, + 531 + ], + "spans": [ + { + "bbox": [ + 116, + 519, + 369, + 531 + ], + "score": 1.0, + "content": "Processing. Association for Computational Linguistics, 2019c.", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 32 + }, + { + "type": "text", + "bbox": [ + 108, + 537, + 504, + 572 + ], + "lines": [ + { + "bbox": [ + 106, + 536, + 506, + 551 + ], + "spans": [ + { + "bbox": [ + 106, + 536, + 506, + 551 + ], + "score": 1.0, + "content": "Yizhe Zhang, Siqi Sun, Michel Galley, Yen-Chun Chen, Chris Brockett, Xiang Gao, Jianfeng Gao,", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 116, + 549, + 505, + 561 + ], + "spans": [ + { + "bbox": [ + 116, + 549, + 505, + 561 + ], + "score": 1.0, + "content": "Jingjing Liu, and Bill Dolan. Dialogpt: Large-scale generative pre-training for conversational", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 115, + 560, + 352, + 572 + ], + "spans": [ + { + "bbox": [ + 115, + 560, + 352, + 572 + ], + "score": 1.0, + "content": "response generation. In ACL, system demonstration, 2020.", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 36 + }, + { + "type": "text", + "bbox": [ + 105, + 578, + 504, + 601 + ], + "lines": [ + { + "bbox": [ + 106, + 577, + 505, + 592 + ], + "spans": [ + { + "bbox": [ + 106, + 577, + 505, + 592 + ], + "score": 1.0, + "content": "Victor Zhong, Caiming Xiong, and Richard Socher. Seq2sql: Generating structured queries from", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 116, + 590, + 429, + 602 + ], + "spans": [ + { + "bbox": [ + 116, + 590, + 429, + 602 + ], + "score": 1.0, + "content": "natural language using reinforcement learning. CoRR, abs/1709.00103, 2017.", + "type": "text" + } + ], + "index": 39 + } + ], + "index": 38.5 + }, + { + "type": "text", + "bbox": [ + 107, + 608, + 505, + 642 + ], + "lines": [ + { + "bbox": [ + 106, + 608, + 505, + 621 + ], + "spans": [ + { + "bbox": [ + 106, + 608, + 505, + 621 + ], + "score": 1.0, + "content": "Victor Zhong, M. Lewis, Sida I. Wang, and Luke Zettlemoyer. Grounded adaptation for zero-shot", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 115, + 618, + 505, + 633 + ], + "spans": [ + { + "bbox": [ + 115, + 618, + 505, + 633 + ], + "score": 1.0, + "content": "executable semantic parsing. The 2020 Conference on Empirical Methods in Natural Language", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 116, + 630, + 190, + 643 + ], + "spans": [ + { + "bbox": [ + 116, + 630, + 190, + 643 + ], + "score": 1.0, + "content": "Processing, 2020.", + "type": "text" + } + ], + "index": 42 + } + ], + "index": 41 + } + ], + "page_idx": 12, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 108, + 27, + 292, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 26, + 293, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 26, + 293, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2021", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 300, + 751, + 310, + 760 + ], + "lines": [ + { + "bbox": [ + 299, + 750, + 312, + 764 + ], + "spans": [ + { + "bbox": [ + 299, + 750, + 312, + 764 + ], + "score": 1.0, + "content": "", + "type": "text", + "height": 14, + "width": 13 + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 107, + 82, + 505, + 127 + ], + "lines": [ + { + "bbox": [ + 105, + 82, + 506, + 95 + ], + "spans": [ + { + "bbox": [ + 105, + 82, + 506, + 95 + ], + "score": 1.0, + "content": "Pengcheng Yin, Graham Neubig, Wen-tau Yih, and Sebastian Riedel. TaBERT: Pretraining for", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 114, + 93, + 505, + 106 + ], + "spans": [ + { + "bbox": [ + 114, + 93, + 505, + 106 + ], + "score": 1.0, + "content": "joint understanding of textual and tabular data. In Proceedings of the 58th Annual Meeting of the", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 114, + 104, + 506, + 117 + ], + "spans": [ + { + "bbox": [ + 114, + 104, + 506, + 117 + ], + "score": 1.0, + "content": "Association for Computational Linguistics, pp. 8413–8426, Online, July 2020. Association for", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 115, + 115, + 380, + 127 + ], + "spans": [ + { + "bbox": [ + 115, + 115, + 380, + 127 + ], + "score": 1.0, + "content": "Computational Linguistics. doi: 10.18653/v1/2020.acl-main.745.", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 1.5, + "bbox_fs": [ + 105, + 82, + 506, + 127 + ] + }, + { + "type": "text", + "bbox": [ + 105, + 134, + 505, + 156 + ], + "lines": [ + { + "bbox": [ + 106, + 133, + 506, + 147 + ], + "spans": [ + { + "bbox": [ + 106, + 133, + 506, + 147 + ], + "score": 1.0, + "content": "Kang Min Yoo, Youhyun Shin, and Sang goo Lee. Data augmentation for spoken language under-", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 115, + 145, + 305, + 157 + ], + "spans": [ + { + "bbox": [ + 115, + 145, + 305, + 157 + ], + "score": 1.0, + "content": "standing via joint variational generation, 2018.", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 4.5, + "bbox_fs": [ + 106, + 133, + 506, + 157 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 164, + 506, + 198 + ], + "lines": [ + { + "bbox": [ + 106, + 164, + 506, + 177 + ], + "spans": [ + { + "bbox": [ + 106, + 164, + 506, + 177 + ], + "score": 1.0, + "content": "Tao Yu, Michihiro Yasunaga, Kai Yang, Rui Zhang, Dongxu Wang, Zifan Li, and Dragomir Radev.", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 115, + 174, + 506, + 189 + ], + "spans": [ + { + "bbox": [ + 115, + 174, + 506, + 189 + ], + "score": 1.0, + "content": "Syntaxsqlnet: Syntax tree networks for complex and cross-domain text-to-sql task. In Proceedings", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 116, + 186, + 368, + 199 + ], + "spans": [ + { + "bbox": [ + 116, + 186, + 368, + 199 + ], + "score": 1.0, + "content": "of EMNLP. Association for Computational Linguistics, 2018a.", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 7, + "bbox_fs": [ + 106, + 164, + 506, + 199 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 204, + 505, + 249 + ], + "lines": [ + { + "bbox": [ + 106, + 204, + 506, + 217 + ], + "spans": [ + { + "bbox": [ + 106, + 204, + 506, + 217 + ], + "score": 1.0, + "content": "Tao Yu, Rui Zhang, Kai Yang, Michihiro Yasunaga, Dongxu Wang, Zifan Li, James Ma, Irene", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 115, + 216, + 505, + 228 + ], + "spans": [ + { + "bbox": [ + 115, + 216, + 505, + 228 + ], + "score": 1.0, + "content": "Li, Qingning Yao, Shanelle Roman, Zilin Zhang, and Dragomir Radev. Spider: A large-scale", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 115, + 226, + 506, + 240 + ], + "spans": [ + { + "bbox": [ + 115, + 226, + 506, + 240 + ], + "score": 1.0, + "content": "human-labeled dataset for complex and cross-domain semantic parsing and text-to-sql task. In", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 116, + 238, + 183, + 249 + ], + "spans": [ + { + "bbox": [ + 116, + 238, + 183, + 249 + ], + "score": 1.0, + "content": "EMNLP, 2018b.", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 10.5, + "bbox_fs": [ + 106, + 204, + 506, + 249 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 256, + 505, + 334 + ], + "lines": [ + { + "bbox": [ + 106, + 257, + 505, + 269 + ], + "spans": [ + { + "bbox": [ + 106, + 257, + 505, + 269 + ], + "score": 1.0, + "content": "Tao Yu, Rui Zhang, He Yang Er, Suyi Li, Eric Xue, Bo Pang, Xi Victoria Lin, Yi Chern Tan, Tianze", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 116, + 268, + 506, + 280 + ], + "spans": [ + { + "bbox": [ + 116, + 268, + 506, + 280 + ], + "score": 1.0, + "content": "Shi, Zihan Li, Youxuan Jiang, Michihiro Yasunaga, Sungrok Shim, Tao Chen, Alexander Fabbri,", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 115, + 277, + 506, + 292 + ], + "spans": [ + { + "bbox": [ + 115, + 277, + 506, + 292 + ], + "score": 1.0, + "content": "Zifan Li, Luyao Chen, Yuwen Zhang, Shreya Dixit, Vincent Zhang, Caiming Xiong, Richard", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 115, + 288, + 506, + 304 + ], + "spans": [ + { + "bbox": [ + 115, + 288, + 506, + 304 + ], + "score": 1.0, + "content": "Socher, Walter Lasecki, and Dragomir Radev. Cosql: A conversational text-to-sql challenge", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 115, + 301, + 506, + 313 + ], + "spans": [ + { + "bbox": [ + 115, + 301, + 506, + 313 + ], + "score": 1.0, + "content": "towards cross-domain natural language interfaces to databases. In Proceedings of the 2019", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 116, + 312, + 506, + 325 + ], + "spans": [ + { + "bbox": [ + 116, + 312, + 506, + 325 + ], + "score": 1.0, + "content": "Conference on Empirical Methods in Natural Language Processing and 9th International Joint", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 116, + 322, + 505, + 335 + ], + "spans": [ + { + "bbox": [ + 116, + 322, + 505, + 335 + ], + "score": 1.0, + "content": "Conference on Natural Language Processing. Association for Computational Linguistics, 2019a.", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 16, + "bbox_fs": [ + 106, + 257, + 506, + 335 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 341, + 506, + 397 + ], + "lines": [ + { + "bbox": [ + 106, + 340, + 506, + 354 + ], + "spans": [ + { + "bbox": [ + 106, + 340, + 506, + 354 + ], + "score": 1.0, + "content": "Tao Yu, Rui Zhang, Michihiro Yasunaga, Yi Chern Tan, Xi Victoria Lin, Suyi Li, Irene Li Heyang Er,", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 115, + 351, + 506, + 366 + ], + "spans": [ + { + "bbox": [ + 115, + 351, + 506, + 366 + ], + "score": 1.0, + "content": "Bo Pang, Tao Chen, Emily Ji, Shreya Dixit, David Proctor, Sungrok Shim, Vincent Zhang", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 116, + 363, + 505, + 375 + ], + "spans": [ + { + "bbox": [ + 116, + 363, + 505, + 375 + ], + "score": 1.0, + "content": "Jonathan Kraft, Caiming Xiong, Richard Socher, and Dragomir Radev. Sparc: Cross-domain", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 115, + 373, + 506, + 389 + ], + "spans": [ + { + "bbox": [ + 115, + 373, + 506, + 389 + ], + "score": 1.0, + "content": "semantic parsing in context. In Proceedings of the 57th Annual Meeting of the Association for", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 116, + 385, + 494, + 399 + ], + "spans": [ + { + "bbox": [ + 116, + 385, + 494, + 399 + ], + "score": 1.0, + "content": "Computational Linguistics, Florence, Italy, 2019b. Association for Computational Linguistics.", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 22, + "bbox_fs": [ + 106, + 340, + 506, + 399 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 404, + 505, + 438 + ], + "lines": [ + { + "bbox": [ + 106, + 404, + 505, + 416 + ], + "spans": [ + { + "bbox": [ + 106, + 404, + 505, + 416 + ], + "score": 1.0, + "content": "Jian-Guo Zhang, Kazuma Hashimoto, Chien-Sheng Wu, Yao Wan, Philip S Yu, Richard Socher, and", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 117, + 415, + 504, + 427 + ], + "spans": [ + { + "bbox": [ + 117, + 415, + 504, + 427 + ], + "score": 1.0, + "content": "Caiming Xiong. Find or classify? dual strategy for slot-value predictions on multi-domain dialog", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 115, + 427, + 342, + 438 + ], + "spans": [ + { + "bbox": [ + 115, + 427, + 342, + 438 + ], + "score": 1.0, + "content": "state tracking. arXiv preprint arXiv:1910.03544, 2019a.", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 26, + "bbox_fs": [ + 106, + 404, + 505, + 438 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 444, + 504, + 468 + ], + "lines": [ + { + "bbox": [ + 105, + 444, + 505, + 457 + ], + "spans": [ + { + "bbox": [ + 105, + 444, + 505, + 457 + ], + "score": 1.0, + "content": "Jingqing Zhang, Yao Zhao, Mohammad Saleh, and Peter J Liu. Pegasus: Pre-training with extracted", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 115, + 456, + 467, + 469 + ], + "spans": [ + { + "bbox": [ + 115, + 456, + 467, + 469 + ], + "score": 1.0, + "content": "gap-sentences for abstractive summarization. arXiv preprint arXiv:1912.08777, 2019b.", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 28.5, + "bbox_fs": [ + 105, + 444, + 505, + 469 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 474, + 505, + 530 + ], + "lines": [ + { + "bbox": [ + 105, + 473, + 506, + 489 + ], + "spans": [ + { + "bbox": [ + 105, + 473, + 506, + 489 + ], + "score": 1.0, + "content": "Rui Zhang, Tao Yu, He Yang Er, Sungrok Shim, Eric Xue, Xi Victoria Lin, Tianze Shi, Caiming", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 116, + 486, + 505, + 498 + ], + "spans": [ + { + "bbox": [ + 116, + 486, + 505, + 498 + ], + "score": 1.0, + "content": "Xiong, Richard Socher, and Dragomir Radev. Editing-based sql query generation for cross-domain", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 116, + 497, + 505, + 509 + ], + "spans": [ + { + "bbox": [ + 116, + 497, + 505, + 509 + ], + "score": 1.0, + "content": "context-dependent questions. In Proceedings of the 2019 Conference on Empirical Methods", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 115, + 506, + 506, + 522 + ], + "spans": [ + { + "bbox": [ + 115, + 506, + 506, + 522 + ], + "score": 1.0, + "content": "in Natural Language Processing and 9th International Joint Conference on Natural Language", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 116, + 519, + 369, + 531 + ], + "spans": [ + { + "bbox": [ + 116, + 519, + 369, + 531 + ], + "score": 1.0, + "content": "Processing. Association for Computational Linguistics, 2019c.", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 32, + "bbox_fs": [ + 105, + 473, + 506, + 531 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 537, + 504, + 572 + ], + "lines": [ + { + "bbox": [ + 106, + 536, + 506, + 551 + ], + "spans": [ + { + "bbox": [ + 106, + 536, + 506, + 551 + ], + "score": 1.0, + "content": "Yizhe Zhang, Siqi Sun, Michel Galley, Yen-Chun Chen, Chris Brockett, Xiang Gao, Jianfeng Gao,", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 116, + 549, + 505, + 561 + ], + "spans": [ + { + "bbox": [ + 116, + 549, + 505, + 561 + ], + "score": 1.0, + "content": "Jingjing Liu, and Bill Dolan. Dialogpt: Large-scale generative pre-training for conversational", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 115, + 560, + 352, + 572 + ], + "spans": [ + { + "bbox": [ + 115, + 560, + 352, + 572 + ], + "score": 1.0, + "content": "response generation. In ACL, system demonstration, 2020.", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 36, + "bbox_fs": [ + 106, + 536, + 506, + 572 + ] + }, + { + "type": "text", + "bbox": [ + 105, + 578, + 504, + 601 + ], + "lines": [ + { + "bbox": [ + 106, + 577, + 505, + 592 + ], + "spans": [ + { + "bbox": [ + 106, + 577, + 505, + 592 + ], + "score": 1.0, + "content": "Victor Zhong, Caiming Xiong, and Richard Socher. Seq2sql: Generating structured queries from", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 116, + 590, + 429, + 602 + ], + "spans": [ + { + "bbox": [ + 116, + 590, + 429, + 602 + ], + "score": 1.0, + "content": "natural language using reinforcement learning. CoRR, abs/1709.00103, 2017.", + "type": "text" + } + ], + "index": 39 + } + ], + "index": 38.5, + "bbox_fs": [ + 106, + 577, + 505, + 602 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 608, + 505, + 642 + ], + "lines": [ + { + "bbox": [ + 106, + 608, + 505, + 621 + ], + "spans": [ + { + "bbox": [ + 106, + 608, + 505, + 621 + ], + "score": 1.0, + "content": "Victor Zhong, M. Lewis, Sida I. Wang, and Luke Zettlemoyer. Grounded adaptation for zero-shot", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 115, + 618, + 505, + 633 + ], + "spans": [ + { + "bbox": [ + 115, + 618, + 505, + 633 + ], + "score": 1.0, + "content": "executable semantic parsing. The 2020 Conference on Empirical Methods in Natural Language", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 116, + 630, + 190, + 643 + ], + "spans": [ + { + "bbox": [ + 116, + 630, + 190, + 643 + ], + "score": 1.0, + "content": "Processing, 2020.", + "type": "text" + } + ], + "index": 42 + } + ], + "index": 41, + "bbox_fs": [ + 106, + 608, + 505, + 643 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "table", + "bbox": [ + 163, + 109, + 448, + 166 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 108, + 81, + 232, + 94 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 79, + 232, + 96 + ], + "spans": [ + { + "bbox": [ + 105, + 79, + 232, + 96 + ], + "score": 1.0, + "content": "A DETAILED RESULTS", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "table_body", + "bbox": [ + 163, + 109, + 448, + 166 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 163, + 109, + 448, + 166 + ], + "spans": [ + { + "bbox": [ + 163, + 109, + 448, + 166 + ], + "score": 0.976, + "html": "
QMIMQ1Q2Q3Q4Q5
RAT-SQL + BERT48.419.154.648.447.543.931.0
+RoBERTa50.119.359.750.946.346.532.4
+ SCoRE52.122.060.853.047.549.132.4
", + "type": "table", + "image_path": "2be0e22c16c18e37572d989bbfe99768620e7ba4a912eeb6259473134ca8366e.jpg" + } + ] + } + ], + "index": 2, + "virtual_lines": [ + { + "bbox": [ + 163, + 109, + 448, + 128.0 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 163, + 128.0, + 448, + 147.0 + ], + "spans": [], + "index": 2 + }, + { + "bbox": [ + 163, + 147.0, + 448, + 166.0 + ], + "spans": [], + "index": 3 + } + ] + } + ], + "index": 1.0 + }, + { + "type": "table", + "bbox": [ + 171, + 212, + 440, + 322 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 107, + 176, + 503, + 198 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 104, + 174, + 505, + 189 + ], + "spans": [ + { + "bbox": [ + 104, + 174, + 326, + 189 + ], + "score": 1.0, + "content": "Table 10: Detailed results of COSQL on the dev set.", + "type": "text" + }, + { + "bbox": [ + 326, + 176, + 338, + 187 + ], + "score": 0.87, + "content": "\\mathrm { Q } _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 339, + 174, + 429, + 189 + ], + "score": 1.0, + "content": "is the accuracy of the", + "type": "text" + }, + { + "bbox": [ + 430, + 175, + 441, + 186 + ], + "score": 0.84, + "content": "i ^ { \\mathrm { { t h } } }", + "type": "inline_equation" + }, + { + "bbox": [ + 441, + 174, + 505, + 189 + ], + "score": 1.0, + "content": "question in the", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 187, + 162, + 199 + ], + "spans": [ + { + "bbox": [ + 105, + 187, + 162, + 199 + ], + "score": 1.0, + "content": "conversation.", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 4.5 + }, + { + "type": "table_body", + "bbox": [ + 171, + 212, + 440, + 322 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 171, + 212, + 440, + 322 + ], + "spans": [ + { + "bbox": [ + 171, + 212, + 440, + 322 + ], + "score": 0.978, + "html": "
QMIMQ1Q2Q3
Wang et al. (2019)51.022.068.348.038.5
+RoBERTa62.833.277.261.752.1
+SCoRE65.438.578.465.355.1
Few-Shot (10% training data)
Wang et al. (2019)
+RoBERTa53.321.271.052.536.6
+SCoRE57.126.774.656.740.7
", + "type": "table", + "image_path": "01fc24a2b385c574350218243b5aba2cc4e300a8954f4e0fc025ad91d9553d1b.jpg" + } + ] + } + ], + "index": 7, + "virtual_lines": [ + { + "bbox": [ + 171, + 212, + 440, + 248.66666666666666 + ], + "spans": [], + "index": 6 + }, + { + "bbox": [ + 171, + 248.66666666666666, + 440, + 285.3333333333333 + ], + "spans": [], + "index": 7 + }, + { + "bbox": [ + 171, + 285.3333333333333, + 440, + 322.0 + ], + "spans": [], + "index": 8 + } + ] + }, + { + "type": "table_footnote", + "bbox": [ + 105, + 331, + 503, + 354 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 104, + 330, + 505, + 345 + ], + "spans": [ + { + "bbox": [ + 104, + 330, + 320, + 345 + ], + "score": 1.0, + "content": "Table 11: Detailed results of SQA on the test set.", + "type": "text" + }, + { + "bbox": [ + 320, + 332, + 333, + 343 + ], + "score": 0.87, + "content": "\\mathrm { Q } _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 333, + 330, + 428, + 345 + ], + "score": 1.0, + "content": "is the accuracy of the", + "type": "text" + }, + { + "bbox": [ + 428, + 331, + 439, + 342 + ], + "score": 0.85, + "content": "i ^ { \\mathrm { { t h } } }", + "type": "inline_equation" + }, + { + "bbox": [ + 439, + 330, + 505, + 345 + ], + "score": 1.0, + "content": "question in the", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 106, + 343, + 161, + 353 + ], + "spans": [ + { + "bbox": [ + 106, + 343, + 161, + 353 + ], + "score": 1.0, + "content": "conversation.", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 9.5 + } + ], + "index": 7 + }, + { + "type": "title", + "bbox": [ + 107, + 376, + 338, + 390 + ], + "lines": [ + { + "bbox": [ + 104, + 375, + 339, + 391 + ], + "spans": [ + { + "bbox": [ + 104, + 375, + 339, + 391 + ], + "score": 1.0, + "content": "B SYNTHESIZED EXAMPLES & TEMPLATES", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 11 + }, + { + "type": "table", + "bbox": [ + 108, + 434, + 505, + 576 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 107, + 401, + 504, + 424 + ], + "group_id": 2, + "lines": [ + { + "bbox": [ + 105, + 401, + 505, + 415 + ], + "spans": [ + { + "bbox": [ + 105, + 401, + 505, + 415 + ], + "score": 1.0, + "content": "Table 12 shows an example of the synthesized question-SQL pairs and their corresponding templates", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 413, + 178, + 424 + ], + "spans": [ + { + "bbox": [ + 105, + 413, + 178, + 424 + ], + "score": 1.0, + "content": "in our grammars.", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 12.5 + }, + { + "type": "table_body", + "bbox": [ + 108, + 434, + 505, + 576 + ], + "group_id": 2, + "lines": [ + { + "bbox": [ + 108, + 434, + 505, + 576 + ], + "spans": [ + { + "bbox": [ + 108, + 434, + 505, + 576 + ], + "score": 0.982, + "html": "
Turn #Question-SQL TemplateSynthesized Question-SQL
1"Find the number of TABLEO with COLUMNO OPO VALUE0" SELECT COUNT(*)ORDER BY COLUMNO OPO VALUEO“Find the number of football team with team hometown is not murrieta,california?" SELECT COUNT(*)WHERE TEAM_HOMETOWN !=“MURRIETA, CALIFORNIA"
2“Can you give me their COLUMN1?” TCS: REPLACE(SELECT.COLUMNO), DEL(SELECT.AGG)“Can you give me their football team player?” SELECTFOOTBALL_TEAM_PLAYERWHERETEAM_HOMETOWN !=“MURRIETA,CALIFORNIA”
3“How about only show those with AsO cOL- UMN2?” TCS: ADD(ORDERBY_ASO.COLUMN2)“How about only show those with the largest age?” SELECTFOOTBALL_TEAM_PLAYER WHERE TEAM_HOMETOWN !="MURRIETA,CALIFORNIA”ORDER BY AGE DESC LIMIT1
4“AS1?” TCS: REPLACE(ORDERBY_AS1.COLUMN2)“The smallest?” SELECTFOOTBALL_TEAM_PLAYER WHERE TEAM_HOMETOWN !="MURRIETA,CALIFORNIA”ORDER BY AGE AS LIMIT1
", + "type": "table", + "image_path": "2dffd917ab37f2ab75fe4dfc717049dfcc7bf65a680f06ac0a1c5fc8e5babd11.jpg" + } + ] + } + ], + "index": 15, + "virtual_lines": [ + { + "bbox": [ + 108, + 434, + 505, + 481.3333333333333 + ], + "spans": [], + "index": 14 + }, + { + "bbox": [ + 108, + 481.3333333333333, + 505, + 528.6666666666666 + ], + "spans": [], + "index": 15 + }, + { + "bbox": [ + 108, + 528.6666666666666, + 505, + 576.0 + ], + "spans": [], + "index": 16 + } + ] + }, + { + "type": "table_caption", + "bbox": [ + 169, + 586, + 441, + 598 + ], + "group_id": 2, + "lines": [ + { + "bbox": [ + 169, + 585, + 442, + 600 + ], + "spans": [ + { + "bbox": [ + 169, + 585, + 442, + 600 + ], + "score": 1.0, + "content": "Table 12: An example of synthetic conversational text-to-SQL data.", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 17 + } + ], + "index": 15 + }, + { + "type": "title", + "bbox": [ + 108, + 620, + 269, + 633 + ], + "lines": [ + { + "bbox": [ + 105, + 618, + 270, + 635 + ], + "spans": [ + { + "bbox": [ + 105, + 618, + 270, + 635 + ], + "score": 1.0, + "content": "C IMPLEMENTATION DETAILS", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 18 + }, + { + "type": "title", + "bbox": [ + 107, + 644, + 165, + 657 + ], + "lines": [ + { + "bbox": [ + 105, + 644, + 167, + 658 + ], + "spans": [ + { + "bbox": [ + 105, + 644, + 167, + 658 + ], + "score": 1.0, + "content": "C.1 SCORE", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 19 + }, + { + "type": "text", + "bbox": [ + 106, + 665, + 506, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 666, + 506, + 678 + ], + "spans": [ + { + "bbox": [ + 106, + 666, + 424, + 678 + ], + "score": 1.0, + "content": "For pre-training SCORE on synthesized text-to-SQL data, we use ROBERTA", + "type": "text" + }, + { + "bbox": [ + 425, + 667, + 441, + 678 + ], + "score": 0.7, + "content": "_ \\mathrm { l a r g e }", + "type": "inline_equation" + }, + { + "bbox": [ + 441, + 666, + 506, + 678 + ], + "score": 1.0, + "content": "and pre-train it", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 676, + 505, + 691 + ], + "spans": [ + { + "bbox": [ + 105, + 676, + 505, + 691 + ], + "score": 1.0, + "content": "with batch size 12, gradient accumulation step 2, and maximum length 248. We use a learning", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 687, + 506, + 701 + ], + "spans": [ + { + "bbox": [ + 105, + 687, + 506, + 701 + ], + "score": 1.0, + "content": "rate 1e-5 and gradually reduce the learning rate without a warm-up period using Adam (Kingma", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 104, + 698, + 506, + 712 + ], + "spans": [ + { + "bbox": [ + 104, + 698, + 237, + 712 + ], + "score": 1.0, + "content": "& Ba, 2014) with epsilon 1e-8.", + "type": "text" + }, + { + "bbox": [ + 238, + 699, + 277, + 710 + ], + "score": 0.36, + "content": "\\mathbf { B E R T _ { b a s e } }", + "type": "inline_equation" + }, + { + "bbox": [ + 278, + 698, + 506, + 712 + ], + "score": 1.0, + "content": "is used in pre-training SCORE on synthesized MWOZ", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 106, + 709, + 506, + 722 + ], + "spans": [ + { + "bbox": [ + 106, + 709, + 506, + 722 + ], + "score": 1.0, + "content": "data because it contains longer conversations. We set the maximum length to 512 and batch size 24.", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 106, + 721, + 506, + 732 + ], + "spans": [ + { + "bbox": [ + 106, + 721, + 506, + 732 + ], + "score": 1.0, + "content": "All SCORE are pre-trained for 30 epochs, which usually take less than half a day on 8 V100 GPUs.", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 22.5 + } + ], + "page_idx": 13, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 27, + 292, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 26, + 293, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 26, + 293, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2021", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 300, + 751, + 310, + 760 + ], + "lines": [ + { + "bbox": [ + 299, + 750, + 312, + 764 + ], + "spans": [ + { + "bbox": [ + 299, + 750, + 312, + 764 + ], + "score": 1.0, + "content": "", + "type": "text", + "height": 14, + "width": 13 + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "table", + "bbox": [ + 163, + 109, + 448, + 166 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 108, + 81, + 232, + 94 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 79, + 232, + 96 + ], + "spans": [ + { + "bbox": [ + 105, + 79, + 232, + 96 + ], + "score": 1.0, + "content": "A DETAILED RESULTS", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "table_body", + "bbox": [ + 163, + 109, + 448, + 166 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 163, + 109, + 448, + 166 + ], + "spans": [ + { + "bbox": [ + 163, + 109, + 448, + 166 + ], + "score": 0.976, + "html": "
QMIMQ1Q2Q3Q4Q5
RAT-SQL + BERT48.419.154.648.447.543.931.0
+RoBERTa50.119.359.750.946.346.532.4
+ SCoRE52.122.060.853.047.549.132.4
", + "type": "table", + "image_path": "2be0e22c16c18e37572d989bbfe99768620e7ba4a912eeb6259473134ca8366e.jpg" + } + ] + } + ], + "index": 2, + "virtual_lines": [ + { + "bbox": [ + 163, + 109, + 448, + 128.0 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 163, + 128.0, + 448, + 147.0 + ], + "spans": [], + "index": 2 + }, + { + "bbox": [ + 163, + 147.0, + 448, + 166.0 + ], + "spans": [], + "index": 3 + } + ] + } + ], + "index": 1.0 + }, + { + "type": "table", + "bbox": [ + 171, + 212, + 440, + 322 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 107, + 176, + 503, + 198 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 104, + 174, + 505, + 189 + ], + "spans": [ + { + "bbox": [ + 104, + 174, + 326, + 189 + ], + "score": 1.0, + "content": "Table 10: Detailed results of COSQL on the dev set.", + "type": "text" + }, + { + "bbox": [ + 326, + 176, + 338, + 187 + ], + "score": 0.87, + "content": "\\mathrm { Q } _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 339, + 174, + 429, + 189 + ], + "score": 1.0, + "content": "is the accuracy of the", + "type": "text" + }, + { + "bbox": [ + 430, + 175, + 441, + 186 + ], + "score": 0.84, + "content": "i ^ { \\mathrm { { t h } } }", + "type": "inline_equation" + }, + { + "bbox": [ + 441, + 174, + 505, + 189 + ], + "score": 1.0, + "content": "question in the", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 187, + 162, + 199 + ], + "spans": [ + { + "bbox": [ + 105, + 187, + 162, + 199 + ], + "score": 1.0, + "content": "conversation.", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 4.5 + }, + { + "type": "table_body", + "bbox": [ + 171, + 212, + 440, + 322 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 171, + 212, + 440, + 322 + ], + "spans": [ + { + "bbox": [ + 171, + 212, + 440, + 322 + ], + "score": 0.978, + "html": "
QMIMQ1Q2Q3
Wang et al. (2019)51.022.068.348.038.5
+RoBERTa62.833.277.261.752.1
+SCoRE65.438.578.465.355.1
Few-Shot (10% training data)
Wang et al. (2019)
+RoBERTa53.321.271.052.536.6
+SCoRE57.126.774.656.740.7
", + "type": "table", + "image_path": "01fc24a2b385c574350218243b5aba2cc4e300a8954f4e0fc025ad91d9553d1b.jpg" + } + ] + } + ], + "index": 7, + "virtual_lines": [ + { + "bbox": [ + 171, + 212, + 440, + 248.66666666666666 + ], + "spans": [], + "index": 6 + }, + { + "bbox": [ + 171, + 248.66666666666666, + 440, + 285.3333333333333 + ], + "spans": [], + "index": 7 + }, + { + "bbox": [ + 171, + 285.3333333333333, + 440, + 322.0 + ], + "spans": [], + "index": 8 + } + ] + }, + { + "type": "table_footnote", + "bbox": [ + 105, + 331, + 503, + 354 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 104, + 330, + 505, + 345 + ], + "spans": [ + { + "bbox": [ + 104, + 330, + 320, + 345 + ], + "score": 1.0, + "content": "Table 11: Detailed results of SQA on the test set.", + "type": "text" + }, + { + "bbox": [ + 320, + 332, + 333, + 343 + ], + "score": 0.87, + "content": "\\mathrm { Q } _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 333, + 330, + 428, + 345 + ], + "score": 1.0, + "content": "is the accuracy of the", + "type": "text" + }, + { + "bbox": [ + 428, + 331, + 439, + 342 + ], + "score": 0.85, + "content": "i ^ { \\mathrm { { t h } } }", + "type": "inline_equation" + }, + { + "bbox": [ + 439, + 330, + 505, + 345 + ], + "score": 1.0, + "content": "question in the", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 106, + 343, + 161, + 353 + ], + "spans": [ + { + "bbox": [ + 106, + 343, + 161, + 353 + ], + "score": 1.0, + "content": "conversation.", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 9.5 + } + ], + "index": 7 + }, + { + "type": "title", + "bbox": [ + 107, + 376, + 338, + 390 + ], + "lines": [ + { + "bbox": [ + 104, + 375, + 339, + 391 + ], + "spans": [ + { + "bbox": [ + 104, + 375, + 339, + 391 + ], + "score": 1.0, + "content": "B SYNTHESIZED EXAMPLES & TEMPLATES", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 11 + }, + { + "type": "table", + "bbox": [ + 108, + 434, + 505, + 576 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 107, + 401, + 504, + 424 + ], + "group_id": 2, + "lines": [ + { + "bbox": [ + 105, + 401, + 505, + 415 + ], + "spans": [ + { + "bbox": [ + 105, + 401, + 505, + 415 + ], + "score": 1.0, + "content": "Table 12 shows an example of the synthesized question-SQL pairs and their corresponding templates", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 413, + 178, + 424 + ], + "spans": [ + { + "bbox": [ + 105, + 413, + 178, + 424 + ], + "score": 1.0, + "content": "in our grammars.", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 12.5 + }, + { + "type": "table_body", + "bbox": [ + 108, + 434, + 505, + 576 + ], + "group_id": 2, + "lines": [ + { + "bbox": [ + 108, + 434, + 505, + 576 + ], + "spans": [ + { + "bbox": [ + 108, + 434, + 505, + 576 + ], + "score": 0.982, + "html": "
Turn #Question-SQL TemplateSynthesized Question-SQL
1"Find the number of TABLEO with COLUMNO OPO VALUE0" SELECT COUNT(*)ORDER BY COLUMNO OPO VALUEO“Find the number of football team with team hometown is not murrieta,california?" SELECT COUNT(*)WHERE TEAM_HOMETOWN !=“MURRIETA, CALIFORNIA"
2“Can you give me their COLUMN1?” TCS: REPLACE(SELECT.COLUMNO), DEL(SELECT.AGG)“Can you give me their football team player?” SELECTFOOTBALL_TEAM_PLAYERWHERETEAM_HOMETOWN !=“MURRIETA,CALIFORNIA”
3“How about only show those with AsO cOL- UMN2?” TCS: ADD(ORDERBY_ASO.COLUMN2)“How about only show those with the largest age?” SELECTFOOTBALL_TEAM_PLAYER WHERE TEAM_HOMETOWN !="MURRIETA,CALIFORNIA”ORDER BY AGE DESC LIMIT1
4“AS1?” TCS: REPLACE(ORDERBY_AS1.COLUMN2)“The smallest?” SELECTFOOTBALL_TEAM_PLAYER WHERE TEAM_HOMETOWN !="MURRIETA,CALIFORNIA”ORDER BY AGE AS LIMIT1
", + "type": "table", + "image_path": "2dffd917ab37f2ab75fe4dfc717049dfcc7bf65a680f06ac0a1c5fc8e5babd11.jpg" + } + ] + } + ], + "index": 15, + "virtual_lines": [ + { + "bbox": [ + 108, + 434, + 505, + 481.3333333333333 + ], + "spans": [], + "index": 14 + }, + { + "bbox": [ + 108, + 481.3333333333333, + 505, + 528.6666666666666 + ], + "spans": [], + "index": 15 + }, + { + "bbox": [ + 108, + 528.6666666666666, + 505, + 576.0 + ], + "spans": [], + "index": 16 + } + ] + }, + { + "type": "table_caption", + "bbox": [ + 169, + 586, + 441, + 598 + ], + "group_id": 2, + "lines": [ + { + "bbox": [ + 169, + 585, + 442, + 600 + ], + "spans": [ + { + "bbox": [ + 169, + 585, + 442, + 600 + ], + "score": 1.0, + "content": "Table 12: An example of synthetic conversational text-to-SQL data.", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 17 + } + ], + "index": 15 + }, + { + "type": "title", + "bbox": [ + 108, + 620, + 269, + 633 + ], + "lines": [ + { + "bbox": [ + 105, + 618, + 270, + 635 + ], + "spans": [ + { + "bbox": [ + 105, + 618, + 270, + 635 + ], + "score": 1.0, + "content": "C IMPLEMENTATION DETAILS", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 18 + }, + { + "type": "title", + "bbox": [ + 107, + 644, + 165, + 657 + ], + "lines": [ + { + "bbox": [ + 105, + 644, + 167, + 658 + ], + "spans": [ + { + "bbox": [ + 105, + 644, + 167, + 658 + ], + "score": 1.0, + "content": "C.1 SCORE", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 19 + }, + { + "type": "text", + "bbox": [ + 106, + 665, + 506, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 666, + 506, + 678 + ], + "spans": [ + { + "bbox": [ + 106, + 666, + 424, + 678 + ], + "score": 1.0, + "content": "For pre-training SCORE on synthesized text-to-SQL data, we use ROBERTA", + "type": "text" + }, + { + "bbox": [ + 425, + 667, + 441, + 678 + ], + "score": 0.7, + "content": "_ \\mathrm { l a r g e }", + "type": "inline_equation" + }, + { + "bbox": [ + 441, + 666, + 506, + 678 + ], + "score": 1.0, + "content": "and pre-train it", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 676, + 505, + 691 + ], + "spans": [ + { + "bbox": [ + 105, + 676, + 505, + 691 + ], + "score": 1.0, + "content": "with batch size 12, gradient accumulation step 2, and maximum length 248. We use a learning", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 687, + 506, + 701 + ], + "spans": [ + { + "bbox": [ + 105, + 687, + 506, + 701 + ], + "score": 1.0, + "content": "rate 1e-5 and gradually reduce the learning rate without a warm-up period using Adam (Kingma", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 104, + 698, + 506, + 712 + ], + "spans": [ + { + "bbox": [ + 104, + 698, + 237, + 712 + ], + "score": 1.0, + "content": "& Ba, 2014) with epsilon 1e-8.", + "type": "text" + }, + { + "bbox": [ + 238, + 699, + 277, + 710 + ], + "score": 0.36, + "content": "\\mathbf { B E R T _ { b a s e } }", + "type": "inline_equation" + }, + { + "bbox": [ + 278, + 698, + 506, + 712 + ], + "score": 1.0, + "content": "is used in pre-training SCORE on synthesized MWOZ", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 106, + 709, + 506, + 722 + ], + "spans": [ + { + "bbox": [ + 106, + 709, + 506, + 722 + ], + "score": 1.0, + "content": "data because it contains longer conversations. We set the maximum length to 512 and batch size 24.", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 106, + 721, + 506, + 732 + ], + "spans": [ + { + "bbox": [ + 106, + 721, + 506, + 732 + ], + "score": 1.0, + "content": "All SCORE are pre-trained for 30 epochs, which usually take less than half a day on 8 V100 GPUs.", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 22.5, + "bbox_fs": [ + 104, + 666, + 506, + 732 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 107, + 82, + 504, + 116 + ], + "lines": [ + { + "bbox": [ + 105, + 82, + 506, + 95 + ], + "spans": [ + { + "bbox": [ + 105, + 82, + 506, + 95 + ], + "score": 1.0, + "content": "We experimented with SCORE pre-trained for 5, 10, and 30 epochs and found that most of the best", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 93, + 506, + 106 + ], + "spans": [ + { + "bbox": [ + 105, + 93, + 506, + 106 + ], + "score": 1.0, + "content": "downstream performances occur when base systems incorporate with SCORE pre-trained for less", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 106, + 105, + 478, + 117 + ], + "spans": [ + { + "bbox": [ + 106, + 105, + 478, + 117 + ], + "score": 1.0, + "content": "than 10 epochs. Our implementation is based on the Transformers library (Wolf et al., 2019).", + "type": "text" + } + ], + "index": 2 + } + ], + "index": 1 + }, + { + "type": "title", + "bbox": [ + 107, + 129, + 197, + 141 + ], + "lines": [ + { + "bbox": [ + 106, + 128, + 198, + 142 + ], + "spans": [ + { + "bbox": [ + 106, + 128, + 198, + 142 + ], + "score": 1.0, + "content": "C.2 BASE MODELS", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 3 + }, + { + "type": "text", + "bbox": [ + 107, + 150, + 504, + 183 + ], + "lines": [ + { + "bbox": [ + 105, + 150, + 506, + 163 + ], + "spans": [ + { + "bbox": [ + 105, + 150, + 408, + 163 + ], + "score": 1.0, + "content": "RAT-SQL: For a fair comparison, all RAT-SQL experiments are trained for", + "type": "text" + }, + { + "bbox": [ + 408, + 151, + 425, + 160 + ], + "score": 0.41, + "content": "4 0 \\mathrm { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 425, + 150, + 506, + 163 + ], + "score": 1.0, + "content": "steps. We adopt the", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 106, + 162, + 506, + 174 + ], + "spans": [ + { + "bbox": [ + 106, + 162, + 506, + 174 + ], + "score": 1.0, + "content": "same hyperparameters as Shaw et al. (2018) except for learning rates. We find that learning rates of", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 172, + 408, + 184 + ], + "spans": [ + { + "bbox": [ + 105, + 172, + 408, + 184 + ], + "score": 1.0, + "content": "1e-4 and 1e-5 for RAT and BERT respectively produce more stable results.", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 5 + }, + { + "type": "text", + "bbox": [ + 107, + 189, + 505, + 234 + ], + "lines": [ + { + "bbox": [ + 105, + 189, + 506, + 202 + ], + "spans": [ + { + "bbox": [ + 105, + 189, + 506, + 202 + ], + "score": 1.0, + "content": "TripPy: We use the same hyperparameters for training TripPy on MWOZ as in (Heck et al., 2020)", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 200, + 505, + 212 + ], + "spans": [ + { + "bbox": [ + 105, + 200, + 505, + 212 + ], + "score": 1.0, + "content": "except we train it for 25 epochs (as opposed to 10 epochs as reported in (Heck et al., 2020)). When", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 211, + 505, + 224 + ], + "spans": [ + { + "bbox": [ + 105, + 211, + 390, + 224 + ], + "score": 1.0, + "content": "we train TripPy for 25 epochs, we get a new result that is higher (around", + "type": "text" + }, + { + "bbox": [ + 391, + 212, + 406, + 222 + ], + "score": 0.83, + "content": "2 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 406, + 211, + 505, + 224 + ], + "score": 1.0, + "content": ") than the one reported in", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 106, + 222, + 475, + 234 + ], + "spans": [ + { + "bbox": [ + 106, + 222, + 475, + 234 + ], + "score": 1.0, + "content": "(Heck et al., 2020). Similarly, when we train TripPy with SCORE, we train it for 25 epochs.", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 8.5 + }, + { + "type": "text", + "bbox": [ + 105, + 239, + 504, + 261 + ], + "lines": [ + { + "bbox": [ + 105, + 238, + 505, + 252 + ], + "spans": [ + { + "bbox": [ + 105, + 238, + 505, + 252 + ], + "score": 1.0, + "content": "SOM-DST: We use the same hyperparameters from Kim et al. (2020) for all SOM-DST experiments", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 250, + 156, + 262 + ], + "spans": [ + { + "bbox": [ + 105, + 250, + 156, + 262 + ], + "score": 1.0, + "content": "on MWOZ.", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 11.5 + }, + { + "type": "text", + "bbox": [ + 106, + 266, + 505, + 355 + ], + "lines": [ + { + "bbox": [ + 105, + 266, + 506, + 280 + ], + "spans": [ + { + "bbox": [ + 105, + 266, + 506, + 280 + ], + "score": 1.0, + "content": "Wang et al. (2019): We use the same hyperparameters from Wang et al. (2019) for SQA experiments.", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 104, + 277, + 505, + 291 + ], + "spans": [ + { + "bbox": [ + 104, + 277, + 505, + 291 + ], + "score": 1.0, + "content": "Note that Herzig et al. (2020) outperform Wang et al. (2019) on SQA because (1) they don’t generate", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 289, + 505, + 302 + ], + "spans": [ + { + "bbox": [ + 105, + 289, + 505, + 302 + ], + "score": 1.0, + "content": "logic forms but select table cells and applying aggregation operators. Wang et al. (2019) generate", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 104, + 299, + 506, + 314 + ], + "spans": [ + { + "bbox": [ + 104, + 299, + 400, + 314 + ], + "score": 1.0, + "content": "latent programs, yet the grammar of the latent program can only cover", + "type": "text" + }, + { + "bbox": [ + 400, + 300, + 420, + 311 + ], + "score": 0.87, + "content": "87 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 420, + 299, + 506, + 314 + ], + "score": 1.0, + "content": "questions. (2) They", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 311, + 506, + 324 + ], + "spans": [ + { + "bbox": [ + 105, + 311, + 506, + 324 + ], + "score": 1.0, + "content": "reduce the search space by reusing the previous question answer. We choose Wang et al. (2019) as", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 106, + 322, + 506, + 334 + ], + "spans": [ + { + "bbox": [ + 106, + 322, + 506, + 334 + ], + "score": 1.0, + "content": "our base model because generating symbolic programs has many practical advantages (even at a", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 333, + 506, + 346 + ], + "spans": [ + { + "bbox": [ + 105, + 333, + 167, + 346 + ], + "score": 1.0, + "content": "cost of around", + "type": "text" + }, + { + "bbox": [ + 167, + 333, + 182, + 343 + ], + "score": 0.85, + "content": "1 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 182, + 333, + 506, + 346 + ], + "score": 1.0, + "content": "accuracy drop), such as showing interpretable reasoning steps, enabling formal", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 344, + 371, + 356 + ], + "spans": [ + { + "bbox": [ + 105, + 344, + 371, + 356 + ], + "score": 1.0, + "content": "reasoning, and operationalization without GPU/TPU accelerators.", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 16.5 + }, + { + "type": "title", + "bbox": [ + 108, + 371, + 238, + 384 + ], + "lines": [ + { + "bbox": [ + 105, + 369, + 240, + 386 + ], + "spans": [ + { + "bbox": [ + 105, + 369, + 240, + 386 + ], + "score": 1.0, + "content": "D PRE-TRAINING COST", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 21 + }, + { + "type": "text", + "bbox": [ + 107, + 396, + 297, + 506 + ], + "lines": [ + { + "bbox": [ + 106, + 396, + 297, + 408 + ], + "spans": [ + { + "bbox": [ + 106, + 396, + 297, + 408 + ], + "score": 1.0, + "content": "We test the performance of SCORE with respect", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 106, + 407, + 297, + 420 + ], + "spans": [ + { + "bbox": [ + 106, + 407, + 297, + 420 + ], + "score": 1.0, + "content": "to the number of pre-training epochs. Figure 3", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 106, + 419, + 298, + 430 + ], + "spans": [ + { + "bbox": [ + 106, + 419, + 298, + 430 + ], + "score": 1.0, + "content": "shows that the best performance of the down-", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 106, + 430, + 297, + 442 + ], + "spans": [ + { + "bbox": [ + 106, + 430, + 297, + 442 + ], + "score": 1.0, + "content": "stream tasks is usually achieved in early epochs,", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 440, + 297, + 452 + ], + "spans": [ + { + "bbox": [ + 105, + 440, + 297, + 452 + ], + "score": 1.0, + "content": "more specifically 5 for SPARC and COSQL and", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 450, + 297, + 464 + ], + "spans": [ + { + "bbox": [ + 105, + 450, + 297, + 464 + ], + "score": 1.0, + "content": "15 for MWOZ. Longer pre-training time does", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 106, + 462, + 297, + 474 + ], + "spans": [ + { + "bbox": [ + 106, + 462, + 297, + 474 + ], + "score": 1.0, + "content": "not improve or even hurts the performance. One", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 106, + 473, + 296, + 486 + ], + "spans": [ + { + "bbox": [ + 106, + 473, + 296, + 486 + ], + "score": 1.0, + "content": "possible reason is that longer pre-training makes", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 106, + 484, + 297, + 496 + ], + "spans": [ + { + "bbox": [ + 106, + 484, + 297, + 496 + ], + "score": 1.0, + "content": "SCORE overfit to the synthesized data whose", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 106, + 496, + 207, + 506 + ], + "spans": [ + { + "bbox": [ + 106, + 496, + 207, + 506 + ], + "score": 1.0, + "content": "utterances are unnatural.", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 26.5 + }, + { + "type": "image", + "bbox": [ + 304, + 399, + 504, + 497 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 304, + 399, + 504, + 497 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 304, + 399, + 504, + 497 + ], + "spans": [ + { + "bbox": [ + 304, + 399, + 504, + 497 + ], + "score": 0.958, + "type": "image", + "image_path": "f2adaf96d04bd8e302a16e86109313b4514940005cf18a41f431ec1e6bac564a.jpg" + } + ] + } + ], + "index": 35, + "virtual_lines": [ + { + "bbox": [ + 304, + 399, + 504, + 413.0 + ], + "spans": [], + "index": 32 + }, + { + "bbox": [ + 304, + 413.0, + 504, + 427.0 + ], + "spans": [], + "index": 33 + }, + { + "bbox": [ + 304, + 427.0, + 504, + 441.0 + ], + "spans": [], + "index": 34 + }, + { + "bbox": [ + 304, + 441.0, + 504, + 455.0 + ], + "spans": [], + "index": 35 + }, + { + "bbox": [ + 304, + 455.0, + 504, + 469.0 + ], + "spans": [], + "index": 36 + }, + { + "bbox": [ + 304, + 469.0, + 504, + 483.0 + ], + "spans": [], + "index": 37 + }, + { + "bbox": [ + 304, + 483.0, + 504, + 497.0 + ], + "spans": [], + "index": 38 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 322, + 509, + 486, + 520 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 321, + 507, + 487, + 523 + ], + "spans": [ + { + "bbox": [ + 321, + 507, + 487, + 523 + ], + "score": 1.0, + "content": "Figure 3: The effect of pre-training time.", + "type": "text" + } + ], + "index": 40 + } + ], + "index": 40 + } + ], + "index": 37.5 + }, + { + "type": "text", + "bbox": [ + 107, + 512, + 297, + 534 + ], + "lines": [ + { + "bbox": [ + 106, + 511, + 298, + 524 + ], + "spans": [ + { + "bbox": [ + 106, + 511, + 298, + 524 + ], + "score": 1.0, + "content": "As for the data, as shown in Table 5, even if", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 106, + 522, + 297, + 536 + ], + "spans": [ + { + "bbox": [ + 106, + 522, + 297, + 536 + ], + "score": 1.0, + "content": "SCORE is pre-trained with only a relatively", + "type": "text" + } + ], + "index": 41 + } + ], + "index": 40.0 + }, + { + "type": "text", + "bbox": [ + 107, + 534, + 506, + 567 + ], + "lines": [ + { + "bbox": [ + 105, + 534, + 505, + 546 + ], + "spans": [ + { + "bbox": [ + 105, + 534, + 505, + 546 + ], + "score": 1.0, + "content": "small amount of synthesized data (without the MLM loss), most of the tasks can achieve much", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 545, + 505, + 558 + ], + "spans": [ + { + "bbox": [ + 105, + 545, + 505, + 558 + ], + "score": 1.0, + "content": "higher performances. With a relatively smaller training corpus and shorter training time compared to", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 106, + 555, + 396, + 569 + ], + "spans": [ + { + "bbox": [ + 106, + 555, + 396, + 569 + ], + "score": 1.0, + "content": "other pre-trained language models, SCORE is efficient in time and data.", + "type": "text" + } + ], + "index": 44 + } + ], + "index": 43 + }, + { + "type": "title", + "bbox": [ + 108, + 584, + 244, + 596 + ], + "lines": [ + { + "bbox": [ + 105, + 583, + 245, + 598 + ], + "spans": [ + { + "bbox": [ + 105, + 583, + 245, + 598 + ], + "score": 1.0, + "content": "E ADDITIONAL RESULTS", + "type": "text" + } + ], + "index": 45 + } + ], + "index": 45 + }, + { + "type": "text", + "bbox": [ + 107, + 609, + 505, + 675 + ], + "lines": [ + { + "bbox": [ + 105, + 606, + 506, + 623 + ], + "spans": [ + { + "bbox": [ + 105, + 606, + 506, + 623 + ], + "score": 1.0, + "content": "Effect of TCS We ran the TCS only experiment on SPARC, and will add TCS only results (including", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 106, + 620, + 505, + 631 + ], + "spans": [ + { + "bbox": [ + 106, + 620, + 482, + 631 + ], + "score": 1.0, + "content": "for other tasks) to Table 5 in the final version. SCORE (TCS only) outperforms RoBERTa by", + "type": "text" + }, + { + "bbox": [ + 482, + 620, + 505, + 631 + ], + "score": 0.83, + "content": "2 . 4 \\%", + "type": "inline_equation" + } + ], + "index": 47 + }, + { + "bbox": [ + 106, + 631, + 506, + 644 + ], + "spans": [ + { + "bbox": [ + 106, + 631, + 304, + 644 + ], + "score": 1.0, + "content": "so far (note: training is still going on) on SPARC", + "type": "text" + }, + { + "bbox": [ + 304, + 631, + 331, + 642 + ], + "score": 0.82, + "content": "3 9 . 1 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 331, + 631, + 346, + 644 + ], + "score": 1.0, + "content": "vs.", + "type": "text" + }, + { + "bbox": [ + 346, + 631, + 373, + 642 + ], + "score": 0.83, + "content": "3 6 . 7 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 374, + 631, + 506, + 644 + ], + "score": 1.0, + "content": "). Also, as discussed in Section 4,", + "type": "text" + } + ], + "index": 48 + }, + { + "bbox": [ + 105, + 642, + 506, + 655 + ], + "spans": [ + { + "bbox": [ + 105, + 642, + 506, + 655 + ], + "score": 1.0, + "content": "we also provide a secondary evidence by testing the effectiveness of TCS on SPARC, COSQL, and", + "type": "text" + } + ], + "index": 49 + }, + { + "bbox": [ + 105, + 651, + 506, + 666 + ], + "spans": [ + { + "bbox": [ + 105, + 651, + 281, + 666 + ], + "score": 1.0, + "content": "SQA by adding TCS to CCS (CCS only vs.", + "type": "text" + }, + { + "bbox": [ + 282, + 653, + 325, + 663 + ], + "score": 0.68, + "content": "\\mathrm { C C S + T C S }", + "type": "inline_equation" + }, + { + "bbox": [ + 326, + 651, + 506, + 666 + ], + "score": 1.0, + "content": "), SCORE (with TCS) gains improvements of", + "type": "text" + } + ], + "index": 50 + }, + { + "bbox": [ + 106, + 663, + 344, + 677 + ], + "spans": [ + { + "bbox": [ + 106, + 664, + 128, + 675 + ], + "score": 0.83, + "content": "1 . 2 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 128, + 663, + 191, + 677 + ], + "score": 1.0, + "content": "on SPARC and", + "type": "text" + }, + { + "bbox": [ + 191, + 664, + 213, + 675 + ], + "score": 0.86, + "content": "0 . 8 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 214, + 663, + 282, + 677 + ], + "score": 1.0, + "content": "on COSQL, and", + "type": "text" + }, + { + "bbox": [ + 282, + 664, + 305, + 675 + ], + "score": 0.84, + "content": "4 . 4 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 305, + 663, + 344, + 677 + ], + "score": 1.0, + "content": "on SQA.", + "type": "text" + } + ], + "index": 51 + } + ], + "index": 48.5 + }, + { + "type": "text", + "bbox": [ + 107, + 687, + 504, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 688, + 506, + 700 + ], + "spans": [ + { + "bbox": [ + 106, + 688, + 506, + 700 + ], + "score": 1.0, + "content": "Incorporating Additional Examples Used in Synthetic Grammar Induction As we mentioned", + "type": "text" + } + ], + "index": 52 + }, + { + "bbox": [ + 106, + 699, + 506, + 711 + ], + "spans": [ + { + "bbox": [ + 106, + 699, + 506, + 711 + ], + "score": 1.0, + "content": "in Section 2.3, we used about 500 examples from SPARC to induce the grammar for data synthesis in", + "type": "text" + } + ], + "index": 53 + }, + { + "bbox": [ + 105, + 710, + 506, + 722 + ], + "spans": [ + { + "bbox": [ + 105, + 710, + 506, + 722 + ], + "score": 1.0, + "content": "pre-training. For a fair comparison, we also report the results of incorporating the additional SPARC", + "type": "text" + } + ], + "index": 54 + }, + { + "bbox": [ + 105, + 721, + 506, + 732 + ], + "spans": [ + { + "bbox": [ + 105, + 721, + 506, + 732 + ], + "score": 1.0, + "content": "examples in COSQL and SQA. More specifically, we directly concatenate the additional SPARC", + "type": "text" + } + ], + "index": 55 + } + ], + "index": 53.5 + } + ], + "page_idx": 14, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 108, + 27, + 292, + 37 + ], + "lines": [ + { + "bbox": [ + 105, + 25, + 293, + 39 + ], + "spans": [ + { + "bbox": [ + 105, + 25, + 293, + 39 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2021", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 300, + 751, + 310, + 760 + ], + "lines": [ + { + "bbox": [ + 299, + 750, + 312, + 764 + ], + "spans": [ + { + "bbox": [ + 299, + 750, + 312, + 764 + ], + "score": 1.0, + "content": "", + "type": "text", + "height": 14, + "width": 13 + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 107, + 82, + 504, + 116 + ], + "lines": [ + { + "bbox": [ + 105, + 82, + 506, + 95 + ], + "spans": [ + { + "bbox": [ + 105, + 82, + 506, + 95 + ], + "score": 1.0, + "content": "We experimented with SCORE pre-trained for 5, 10, and 30 epochs and found that most of the best", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 93, + 506, + 106 + ], + "spans": [ + { + "bbox": [ + 105, + 93, + 506, + 106 + ], + "score": 1.0, + "content": "downstream performances occur when base systems incorporate with SCORE pre-trained for less", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 106, + 105, + 478, + 117 + ], + "spans": [ + { + "bbox": [ + 106, + 105, + 478, + 117 + ], + "score": 1.0, + "content": "than 10 epochs. Our implementation is based on the Transformers library (Wolf et al., 2019).", + "type": "text" + } + ], + "index": 2 + } + ], + "index": 1, + "bbox_fs": [ + 105, + 82, + 506, + 117 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 129, + 197, + 141 + ], + "lines": [ + { + "bbox": [ + 106, + 128, + 198, + 142 + ], + "spans": [ + { + "bbox": [ + 106, + 128, + 198, + 142 + ], + "score": 1.0, + "content": "C.2 BASE MODELS", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 3 + }, + { + "type": "text", + "bbox": [ + 107, + 150, + 504, + 183 + ], + "lines": [ + { + "bbox": [ + 105, + 150, + 506, + 163 + ], + "spans": [ + { + "bbox": [ + 105, + 150, + 408, + 163 + ], + "score": 1.0, + "content": "RAT-SQL: For a fair comparison, all RAT-SQL experiments are trained for", + "type": "text" + }, + { + "bbox": [ + 408, + 151, + 425, + 160 + ], + "score": 0.41, + "content": "4 0 \\mathrm { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 425, + 150, + 506, + 163 + ], + "score": 1.0, + "content": "steps. We adopt the", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 106, + 162, + 506, + 174 + ], + "spans": [ + { + "bbox": [ + 106, + 162, + 506, + 174 + ], + "score": 1.0, + "content": "same hyperparameters as Shaw et al. (2018) except for learning rates. We find that learning rates of", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 172, + 408, + 184 + ], + "spans": [ + { + "bbox": [ + 105, + 172, + 408, + 184 + ], + "score": 1.0, + "content": "1e-4 and 1e-5 for RAT and BERT respectively produce more stable results.", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 5, + "bbox_fs": [ + 105, + 150, + 506, + 184 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 189, + 505, + 234 + ], + "lines": [ + { + "bbox": [ + 105, + 189, + 506, + 202 + ], + "spans": [ + { + "bbox": [ + 105, + 189, + 506, + 202 + ], + "score": 1.0, + "content": "TripPy: We use the same hyperparameters for training TripPy on MWOZ as in (Heck et al., 2020)", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 200, + 505, + 212 + ], + "spans": [ + { + "bbox": [ + 105, + 200, + 505, + 212 + ], + "score": 1.0, + "content": "except we train it for 25 epochs (as opposed to 10 epochs as reported in (Heck et al., 2020)). When", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 211, + 505, + 224 + ], + "spans": [ + { + "bbox": [ + 105, + 211, + 390, + 224 + ], + "score": 1.0, + "content": "we train TripPy for 25 epochs, we get a new result that is higher (around", + "type": "text" + }, + { + "bbox": [ + 391, + 212, + 406, + 222 + ], + "score": 0.83, + "content": "2 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 406, + 211, + 505, + 224 + ], + "score": 1.0, + "content": ") than the one reported in", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 106, + 222, + 475, + 234 + ], + "spans": [ + { + "bbox": [ + 106, + 222, + 475, + 234 + ], + "score": 1.0, + "content": "(Heck et al., 2020). Similarly, when we train TripPy with SCORE, we train it for 25 epochs.", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 8.5, + "bbox_fs": [ + 105, + 189, + 506, + 234 + ] + }, + { + "type": "text", + "bbox": [ + 105, + 239, + 504, + 261 + ], + "lines": [ + { + "bbox": [ + 105, + 238, + 505, + 252 + ], + "spans": [ + { + "bbox": [ + 105, + 238, + 505, + 252 + ], + "score": 1.0, + "content": "SOM-DST: We use the same hyperparameters from Kim et al. (2020) for all SOM-DST experiments", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 250, + 156, + 262 + ], + "spans": [ + { + "bbox": [ + 105, + 250, + 156, + 262 + ], + "score": 1.0, + "content": "on MWOZ.", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 11.5, + "bbox_fs": [ + 105, + 238, + 505, + 262 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 266, + 505, + 355 + ], + "lines": [ + { + "bbox": [ + 105, + 266, + 506, + 280 + ], + "spans": [ + { + "bbox": [ + 105, + 266, + 506, + 280 + ], + "score": 1.0, + "content": "Wang et al. (2019): We use the same hyperparameters from Wang et al. (2019) for SQA experiments.", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 104, + 277, + 505, + 291 + ], + "spans": [ + { + "bbox": [ + 104, + 277, + 505, + 291 + ], + "score": 1.0, + "content": "Note that Herzig et al. (2020) outperform Wang et al. (2019) on SQA because (1) they don’t generate", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 289, + 505, + 302 + ], + "spans": [ + { + "bbox": [ + 105, + 289, + 505, + 302 + ], + "score": 1.0, + "content": "logic forms but select table cells and applying aggregation operators. Wang et al. (2019) generate", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 104, + 299, + 506, + 314 + ], + "spans": [ + { + "bbox": [ + 104, + 299, + 400, + 314 + ], + "score": 1.0, + "content": "latent programs, yet the grammar of the latent program can only cover", + "type": "text" + }, + { + "bbox": [ + 400, + 300, + 420, + 311 + ], + "score": 0.87, + "content": "87 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 420, + 299, + 506, + 314 + ], + "score": 1.0, + "content": "questions. (2) They", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 311, + 506, + 324 + ], + "spans": [ + { + "bbox": [ + 105, + 311, + 506, + 324 + ], + "score": 1.0, + "content": "reduce the search space by reusing the previous question answer. We choose Wang et al. (2019) as", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 106, + 322, + 506, + 334 + ], + "spans": [ + { + "bbox": [ + 106, + 322, + 506, + 334 + ], + "score": 1.0, + "content": "our base model because generating symbolic programs has many practical advantages (even at a", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 333, + 506, + 346 + ], + "spans": [ + { + "bbox": [ + 105, + 333, + 167, + 346 + ], + "score": 1.0, + "content": "cost of around", + "type": "text" + }, + { + "bbox": [ + 167, + 333, + 182, + 343 + ], + "score": 0.85, + "content": "1 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 182, + 333, + 506, + 346 + ], + "score": 1.0, + "content": "accuracy drop), such as showing interpretable reasoning steps, enabling formal", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 344, + 371, + 356 + ], + "spans": [ + { + "bbox": [ + 105, + 344, + 371, + 356 + ], + "score": 1.0, + "content": "reasoning, and operationalization without GPU/TPU accelerators.", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 16.5, + "bbox_fs": [ + 104, + 266, + 506, + 356 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 371, + 238, + 384 + ], + "lines": [ + { + "bbox": [ + 105, + 369, + 240, + 386 + ], + "spans": [ + { + "bbox": [ + 105, + 369, + 240, + 386 + ], + "score": 1.0, + "content": "D PRE-TRAINING COST", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 21 + }, + { + "type": "text", + "bbox": [ + 107, + 396, + 297, + 506 + ], + "lines": [ + { + "bbox": [ + 106, + 396, + 297, + 408 + ], + "spans": [ + { + "bbox": [ + 106, + 396, + 297, + 408 + ], + "score": 1.0, + "content": "We test the performance of SCORE with respect", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 106, + 407, + 297, + 420 + ], + "spans": [ + { + "bbox": [ + 106, + 407, + 297, + 420 + ], + "score": 1.0, + "content": "to the number of pre-training epochs. Figure 3", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 106, + 419, + 298, + 430 + ], + "spans": [ + { + "bbox": [ + 106, + 419, + 298, + 430 + ], + "score": 1.0, + "content": "shows that the best performance of the down-", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 106, + 430, + 297, + 442 + ], + "spans": [ + { + "bbox": [ + 106, + 430, + 297, + 442 + ], + "score": 1.0, + "content": "stream tasks is usually achieved in early epochs,", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 440, + 297, + 452 + ], + "spans": [ + { + "bbox": [ + 105, + 440, + 297, + 452 + ], + "score": 1.0, + "content": "more specifically 5 for SPARC and COSQL and", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 450, + 297, + 464 + ], + "spans": [ + { + "bbox": [ + 105, + 450, + 297, + 464 + ], + "score": 1.0, + "content": "15 for MWOZ. Longer pre-training time does", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 106, + 462, + 297, + 474 + ], + "spans": [ + { + "bbox": [ + 106, + 462, + 297, + 474 + ], + "score": 1.0, + "content": "not improve or even hurts the performance. One", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 106, + 473, + 296, + 486 + ], + "spans": [ + { + "bbox": [ + 106, + 473, + 296, + 486 + ], + "score": 1.0, + "content": "possible reason is that longer pre-training makes", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 106, + 484, + 297, + 496 + ], + "spans": [ + { + "bbox": [ + 106, + 484, + 297, + 496 + ], + "score": 1.0, + "content": "SCORE overfit to the synthesized data whose", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 106, + 496, + 207, + 506 + ], + "spans": [ + { + "bbox": [ + 106, + 496, + 207, + 506 + ], + "score": 1.0, + "content": "utterances are unnatural.", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 26.5, + "bbox_fs": [ + 105, + 396, + 298, + 506 + ] + }, + { + "type": "image", + "bbox": [ + 304, + 399, + 504, + 497 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 304, + 399, + 504, + 497 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 304, + 399, + 504, + 497 + ], + "spans": [ + { + "bbox": [ + 304, + 399, + 504, + 497 + ], + "score": 0.958, + "type": "image", + "image_path": "f2adaf96d04bd8e302a16e86109313b4514940005cf18a41f431ec1e6bac564a.jpg" + } + ] + } + ], + "index": 35, + "virtual_lines": [ + { + "bbox": [ + 304, + 399, + 504, + 413.0 + ], + "spans": [], + "index": 32 + }, + { + "bbox": [ + 304, + 413.0, + 504, + 427.0 + ], + "spans": [], + "index": 33 + }, + { + "bbox": [ + 304, + 427.0, + 504, + 441.0 + ], + "spans": [], + "index": 34 + }, + { + "bbox": [ + 304, + 441.0, + 504, + 455.0 + ], + "spans": [], + "index": 35 + }, + { + "bbox": [ + 304, + 455.0, + 504, + 469.0 + ], + "spans": [], + "index": 36 + }, + { + "bbox": [ + 304, + 469.0, + 504, + 483.0 + ], + "spans": [], + "index": 37 + }, + { + "bbox": [ + 304, + 483.0, + 504, + 497.0 + ], + "spans": [], + "index": 38 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 322, + 509, + 486, + 520 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 321, + 507, + 487, + 523 + ], + "spans": [ + { + "bbox": [ + 321, + 507, + 487, + 523 + ], + "score": 1.0, + "content": "Figure 3: The effect of pre-training time.", + "type": "text" + } + ], + "index": 40 + } + ], + "index": 40 + } + ], + "index": 37.5 + }, + { + "type": "text", + "bbox": [ + 107, + 512, + 297, + 534 + ], + "lines": [ + { + "bbox": [ + 106, + 511, + 298, + 524 + ], + "spans": [ + { + "bbox": [ + 106, + 511, + 298, + 524 + ], + "score": 1.0, + "content": "As for the data, as shown in Table 5, even if", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 106, + 522, + 297, + 536 + ], + "spans": [ + { + "bbox": [ + 106, + 522, + 297, + 536 + ], + "score": 1.0, + "content": "SCORE is pre-trained with only a relatively", + "type": "text" + } + ], + "index": 41 + } + ], + "index": 40.0, + "bbox_fs": [ + 106, + 511, + 298, + 536 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 534, + 506, + 567 + ], + "lines": [ + { + "bbox": [ + 105, + 534, + 505, + 546 + ], + "spans": [ + { + "bbox": [ + 105, + 534, + 505, + 546 + ], + "score": 1.0, + "content": "small amount of synthesized data (without the MLM loss), most of the tasks can achieve much", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 545, + 505, + 558 + ], + "spans": [ + { + "bbox": [ + 105, + 545, + 505, + 558 + ], + "score": 1.0, + "content": "higher performances. With a relatively smaller training corpus and shorter training time compared to", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 106, + 555, + 396, + 569 + ], + "spans": [ + { + "bbox": [ + 106, + 555, + 396, + 569 + ], + "score": 1.0, + "content": "other pre-trained language models, SCORE is efficient in time and data.", + "type": "text" + } + ], + "index": 44 + } + ], + "index": 43, + "bbox_fs": [ + 105, + 534, + 505, + 569 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 584, + 244, + 596 + ], + "lines": [ + { + "bbox": [ + 105, + 583, + 245, + 598 + ], + "spans": [ + { + "bbox": [ + 105, + 583, + 245, + 598 + ], + "score": 1.0, + "content": "E ADDITIONAL RESULTS", + "type": "text" + } + ], + "index": 45 + } + ], + "index": 45 + }, + { + "type": "text", + "bbox": [ + 107, + 609, + 505, + 675 + ], + "lines": [ + { + "bbox": [ + 105, + 606, + 506, + 623 + ], + "spans": [ + { + "bbox": [ + 105, + 606, + 506, + 623 + ], + "score": 1.0, + "content": "Effect of TCS We ran the TCS only experiment on SPARC, and will add TCS only results (including", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 106, + 620, + 505, + 631 + ], + "spans": [ + { + "bbox": [ + 106, + 620, + 482, + 631 + ], + "score": 1.0, + "content": "for other tasks) to Table 5 in the final version. SCORE (TCS only) outperforms RoBERTa by", + "type": "text" + }, + { + "bbox": [ + 482, + 620, + 505, + 631 + ], + "score": 0.83, + "content": "2 . 4 \\%", + "type": "inline_equation" + } + ], + "index": 47 + }, + { + "bbox": [ + 106, + 631, + 506, + 644 + ], + "spans": [ + { + "bbox": [ + 106, + 631, + 304, + 644 + ], + "score": 1.0, + "content": "so far (note: training is still going on) on SPARC", + "type": "text" + }, + { + "bbox": [ + 304, + 631, + 331, + 642 + ], + "score": 0.82, + "content": "3 9 . 1 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 331, + 631, + 346, + 644 + ], + "score": 1.0, + "content": "vs.", + "type": "text" + }, + { + "bbox": [ + 346, + 631, + 373, + 642 + ], + "score": 0.83, + "content": "3 6 . 7 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 374, + 631, + 506, + 644 + ], + "score": 1.0, + "content": "). Also, as discussed in Section 4,", + "type": "text" + } + ], + "index": 48 + }, + { + "bbox": [ + 105, + 642, + 506, + 655 + ], + "spans": [ + { + "bbox": [ + 105, + 642, + 506, + 655 + ], + "score": 1.0, + "content": "we also provide a secondary evidence by testing the effectiveness of TCS on SPARC, COSQL, and", + "type": "text" + } + ], + "index": 49 + }, + { + "bbox": [ + 105, + 651, + 506, + 666 + ], + "spans": [ + { + "bbox": [ + 105, + 651, + 281, + 666 + ], + "score": 1.0, + "content": "SQA by adding TCS to CCS (CCS only vs.", + "type": "text" + }, + { + "bbox": [ + 282, + 653, + 325, + 663 + ], + "score": 0.68, + "content": "\\mathrm { C C S + T C S }", + "type": "inline_equation" + }, + { + "bbox": [ + 326, + 651, + 506, + 666 + ], + "score": 1.0, + "content": "), SCORE (with TCS) gains improvements of", + "type": "text" + } + ], + "index": 50 + }, + { + "bbox": [ + 106, + 663, + 344, + 677 + ], + "spans": [ + { + "bbox": [ + 106, + 664, + 128, + 675 + ], + "score": 0.83, + "content": "1 . 2 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 128, + 663, + 191, + 677 + ], + "score": 1.0, + "content": "on SPARC and", + "type": "text" + }, + { + "bbox": [ + 191, + 664, + 213, + 675 + ], + "score": 0.86, + "content": "0 . 8 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 214, + 663, + 282, + 677 + ], + "score": 1.0, + "content": "on COSQL, and", + "type": "text" + }, + { + "bbox": [ + 282, + 664, + 305, + 675 + ], + "score": 0.84, + "content": "4 . 4 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 305, + 663, + 344, + 677 + ], + "score": 1.0, + "content": "on SQA.", + "type": "text" + } + ], + "index": 51 + } + ], + "index": 48.5, + "bbox_fs": [ + 105, + 606, + 506, + 677 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 687, + 504, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 688, + 506, + 700 + ], + "spans": [ + { + "bbox": [ + 106, + 688, + 506, + 700 + ], + "score": 1.0, + "content": "Incorporating Additional Examples Used in Synthetic Grammar Induction As we mentioned", + "type": "text" + } + ], + "index": 52 + }, + { + "bbox": [ + 106, + 699, + 506, + 711 + ], + "spans": [ + { + "bbox": [ + 106, + 699, + 506, + 711 + ], + "score": 1.0, + "content": "in Section 2.3, we used about 500 examples from SPARC to induce the grammar for data synthesis in", + "type": "text" + } + ], + "index": 53 + }, + { + "bbox": [ + 105, + 710, + 506, + 722 + ], + "spans": [ + { + "bbox": [ + 105, + 710, + 506, + 722 + ], + "score": 1.0, + "content": "pre-training. For a fair comparison, we also report the results of incorporating the additional SPARC", + "type": "text" + } + ], + "index": 54 + }, + { + "bbox": [ + 105, + 721, + 506, + 732 + ], + "spans": [ + { + "bbox": [ + 105, + 721, + 506, + 732 + ], + "score": 1.0, + "content": "examples in COSQL and SQA. More specifically, we directly concatenate the additional SPARC", + "type": "text" + } + ], + "index": 55 + }, + { + "bbox": [ + 105, + 82, + 505, + 95 + ], + "spans": [ + { + "bbox": [ + 105, + 82, + 317, + 95 + ], + "score": 1.0, + "content": "examples to COSQL training set, and train RAT-SQL", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 318, + 84, + 324, + 92 + ], + "score": 0.38, + "content": "^ +", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 325, + 82, + 505, + 95 + ], + "score": 1.0, + "content": "ROBERTA on it, which slightly improves the", + "type": "text", + "cross_page": true + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 93, + 505, + 106 + ], + "spans": [ + { + "bbox": [ + 105, + 93, + 162, + 106 + ], + "score": 1.0, + "content": "performance (", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 163, + 94, + 189, + 105 + ], + "score": 0.82, + "content": "1 9 . 6 \\%", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 189, + 93, + 204, + 106 + ], + "score": 1.0, + "content": "vs.", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 204, + 94, + 231, + 105 + ], + "score": 0.85, + "content": "1 9 . 3 \\%", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 232, + 93, + 345, + 106 + ], + "score": 1.0, + "content": ") but not as large as SCORE", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 345, + 94, + 372, + 104 + ], + "score": 0.81, + "content": "2 2 . 0 \\%", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 373, + 93, + 388, + 106 + ], + "score": 1.0, + "content": "vs.", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 388, + 94, + 415, + 104 + ], + "score": 0.87, + "content": "1 9 . 3 \\%", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 415, + 93, + 505, + 106 + ], + "score": 1.0, + "content": ").’ Also, because SQA", + "type": "text", + "cross_page": true + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 105, + 505, + 117 + ], + "spans": [ + { + "bbox": [ + 105, + 105, + 505, + 117 + ], + "score": 1.0, + "content": "is weakly-supervised sequential question answering, which differs from SPARC, we first fine-tune", + "type": "text", + "cross_page": true + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 115, + 505, + 128 + ], + "spans": [ + { + "bbox": [ + 105, + 115, + 505, + 128 + ], + "score": 1.0, + "content": "ROBERTA on the additional SPARC examples using CCS, and then apply it to SQA. In this way, the", + "type": "text", + "cross_page": true + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 126, + 505, + 140 + ], + "spans": [ + { + "bbox": [ + 105, + 126, + 505, + 140 + ], + "score": 1.0, + "content": "ROBERTA trained with additional SPARC examples achieves a similar performance as the original", + "type": "text", + "cross_page": true + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 137, + 200, + 150 + ], + "spans": [ + { + "bbox": [ + 105, + 137, + 126, + 150 + ], + "score": 1.0, + "content": "one", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 127, + 137, + 154, + 148 + ], + "score": 0.85, + "content": "6 2 . 7 \\%", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 154, + 137, + 166, + 150 + ], + "score": 1.0, + "content": "vs", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 166, + 137, + 194, + 148 + ], + "score": 0.87, + "content": "6 2 . 8 \\%", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 194, + 137, + 200, + 150 + ], + "score": 1.0, + "content": ").", + "type": "text", + "cross_page": true + } + ], + "index": 5 + } + ], + "index": 53.5, + "bbox_fs": [ + 105, + 688, + 506, + 732 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 107, + 82, + 505, + 149 + ], + "lines": [ + { + "bbox": [ + 105, + 82, + 505, + 95 + ], + "spans": [ + { + "bbox": [ + 105, + 82, + 317, + 95 + ], + "score": 1.0, + "content": "examples to COSQL training set, and train RAT-SQL", + "type": "text" + }, + { + "bbox": [ + 318, + 84, + 324, + 92 + ], + "score": 0.38, + "content": "^ +", + "type": "inline_equation" + }, + { + "bbox": [ + 325, + 82, + 505, + 95 + ], + "score": 1.0, + "content": "ROBERTA on it, which slightly improves the", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 93, + 505, + 106 + ], + "spans": [ + { + "bbox": [ + 105, + 93, + 162, + 106 + ], + "score": 1.0, + "content": "performance (", + "type": "text" + }, + { + "bbox": [ + 163, + 94, + 189, + 105 + ], + "score": 0.82, + "content": "1 9 . 6 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 189, + 93, + 204, + 106 + ], + "score": 1.0, + "content": "vs.", + "type": "text" + }, + { + "bbox": [ + 204, + 94, + 231, + 105 + ], + "score": 0.85, + "content": "1 9 . 3 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 232, + 93, + 345, + 106 + ], + "score": 1.0, + "content": ") but not as large as SCORE", + "type": "text" + }, + { + "bbox": [ + 345, + 94, + 372, + 104 + ], + "score": 0.81, + "content": "2 2 . 0 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 373, + 93, + 388, + 106 + ], + "score": 1.0, + "content": "vs.", + "type": "text" + }, + { + "bbox": [ + 388, + 94, + 415, + 104 + ], + "score": 0.87, + "content": "1 9 . 3 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 415, + 93, + 505, + 106 + ], + "score": 1.0, + "content": ").’ Also, because SQA", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 105, + 505, + 117 + ], + "spans": [ + { + "bbox": [ + 105, + 105, + 505, + 117 + ], + "score": 1.0, + "content": "is weakly-supervised sequential question answering, which differs from SPARC, we first fine-tune", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 115, + 505, + 128 + ], + "spans": [ + { + "bbox": [ + 105, + 115, + 505, + 128 + ], + "score": 1.0, + "content": "ROBERTA on the additional SPARC examples using CCS, and then apply it to SQA. In this way, the", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 126, + 505, + 140 + ], + "spans": [ + { + "bbox": [ + 105, + 126, + 505, + 140 + ], + "score": 1.0, + "content": "ROBERTA trained with additional SPARC examples achieves a similar performance as the original", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 137, + 200, + 150 + ], + "spans": [ + { + "bbox": [ + 105, + 137, + 126, + 150 + ], + "score": 1.0, + "content": "one", + "type": "text" + }, + { + "bbox": [ + 127, + 137, + 154, + 148 + ], + "score": 0.85, + "content": "6 2 . 7 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 154, + 137, + 166, + 150 + ], + "score": 1.0, + "content": "vs", + "type": "text" + }, + { + "bbox": [ + 166, + 137, + 194, + 148 + ], + "score": 0.87, + "content": "6 2 . 8 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 194, + 137, + 200, + 150 + ], + "score": 1.0, + "content": ").", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 2.5 + }, + { + "type": "text", + "bbox": [ + 107, + 160, + 505, + 205 + ], + "lines": [ + { + "bbox": [ + 105, + 161, + 507, + 174 + ], + "spans": [ + { + "bbox": [ + 105, + 161, + 507, + 174 + ], + "score": 1.0, + "content": "Performance Comparison with ToD-BERT ToD-BERT is pre-trained on human-annotated ques-", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 172, + 505, + 185 + ], + "spans": [ + { + "bbox": [ + 105, + 172, + 505, + 185 + ], + "score": 1.0, + "content": "tions with both MLM and response contrastive objectives. To compare TOD-BERT with SCORE, we", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 104, + 183, + 505, + 195 + ], + "spans": [ + { + "bbox": [ + 104, + 183, + 227, + 195 + ], + "score": 1.0, + "content": "ran experiments of RAT-SQL", + "type": "text" + }, + { + "bbox": [ + 227, + 184, + 236, + 193 + ], + "score": 0.73, + "content": "^ +", + "type": "inline_equation" + }, + { + "bbox": [ + 236, + 183, + 370, + 195 + ], + "score": 1.0, + "content": "ToD-BERT on SPARC. SCORE", + "type": "text" + }, + { + "bbox": [ + 370, + 183, + 402, + 194 + ], + "score": 0.81, + "content": "( 6 2 . 2 \\% )", + "type": "inline_equation" + }, + { + "bbox": [ + 403, + 183, + 505, + 195 + ], + "score": 1.0, + "content": "outperforms ToD-BERT", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 107, + 194, + 180, + 207 + ], + "spans": [ + { + "bbox": [ + 107, + 194, + 140, + 205 + ], + "score": 0.84, + "content": "( 5 4 . 6 \\% )", + "type": "inline_equation" + }, + { + "bbox": [ + 140, + 194, + 153, + 207 + ], + "score": 1.0, + "content": "by", + "type": "text" + }, + { + "bbox": [ + 153, + 194, + 175, + 204 + ], + "score": 0.86, + "content": "7 . 6 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 176, + 194, + 180, + 207 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 7.5 + }, + { + "type": "text", + "bbox": [ + 106, + 217, + 506, + 338 + ], + "lines": [ + { + "bbox": [ + 105, + 216, + 506, + 231 + ], + "spans": [ + { + "bbox": [ + 105, + 216, + 506, + 231 + ], + "score": 1.0, + "content": "Comparison with Finetuning Larger Language Models Based on our experiments and other", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 106, + 228, + 506, + 241 + ], + "spans": [ + { + "bbox": [ + 106, + 228, + 506, + 241 + ], + "score": 1.0, + "content": "published results, we didn’t find existing larger LMs (BART (Lewis et al., 2020), T5 (Raffel et al.,", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 238, + 506, + 253 + ], + "spans": [ + { + "bbox": [ + 105, + 238, + 358, + 253 + ], + "score": 1.0, + "content": "2020), GPT-2 (Radford et al., 2019)) outperform custom models", + "type": "text" + }, + { + "bbox": [ + 359, + 241, + 367, + 250 + ], + "score": 0.76, + "content": "^ +", + "type": "inline_equation" + }, + { + "bbox": [ + 367, + 238, + 506, + 253 + ], + "score": 1.0, + "content": "BERT on CSP tasks. Our evidence", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 250, + 506, + 263 + ], + "spans": [ + { + "bbox": [ + 105, + 250, + 506, + 263 + ], + "score": 1.0, + "content": "is based on Spider (Yu et al., 2018b), which is the single-turn version of SParC and CoSQL. For T5,", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 260, + 507, + 275 + ], + "spans": [ + { + "bbox": [ + 105, + 260, + 441, + 275 + ], + "score": 1.0, + "content": "Shaw et al. (2020) applied T5 as seq2seq to Spider, and compared with RAT-SQL", + "type": "text" + }, + { + "bbox": [ + 441, + 262, + 450, + 272 + ], + "score": 0.74, + "content": "^ +", + "type": "inline_equation" + }, + { + "bbox": [ + 450, + 260, + 507, + 275 + ], + "score": 1.0, + "content": "BERT-Large,", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 271, + 506, + 286 + ], + "spans": [ + { + "bbox": [ + 105, + 271, + 236, + 286 + ], + "score": 1.0, + "content": "T5-Base performs much worse", + "type": "text" + }, + { + "bbox": [ + 237, + 272, + 265, + 283 + ], + "score": 0.85, + "content": "5 7 . 1 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 266, + 271, + 280, + 286 + ], + "score": 1.0, + "content": "vs.", + "type": "text" + }, + { + "bbox": [ + 281, + 272, + 309, + 283 + ], + "score": 0.85, + "content": "6 9 . 6 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 309, + 271, + 506, + 286 + ], + "score": 1.0, + "content": "), and T5-3B improves only 0.3, but it is 6 times", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 106, + 284, + 506, + 296 + ], + "spans": [ + { + "bbox": [ + 106, + 284, + 506, + 296 + ], + "score": 1.0, + "content": "larger. Moreover, for Bart, we have performed experiments on Spider and we found that BART", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 294, + 506, + 306 + ], + "spans": [ + { + "bbox": [ + 105, + 294, + 245, + 306 + ], + "score": 1.0, + "content": "cannot outperform custom models", + "type": "text" + }, + { + "bbox": [ + 245, + 295, + 254, + 304 + ], + "score": 0.76, + "content": "^ +", + "type": "inline_equation" + }, + { + "bbox": [ + 254, + 294, + 325, + 306 + ], + "score": 1.0, + "content": "BERT: RAT-SQL", + "type": "text" + }, + { + "bbox": [ + 325, + 295, + 334, + 304 + ], + "score": 0.72, + "content": "^ +", + "type": "inline_equation" + }, + { + "bbox": [ + 334, + 294, + 361, + 306 + ], + "score": 1.0, + "content": "BERT", + "type": "text" + }, + { + "bbox": [ + 361, + 294, + 388, + 305 + ], + "score": 0.85, + "content": "6 9 . 7 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 389, + 294, + 434, + 306 + ], + "score": 1.0, + "content": ", RAT-SQL", + "type": "text" + }, + { + "bbox": [ + 434, + 295, + 443, + 304 + ], + "score": 0.66, + "content": "^ +", + "type": "inline_equation" + }, + { + "bbox": [ + 443, + 294, + 506, + 306 + ], + "score": 1.0, + "content": "BART encoder", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 106, + 305, + 505, + 317 + ], + "spans": [ + { + "bbox": [ + 106, + 305, + 133, + 316 + ], + "score": 0.85, + "content": "67 . 8 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 133, + 306, + 196, + 317 + ], + "score": 1.0, + "content": ", BART encoder", + "type": "text" + }, + { + "bbox": [ + 197, + 307, + 205, + 316 + ], + "score": 0.75, + "content": "^ +", + "type": "inline_equation" + }, + { + "bbox": [ + 205, + 306, + 341, + 317 + ], + "score": 1.0, + "content": "decoder (406M, as a seq2seq task)", + "type": "text" + }, + { + "bbox": [ + 341, + 306, + 367, + 316 + ], + "score": 0.87, + "content": "6 2 . 4 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 368, + 306, + 505, + 317 + ], + "score": 1.0, + "content": ". In Rubin & Berant (2020), BART", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 106, + 316, + 505, + 329 + ], + "spans": [ + { + "bbox": [ + 106, + 316, + 505, + 329 + ], + "score": 1.0, + "content": "didn’t outperform BERT either. As for GPT-2, Wu et al. (2020) and Hosseini-Asl et al. (2020) found", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 327, + 275, + 339 + ], + "spans": [ + { + "bbox": [ + 105, + 327, + 275, + 339 + ], + "score": 1.0, + "content": "it does not outperform BERT on MWOZ.", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 15 + }, + { + "type": "title", + "bbox": [ + 107, + 354, + 329, + 368 + ], + "lines": [ + { + "bbox": [ + 105, + 353, + 330, + 369 + ], + "spans": [ + { + "bbox": [ + 105, + 353, + 330, + 369 + ], + "score": 1.0, + "content": "F TASK-ORIENTED DIALOGUE DATASETS", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 21 + }, + { + "type": "table", + "bbox": [ + 166, + 383, + 443, + 479 + ], + "blocks": [ + { + "type": "table_body", + "bbox": [ + 166, + 383, + 443, + 479 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 166, + 383, + 443, + 479 + ], + "spans": [ + { + "bbox": [ + 166, + 383, + 443, + 479 + ], + "score": 0.975, + "html": "
Name#Dialogue#UtteranceAvg. Turn#Domain
MetaLWOZ (Lee et al., 2019)37,884432,03611.447
Schema (Rastogi et al., 2019)22,825463,28420.317
Taskmaster (Byrne et al.,2019)13,215303,06622.96
MWOZ (Budzianowski etal.,2018)10,42071,4106.97
MSR-E2E (Li et al.,2018)10.08774,6867.43
SMD (Eric and Manning,2017)3,03115.9285.33
Frames (Asri et al.,2017)1,36919,98614.63
WOZ (Mrksic et al., 2016)1,2005,0124.21
CamRest676 (Wen et al.,2016)6762,7444.11
", + "type": "table", + "image_path": "1635b2ba111e046a73247b1330a2aba475efceb8a7e62351ddd71e1d5d2d9147.jpg" + } + ] + } + ], + "index": 23, + "virtual_lines": [ + { + "bbox": [ + 166, + 383, + 443, + 415.0 + ], + "spans": [], + "index": 22 + }, + { + "bbox": [ + 166, + 415.0, + 443, + 447.0 + ], + "spans": [], + "index": 23 + }, + { + "bbox": [ + 166, + 447.0, + 443, + 479.0 + ], + "spans": [], + "index": 24 + } + ] + } + ], + "index": 23 + }, + { + "type": "text", + "bbox": [ + 106, + 491, + 505, + 502 + ], + "lines": [ + { + "bbox": [ + 105, + 489, + 506, + 504 + ], + "spans": [ + { + "bbox": [ + 105, + 489, + 437, + 504 + ], + "score": 1.0, + "content": "Figure 4: Data statistics of human-annotated task-oriented dialogue datasets used in", + "type": "text" + }, + { + "bbox": [ + 437, + 491, + 453, + 501 + ], + "score": 0.32, + "content": "\\mathrm { W u }", + "type": "inline_equation" + }, + { + "bbox": [ + 453, + 489, + 506, + 504 + ], + "score": 1.0, + "content": "et al. (2020).", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 25 + } + ], + "page_idx": 15, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 108, + 27, + 292, + 37 + ], + "lines": [ + { + "bbox": [ + 105, + 25, + 293, + 39 + ], + "spans": [ + { + "bbox": [ + 105, + 25, + 293, + 39 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2021", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 300, + 752, + 311, + 760 + ], + "lines": [ + { + "bbox": [ + 299, + 750, + 312, + 764 + ], + "spans": [ + { + "bbox": [ + 299, + 750, + 312, + 764 + ], + "score": 1.0, + "content": "", + "type": "text", + "height": 14, + "width": 13 + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 107, + 82, + 505, + 149 + ], + "lines": [], + "index": 2.5, + "bbox_fs": [ + 105, + 82, + 505, + 150 + ], + "lines_deleted": true + }, + { + "type": "text", + "bbox": [ + 107, + 160, + 505, + 205 + ], + "lines": [ + { + "bbox": [ + 105, + 161, + 507, + 174 + ], + "spans": [ + { + "bbox": [ + 105, + 161, + 507, + 174 + ], + "score": 1.0, + "content": "Performance Comparison with ToD-BERT ToD-BERT is pre-trained on human-annotated ques-", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 172, + 505, + 185 + ], + "spans": [ + { + "bbox": [ + 105, + 172, + 505, + 185 + ], + "score": 1.0, + "content": "tions with both MLM and response contrastive objectives. To compare TOD-BERT with SCORE, we", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 104, + 183, + 505, + 195 + ], + "spans": [ + { + "bbox": [ + 104, + 183, + 227, + 195 + ], + "score": 1.0, + "content": "ran experiments of RAT-SQL", + "type": "text" + }, + { + "bbox": [ + 227, + 184, + 236, + 193 + ], + "score": 0.73, + "content": "^ +", + "type": "inline_equation" + }, + { + "bbox": [ + 236, + 183, + 370, + 195 + ], + "score": 1.0, + "content": "ToD-BERT on SPARC. SCORE", + "type": "text" + }, + { + "bbox": [ + 370, + 183, + 402, + 194 + ], + "score": 0.81, + "content": "( 6 2 . 2 \\% )", + "type": "inline_equation" + }, + { + "bbox": [ + 403, + 183, + 505, + 195 + ], + "score": 1.0, + "content": "outperforms ToD-BERT", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 107, + 194, + 180, + 207 + ], + "spans": [ + { + "bbox": [ + 107, + 194, + 140, + 205 + ], + "score": 0.84, + "content": "( 5 4 . 6 \\% )", + "type": "inline_equation" + }, + { + "bbox": [ + 140, + 194, + 153, + 207 + ], + "score": 1.0, + "content": "by", + "type": "text" + }, + { + "bbox": [ + 153, + 194, + 175, + 204 + ], + "score": 0.86, + "content": "7 . 6 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 176, + 194, + 180, + 207 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 7.5, + "bbox_fs": [ + 104, + 161, + 507, + 207 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 217, + 506, + 338 + ], + "lines": [ + { + "bbox": [ + 105, + 216, + 506, + 231 + ], + "spans": [ + { + "bbox": [ + 105, + 216, + 506, + 231 + ], + "score": 1.0, + "content": "Comparison with Finetuning Larger Language Models Based on our experiments and other", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 106, + 228, + 506, + 241 + ], + "spans": [ + { + "bbox": [ + 106, + 228, + 506, + 241 + ], + "score": 1.0, + "content": "published results, we didn’t find existing larger LMs (BART (Lewis et al., 2020), T5 (Raffel et al.,", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 238, + 506, + 253 + ], + "spans": [ + { + "bbox": [ + 105, + 238, + 358, + 253 + ], + "score": 1.0, + "content": "2020), GPT-2 (Radford et al., 2019)) outperform custom models", + "type": "text" + }, + { + "bbox": [ + 359, + 241, + 367, + 250 + ], + "score": 0.76, + "content": "^ +", + "type": "inline_equation" + }, + { + "bbox": [ + 367, + 238, + 506, + 253 + ], + "score": 1.0, + "content": "BERT on CSP tasks. Our evidence", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 250, + 506, + 263 + ], + "spans": [ + { + "bbox": [ + 105, + 250, + 506, + 263 + ], + "score": 1.0, + "content": "is based on Spider (Yu et al., 2018b), which is the single-turn version of SParC and CoSQL. For T5,", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 260, + 507, + 275 + ], + "spans": [ + { + "bbox": [ + 105, + 260, + 441, + 275 + ], + "score": 1.0, + "content": "Shaw et al. (2020) applied T5 as seq2seq to Spider, and compared with RAT-SQL", + "type": "text" + }, + { + "bbox": [ + 441, + 262, + 450, + 272 + ], + "score": 0.74, + "content": "^ +", + "type": "inline_equation" + }, + { + "bbox": [ + 450, + 260, + 507, + 275 + ], + "score": 1.0, + "content": "BERT-Large,", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 271, + 506, + 286 + ], + "spans": [ + { + "bbox": [ + 105, + 271, + 236, + 286 + ], + "score": 1.0, + "content": "T5-Base performs much worse", + "type": "text" + }, + { + "bbox": [ + 237, + 272, + 265, + 283 + ], + "score": 0.85, + "content": "5 7 . 1 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 266, + 271, + 280, + 286 + ], + "score": 1.0, + "content": "vs.", + "type": "text" + }, + { + "bbox": [ + 281, + 272, + 309, + 283 + ], + "score": 0.85, + "content": "6 9 . 6 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 309, + 271, + 506, + 286 + ], + "score": 1.0, + "content": "), and T5-3B improves only 0.3, but it is 6 times", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 106, + 284, + 506, + 296 + ], + "spans": [ + { + "bbox": [ + 106, + 284, + 506, + 296 + ], + "score": 1.0, + "content": "larger. Moreover, for Bart, we have performed experiments on Spider and we found that BART", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 294, + 506, + 306 + ], + "spans": [ + { + "bbox": [ + 105, + 294, + 245, + 306 + ], + "score": 1.0, + "content": "cannot outperform custom models", + "type": "text" + }, + { + "bbox": [ + 245, + 295, + 254, + 304 + ], + "score": 0.76, + "content": "^ +", + "type": "inline_equation" + }, + { + "bbox": [ + 254, + 294, + 325, + 306 + ], + "score": 1.0, + "content": "BERT: RAT-SQL", + "type": "text" + }, + { + "bbox": [ + 325, + 295, + 334, + 304 + ], + "score": 0.72, + "content": "^ +", + "type": "inline_equation" + }, + { + "bbox": [ + 334, + 294, + 361, + 306 + ], + "score": 1.0, + "content": "BERT", + "type": "text" + }, + { + "bbox": [ + 361, + 294, + 388, + 305 + ], + "score": 0.85, + "content": "6 9 . 7 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 389, + 294, + 434, + 306 + ], + "score": 1.0, + "content": ", RAT-SQL", + "type": "text" + }, + { + "bbox": [ + 434, + 295, + 443, + 304 + ], + "score": 0.66, + "content": "^ +", + "type": "inline_equation" + }, + { + "bbox": [ + 443, + 294, + 506, + 306 + ], + "score": 1.0, + "content": "BART encoder", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 106, + 305, + 505, + 317 + ], + "spans": [ + { + "bbox": [ + 106, + 305, + 133, + 316 + ], + "score": 0.85, + "content": "67 . 8 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 133, + 306, + 196, + 317 + ], + "score": 1.0, + "content": ", BART encoder", + "type": "text" + }, + { + "bbox": [ + 197, + 307, + 205, + 316 + ], + "score": 0.75, + "content": "^ +", + "type": "inline_equation" + }, + { + "bbox": [ + 205, + 306, + 341, + 317 + ], + "score": 1.0, + "content": "decoder (406M, as a seq2seq task)", + "type": "text" + }, + { + "bbox": [ + 341, + 306, + 367, + 316 + ], + "score": 0.87, + "content": "6 2 . 4 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 368, + 306, + 505, + 317 + ], + "score": 1.0, + "content": ". In Rubin & Berant (2020), BART", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 106, + 316, + 505, + 329 + ], + "spans": [ + { + "bbox": [ + 106, + 316, + 505, + 329 + ], + "score": 1.0, + "content": "didn’t outperform BERT either. As for GPT-2, Wu et al. (2020) and Hosseini-Asl et al. (2020) found", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 327, + 275, + 339 + ], + "spans": [ + { + "bbox": [ + 105, + 327, + 275, + 339 + ], + "score": 1.0, + "content": "it does not outperform BERT on MWOZ.", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 15, + "bbox_fs": [ + 105, + 216, + 507, + 339 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 354, + 329, + 368 + ], + "lines": [ + { + "bbox": [ + 105, + 353, + 330, + 369 + ], + "spans": [ + { + "bbox": [ + 105, + 353, + 330, + 369 + ], + "score": 1.0, + "content": "F TASK-ORIENTED DIALOGUE DATASETS", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 21 + }, + { + "type": "table", + "bbox": [ + 166, + 383, + 443, + 479 + ], + "blocks": [ + { + "type": "table_body", + "bbox": [ + 166, + 383, + 443, + 479 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 166, + 383, + 443, + 479 + ], + "spans": [ + { + "bbox": [ + 166, + 383, + 443, + 479 + ], + "score": 0.975, + "html": "
Name#Dialogue#UtteranceAvg. Turn#Domain
MetaLWOZ (Lee et al., 2019)37,884432,03611.447
Schema (Rastogi et al., 2019)22,825463,28420.317
Taskmaster (Byrne et al.,2019)13,215303,06622.96
MWOZ (Budzianowski etal.,2018)10,42071,4106.97
MSR-E2E (Li et al.,2018)10.08774,6867.43
SMD (Eric and Manning,2017)3,03115.9285.33
Frames (Asri et al.,2017)1,36919,98614.63
WOZ (Mrksic et al., 2016)1,2005,0124.21
CamRest676 (Wen et al.,2016)6762,7444.11
", + "type": "table", + "image_path": "1635b2ba111e046a73247b1330a2aba475efceb8a7e62351ddd71e1d5d2d9147.jpg" + } + ] + } + ], + "index": 23, + "virtual_lines": [ + { + "bbox": [ + 166, + 383, + 443, + 415.0 + ], + "spans": [], + "index": 22 + }, + { + "bbox": [ + 166, + 415.0, + 443, + 447.0 + ], + "spans": [], + "index": 23 + }, + { + "bbox": [ + 166, + 447.0, + 443, + 479.0 + ], + "spans": [], + "index": 24 + } + ] + } + ], + "index": 23 + }, + { + "type": "text", + "bbox": [ + 106, + 491, + 505, + 502 + ], + "lines": [ + { + "bbox": [ + 105, + 489, + 506, + 504 + ], + "spans": [ + { + "bbox": [ + 105, + 489, + 437, + 504 + ], + "score": 1.0, + "content": "Figure 4: Data statistics of human-annotated task-oriented dialogue datasets used in", + "type": "text" + }, + { + "bbox": [ + 437, + 491, + 453, + 501 + ], + "score": 0.32, + "content": "\\mathrm { W u }", + "type": "inline_equation" + }, + { + "bbox": [ + 453, + 489, + 506, + 504 + ], + "score": 1.0, + "content": "et al. (2020).", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 25, + "bbox_fs": [ + 105, + 489, + 506, + 504 + ] + } + ] + } + ], + "_backend": "pipeline", + "_version_name": "2.2.2" +} \ No newline at end of file diff --git a/parse/train/oyZxhRI2RiE/oyZxhRI2RiE_model.json b/parse/train/oyZxhRI2RiE/oyZxhRI2RiE_model.json new file mode 100644 index 0000000000000000000000000000000000000000..3416ef867652268c441630a5a5c2637f64d48291 --- /dev/null +++ b/parse/train/oyZxhRI2RiE/oyZxhRI2RiE_model.json @@ -0,0 +1,22176 @@ +[ + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 398, + 752, + 1303, + 752, + 1303, + 1241, + 398, + 1241 + ], + "score": 0.984 + }, + { + "category_id": 1, + "poly": [ + 298, + 1528, + 1405, + 1528, + 1405, + 1835, + 298, + 1835 + ], + "score": 0.983 + }, + { + "category_id": 1, + "poly": [ + 299, + 1850, + 1403, + 1850, + 1403, + 2033, + 299, + 2033 + ], + "score": 0.978 + }, + { + "category_id": 1, + "poly": [ + 299, + 1360, + 1403, + 1360, + 1403, + 1513, + 299, + 1513 + ], + "score": 0.977 + }, + { + "category_id": 0, + "poly": [ + 300, + 219, + 1408, + 219, + 1408, + 324, + 300, + 324 + ], + "score": 0.96 + }, + { + "category_id": 1, + "poly": [ + 999, + 376, + 1385, + 376, + 1385, + 468, + 999, + 468 + ], + "score": 0.952 + }, + { + "category_id": 1, + "poly": [ + 315, + 378, + 567, + 378, + 567, + 469, + 315, + 469 + ], + "score": 0.939 + }, + { + "category_id": 0, + "poly": [ + 302, + 1293, + 573, + 1293, + 573, + 1328, + 302, + 1328 + ], + "score": 0.894 + }, + { + "category_id": 2, + "poly": [ + 299, + 75, + 813, + 75, + 813, + 104, + 299, + 104 + ], + "score": 0.879 + }, + { + "category_id": 0, + "poly": [ + 773, + 688, + 926, + 688, + 926, + 722, + 773, + 722 + ], + "score": 0.874 + }, + { + "category_id": 1, + "poly": [ + 312, + 515, + 1070, + 515, + 1070, + 609, + 312, + 609 + ], + "score": 0.829 + }, + { + "category_id": 2, + "poly": [ + 841, + 2088, + 856, + 2088, + 856, + 2112, + 841, + 2112 + ], + "score": 0.724 + }, + { + "category_id": 0, + "poly": [ + 313, + 515, + 1093, + 515, + 1093, + 570, + 313, + 570 + ], + "score": 0.094 + }, + { + "category_id": 15, + "poly": [ + 295.0, + 218.0, + 1413.0, + 218.0, + 1413.0, + 272.0, + 295.0, + 272.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 275.0, + 1281.0, + 275.0, + 1281.0, + 328.0, + 294.0, + 328.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1290.0, + 579.0, + 1290.0, + 579.0, + 1337.0, + 294.0, + 1337.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 72.0, + 815.0, + 72.0, + 815.0, + 108.0, + 295.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 769.0, + 687.0, + 932.0, + 687.0, + 932.0, + 725.0, + 769.0, + 725.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 840.0, + 2088.0, + 857.0, + 2088.0, + 857.0, + 2116.0, + 840.0, + 2116.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 311.0, + 513.0, + 1098.0, + 513.0, + 1098.0, + 551.0, + 311.0, + 551.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 314.0, + 546.0, + 538.0, + 546.0, + 538.0, + 577.0, + 314.0, + 577.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 395.0, + 751.0, + 1306.0, + 751.0, + 1306.0, + 789.0, + 395.0, + 789.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 392.0, + 783.0, + 1306.0, + 783.0, + 1306.0, + 820.0, + 392.0, + 820.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 814.0, + 1306.0, + 814.0, + 1306.0, + 849.0, + 393.0, + 849.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 844.0, + 1305.0, + 844.0, + 1305.0, + 879.0, + 393.0, + 879.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 875.0, + 1305.0, + 875.0, + 1305.0, + 912.0, + 393.0, + 912.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 904.0, + 1306.0, + 904.0, + 1306.0, + 942.0, + 393.0, + 942.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 937.0, + 1305.0, + 937.0, + 1305.0, + 972.0, + 393.0, + 972.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 968.0, + 1307.0, + 968.0, + 1307.0, + 1000.0, + 393.0, + 1000.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 392.0, + 996.0, + 1307.0, + 996.0, + 1307.0, + 1034.0, + 392.0, + 1034.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 392.0, + 1026.0, + 1307.0, + 1026.0, + 1307.0, + 1064.0, + 392.0, + 1064.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 1058.0, + 1304.0, + 1058.0, + 1304.0, + 1092.0, + 394.0, + 1092.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 1087.0, + 1304.0, + 1087.0, + 1304.0, + 1121.0, + 393.0, + 1121.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 1118.0, + 1306.0, + 1118.0, + 1306.0, + 1153.0, + 393.0, + 1153.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 392.0, + 1146.0, + 1306.0, + 1146.0, + 1306.0, + 1187.0, + 392.0, + 1187.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 1180.0, + 1304.0, + 1180.0, + 1304.0, + 1213.0, + 394.0, + 1213.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 395.0, + 1211.0, + 842.0, + 1211.0, + 842.0, + 1243.0, + 395.0, + 1243.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1528.0, + 1408.0, + 1528.0, + 1408.0, + 1565.0, + 292.0, + 1565.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1558.0, + 1407.0, + 1558.0, + 1407.0, + 1596.0, + 293.0, + 1596.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1590.0, + 1406.0, + 1590.0, + 1406.0, + 1626.0, + 295.0, + 1626.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1618.0, + 1406.0, + 1618.0, + 1406.0, + 1656.0, + 293.0, + 1656.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1651.0, + 1408.0, + 1651.0, + 1408.0, + 1687.0, + 295.0, + 1687.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1679.0, + 1407.0, + 1679.0, + 1407.0, + 1720.0, + 291.0, + 1720.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1711.0, + 1408.0, + 1711.0, + 1408.0, + 1750.0, + 292.0, + 1750.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1739.0, + 1409.0, + 1739.0, + 1409.0, + 1781.0, + 292.0, + 1781.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1772.0, + 1406.0, + 1772.0, + 1406.0, + 1811.0, + 293.0, + 1811.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1800.0, + 1006.0, + 1800.0, + 1006.0, + 1842.0, + 293.0, + 1842.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1849.0, + 1405.0, + 1849.0, + 1405.0, + 1885.0, + 295.0, + 1885.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1882.0, + 1405.0, + 1882.0, + 1405.0, + 1917.0, + 295.0, + 1917.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1912.0, + 1404.0, + 1912.0, + 1404.0, + 1944.0, + 297.0, + 1944.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1942.0, + 1407.0, + 1942.0, + 1407.0, + 1976.0, + 294.0, + 1976.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1969.0, + 1407.0, + 1969.0, + 1407.0, + 2010.0, + 292.0, + 2010.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 2000.0, + 1404.0, + 2000.0, + 1404.0, + 2038.0, + 295.0, + 2038.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1359.0, + 1404.0, + 1359.0, + 1404.0, + 1397.0, + 294.0, + 1397.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1390.0, + 1407.0, + 1390.0, + 1407.0, + 1426.0, + 293.0, + 1426.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1421.0, + 1407.0, + 1421.0, + 1407.0, + 1456.0, + 293.0, + 1456.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1452.0, + 1405.0, + 1452.0, + 1405.0, + 1488.0, + 294.0, + 1488.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1483.0, + 1355.0, + 1483.0, + 1355.0, + 1520.0, + 295.0, + 1520.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 997.0, + 374.0, + 1135.0, + 374.0, + 1135.0, + 412.0, + 997.0, + 412.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 996.0, + 404.0, + 1386.0, + 404.0, + 1386.0, + 442.0, + 996.0, + 442.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 999.0, + 440.0, + 1253.0, + 440.0, + 1253.0, + 469.0, + 999.0, + 469.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 310.0, + 374.0, + 406.0, + 374.0, + 406.0, + 410.0, + 310.0, + 410.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 311.0, + 402.0, + 493.0, + 402.0, + 493.0, + 443.0, + 311.0, + 443.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 311.0, + 439.0, + 570.0, + 439.0, + 570.0, + 470.0, + 311.0, + 470.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 311.0, + 513.0, + 1075.0, + 513.0, + 1075.0, + 550.0, + 311.0, + 550.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 314.0, + 547.0, + 539.0, + 547.0, + 539.0, + 576.0, + 314.0, + 576.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 315.0, + 578.0, + 930.0, + 578.0, + 930.0, + 613.0, + 315.0, + 613.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 0, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 299, + 777, + 1404, + 777, + 1404, + 1235, + 299, + 1235 + ], + "score": 0.985 + }, + { + "category_id": 1, + "poly": [ + 298, + 1250, + 1405, + 1250, + 1405, + 1526, + 298, + 1526 + ], + "score": 0.983 + }, + { + "category_id": 1, + "poly": [ + 298, + 1598, + 1405, + 1598, + 1405, + 1843, + 298, + 1843 + ], + "score": 0.981 + }, + { + "category_id": 1, + "poly": [ + 300, + 639, + 1405, + 639, + 1405, + 760, + 300, + 760 + ], + "score": 0.974 + }, + { + "category_id": 1, + "poly": [ + 300, + 1942, + 1402, + 1942, + 1402, + 2034, + 300, + 2034 + ], + "score": 0.971 + }, + { + "category_id": 3, + "poly": [ + 299, + 226, + 1399, + 226, + 1399, + 568, + 299, + 568 + ], + "score": 0.97 + }, + { + "category_id": 4, + "poly": [ + 301, + 586, + 1382, + 586, + 1382, + 619, + 301, + 619 + ], + "score": 0.905 + }, + { + "category_id": 0, + "poly": [ + 299, + 1883, + 556, + 1883, + 556, + 1914, + 299, + 1914 + ], + "score": 0.893 + }, + { + "category_id": 0, + "poly": [ + 299, + 1551, + 509, + 1551, + 509, + 1585, + 299, + 1585 + ], + "score": 0.886 + }, + { + "category_id": 2, + "poly": [ + 299, + 76, + 812, + 76, + 812, + 104, + 299, + 104 + ], + "score": 0.874 + }, + { + "category_id": 2, + "poly": [ + 841, + 2089, + 858, + 2089, + 858, + 2112, + 841, + 2112 + ], + "score": 0.689 + }, + { + "category_id": 2, + "poly": [ + 841, + 2089, + 859, + 2089, + 859, + 2112, + 841, + 2112 + ], + "score": 0.167 + }, + { + "category_id": 13, + "poly": [ + 797, + 1973, + 1067, + 1973, + 1067, + 2006, + 797, + 2006 + ], + "score": 0.92, + "latex": "h _ { t } = [ u _ { 1 } , u _ { 2 } , \\ldots , u _ { t - 1 } ]" + }, + { + "category_id": 13, + "poly": [ + 497, + 1977, + 525, + 1977, + 525, + 2003, + 497, + 2003 + ], + "score": 0.84, + "latex": "u _ { t }" + }, + { + "category_id": 13, + "poly": [ + 1263, + 1948, + 1287, + 1948, + 1287, + 1974, + 1263, + 1974 + ], + "score": 0.82, + "latex": "q _ { t }" + }, + { + "category_id": 13, + "poly": [ + 943, + 2006, + 960, + 2006, + 960, + 2030, + 943, + 2030 + ], + "score": 0.79, + "latex": "d" + }, + { + "category_id": 13, + "poly": [ + 1264, + 1979, + 1280, + 1979, + 1280, + 2000, + 1264, + 2000 + ], + "score": 0.69, + "latex": "c" + }, + { + "category_id": 13, + "poly": [ + 743, + 1947, + 756, + 1947, + 756, + 1970, + 743, + 1970 + ], + "score": 0.56, + "latex": "t" + }, + { + "category_id": 15, + "poly": [ + 455.0, + 222.0, + 532.0, + 222.0, + 532.0, + 260.0, + 455.0, + 260.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 828.0, + 225.0, + 978.0, + 225.0, + 978.0, + 257.0, + 828.0, + 257.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1225.0, + 221.0, + 1312.0, + 221.0, + 1312.0, + 254.0, + 1225.0, + 254.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 299.0, + 251.0, + 326.0, + 251.0, + 326.0, + 391.0, + 299.0, + 391.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 332.0, + 263.0, + 658.0, + 263.0, + 658.0, + 292.0, + 332.0, + 292.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 729.0, + 265.0, + 1069.0, + 265.0, + 1069.0, + 289.0, + 729.0, + 289.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 333.0, + 302.0, + 508.0, + 302.0, + 508.0, + 325.0, + 333.0, + 325.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 729.0, + 294.0, + 1073.0, + 294.0, + 1073.0, + 333.0, + 729.0, + 333.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1136.0, + 286.0, + 1312.0, + 286.0, + 1312.0, + 328.0, + 1136.0, + 328.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 334.0, + 338.0, + 609.0, + 338.0, + 609.0, + 362.0, + 334.0, + 362.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 734.0, + 337.0, + 1071.0, + 337.0, + 1071.0, + 357.0, + 734.0, + 357.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1136.0, + 333.0, + 1379.0, + 333.0, + 1379.0, + 357.0, + 1136.0, + 357.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 481.0, + 362.0, + 514.0, + 362.0, + 514.0, + 378.0, + 481.0, + 378.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 733.0, + 348.0, + 1066.0, + 348.0, + 1066.0, + 383.0, + 733.0, + 383.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 303.0, + 410.0, + 326.0, + 410.0, + 326.0, + 541.0, + 303.0, + 541.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 335.0, + 398.0, + 622.0, + 398.0, + 622.0, + 442.0, + 335.0, + 442.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 732.0, + 407.0, + 934.0, + 407.0, + 934.0, + 431.0, + 732.0, + 431.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 339.0, + 433.0, + 630.0, + 433.0, + 630.0, + 457.0, + 339.0, + 457.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 338.0, + 451.0, + 652.0, + 451.0, + 652.0, + 490.0, + 338.0, + 490.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 730.0, + 457.0, + 1055.0, + 457.0, + 1055.0, + 494.0, + 730.0, + 494.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1140.0, + 446.0, + 1372.0, + 446.0, + 1372.0, + 471.0, + 1140.0, + 471.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1141.0, + 482.0, + 1319.0, + 482.0, + 1319.0, + 510.0, + 1141.0, + 510.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 338.0, + 504.0, + 620.0, + 504.0, + 620.0, + 528.0, + 338.0, + 528.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 735.0, + 506.0, + 1054.0, + 506.0, + 1054.0, + 526.0, + 735.0, + 526.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 339.0, + 521.0, + 464.0, + 521.0, + 464.0, + 545.0, + 339.0, + 545.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 737.0, + 521.0, + 938.0, + 521.0, + 938.0, + 541.0, + 737.0, + 541.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 338.0, + 538.0, + 490.0, + 538.0, + 490.0, + 560.0, + 338.0, + 560.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 735.0, + 533.0, + 1002.0, + 533.0, + 1002.0, + 556.0, + 735.0, + 556.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 310.0, + 582.0, + 1388.0, + 582.0, + 1388.0, + 625.0, + 310.0, + 625.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1880.0, + 559.0, + 1880.0, + 559.0, + 1918.0, + 294.0, + 1918.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1545.0, + 515.0, + 1545.0, + 515.0, + 1592.0, + 291.0, + 1592.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 73.0, + 815.0, + 73.0, + 815.0, + 108.0, + 295.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 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": [ + 291.0, + 772.0, + 1406.0, + 772.0, + 1406.0, + 818.0, + 291.0, + 818.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 807.0, + 1408.0, + 807.0, + 1408.0, + 847.0, + 293.0, + 847.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 839.0, + 1404.0, + 839.0, + 1404.0, + 871.0, + 293.0, + 871.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 868.0, + 1405.0, + 868.0, + 1405.0, + 905.0, + 293.0, + 905.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 895.0, + 1405.0, + 895.0, + 1405.0, + 939.0, + 292.0, + 939.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 929.0, + 1406.0, + 929.0, + 1406.0, + 966.0, + 292.0, + 966.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 961.0, + 1405.0, + 961.0, + 1405.0, + 996.0, + 294.0, + 996.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 991.0, + 1406.0, + 991.0, + 1406.0, + 1026.0, + 295.0, + 1026.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1022.0, + 1405.0, + 1022.0, + 1405.0, + 1057.0, + 295.0, + 1057.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1052.0, + 1406.0, + 1052.0, + 1406.0, + 1087.0, + 294.0, + 1087.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1082.0, + 1405.0, + 1082.0, + 1405.0, + 1117.0, + 294.0, + 1117.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1114.0, + 1404.0, + 1114.0, + 1404.0, + 1145.0, + 295.0, + 1145.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1142.0, + 1404.0, + 1142.0, + 1404.0, + 1178.0, + 293.0, + 1178.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1173.0, + 1405.0, + 1173.0, + 1405.0, + 1209.0, + 293.0, + 1209.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1205.0, + 1193.0, + 1205.0, + 1193.0, + 1238.0, + 294.0, + 1238.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1250.0, + 1405.0, + 1250.0, + 1405.0, + 1285.0, + 295.0, + 1285.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1280.0, + 1406.0, + 1280.0, + 1406.0, + 1320.0, + 293.0, + 1320.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1311.0, + 1410.0, + 1311.0, + 1410.0, + 1350.0, + 293.0, + 1350.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1342.0, + 1407.0, + 1342.0, + 1407.0, + 1379.0, + 295.0, + 1379.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1372.0, + 1406.0, + 1372.0, + 1406.0, + 1409.0, + 293.0, + 1409.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1401.0, + 1406.0, + 1401.0, + 1406.0, + 1440.0, + 292.0, + 1440.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1435.0, + 1403.0, + 1435.0, + 1403.0, + 1468.0, + 296.0, + 1468.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1462.0, + 1406.0, + 1462.0, + 1406.0, + 1498.0, + 293.0, + 1498.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1494.0, + 1401.0, + 1494.0, + 1401.0, + 1530.0, + 296.0, + 1530.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1597.0, + 1406.0, + 1597.0, + 1406.0, + 1634.0, + 293.0, + 1634.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1628.0, + 1405.0, + 1628.0, + 1405.0, + 1662.0, + 295.0, + 1662.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1659.0, + 1405.0, + 1659.0, + 1405.0, + 1693.0, + 295.0, + 1693.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1686.0, + 1406.0, + 1686.0, + 1406.0, + 1728.0, + 293.0, + 1728.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1714.0, + 1406.0, + 1714.0, + 1406.0, + 1760.0, + 291.0, + 1760.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1748.0, + 1410.0, + 1748.0, + 1410.0, + 1786.0, + 292.0, + 1786.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1780.0, + 1406.0, + 1780.0, + 1406.0, + 1818.0, + 293.0, + 1818.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1813.0, + 1403.0, + 1813.0, + 1403.0, + 1846.0, + 296.0, + 1846.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 638.0, + 1407.0, + 638.0, + 1407.0, + 674.0, + 295.0, + 674.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 670.0, + 1409.0, + 670.0, + 1409.0, + 704.0, + 293.0, + 704.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 697.0, + 1406.0, + 697.0, + 1406.0, + 739.0, + 293.0, + 739.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 734.0, + 738.0, + 734.0, + 738.0, + 763.0, + 294.0, + 763.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1942.0, + 742.0, + 1942.0, + 742.0, + 1976.0, + 295.0, + 1976.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 757.0, + 1942.0, + 1262.0, + 1942.0, + 1262.0, + 1976.0, + 757.0, + 1976.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1288.0, + 1942.0, + 1404.0, + 1942.0, + 1404.0, + 1976.0, + 1288.0, + 1976.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1971.0, + 496.0, + 1971.0, + 496.0, + 2008.0, + 293.0, + 2008.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 526.0, + 1971.0, + 796.0, + 1971.0, + 796.0, + 2008.0, + 526.0, + 2008.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1068.0, + 1971.0, + 1263.0, + 1971.0, + 1263.0, + 2008.0, + 1068.0, + 2008.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1281.0, + 1971.0, + 1406.0, + 1971.0, + 1406.0, + 2008.0, + 1281.0, + 2008.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1999.0, + 942.0, + 1999.0, + 942.0, + 2040.0, + 294.0, + 2040.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 961.0, + 1999.0, + 1407.0, + 1999.0, + 1407.0, + 2040.0, + 961.0, + 2040.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 1, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 297, + 1568, + 1405, + 1568, + 1405, + 1845, + 297, + 1845 + ], + "score": 0.979 + }, + { + "category_id": 5, + "poly": [ + 297, + 224, + 1403, + 224, + 1403, + 418, + 297, + 418 + ], + "score": 0.978, + "html": "
DatasetStructured OntologyAnnotation (Supervision)Cross DomainSystem Response# Dialogs# Turns
SPARCdatabaseSQL (supervised)X4,29812,726
CoSQLdatabaseSQL (supervised)3,00715,598
MWoZdomain ontologyslot-value (supervised)X8,438113,556
SQAtabledenotation (weakly-supervised)X6,06617,553
" + }, + { + "category_id": 1, + "poly": [ + 297, + 1382, + 1405, + 1382, + 1405, + 1538, + 297, + 1538 + ], + "score": 0.976 + }, + { + "category_id": 1, + "poly": [ + 297, + 1137, + 1405, + 1137, + 1405, + 1293, + 297, + 1293 + ], + "score": 0.972 + }, + { + "category_id": 1, + "poly": [ + 297, + 874, + 1405, + 874, + 1405, + 1038, + 297, + 1038 + ], + "score": 0.971 + }, + { + "category_id": 1, + "poly": [ + 299, + 1907, + 1404, + 1907, + 1404, + 2035, + 299, + 2035 + ], + "score": 0.963 + }, + { + "category_id": 1, + "poly": [ + 297, + 519, + 1407, + 519, + 1407, + 613, + 297, + 613 + ], + "score": 0.953 + }, + { + "category_id": 1, + "poly": [ + 297, + 628, + 1407, + 628, + 1407, + 844, + 297, + 844 + ], + "score": 0.93 + }, + { + "category_id": 0, + "poly": [ + 300, + 1327, + 640, + 1327, + 640, + 1358, + 300, + 1358 + ], + "score": 0.91 + }, + { + "category_id": 2, + "poly": [ + 300, + 75, + 813, + 75, + 813, + 105, + 300, + 105 + ], + "score": 0.897 + }, + { + "category_id": 9, + "poly": [ + 1366, + 1863, + 1400, + 1863, + 1400, + 1891, + 1366, + 1891 + ], + "score": 0.854 + }, + { + "category_id": 9, + "poly": [ + 1366, + 1052, + 1400, + 1052, + 1400, + 1082, + 1366, + 1082 + ], + "score": 0.812 + }, + { + "category_id": 8, + "poly": [ + 454, + 1855, + 1243, + 1855, + 1243, + 1903, + 454, + 1903 + ], + "score": 0.732 + }, + { + "category_id": 2, + "poly": [ + 841, + 2088, + 858, + 2088, + 858, + 2112, + 841, + 2112 + ], + "score": 0.68 + }, + { + "category_id": 1, + "poly": [ + 297, + 1090, + 1402, + 1090, + 1402, + 1124, + 297, + 1124 + ], + "score": 0.661 + }, + { + "category_id": 1, + "poly": [ + 297, + 442, + 1401, + 442, + 1401, + 505, + 297, + 505 + ], + "score": 0.655 + }, + { + "category_id": 1, + "poly": [ + 301, + 1048, + 1340, + 1048, + 1340, + 1085, + 301, + 1085 + ], + "score": 0.427 + }, + { + "category_id": 2, + "poly": [ + 841, + 2088, + 859, + 2088, + 859, + 2112, + 841, + 2112 + ], + "score": 0.351 + }, + { + "category_id": 6, + "poly": [ + 297, + 442, + 1401, + 442, + 1401, + 505, + 297, + 505 + ], + "score": 0.321 + }, + { + "category_id": 8, + "poly": [ + 301, + 1048, + 1340, + 1048, + 1340, + 1085, + 301, + 1085 + ], + "score": 0.181 + }, + { + "category_id": 1, + "poly": [ + 454, + 1855, + 1243, + 1855, + 1243, + 1903, + 454, + 1903 + ], + "score": 0.144 + }, + { + "category_id": 13, + "poly": [ + 299, + 906, + 385, + 906, + 385, + 939, + 299, + 939 + ], + "score": 0.93, + "latex": "\\left. u _ { t } , h _ { t } \\right." + }, + { + "category_id": 13, + "poly": [ + 365, + 941, + 543, + 941, + 543, + 974, + 365, + 974 + ], + "score": 0.92, + "latex": "C _ { t } = \\langle u _ { t } , h _ { t } , c \\rangle" + }, + { + "category_id": 14, + "poly": [ + 454, + 1850, + 1243, + 1850, + 1243, + 1906, + 454, + 1906 + ], + "score": 0.91, + "latex": "{ \\mathcal { L } } _ { \\mathrm { C C S } } ( C _ { t } ) = \\sum _ { i \\in c } { \\mathrm { C r o s s E n t r o p y } } _ { 1 4 8 } ( { \\mathrm { L a y e r N o r m } } ( W _ { 2 } h _ { t , i } ^ { c } ) , { \\mathrm { C C S } } ( q _ { t } ) )" + }, + { + "category_id": 13, + "poly": [ + 369, + 1909, + 415, + 1909, + 415, + 1944, + 369, + 1944 + ], + "score": 0.91, + "latex": "h _ { t , i } ^ { c }" + }, + { + "category_id": 13, + "poly": [ + 1329, + 937, + 1361, + 937, + 1361, + 973, + 1329, + 973 + ], + "score": 0.9, + "latex": "\\vec { S } _ { t }" + }, + { + "category_id": 13, + "poly": [ + 1200, + 1002, + 1232, + 1002, + 1232, + 1038, + 1200, + 1038 + ], + "score": 0.9, + "latex": "\\vec { h } _ { t }" + }, + { + "category_id": 13, + "poly": [ + 413, + 2005, + 458, + 2005, + 458, + 2034, + 413, + 2034 + ], + "score": 0.9, + "latex": "W _ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 1165, + 1910, + 1229, + 1910, + 1229, + 1937, + 1165, + 1937 + ], + "score": 0.89, + "latex": "< / \\varsigma >" + }, + { + "category_id": 13, + "poly": [ + 1026, + 1092, + 1071, + 1092, + 1071, + 1122, + 1026, + 1122 + ], + "score": 0.89, + "latex": "W _ { 1 }" + }, + { + "category_id": 13, + "poly": [ + 396, + 1139, + 429, + 1139, + 429, + 1169, + 396, + 1169 + ], + "score": 0.88, + "latex": "C _ { t }" + }, + { + "category_id": 13, + "poly": [ + 677, + 1263, + 740, + 1263, + 740, + 1290, + 677, + 1290 + ], + "score": 0.88, + "latex": "< / \\varsigma >" + }, + { + "category_id": 13, + "poly": [ + 365, + 1786, + 428, + 1786, + 428, + 1813, + 365, + 1813 + ], + "score": 0.88, + "latex": "< / \\varsigma >" + }, + { + "category_id": 13, + "poly": [ + 476, + 1942, + 575, + 1942, + 575, + 1976, + 476, + 1976 + ], + "score": 0.88, + "latex": "\\operatorname { C C S } ( q _ { t } )" + }, + { + "category_id": 13, + "poly": [ + 451, + 975, + 483, + 975, + 483, + 1003, + 451, + 1003 + ], + "score": 0.88, + "latex": "C _ { t }" + }, + { + "category_id": 13, + "poly": [ + 1119, + 1140, + 1148, + 1140, + 1148, + 1169, + 1119, + 1169 + ], + "score": 0.87, + "latex": "h _ { t }" + }, + { + "category_id": 13, + "poly": [ + 366, + 1173, + 413, + 1173, + 413, + 1198, + 366, + 1198 + ], + "score": 0.86, + "latex": "< s >" + }, + { + "category_id": 13, + "poly": [ + 878, + 1906, + 908, + 1906, + 908, + 1935, + 878, + 1935 + ], + "score": 0.85, + "latex": "i ^ { \\mathrm { { t h } } }" + }, + { + "category_id": 13, + "poly": [ + 433, + 1943, + 465, + 1943, + 465, + 1973, + 433, + 1973 + ], + "score": 0.85, + "latex": "C _ { t }" + }, + { + "category_id": 13, + "poly": [ + 877, + 1144, + 906, + 1144, + 906, + 1169, + 877, + 1169 + ], + "score": 0.85, + "latex": "u _ { t }" + }, + { + "category_id": 13, + "poly": [ + 1372, + 1949, + 1396, + 1949, + 1396, + 1974, + 1372, + 1974 + ], + "score": 0.81, + "latex": "q _ { t }" + }, + { + "category_id": 13, + "poly": [ + 1039, + 1697, + 1057, + 1697, + 1057, + 1724, + 1039, + 1724 + ], + "score": 0.78, + "latex": "q" + }, + { + "category_id": 13, + "poly": [ + 579, + 817, + 596, + 817, + 596, + 844, + 579, + 844 + ], + "score": 0.78, + "latex": "q" + }, + { + "category_id": 13, + "poly": [ + 940, + 721, + 958, + 721, + 958, + 748, + 940, + 748 + ], + "score": 0.73, + "latex": "d" + }, + { + "category_id": 13, + "poly": [ + 430, + 721, + 449, + 721, + 449, + 748, + 430, + 748 + ], + "score": 0.71, + "latex": "d" + }, + { + "category_id": 14, + "poly": [ + 322, + 1047, + 1341, + 1047, + 1341, + 1086, + 322, + 1086 + ], + "score": 0.71, + "latex": "C _ { t } = \\langle u _ { t } , h _ { t } , c \\rangle , \\ \\vec { S } _ { t } = \\mathrm { R o B E R T A } ( C _ { t } ) , \\ h _ { t , i } = \\mathrm { L a y e r N o r m } ( \\mathrm { G E L U } ( W _ { 1 } S _ { t , i } ) ) \\ \\forall S _ { t , i } \\in \\vec { S } _ { t } ," + }, + { + "category_id": 13, + "poly": [ + 325, + 664, + 345, + 664, + 345, + 686, + 325, + 686 + ], + "score": 0.69, + "latex": "u" + }, + { + "category_id": 13, + "poly": [ + 679, + 755, + 698, + 755, + 698, + 782, + 679, + 782 + ], + "score": 0.69, + "latex": "\\pmb q" + }, + { + "category_id": 13, + "poly": [ + 529, + 634, + 551, + 634, + 551, + 657, + 529, + 657 + ], + "score": 0.63, + "latex": "\\textbf { \\em u }" + }, + { + "category_id": 13, + "poly": [ + 450, + 1979, + 487, + 1979, + 487, + 2005, + 450, + 2005 + ], + "score": 0.61, + "latex": "^ { 1 4 8 }" + }, + { + "category_id": 13, + "poly": [ + 782, + 1050, + 863, + 1050, + 863, + 1086, + 782, + 1086 + ], + "score": 0.6, + "latex": "h _ { t , i } =" + }, + { + "category_id": 13, + "poly": [ + 523, + 690, + 543, + 690, + 543, + 718, + 523, + 718 + ], + "score": 0.58, + "latex": "^ d" + }, + { + "category_id": 13, + "poly": [ + 903, + 912, + 919, + 912, + 919, + 933, + 903, + 933 + ], + "score": 0.57, + "latex": "c" + }, + { + "category_id": 13, + "poly": [ + 562, + 1668, + 577, + 1668, + 577, + 1690, + 562, + 1690 + ], + "score": 0.54, + "latex": "c" + }, + { + "category_id": 13, + "poly": [ + 363, + 1201, + 432, + 1201, + 432, + 1229, + 363, + 1229 + ], + "score": 0.43, + "latex": "2 0 1 9 \\mathrm { c }" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1324.0, + 644.0, + 1324.0, + 644.0, + 1363.0, + 294.0, + 1363.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 73.0, + 815.0, + 73.0, + 815.0, + 108.0, + 295.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 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, + 442.0, + 1403.0, + 442.0, + 1403.0, + 473.0, + 296.0, + 473.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 471.0, + 1401.0, + 471.0, + 1401.0, + 508.0, + 293.0, + 508.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1566.0, + 1406.0, + 1566.0, + 1406.0, + 1607.0, + 295.0, + 1607.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1600.0, + 1405.0, + 1600.0, + 1405.0, + 1637.0, + 295.0, + 1637.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1631.0, + 1403.0, + 1631.0, + 1403.0, + 1666.0, + 295.0, + 1666.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1661.0, + 561.0, + 1661.0, + 561.0, + 1697.0, + 294.0, + 1697.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 578.0, + 1661.0, + 1407.0, + 1661.0, + 1407.0, + 1697.0, + 578.0, + 1697.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1692.0, + 1038.0, + 1692.0, + 1038.0, + 1729.0, + 295.0, + 1729.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1058.0, + 1692.0, + 1405.0, + 1692.0, + 1405.0, + 1729.0, + 1058.0, + 1729.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1722.0, + 1405.0, + 1722.0, + 1405.0, + 1759.0, + 294.0, + 1759.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1752.0, + 1405.0, + 1752.0, + 1405.0, + 1789.0, + 292.0, + 1789.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1784.0, + 364.0, + 1784.0, + 364.0, + 1820.0, + 294.0, + 1820.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 429.0, + 1784.0, + 1403.0, + 1784.0, + 1403.0, + 1820.0, + 429.0, + 1820.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1814.0, + 558.0, + 1814.0, + 558.0, + 1849.0, + 293.0, + 1849.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1381.0, + 1407.0, + 1381.0, + 1407.0, + 1420.0, + 295.0, + 1420.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1415.0, + 1403.0, + 1415.0, + 1403.0, + 1448.0, + 296.0, + 1448.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 1437.0, + 1407.0, + 1437.0, + 1407.0, + 1488.0, + 290.0, + 1488.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1477.0, + 1402.0, + 1477.0, + 1402.0, + 1511.0, + 295.0, + 1511.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1501.0, + 1239.0, + 1501.0, + 1239.0, + 1547.0, + 294.0, + 1547.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1135.0, + 395.0, + 1135.0, + 395.0, + 1174.0, + 294.0, + 1174.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 430.0, + 1135.0, + 876.0, + 1135.0, + 876.0, + 1174.0, + 430.0, + 1174.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 907.0, + 1135.0, + 1118.0, + 1135.0, + 1118.0, + 1174.0, + 907.0, + 1174.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1149.0, + 1135.0, + 1405.0, + 1135.0, + 1405.0, + 1174.0, + 1149.0, + 1174.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1164.0, + 365.0, + 1164.0, + 365.0, + 1206.0, + 294.0, + 1206.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 414.0, + 1164.0, + 1405.0, + 1164.0, + 1405.0, + 1206.0, + 414.0, + 1206.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1195.0, + 362.0, + 1195.0, + 362.0, + 1236.0, + 292.0, + 1236.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 433.0, + 1195.0, + 1408.0, + 1195.0, + 1408.0, + 1236.0, + 433.0, + 1236.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1228.0, + 1405.0, + 1228.0, + 1405.0, + 1264.0, + 294.0, + 1264.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1259.0, + 676.0, + 1259.0, + 676.0, + 1296.0, + 295.0, + 1296.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 741.0, + 1259.0, + 1276.0, + 1259.0, + 1276.0, + 1296.0, + 741.0, + 1296.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 871.0, + 1405.0, + 871.0, + 1405.0, + 911.0, + 292.0, + 911.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 386.0, + 906.0, + 902.0, + 906.0, + 902.0, + 939.0, + 386.0, + 939.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 920.0, + 906.0, + 1406.0, + 906.0, + 1406.0, + 939.0, + 920.0, + 939.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 938.0, + 364.0, + 938.0, + 364.0, + 976.0, + 292.0, + 976.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 544.0, + 938.0, + 1328.0, + 938.0, + 1328.0, + 976.0, + 544.0, + 976.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1362.0, + 938.0, + 1407.0, + 938.0, + 1407.0, + 976.0, + 1362.0, + 976.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 972.0, + 450.0, + 972.0, + 450.0, + 1006.0, + 295.0, + 1006.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 484.0, + 972.0, + 1405.0, + 972.0, + 1405.0, + 1006.0, + 484.0, + 1006.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1007.0, + 1199.0, + 1007.0, + 1199.0, + 1040.0, + 294.0, + 1040.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1233.0, + 1007.0, + 1407.0, + 1007.0, + 1407.0, + 1040.0, + 1233.0, + 1040.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1906.0, + 368.0, + 1906.0, + 368.0, + 1942.0, + 294.0, + 1942.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 416.0, + 1906.0, + 877.0, + 1906.0, + 877.0, + 1942.0, + 416.0, + 1942.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 909.0, + 1906.0, + 1164.0, + 1906.0, + 1164.0, + 1942.0, + 909.0, + 1942.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1230.0, + 1906.0, + 1408.0, + 1906.0, + 1408.0, + 1942.0, + 1230.0, + 1942.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1938.0, + 432.0, + 1938.0, + 432.0, + 1982.0, + 292.0, + 1982.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 466.0, + 1938.0, + 475.0, + 1938.0, + 475.0, + 1982.0, + 466.0, + 1982.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 576.0, + 1938.0, + 1371.0, + 1938.0, + 1371.0, + 1982.0, + 576.0, + 1982.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1397.0, + 1938.0, + 1409.0, + 1938.0, + 1409.0, + 1982.0, + 1397.0, + 1982.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1970.0, + 449.0, + 1970.0, + 449.0, + 2011.0, + 292.0, + 2011.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 488.0, + 1970.0, + 1406.0, + 1970.0, + 1406.0, + 2011.0, + 488.0, + 2011.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 2003.0, + 412.0, + 2003.0, + 412.0, + 2035.0, + 295.0, + 2035.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 459.0, + 2003.0, + 796.0, + 2003.0, + 796.0, + 2035.0, + 459.0, + 2035.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 519.0, + 1407.0, + 519.0, + 1407.0, + 556.0, + 295.0, + 556.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 550.0, + 1404.0, + 550.0, + 1404.0, + 584.0, + 295.0, + 584.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 582.0, + 1294.0, + 582.0, + 1294.0, + 619.0, + 295.0, + 619.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 626.0, + 528.0, + 626.0, + 528.0, + 663.0, + 295.0, + 663.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 552.0, + 626.0, + 1407.0, + 626.0, + 1407.0, + 663.0, + 552.0, + 663.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 319.0, + 659.0, + 324.0, + 659.0, + 324.0, + 694.0, + 319.0, + 694.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 346.0, + 659.0, + 991.0, + 659.0, + 991.0, + 694.0, + 346.0, + 694.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 689.0, + 522.0, + 689.0, + 522.0, + 724.0, + 296.0, + 724.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 544.0, + 689.0, + 1404.0, + 689.0, + 1404.0, + 724.0, + 544.0, + 724.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 318.0, + 720.0, + 429.0, + 720.0, + 429.0, + 753.0, + 318.0, + 753.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 450.0, + 720.0, + 939.0, + 720.0, + 939.0, + 753.0, + 450.0, + 753.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 959.0, + 720.0, + 1144.0, + 720.0, + 1144.0, + 753.0, + 959.0, + 753.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 748.0, + 678.0, + 748.0, + 678.0, + 787.0, + 296.0, + 787.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 699.0, + 748.0, + 1407.0, + 748.0, + 1407.0, + 787.0, + 699.0, + 787.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 779.0, + 1405.0, + 779.0, + 1405.0, + 816.0, + 320.0, + 816.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 810.0, + 578.0, + 810.0, + 578.0, + 847.0, + 323.0, + 847.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 597.0, + 810.0, + 839.0, + 810.0, + 839.0, + 847.0, + 597.0, + 847.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1089.0, + 1025.0, + 1089.0, + 1025.0, + 1128.0, + 295.0, + 1128.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1072.0, + 1089.0, + 1407.0, + 1089.0, + 1407.0, + 1128.0, + 1072.0, + 1128.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 442.0, + 1403.0, + 442.0, + 1403.0, + 473.0, + 296.0, + 473.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 471.0, + 1401.0, + 471.0, + 1401.0, + 508.0, + 293.0, + 508.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 438.0, + 1834.0, + 453.0, + 1834.0, + 453.0, + 1934.0, + 438.0, + 1934.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1244.0, + 1834.0, + 1262.0, + 1834.0, + 1262.0, + 1934.0, + 1244.0, + 1934.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 2, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 298, + 733, + 1404, + 733, + 1404, + 981, + 298, + 981 + ], + "score": 0.985 + }, + { + "category_id": 1, + "poly": [ + 296, + 1647, + 1404, + 1647, + 1404, + 1865, + 296, + 1865 + ], + "score": 0.982 + }, + { + "category_id": 1, + "poly": [ + 296, + 1251, + 1406, + 1251, + 1406, + 1438, + 296, + 1438 + ], + "score": 0.979 + }, + { + "category_id": 1, + "poly": [ + 297, + 1057, + 1404, + 1057, + 1404, + 1215, + 297, + 1215 + ], + "score": 0.976 + }, + { + "category_id": 1, + "poly": [ + 298, + 595, + 1404, + 595, + 1404, + 720, + 298, + 720 + ], + "score": 0.974 + }, + { + "category_id": 3, + "poly": [ + 385, + 217, + 1318, + 217, + 1318, + 469, + 385, + 469 + ], + "score": 0.96 + }, + { + "category_id": 1, + "poly": [ + 295, + 1546, + 1402, + 1546, + 1402, + 1610, + 295, + 1610 + ], + "score": 0.952 + }, + { + "category_id": 8, + "poly": [ + 481, + 1884, + 1216, + 1884, + 1216, + 1946, + 481, + 1946 + ], + "score": 0.946 + }, + { + "category_id": 8, + "poly": [ + 519, + 1457, + 1180, + 1457, + 1180, + 1527, + 519, + 1527 + ], + "score": 0.932 + }, + { + "category_id": 8, + "poly": [ + 472, + 999, + 1227, + 999, + 1227, + 1038, + 472, + 1038 + ], + "score": 0.922 + }, + { + "category_id": 1, + "poly": [ + 296, + 1971, + 1403, + 1971, + 1403, + 2036, + 296, + 2036 + ], + "score": 0.903 + }, + { + "category_id": 4, + "poly": [ + 326, + 502, + 1366, + 502, + 1366, + 537, + 326, + 537 + ], + "score": 0.902 + }, + { + "category_id": 9, + "poly": [ + 1366, + 1469, + 1400, + 1469, + 1400, + 1499, + 1366, + 1499 + ], + "score": 0.889 + }, + { + "category_id": 2, + "poly": [ + 299, + 76, + 812, + 76, + 812, + 104, + 299, + 104 + ], + "score": 0.887 + }, + { + "category_id": 9, + "poly": [ + 1366, + 1003, + 1400, + 1003, + 1400, + 1034, + 1366, + 1034 + ], + "score": 0.882 + }, + { + "category_id": 9, + "poly": [ + 1366, + 1896, + 1400, + 1896, + 1400, + 1926, + 1366, + 1926 + ], + "score": 0.874 + }, + { + "category_id": 2, + "poly": [ + 840, + 2088, + 857, + 2088, + 857, + 2111, + 840, + 2111 + ], + "score": 0.789 + }, + { + "category_id": 13, + "poly": [ + 373, + 1056, + 556, + 1056, + 556, + 1092, + 373, + 1092 + ], + "score": 0.92, + "latex": "\\pmb { H } _ { t } ^ { s } \\in \\mathbb { R } ^ { ( t - 1 ) \\times d }" + }, + { + "category_id": 14, + "poly": [ + 516, + 1455, + 1180, + 1455, + 1180, + 1530, + 516, + 1530 + ], + "score": 0.91, + "latex": "\\mathcal { L } _ { \\mathrm { M L M } } ( C _ { t } ) = \\sum _ { m } \\mathrm { C r o s s E n t r o p y } _ { \\mathrm { V o c a b } } ( \\mathrm { L a y e r N o r m } ( W _ { 4 } h _ { t } ^ { m } ) )" + }, + { + "category_id": 14, + "poly": [ + 481, + 1883, + 1216, + 1883, + 1216, + 1946, + 481, + 1946 + ], + "score": 0.91, + "latex": "\\mathcal { L } = \\sum _ { C _ { t } \\in \\mathcal { D } _ { \\mathrm { s y n } } } \\left( \\mathcal { L } _ { \\mathrm { C C S } } ( C _ { t } ) + \\mathcal { L } _ { \\mathrm { T C S } } ( C _ { t } ) \\right) + \\sum _ { C _ { t } \\in \\mathcal { D } _ { \\mathrm { n a t } } } \\mathcal { L } _ { \\mathrm { M L M } } ( C _ { t } )" + }, + { + "category_id": 13, + "poly": [ + 575, + 1833, + 628, + 1833, + 628, + 1866, + 575, + 1866 + ], + "score": 0.91, + "latex": "\\mathcal { D } _ { \\mathrm { s y n } }" + }, + { + "category_id": 13, + "poly": [ + 1105, + 1711, + 1159, + 1711, + 1159, + 1744, + 1105, + 1744 + ], + "score": 0.91, + "latex": "\\mathcal { D } _ { \\mathrm { s y n } }" + }, + { + "category_id": 13, + "poly": [ + 836, + 1832, + 885, + 1832, + 885, + 1862, + 836, + 1862 + ], + "score": 0.91, + "latex": "\\mathcal { D } _ { \\mathrm { n a t } }" + }, + { + "category_id": 13, + "poly": [ + 1310, + 1548, + 1354, + 1548, + 1354, + 1579, + 1310, + 1579 + ], + "score": 0.9, + "latex": "W _ { 4 }" + }, + { + "category_id": 13, + "poly": [ + 1305, + 1092, + 1350, + 1092, + 1350, + 1122, + 1305, + 1122 + ], + "score": 0.9, + "latex": "W _ { 3 }" + }, + { + "category_id": 13, + "poly": [ + 372, + 1549, + 415, + 1549, + 415, + 1580, + 372, + 1580 + ], + "score": 0.89, + "latex": "\\pmb { h } _ { t } ^ { m }" + }, + { + "category_id": 13, + "poly": [ + 456, + 1092, + 615, + 1092, + 615, + 1125, + 456, + 1125 + ], + "score": 0.89, + "latex": "\\mathrm { T C S } ( q _ { t } , q _ { t - 1 } )" + }, + { + "category_id": 13, + "poly": [ + 1217, + 1549, + 1249, + 1549, + 1249, + 1579, + 1217, + 1579 + ], + "score": 0.89, + "latex": "C _ { t }" + }, + { + "category_id": 13, + "poly": [ + 1351, + 1651, + 1401, + 1651, + 1401, + 1680, + 1351, + 1680 + ], + "score": 0.88, + "latex": "\\mathcal { D } _ { \\mathrm { n a t } }" + }, + { + "category_id": 13, + "poly": [ + 1124, + 1097, + 1177, + 1097, + 1177, + 1124, + 1124, + 1124 + ], + "score": 0.87, + "latex": "q _ { t - 1 }" + }, + { + "category_id": 14, + "poly": [ + 473, + 998, + 1225, + 998, + 1225, + 1039, + 473, + 1039 + ], + "score": 0.87, + "latex": "\\mathcal { L } _ { \\mathrm { T C S } } ( C _ { t } ) = \\mathrm { C r o s s E n t r o p y } _ { 2 6 } ( \\mathrm { L a y e r N o r m } ( W _ { 3 } H _ { t } ^ { s } ) , \\mathrm { T C S } ( q _ { t } , q _ { t - 1 } ) )" + }, + { + "category_id": 13, + "poly": [ + 712, + 920, + 776, + 920, + 776, + 947, + 712, + 947 + ], + "score": 0.87, + "latex": "< / \\varsigma >" + }, + { + "category_id": 13, + "poly": [ + 1227, + 1062, + 1259, + 1062, + 1259, + 1092, + 1227, + 1092 + ], + "score": 0.87, + "latex": "C _ { t }" + }, + { + "category_id": 13, + "poly": [ + 1019, + 1548, + 1073, + 1548, + 1073, + 1577, + 1019, + 1577 + ], + "score": 0.87, + "latex": "15 \\%" + }, + { + "category_id": 13, + "poly": [ + 1214, + 1097, + 1240, + 1097, + 1240, + 1123, + 1214, + 1123 + ], + "score": 0.85, + "latex": "q _ { t }" + }, + { + "category_id": 13, + "poly": [ + 1060, + 891, + 1099, + 891, + 1099, + 917, + 1060, + 917 + ], + "score": 0.67, + "latex": "" + }, + { + "category_id": 13, + "poly": [ + 425, + 1094, + 442, + 1094, + 442, + 1119, + 425, + 1119 + ], + "score": 0.62, + "latex": "d" + }, + { + "category_id": 15, + "poly": [ + 408.0, + 226.0, + 444.0, + 226.0, + 444.0, + 249.0, + 408.0, + 249.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 663.0, + 225.0, + 699.0, + 225.0, + 699.0, + 248.0, + 663.0, + 248.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 840.0, + 224.0, + 878.0, + 224.0, + 878.0, + 248.0, + 840.0, + 248.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 964.0, + 223.0, + 1004.0, + 223.0, + 1004.0, + 251.0, + 964.0, + 251.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1036.0, + 221.0, + 1076.0, + 221.0, + 1076.0, + 248.0, + 1036.0, + 248.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1136.0, + 223.0, + 1173.0, + 223.0, + 1173.0, + 247.0, + 1136.0, + 247.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1207.0, + 223.0, + 1243.0, + 223.0, + 1243.0, + 246.0, + 1207.0, + 246.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 381.0, + 238.0, + 469.0, + 238.0, + 469.0, + 260.0, + 381.0, + 260.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 636.0, + 240.0, + 726.0, + 240.0, + 726.0, + 261.0, + 636.0, + 261.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 844.0, + 241.0, + 874.0, + 241.0, + 874.0, + 261.0, + 844.0, + 261.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 967.0, + 239.0, + 1002.0, + 239.0, + 1002.0, + 262.0, + 967.0, + 262.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1034.0, + 237.0, + 1077.0, + 237.0, + 1077.0, + 259.0, + 1034.0, + 259.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1173.0, + 237.0, + 1275.0, + 237.0, + 1275.0, + 258.0, + 1173.0, + 258.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 409.0, + 265.0, + 442.0, + 265.0, + 442.0, + 289.0, + 409.0, + 289.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 664.0, + 264.0, + 697.0, + 264.0, + 697.0, + 289.0, + 664.0, + 289.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 831.0, + 264.0, + 887.0, + 264.0, + 887.0, + 289.0, + 831.0, + 289.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 963.0, + 263.0, + 1003.0, + 263.0, + 1003.0, + 290.0, + 963.0, + 290.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1037.0, + 263.0, + 1075.0, + 263.0, + 1075.0, + 290.0, + 1037.0, + 290.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1134.0, + 263.0, + 1173.0, + 263.0, + 1173.0, + 290.0, + 1134.0, + 290.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1204.0, + 263.0, + 1243.0, + 263.0, + 1243.0, + 290.0, + 1204.0, + 290.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 421.0, + 292.0, + 430.0, + 292.0, + 430.0, + 300.0, + 421.0, + 300.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 977.0, + 290.0, + 991.0, + 290.0, + 991.0, + 302.0, + 977.0, + 302.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1052.0, + 292.0, + 1060.0, + 292.0, + 1060.0, + 301.0, + 1052.0, + 301.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1148.0, + 291.0, + 1159.0, + 291.0, + 1159.0, + 301.0, + 1148.0, + 301.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1220.0, + 291.0, + 1229.0, + 291.0, + 1229.0, + 301.0, + 1220.0, + 301.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 745.0, + 334.0, + 964.0, + 334.0, + 964.0, + 368.0, + 745.0, + 368.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 495.0, + 391.0, + 522.0, + 391.0, + 522.0, + 420.0, + 495.0, + 420.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 794.0, + 391.0, + 821.0, + 391.0, + 821.0, + 420.0, + 794.0, + 420.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1125.0, + 391.0, + 1153.0, + 391.0, + 1153.0, + 420.0, + 1125.0, + 420.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 405.0, + 421.0, + 644.0, + 421.0, + 644.0, + 442.0, + 405.0, + 442.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 667.0, + 420.0, + 948.0, + 420.0, + 948.0, + 444.0, + 667.0, + 444.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 977.0, + 421.0, + 1298.0, + 421.0, + 1298.0, + 442.0, + 977.0, + 442.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 463.0, + 445.0, + 578.0, + 445.0, + 578.0, + 469.0, + 463.0, + 469.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 758.0, + 443.0, + 856.0, + 443.0, + 856.0, + 471.0, + 758.0, + 471.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1073.0, + 444.0, + 1193.0, + 444.0, + 1193.0, + 471.0, + 1073.0, + 471.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 327.0, + 501.0, + 1372.0, + 501.0, + 1372.0, + 541.0, + 327.0, + 541.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 73.0, + 815.0, + 73.0, + 815.0, + 108.0, + 295.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 838.0, + 2086.0, + 861.0, + 2086.0, + 861.0, + 2118.0, + 838.0, + 2118.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 734.0, + 1408.0, + 734.0, + 1408.0, + 770.0, + 293.0, + 770.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 765.0, + 1409.0, + 765.0, + 1409.0, + 800.0, + 292.0, + 800.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 798.0, + 1406.0, + 798.0, + 1406.0, + 828.0, + 296.0, + 828.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 823.0, + 1404.0, + 823.0, + 1404.0, + 863.0, + 292.0, + 863.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 856.0, + 1408.0, + 856.0, + 1408.0, + 893.0, + 293.0, + 893.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 886.0, + 1059.0, + 886.0, + 1059.0, + 922.0, + 292.0, + 922.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1100.0, + 886.0, + 1405.0, + 886.0, + 1405.0, + 922.0, + 1100.0, + 922.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 917.0, + 711.0, + 917.0, + 711.0, + 951.0, + 293.0, + 951.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 777.0, + 917.0, + 1405.0, + 917.0, + 1405.0, + 951.0, + 777.0, + 951.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 946.0, + 776.0, + 946.0, + 776.0, + 985.0, + 293.0, + 985.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1644.0, + 1350.0, + 1644.0, + 1350.0, + 1688.0, + 293.0, + 1688.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1402.0, + 1644.0, + 1405.0, + 1644.0, + 1405.0, + 1688.0, + 1402.0, + 1688.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1680.0, + 1405.0, + 1680.0, + 1405.0, + 1715.0, + 294.0, + 1715.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1709.0, + 1104.0, + 1709.0, + 1104.0, + 1747.0, + 293.0, + 1747.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1160.0, + 1709.0, + 1405.0, + 1709.0, + 1405.0, + 1747.0, + 1160.0, + 1747.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1740.0, + 1406.0, + 1740.0, + 1406.0, + 1776.0, + 291.0, + 1776.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1768.0, + 1404.0, + 1768.0, + 1404.0, + 1806.0, + 294.0, + 1806.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1802.0, + 1404.0, + 1802.0, + 1404.0, + 1837.0, + 295.0, + 1837.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1829.0, + 574.0, + 1829.0, + 574.0, + 1870.0, + 294.0, + 1870.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 629.0, + 1829.0, + 835.0, + 1829.0, + 835.0, + 1870.0, + 629.0, + 1870.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 886.0, + 1829.0, + 898.0, + 1829.0, + 898.0, + 1870.0, + 886.0, + 1870.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1252.0, + 1407.0, + 1252.0, + 1407.0, + 1288.0, + 294.0, + 1288.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1282.0, + 1406.0, + 1282.0, + 1406.0, + 1319.0, + 294.0, + 1319.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1312.0, + 1406.0, + 1312.0, + 1406.0, + 1350.0, + 293.0, + 1350.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1343.0, + 1406.0, + 1343.0, + 1406.0, + 1379.0, + 294.0, + 1379.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1377.0, + 1406.0, + 1377.0, + 1406.0, + 1409.0, + 296.0, + 1409.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1403.0, + 1157.0, + 1403.0, + 1157.0, + 1442.0, + 293.0, + 1442.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1051.0, + 372.0, + 1051.0, + 372.0, + 1102.0, + 291.0, + 1102.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 557.0, + 1051.0, + 1226.0, + 1051.0, + 1226.0, + 1102.0, + 557.0, + 1102.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1260.0, + 1051.0, + 1408.0, + 1051.0, + 1408.0, + 1102.0, + 1260.0, + 1102.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1088.0, + 424.0, + 1088.0, + 424.0, + 1128.0, + 294.0, + 1128.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 443.0, + 1088.0, + 455.0, + 1088.0, + 455.0, + 1128.0, + 443.0, + 1128.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 616.0, + 1088.0, + 1123.0, + 1088.0, + 1123.0, + 1128.0, + 616.0, + 1128.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1178.0, + 1088.0, + 1213.0, + 1088.0, + 1213.0, + 1128.0, + 1178.0, + 1128.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1241.0, + 1088.0, + 1304.0, + 1088.0, + 1304.0, + 1128.0, + 1241.0, + 1128.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1351.0, + 1088.0, + 1407.0, + 1088.0, + 1407.0, + 1128.0, + 1351.0, + 1128.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1119.0, + 1406.0, + 1119.0, + 1406.0, + 1158.0, + 294.0, + 1158.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1148.0, + 1405.0, + 1148.0, + 1405.0, + 1190.0, + 294.0, + 1190.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1177.0, + 412.0, + 1177.0, + 412.0, + 1221.0, + 293.0, + 1221.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 594.0, + 1406.0, + 594.0, + 1406.0, + 631.0, + 295.0, + 631.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 628.0, + 1404.0, + 628.0, + 1404.0, + 661.0, + 294.0, + 661.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 656.0, + 1405.0, + 656.0, + 1405.0, + 694.0, + 293.0, + 694.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 688.0, + 988.0, + 688.0, + 988.0, + 723.0, + 293.0, + 723.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1542.0, + 371.0, + 1542.0, + 371.0, + 1582.0, + 294.0, + 1582.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 416.0, + 1542.0, + 1018.0, + 1542.0, + 1018.0, + 1582.0, + 416.0, + 1582.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1074.0, + 1542.0, + 1216.0, + 1542.0, + 1216.0, + 1582.0, + 1074.0, + 1582.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1250.0, + 1542.0, + 1309.0, + 1542.0, + 1309.0, + 1582.0, + 1250.0, + 1582.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1355.0, + 1542.0, + 1407.0, + 1542.0, + 1407.0, + 1582.0, + 1355.0, + 1582.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1579.0, + 589.0, + 1579.0, + 589.0, + 1611.0, + 297.0, + 1611.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1971.0, + 1409.0, + 1971.0, + 1409.0, + 2007.0, + 295.0, + 2007.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 2002.0, + 1408.0, + 2002.0, + 1408.0, + 2038.0, + 296.0, + 2038.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 3, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 297, + 296, + 1405, + 296, + 1405, + 511, + 297, + 511 + ], + "score": 0.98 + }, + { + "category_id": 1, + "poly": [ + 299, + 524, + 825, + 524, + 825, + 1136, + 299, + 1136 + ], + "score": 0.979 + }, + { + "category_id": 1, + "poly": [ + 297, + 1152, + 1405, + 1152, + 1405, + 1398, + 297, + 1398 + ], + "score": 0.978 + }, + { + "category_id": 1, + "poly": [ + 299, + 1723, + 1406, + 1723, + 1406, + 1907, + 299, + 1907 + ], + "score": 0.974 + }, + { + "category_id": 1, + "poly": [ + 299, + 1615, + 1406, + 1615, + 1406, + 1708, + 299, + 1708 + ], + "score": 0.97 + }, + { + "category_id": 2, + "poly": [ + 331, + 1974, + 842, + 1974, + 842, + 2035, + 331, + 2035 + ], + "score": 0.949 + }, + { + "category_id": 1, + "poly": [ + 853, + 612, + 1397, + 612, + 1397, + 1128, + 853, + 1128 + ], + "score": 0.916 + }, + { + "category_id": 0, + "poly": [ + 300, + 229, + 574, + 229, + 574, + 261, + 300, + 261 + ], + "score": 0.903 + }, + { + "category_id": 0, + "poly": [ + 302, + 1464, + 691, + 1464, + 691, + 1500, + 302, + 1500 + ], + "score": 0.896 + }, + { + "category_id": 2, + "poly": [ + 300, + 75, + 813, + 75, + 813, + 104, + 300, + 104 + ], + "score": 0.882 + }, + { + "category_id": 0, + "poly": [ + 301, + 1549, + 826, + 1549, + 826, + 1581, + 301, + 1581 + ], + "score": 0.88 + }, + { + "category_id": 0, + "poly": [ + 849, + 571, + 1277, + 571, + 1277, + 603, + 849, + 603 + ], + "score": 0.813 + }, + { + "category_id": 2, + "poly": [ + 841, + 2088, + 858, + 2088, + 858, + 2112, + 841, + 2112 + ], + "score": 0.748 + }, + { + "category_id": 13, + "poly": [ + 637, + 863, + 674, + 863, + 674, + 892, + 637, + 892 + ], + "score": 0.91, + "latex": "G _ { c }" + }, + { + "category_id": 13, + "poly": [ + 1152, + 1276, + 1180, + 1276, + 1180, + 1309, + 1152, + 1309 + ], + "score": 0.89, + "latex": "\\tilde { q } _ { p }" + }, + { + "category_id": 13, + "poly": [ + 613, + 619, + 649, + 619, + 649, + 649, + 613, + 649 + ], + "score": 0.88, + "latex": "G _ { s }" + }, + { + "category_id": 13, + "poly": [ + 743, + 680, + 780, + 680, + 780, + 710, + 743, + 710 + ], + "score": 0.88, + "latex": "G _ { c }" + }, + { + "category_id": 13, + "poly": [ + 412, + 741, + 449, + 741, + 449, + 771, + 412, + 771 + ], + "score": 0.88, + "latex": "G _ { s }" + }, + { + "category_id": 13, + "poly": [ + 529, + 1245, + 560, + 1245, + 560, + 1274, + 529, + 1274 + ], + "score": 0.88, + "latex": "\\tilde { u } _ { 0 }" + }, + { + "category_id": 13, + "poly": [ + 1146, + 1367, + 1174, + 1367, + 1174, + 1396, + 1146, + 1396 + ], + "score": 0.87, + "latex": "\\tilde { u } _ { t }" + }, + { + "category_id": 13, + "poly": [ + 1107, + 1337, + 1132, + 1337, + 1132, + 1367, + 1107, + 1367 + ], + "score": 0.87, + "latex": "\\tilde { q } _ { t }" + }, + { + "category_id": 13, + "poly": [ + 566, + 1338, + 595, + 1338, + 595, + 1369, + 566, + 1369 + ], + "score": 0.86, + "latex": "\\tilde { q } _ { p }" + }, + { + "category_id": 13, + "poly": [ + 1002, + 1756, + 1063, + 1756, + 1063, + 1785, + 1002, + 1785 + ], + "score": 0.86, + "latex": "1 2 \\mathrm { k } +" + }, + { + "category_id": 13, + "poly": [ + 935, + 1245, + 962, + 1245, + 962, + 1275, + 935, + 1275 + ], + "score": 0.86, + "latex": "\\tilde { q } _ { 0 }" + }, + { + "category_id": 13, + "poly": [ + 571, + 1309, + 599, + 1309, + 599, + 1335, + 571, + 1335 + ], + "score": 0.85, + "latex": "r _ { c }" + }, + { + "category_id": 13, + "poly": [ + 1320, + 1304, + 1403, + 1304, + 1403, + 1338, + 1320, + 1338 + ], + "score": 0.85, + "latex": "( \\tilde { q } _ { p } , r _ { c } )" + }, + { + "category_id": 13, + "poly": [ + 936, + 776, + 1006, + 776, + 1006, + 801, + 936, + 801 + ], + "score": 0.85, + "latex": "t \\gets 1" + }, + { + "category_id": 13, + "poly": [ + 1247, + 956, + 1329, + 956, + 1329, + 988, + 1247, + 988 + ], + "score": 0.83, + "latex": "( r _ { c } , \\tilde { q } _ { p } )" + }, + { + "category_id": 13, + "poly": [ + 1107, + 1245, + 1132, + 1245, + 1132, + 1271, + 1107, + 1271 + ], + "score": 0.8, + "latex": "T" + }, + { + "category_id": 13, + "poly": [ + 894, + 744, + 1071, + 744, + 1071, + 775, + 894, + 775 + ], + "score": 0.78, + "latex": "\\tilde { u } _ { p } , \\tilde { q } _ { p } \\gets \\tilde { u } _ { 0 } , \\tilde { q } _ { 0 }" + }, + { + "category_id": 13, + "poly": [ + 894, + 709, + 1058, + 709, + 1058, + 743, + 894, + 743 + ], + "score": 0.76, + "latex": "\\tilde { h } + = ( \\tilde { u } _ { 0 } , \\tilde { q } _ { 0 } )" + }, + { + "category_id": 13, + "poly": [ + 1038, + 775, + 1063, + 775, + 1063, + 800, + 1038, + 800 + ], + "score": 0.75, + "latex": "T" + }, + { + "category_id": 13, + "poly": [ + 1383, + 1154, + 1402, + 1154, + 1402, + 1180, + 1383, + 1180 + ], + "score": 0.69, + "latex": "d" + }, + { + "category_id": 13, + "poly": [ + 298, + 421, + 316, + 421, + 316, + 448, + 298, + 448 + ], + "score": 0.68, + "latex": "d" + }, + { + "category_id": 13, + "poly": [ + 749, + 1275, + 832, + 1275, + 832, + 1308, + 749, + 1308 + ], + "score": 0.68, + "latex": "( r _ { c } , \\tilde { q } _ { p } )" + }, + { + "category_id": 13, + "poly": [ + 958, + 803, + 1169, + 803, + 1169, + 835, + 958, + 835 + ], + "score": 0.64, + "latex": "\\mathrm { R A N D } ( 0 , 1 ) < 0 . 2" + }, + { + "category_id": 13, + "poly": [ + 924, + 359, + 984, + 359, + 984, + 388, + 924, + 388 + ], + "score": 0.6, + "latex": "4 0 0 \\mathrm { k }" + }, + { + "category_id": 13, + "poly": [ + 977, + 835, + 1203, + 835, + 1203, + 864, + 977, + 864 + ], + "score": 0.59, + "latex": "r _ { s } \\gets \\mathbf { S A M P L E } ( G _ { s } )" + }, + { + "category_id": 13, + "poly": [ + 894, + 646, + 1119, + 646, + 1119, + 677, + 894, + 677 + ], + "score": 0.57, + "latex": "r _ { s } \\gets \\mathbf { S A M P L E } ( G _ { s } )" + }, + { + "category_id": 13, + "poly": [ + 1197, + 420, + 1259, + 420, + 1259, + 449, + 1197, + 449 + ], + "score": 0.5, + "latex": "4 3 5 \\mathrm { k }" + }, + { + "category_id": 14, + "poly": [ + 975, + 923, + 1201, + 923, + 1201, + 957, + 975, + 957 + ], + "score": 0.5, + "latex": "r _ { c } \\gets \\mathbf { S A M P L E } ( G _ { c } )" + }, + { + "category_id": 13, + "poly": [ + 1322, + 863, + 1395, + 863, + 1395, + 897, + 1322, + 897 + ], + "score": 0.46, + "latex": "( d , r _ { s } )" + }, + { + "category_id": 13, + "poly": [ + 893, + 609, + 973, + 609, + 973, + 644, + 893, + 644 + ], + "score": 0.35, + "latex": "\\tilde { h } \\emptyset" + }, + { + "category_id": 13, + "poly": [ + 894, + 678, + 1004, + 678, + 1004, + 708, + 894, + 708 + ], + "score": 0.29, + "latex": "\\tilde { u } _ { 0 } , \\tilde { q } _ { 0 } \\gets" + }, + { + "category_id": 13, + "poly": [ + 975, + 923, + 1201, + 923, + 1201, + 957, + 975, + 957 + ], + "score": 0.29, + "latex": "r _ { c } \\gets \\mathbf { S A M P L E } ( G _ { c } )" + }, + { + "category_id": 14, + "poly": [ + 974, + 866, + 1399, + 866, + 1399, + 897, + 974, + 897 + ], + "score": 0.28, + "latex": "\\tilde { u } _ { t } , \\tilde { q } _ { t } \\gets \\mathrm { R A N D A S S I G N S L O T S } ( d , r _ { s } )" + }, + { + "category_id": 13, + "poly": [ + 1147, + 834, + 1201, + 834, + 1201, + 866, + 1147, + 866 + ], + "score": 0.27, + "latex": "\\left( G _ { s } \\right)" + }, + { + "category_id": 15, + "poly": [ + 331.0, + 1969.0, + 845.0, + 1969.0, + 845.0, + 2009.0, + 331.0, + 2009.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 328.0, + 1999.0, + 842.0, + 1999.0, + 842.0, + 2040.0, + 328.0, + 2040.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 226.0, + 578.0, + 226.0, + 578.0, + 266.0, + 294.0, + 266.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1462.0, + 695.0, + 1462.0, + 695.0, + 1505.0, + 292.0, + 1505.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 72.0, + 815.0, + 72.0, + 815.0, + 108.0, + 295.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1549.0, + 830.0, + 1549.0, + 830.0, + 1585.0, + 295.0, + 1585.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 846.0, + 571.0, + 1277.0, + 571.0, + 1277.0, + 603.0, + 846.0, + 603.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, + 295.0, + 1405.0, + 295.0, + 1405.0, + 332.0, + 294.0, + 332.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 328.0, + 1406.0, + 328.0, + 1406.0, + 363.0, + 295.0, + 363.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 360.0, + 923.0, + 360.0, + 923.0, + 391.0, + 296.0, + 391.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 985.0, + 360.0, + 1403.0, + 360.0, + 1403.0, + 391.0, + 985.0, + 391.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 389.0, + 1405.0, + 389.0, + 1405.0, + 423.0, + 294.0, + 423.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 317.0, + 419.0, + 1196.0, + 419.0, + 1196.0, + 454.0, + 317.0, + 454.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1260.0, + 419.0, + 1405.0, + 419.0, + 1405.0, + 454.0, + 1260.0, + 454.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 449.0, + 1406.0, + 449.0, + 1406.0, + 487.0, + 292.0, + 487.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 480.0, + 926.0, + 480.0, + 926.0, + 517.0, + 292.0, + 517.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 524.0, + 829.0, + 524.0, + 829.0, + 560.0, + 295.0, + 560.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 556.0, + 830.0, + 556.0, + 830.0, + 590.0, + 295.0, + 590.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 585.0, + 830.0, + 585.0, + 830.0, + 623.0, + 293.0, + 623.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 616.0, + 612.0, + 616.0, + 612.0, + 655.0, + 293.0, + 655.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 650.0, + 616.0, + 828.0, + 616.0, + 828.0, + 655.0, + 650.0, + 655.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 648.0, + 827.0, + 648.0, + 827.0, + 682.0, + 295.0, + 682.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 678.0, + 742.0, + 678.0, + 742.0, + 714.0, + 295.0, + 714.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 781.0, + 678.0, + 827.0, + 678.0, + 827.0, + 714.0, + 781.0, + 714.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 709.0, + 825.0, + 709.0, + 825.0, + 744.0, + 295.0, + 744.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 741.0, + 411.0, + 741.0, + 411.0, + 774.0, + 295.0, + 774.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 450.0, + 741.0, + 827.0, + 741.0, + 827.0, + 774.0, + 450.0, + 774.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 769.0, + 829.0, + 769.0, + 829.0, + 806.0, + 293.0, + 806.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 801.0, + 830.0, + 801.0, + 830.0, + 834.0, + 295.0, + 834.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 831.0, + 829.0, + 831.0, + 829.0, + 864.0, + 294.0, + 864.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 859.0, + 636.0, + 859.0, + 636.0, + 896.0, + 294.0, + 896.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 675.0, + 859.0, + 830.0, + 859.0, + 830.0, + 896.0, + 675.0, + 896.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 892.0, + 827.0, + 892.0, + 827.0, + 925.0, + 295.0, + 925.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 923.0, + 827.0, + 923.0, + 827.0, + 954.0, + 296.0, + 954.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 952.0, + 829.0, + 952.0, + 829.0, + 986.0, + 295.0, + 986.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 984.0, + 828.0, + 984.0, + 828.0, + 1016.0, + 295.0, + 1016.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1014.0, + 827.0, + 1014.0, + 827.0, + 1047.0, + 297.0, + 1047.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1043.0, + 829.0, + 1043.0, + 829.0, + 1078.0, + 295.0, + 1078.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1075.0, + 826.0, + 1075.0, + 826.0, + 1108.0, + 295.0, + 1108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1106.0, + 774.0, + 1106.0, + 774.0, + 1138.0, + 295.0, + 1138.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1151.0, + 1382.0, + 1151.0, + 1382.0, + 1188.0, + 294.0, + 1188.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1403.0, + 1151.0, + 1408.0, + 1151.0, + 1408.0, + 1188.0, + 1403.0, + 1188.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1184.0, + 1405.0, + 1184.0, + 1405.0, + 1217.0, + 295.0, + 1217.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1214.0, + 1405.0, + 1214.0, + 1405.0, + 1247.0, + 295.0, + 1247.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1244.0, + 528.0, + 1244.0, + 528.0, + 1280.0, + 292.0, + 1280.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 561.0, + 1244.0, + 934.0, + 1244.0, + 934.0, + 1280.0, + 561.0, + 1280.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 963.0, + 1244.0, + 1106.0, + 1244.0, + 1106.0, + 1280.0, + 963.0, + 1280.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1133.0, + 1244.0, + 1406.0, + 1244.0, + 1406.0, + 1280.0, + 1133.0, + 1280.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1273.0, + 748.0, + 1273.0, + 748.0, + 1312.0, + 291.0, + 1312.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 833.0, + 1273.0, + 1151.0, + 1273.0, + 1151.0, + 1312.0, + 833.0, + 1312.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1181.0, + 1273.0, + 1406.0, + 1273.0, + 1406.0, + 1312.0, + 1181.0, + 1312.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1299.0, + 570.0, + 1299.0, + 570.0, + 1344.0, + 291.0, + 1344.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 600.0, + 1299.0, + 1319.0, + 1299.0, + 1319.0, + 1344.0, + 600.0, + 1344.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1404.0, + 1299.0, + 1407.0, + 1299.0, + 1407.0, + 1344.0, + 1404.0, + 1344.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1335.0, + 565.0, + 1335.0, + 565.0, + 1372.0, + 294.0, + 1372.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 596.0, + 1335.0, + 1106.0, + 1335.0, + 1106.0, + 1372.0, + 596.0, + 1372.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1133.0, + 1335.0, + 1407.0, + 1335.0, + 1407.0, + 1372.0, + 1133.0, + 1372.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1366.0, + 1145.0, + 1366.0, + 1145.0, + 1402.0, + 294.0, + 1402.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1175.0, + 1366.0, + 1187.0, + 1366.0, + 1187.0, + 1402.0, + 1175.0, + 1402.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1724.0, + 1406.0, + 1724.0, + 1406.0, + 1759.0, + 296.0, + 1759.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1754.0, + 1001.0, + 1754.0, + 1001.0, + 1792.0, + 292.0, + 1792.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1064.0, + 1754.0, + 1408.0, + 1754.0, + 1408.0, + 1792.0, + 1064.0, + 1792.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1785.0, + 1407.0, + 1785.0, + 1407.0, + 1820.0, + 294.0, + 1820.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1814.0, + 1404.0, + 1814.0, + 1404.0, + 1853.0, + 294.0, + 1853.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1845.0, + 1406.0, + 1845.0, + 1406.0, + 1882.0, + 293.0, + 1882.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1875.0, + 766.0, + 1875.0, + 766.0, + 1913.0, + 294.0, + 1913.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1614.0, + 1407.0, + 1614.0, + 1407.0, + 1652.0, + 294.0, + 1652.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": [ + 295.0, + 1678.0, + 563.0, + 1678.0, + 563.0, + 1707.0, + 295.0, + 1707.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 858.0, + 608.0, + 892.0, + 608.0, + 892.0, + 647.0, + 858.0, + 647.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 974.0, + 608.0, + 979.0, + 608.0, + 979.0, + 647.0, + 974.0, + 647.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 855.0, + 641.0, + 893.0, + 641.0, + 893.0, + 683.0, + 855.0, + 683.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1120.0, + 641.0, + 1124.0, + 641.0, + 1124.0, + 683.0, + 1120.0, + 683.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 855.0, + 673.0, + 893.0, + 673.0, + 893.0, + 712.0, + 855.0, + 712.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1005.0, + 673.0, + 1321.0, + 673.0, + 1321.0, + 712.0, + 1005.0, + 712.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 855.0, + 705.0, + 893.0, + 705.0, + 893.0, + 750.0, + 855.0, + 750.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1059.0, + 705.0, + 1065.0, + 705.0, + 1065.0, + 750.0, + 1059.0, + 750.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 860.0, + 740.0, + 893.0, + 740.0, + 893.0, + 781.0, + 860.0, + 781.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1072.0, + 740.0, + 1077.0, + 740.0, + 1077.0, + 781.0, + 1072.0, + 781.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 860.0, + 772.0, + 935.0, + 772.0, + 935.0, + 804.0, + 860.0, + 804.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1007.0, + 772.0, + 1037.0, + 772.0, + 1037.0, + 804.0, + 1007.0, + 804.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1064.0, + 772.0, + 1102.0, + 772.0, + 1102.0, + 804.0, + 1064.0, + 804.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 857.0, + 803.0, + 889.0, + 803.0, + 889.0, + 834.0, + 857.0, + 834.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 930.0, + 798.0, + 957.0, + 798.0, + 957.0, + 839.0, + 930.0, + 839.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1170.0, + 798.0, + 1233.0, + 798.0, + 1233.0, + 839.0, + 1170.0, + 839.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 858.0, + 834.0, + 889.0, + 834.0, + 889.0, + 865.0, + 858.0, + 865.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 973.0, + 830.0, + 976.0, + 830.0, + 976.0, + 869.0, + 973.0, + 869.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1204.0, + 830.0, + 1208.0, + 830.0, + 1208.0, + 869.0, + 1204.0, + 869.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 856.0, + 864.0, + 889.0, + 864.0, + 889.0, + 893.0, + 856.0, + 893.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 847.0, + 894.0, + 889.0, + 894.0, + 889.0, + 926.0, + 847.0, + 926.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 933.0, + 893.0, + 988.0, + 893.0, + 988.0, + 926.0, + 933.0, + 926.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 847.0, + 926.0, + 889.0, + 926.0, + 889.0, + 955.0, + 847.0, + 955.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1202.0, + 920.0, + 1205.0, + 920.0, + 1205.0, + 961.0, + 1202.0, + 961.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 847.0, + 955.0, + 889.0, + 955.0, + 889.0, + 987.0, + 847.0, + 987.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 973.0, + 952.0, + 1246.0, + 952.0, + 1246.0, + 991.0, + 973.0, + 991.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1330.0, + 952.0, + 1394.0, + 952.0, + 1394.0, + 991.0, + 1330.0, + 991.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 847.0, + 987.0, + 889.0, + 987.0, + 889.0, + 1018.0, + 847.0, + 1018.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1016.0, + 986.0, + 1361.0, + 986.0, + 1361.0, + 1021.0, + 1016.0, + 1021.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 847.0, + 1023.0, + 889.0, + 1023.0, + 889.0, + 1054.0, + 847.0, + 1054.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 931.0, + 1015.0, + 1136.0, + 1015.0, + 1136.0, + 1063.0, + 931.0, + 1063.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 845.0, + 1054.0, + 891.0, + 1054.0, + 891.0, + 1088.0, + 845.0, + 1088.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 932.0, + 1053.0, + 1113.0, + 1053.0, + 1113.0, + 1092.0, + 932.0, + 1092.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 844.0, + 1089.0, + 1003.0, + 1089.0, + 1003.0, + 1123.0, + 844.0, + 1123.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 4, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 298, + 892, + 1403, + 892, + 1403, + 1077, + 298, + 1077 + ], + "score": 0.975 + }, + { + "category_id": 1, + "poly": [ + 298, + 337, + 1404, + 337, + 1404, + 491, + 298, + 491 + ], + "score": 0.975 + }, + { + "category_id": 1, + "poly": [ + 298, + 1420, + 1404, + 1420, + 1404, + 1573, + 298, + 1573 + ], + "score": 0.975 + }, + { + "category_id": 1, + "poly": [ + 299, + 506, + 1404, + 506, + 1404, + 661, + 299, + 661 + ], + "score": 0.974 + }, + { + "category_id": 1, + "poly": [ + 299, + 1826, + 1405, + 1826, + 1405, + 1950, + 299, + 1950 + ], + "score": 0.974 + }, + { + "category_id": 1, + "poly": [ + 299, + 755, + 1404, + 755, + 1404, + 878, + 299, + 878 + ], + "score": 0.974 + }, + { + "category_id": 1, + "poly": [ + 299, + 1093, + 1404, + 1093, + 1404, + 1217, + 299, + 1217 + ], + "score": 0.973 + }, + { + "category_id": 1, + "poly": [ + 298, + 1589, + 1404, + 1589, + 1404, + 1713, + 298, + 1713 + ], + "score": 0.972 + }, + { + "category_id": 1, + "poly": [ + 299, + 1232, + 1403, + 1232, + 1403, + 1324, + 299, + 1324 + ], + "score": 0.97 + }, + { + "category_id": 1, + "poly": [ + 298, + 228, + 1401, + 228, + 1401, + 322, + 298, + 322 + ], + "score": 0.964 + }, + { + "category_id": 2, + "poly": [ + 330, + 1975, + 944, + 1975, + 944, + 2033, + 330, + 2033 + ], + "score": 0.946 + }, + { + "category_id": 0, + "poly": [ + 302, + 1757, + 704, + 1757, + 704, + 1792, + 302, + 1792 + ], + "score": 0.898 + }, + { + "category_id": 2, + "poly": [ + 300, + 75, + 813, + 75, + 813, + 104, + 300, + 104 + ], + "score": 0.878 + }, + { + "category_id": 0, + "poly": [ + 301, + 1362, + 784, + 1362, + 784, + 1394, + 301, + 1394 + ], + "score": 0.859 + }, + { + "category_id": 2, + "poly": [ + 840, + 2089, + 859, + 2089, + 859, + 2112, + 840, + 2112 + ], + "score": 0.783 + }, + { + "category_id": 0, + "poly": [ + 302, + 698, + 830, + 698, + 830, + 729, + 302, + 729 + ], + "score": 0.772 + }, + { + "category_id": 1, + "poly": [ + 302, + 698, + 830, + 698, + 830, + 729, + 302, + 729 + ], + "score": 0.135 + }, + { + "category_id": 13, + "poly": [ + 547, + 957, + 588, + 957, + 588, + 985, + 547, + 985 + ], + "score": 0.84, + "latex": "2 \\%" + }, + { + "category_id": 13, + "poly": [ + 554, + 1513, + 763, + 1513, + 763, + 1542, + 554, + 1542 + ], + "score": 0.78, + "latex": "\\mathbf { C C S + T C S + M L M } )" + }, + { + "category_id": 13, + "poly": [ + 301, + 1481, + 429, + 1481, + 429, + 1512, + 301, + 1512 + ], + "score": 0.73, + "latex": "( \\mathrm { C C S + T C S } )" + }, + { + "category_id": 13, + "poly": [ + 504, + 927, + 614, + 927, + 614, + 956, + 504, + 956 + ], + "score": 0.6, + "latex": "\\mathbf { B E R T _ { b a s e } }" + }, + { + "category_id": 13, + "poly": [ + 1233, + 1512, + 1355, + 1512, + 1355, + 1542, + 1233, + 1542 + ], + "score": 0.45, + "latex": "\\mathrm { C C S + T C S }" + }, + { + "category_id": 15, + "poly": [ + 329.0, + 1969.0, + 947.0, + 1969.0, + 947.0, + 2008.0, + 329.0, + 2008.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 330.0, + 2000.0, + 604.0, + 2000.0, + 604.0, + 2039.0, + 330.0, + 2039.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1754.0, + 708.0, + 1754.0, + 708.0, + 1797.0, + 293.0, + 1797.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 72.0, + 815.0, + 72.0, + 815.0, + 108.0, + 295.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1362.0, + 786.0, + 1362.0, + 786.0, + 1398.0, + 295.0, + 1398.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 840.0, + 2087.0, + 862.0, + 2087.0, + 862.0, + 2118.0, + 840.0, + 2118.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 697.0, + 833.0, + 697.0, + 833.0, + 733.0, + 295.0, + 733.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 894.0, + 1405.0, + 894.0, + 1405.0, + 930.0, + 294.0, + 930.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 922.0, + 503.0, + 922.0, + 503.0, + 963.0, + 291.0, + 963.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 615.0, + 922.0, + 1407.0, + 922.0, + 1407.0, + 963.0, + 615.0, + 963.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 955.0, + 546.0, + 955.0, + 546.0, + 991.0, + 294.0, + 991.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 589.0, + 955.0, + 1405.0, + 955.0, + 1405.0, + 991.0, + 589.0, + 991.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 986.0, + 1405.0, + 986.0, + 1405.0, + 1023.0, + 292.0, + 1023.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1016.0, + 1405.0, + 1016.0, + 1405.0, + 1051.0, + 293.0, + 1051.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1047.0, + 707.0, + 1047.0, + 707.0, + 1082.0, + 296.0, + 1082.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 333.0, + 1409.0, + 333.0, + 1409.0, + 378.0, + 293.0, + 378.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 366.0, + 1405.0, + 366.0, + 1405.0, + 403.0, + 294.0, + 403.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 399.0, + 1405.0, + 399.0, + 1405.0, + 436.0, + 294.0, + 436.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 430.0, + 1404.0, + 430.0, + 1404.0, + 464.0, + 292.0, + 464.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 460.0, + 1151.0, + 460.0, + 1151.0, + 497.0, + 294.0, + 497.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1421.0, + 1402.0, + 1421.0, + 1402.0, + 1454.0, + 296.0, + 1454.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1449.0, + 1404.0, + 1449.0, + 1404.0, + 1485.0, + 295.0, + 1485.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1481.0, + 300.0, + 1481.0, + 300.0, + 1518.0, + 294.0, + 1518.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 430.0, + 1481.0, + 1406.0, + 1481.0, + 1406.0, + 1518.0, + 430.0, + 1518.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1508.0, + 553.0, + 1508.0, + 553.0, + 1549.0, + 293.0, + 1549.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 764.0, + 1508.0, + 1232.0, + 1508.0, + 1232.0, + 1549.0, + 764.0, + 1549.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1356.0, + 1508.0, + 1406.0, + 1508.0, + 1406.0, + 1549.0, + 1356.0, + 1549.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1543.0, + 753.0, + 1543.0, + 753.0, + 1577.0, + 293.0, + 1577.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 508.0, + 1405.0, + 508.0, + 1405.0, + 541.0, + 297.0, + 541.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 537.0, + 1404.0, + 537.0, + 1404.0, + 573.0, + 294.0, + 573.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 568.0, + 1405.0, + 568.0, + 1405.0, + 605.0, + 294.0, + 605.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 598.0, + 1405.0, + 598.0, + 1405.0, + 635.0, + 294.0, + 635.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 627.0, + 1278.0, + 627.0, + 1278.0, + 667.0, + 293.0, + 667.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1826.0, + 1407.0, + 1826.0, + 1407.0, + 1862.0, + 294.0, + 1862.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1859.0, + 1405.0, + 1859.0, + 1405.0, + 1892.0, + 295.0, + 1892.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1888.0, + 1410.0, + 1888.0, + 1410.0, + 1923.0, + 293.0, + 1923.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1918.0, + 1128.0, + 1918.0, + 1128.0, + 1951.0, + 297.0, + 1951.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 755.0, + 1408.0, + 755.0, + 1408.0, + 791.0, + 294.0, + 791.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 784.0, + 1406.0, + 784.0, + 1406.0, + 823.0, + 293.0, + 823.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 819.0, + 1409.0, + 819.0, + 1409.0, + 851.0, + 295.0, + 851.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, + 1091.0, + 1406.0, + 1091.0, + 1406.0, + 1131.0, + 293.0, + 1131.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1125.0, + 1406.0, + 1125.0, + 1406.0, + 1161.0, + 294.0, + 1161.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1153.0, + 1405.0, + 1153.0, + 1405.0, + 1191.0, + 293.0, + 1191.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1185.0, + 1293.0, + 1185.0, + 1293.0, + 1221.0, + 294.0, + 1221.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, + 1616.0, + 1409.0, + 1616.0, + 1409.0, + 1656.0, + 293.0, + 1656.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1649.0, + 1405.0, + 1649.0, + 1405.0, + 1687.0, + 292.0, + 1687.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1684.0, + 411.0, + 1684.0, + 411.0, + 1715.0, + 293.0, + 1715.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1232.0, + 1405.0, + 1232.0, + 1405.0, + 1266.0, + 295.0, + 1266.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1264.0, + 1403.0, + 1264.0, + 1403.0, + 1295.0, + 294.0, + 1295.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1295.0, + 1221.0, + 1295.0, + 1221.0, + 1325.0, + 297.0, + 1325.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 228.0, + 1405.0, + 228.0, + 1405.0, + 265.0, + 294.0, + 265.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 260.0, + 1405.0, + 260.0, + 1405.0, + 294.0, + 296.0, + 294.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 292.0, + 1287.0, + 292.0, + 1287.0, + 326.0, + 296.0, + 326.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 697.0, + 833.0, + 697.0, + 833.0, + 733.0, + 295.0, + 733.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 5, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 5, + "poly": [ + 340, + 223, + 1358, + 223, + 1358, + 594, + 340, + 594 + ], + "score": 0.983, + "html": "
SPARCCoSQL
DevTestDevTest
QMIMQMIMQMIMQMIM
SyntaxSQL (Yu et al.,2018a)18.54.320.25.21-14.22.2
GAZP + BERT (Zhong et al., 2020)48.929.745.923.542.012.339.712.8
EditSQL + BERT (Zhang et al.,2019c)47.229.547.925.339.912.340.813.7
IGSQL +BERT50.732.551.229.544.115.842.515.0
R²SQL +BERT1-55.830.81-46.817.0
RAT-SQL + BERT (Wang et al., 2019)56.833.41148.419.11-
+ROBERTA58.236.7--50.119.3--
+ SCoRE62.242.562.438.152.122.051.621.2
" + }, + { + "category_id": 5, + "poly": [ + 890, + 695, + 1390, + 695, + 1390, + 1030, + 890, + 1030 + ], + "score": 0.979, + "html": "
ModelsSQA
QMIM
Pasupat & Liang (2015)33.27.7
Neelakantan et al. (2017)40.211.8
Iyyer et al. (2017)44.712.8
Sun et al. (2019a)45.613.2
Muller et al. (2019)55.128.1
Herzig et al. (2020)67.240.4
Wang et al. (2019)+RoBERTa62.833.2
Wang et al. (2019) + SCoRE65.438.5
" + }, + { + "category_id": 5, + "poly": [ + 296, + 688, + 847, + 688, + 847, + 1001, + 296, + 1001 + ], + "score": 0.977, + "html": "
ModelsMWoZ 2.1
DST-reader (Gao et al.,2019)36.40
TRADE (Wu et al., 2019)46.60
DS-DST (Zhang et al.,2019a)51.21
SOM-DST (Kim et al.,2020)52.57
DS-picklist (Zhang et al.,2019a)53.30
TripPy (Heck et al.,2020)55.29
SimpleToD (Hosseini-Asl et al.,2020)55.72
TripPy (ours)58.37
+ SCoRE60.48
" + }, + { + "category_id": 5, + "poly": [ + 728, + 1528, + 1399, + 1528, + 1399, + 1672, + 728, + 1672 + ], + "score": 0.973, + "html": "
Learning ObjectiveSPARCCoSQLMWoZSQA
MLM only37.0(+0.3)20.3(+1.0)59.47(+1.10)34.7(+1.5)
CCS only41.3(+4.6)21.2(+1.9)59.32(+0.95)32.7(-0.5)
CCS+TCS42.5(+5.8)22.0(+2.7)38.5(+5.3)
CCS+TCS+MLM38.6(+1.9)21.7(+2.4)60.48(+2.11)33.7(+0.5)
" + }, + { + "category_id": 1, + "poly": [ + 297, + 1759, + 1406, + 1759, + 1406, + 2035, + 297, + 2035 + ], + "score": 0.973 + }, + { + "category_id": 1, + "poly": [ + 297, + 1162, + 1404, + 1162, + 1404, + 1468, + 297, + 1468 + ], + "score": 0.962 + }, + { + "category_id": 1, + "poly": [ + 297, + 1515, + 707, + 1515, + 707, + 1758, + 297, + 1758 + ], + "score": 0.961 + }, + { + "category_id": 2, + "poly": [ + 300, + 76, + 812, + 76, + 812, + 104, + 300, + 104 + ], + "score": 0.895 + }, + { + "category_id": 1, + "poly": [ + 727, + 1683, + 1404, + 1683, + 1404, + 1745, + 727, + 1745 + ], + "score": 0.893 + }, + { + "category_id": 6, + "poly": [ + 298, + 603, + 1400, + 603, + 1400, + 666, + 298, + 666 + ], + "score": 0.798 + }, + { + "category_id": 6, + "poly": [ + 295, + 1024, + 854, + 1024, + 854, + 1116, + 295, + 1116 + ], + "score": 0.781 + }, + { + "category_id": 2, + "poly": [ + 841, + 2087, + 858, + 2087, + 858, + 2111, + 841, + 2111 + ], + "score": 0.755 + }, + { + "category_id": 6, + "poly": [ + 891, + 1050, + 1394, + 1050, + 1394, + 1110, + 891, + 1110 + ], + "score": 0.626 + }, + { + "category_id": 7, + "poly": [ + 891, + 1050, + 1394, + 1050, + 1394, + 1110, + 891, + 1110 + ], + "score": 0.356 + }, + { + "category_id": 7, + "poly": [ + 298, + 603, + 1400, + 603, + 1400, + 666, + 298, + 666 + ], + "score": 0.141 + }, + { + "category_id": 13, + "poly": [ + 808, + 1973, + 885, + 1973, + 885, + 2002, + 808, + 2002 + ], + "score": 0.9, + "latex": "+ 1 . 7 \\%" + }, + { + "category_id": 13, + "poly": [ + 1077, + 1973, + 1155, + 1973, + 1155, + 2002, + 1077, + 2002 + ], + "score": 0.9, + "latex": "+ 3 . 4 \\%" + }, + { + "category_id": 13, + "poly": [ + 590, + 1973, + 672, + 1973, + 672, + 2002, + 590, + 2002 + ], + "score": 0.88, + "latex": "( + 5 . 5 \\%" + }, + { + "category_id": 13, + "poly": [ + 297, + 1790, + 507, + 1790, + 507, + 1819, + 297, + 1819 + ], + "score": 0.87, + "latex": "\\mathbf { C C S + T C S + M L M }" + }, + { + "category_id": 13, + "poly": [ + 1198, + 1790, + 1262, + 1790, + 1262, + 1820, + 1198, + 1820 + ], + "score": 0.86, + "latex": ". 0 . 3 \\%" + }, + { + "category_id": 13, + "poly": [ + 760, + 1195, + 823, + 1195, + 823, + 1224, + 760, + 1224 + ], + "score": 0.86, + "latex": "2 . 0 \\%" + }, + { + "category_id": 13, + "poly": [ + 740, + 1255, + 814, + 1255, + 814, + 1285, + 740, + 1285 + ], + "score": 0.86, + "latex": "6 0 . 5 \\%" + }, + { + "category_id": 13, + "poly": [ + 896, + 1286, + 956, + 1286, + 956, + 1315, + 896, + 1315 + ], + "score": 0.86, + "latex": "4 . 8 \\%" + }, + { + "category_id": 13, + "poly": [ + 344, + 1821, + 413, + 1821, + 413, + 1850, + 344, + 1850 + ], + "score": 0.85, + "latex": "- 4 . 4 \\%" + }, + { + "category_id": 13, + "poly": [ + 387, + 1377, + 450, + 1377, + 450, + 1407, + 387, + 1407 + ], + "score": 0.85, + "latex": "2 . 6 \\%" + }, + { + "category_id": 13, + "poly": [ + 1275, + 1943, + 1359, + 1943, + 1359, + 1974, + 1275, + 1974 + ], + "score": 0.85, + "latex": "( \\ 1 . 0 \\% )" + }, + { + "category_id": 13, + "poly": [ + 980, + 1790, + 1054, + 1790, + 1054, + 1820, + 980, + 1820 + ], + "score": 0.84, + "latex": "- 3 . 9 \\%" + }, + { + "category_id": 13, + "poly": [ + 582, + 1377, + 645, + 1377, + 645, + 1406, + 582, + 1406 + ], + "score": 0.84, + "latex": "4 . 9 \\%" + }, + { + "category_id": 13, + "poly": [ + 333, + 1195, + 395, + 1195, + 395, + 1224, + 333, + 1224 + ], + "score": 0.83, + "latex": "4 . 0 \\%" + }, + { + "category_id": 13, + "poly": [ + 1084, + 1759, + 1210, + 1759, + 1210, + 1789, + 1084, + 1789 + ], + "score": 0.8, + "latex": "\\mathrm { C C S + T C S }" + }, + { + "category_id": 13, + "poly": [ + 461, + 1973, + 584, + 1973, + 584, + 2002, + 461, + 2002 + ], + "score": 0.78, + "latex": "\\mathrm { C C S + T C S }" + }, + { + "category_id": 13, + "poly": [ + 467, + 1195, + 530, + 1195, + 530, + 1224, + 467, + 1224 + ], + "score": 0.76, + "latex": "5 . 8 \\%" + }, + { + "category_id": 13, + "poly": [ + 894, + 1194, + 958, + 1194, + 958, + 1225, + 894, + 1225 + ], + "score": 0.76, + "latex": "2 . 7 \\%" + }, + { + "category_id": 13, + "poly": [ + 361, + 1699, + 496, + 1699, + 496, + 1729, + 361, + 1729 + ], + "score": 0.72, + "latex": "( \\mathrm { C C S + T C S } )" + }, + { + "category_id": 13, + "poly": [ + 1230, + 1760, + 1357, + 1760, + 1357, + 1789, + 1230, + 1789 + ], + "score": 0.69, + "latex": "\\mathrm { C C S + T C S }" + }, + { + "category_id": 13, + "poly": [ + 489, + 636, + 514, + 636, + 514, + 662, + 489, + 662 + ], + "score": 0.63, + "latex": "^ +" + }, + { + "category_id": 13, + "poly": [ + 450, + 410, + 472, + 410, + 472, + 431, + 450, + 431 + ], + "score": 0.6, + "latex": "^ +" + }, + { + "category_id": 13, + "poly": [ + 427, + 383, + 448, + 383, + 448, + 404, + 427, + 404 + ], + "score": 0.54, + "latex": "^ +" + }, + { + "category_id": 13, + "poly": [ + 637, + 633, + 750, + 633, + 750, + 664, + 637, + 664 + ], + "score": 0.52, + "latex": "\\mathrm { R ^ { 2 } S Q L + }" + }, + { + "category_id": 13, + "poly": [ + 1095, + 967, + 1116, + 967, + 1116, + 988, + 1095, + 988 + ], + "score": 0.39, + "latex": "^ +" + }, + { + "category_id": 13, + "poly": [ + 1307, + 1790, + 1397, + 1790, + 1397, + 1820, + 1307, + 1820 + ], + "score": 0.34, + "latex": "\\mathbf { C o S Q L }" + }, + { + "category_id": 13, + "poly": [ + 435, + 437, + 456, + 437, + 456, + 458, + 435, + 458 + ], + "score": 0.31, + "latex": "^ +" + }, + { + "category_id": 13, + "poly": [ + 486, + 1163, + 585, + 1163, + 585, + 1193, + 486, + 1193 + ], + "score": 0.25, + "latex": "\\mathrm { C o S Q L }" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 73.0, + 815.0, + 73.0, + 815.0, + 108.0, + 295.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 603.0, + 1404.0, + 603.0, + 1404.0, + 638.0, + 294.0, + 638.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 632.0, + 488.0, + 632.0, + 488.0, + 666.0, + 293.0, + 666.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 515.0, + 632.0, + 636.0, + 632.0, + 636.0, + 666.0, + 515.0, + 666.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 751.0, + 632.0, + 1207.0, + 632.0, + 1207.0, + 666.0, + 751.0, + 666.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1023.0, + 855.0, + 1023.0, + 855.0, + 1057.0, + 295.0, + 1057.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1052.0, + 859.0, + 1052.0, + 859.0, + 1088.0, + 294.0, + 1088.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1085.0, + 432.0, + 1085.0, + 432.0, + 1117.0, + 295.0, + 1117.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": [ + 891.0, + 1048.0, + 1395.0, + 1048.0, + 1395.0, + 1084.0, + 891.0, + 1084.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 891.0, + 1080.0, + 1230.0, + 1080.0, + 1230.0, + 1113.0, + 891.0, + 1113.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 891.0, + 1048.0, + 1395.0, + 1048.0, + 1395.0, + 1084.0, + 891.0, + 1084.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 891.0, + 1080.0, + 1230.0, + 1080.0, + 1230.0, + 1113.0, + 891.0, + 1113.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 603.0, + 1404.0, + 603.0, + 1404.0, + 638.0, + 294.0, + 638.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 632.0, + 488.0, + 632.0, + 488.0, + 666.0, + 293.0, + 666.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 515.0, + 632.0, + 636.0, + 632.0, + 636.0, + 666.0, + 515.0, + 666.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 751.0, + 632.0, + 1207.0, + 632.0, + 1207.0, + 666.0, + 751.0, + 666.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1759.0, + 1083.0, + 1759.0, + 1083.0, + 1795.0, + 295.0, + 1795.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1211.0, + 1759.0, + 1229.0, + 1759.0, + 1229.0, + 1795.0, + 1211.0, + 1795.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1358.0, + 1759.0, + 1411.0, + 1759.0, + 1411.0, + 1795.0, + 1358.0, + 1795.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1785.0, + 296.0, + 1785.0, + 296.0, + 1828.0, + 292.0, + 1828.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 508.0, + 1785.0, + 979.0, + 1785.0, + 979.0, + 1828.0, + 508.0, + 1828.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1055.0, + 1785.0, + 1197.0, + 1785.0, + 1197.0, + 1828.0, + 1055.0, + 1828.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1263.0, + 1785.0, + 1306.0, + 1785.0, + 1306.0, + 1828.0, + 1263.0, + 1828.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1398.0, + 1785.0, + 1409.0, + 1785.0, + 1409.0, + 1828.0, + 1398.0, + 1828.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1820.0, + 343.0, + 1820.0, + 343.0, + 1857.0, + 295.0, + 1857.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 414.0, + 1820.0, + 1406.0, + 1820.0, + 1406.0, + 1857.0, + 414.0, + 1857.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1847.0, + 1407.0, + 1847.0, + 1407.0, + 1889.0, + 291.0, + 1889.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1881.0, + 1406.0, + 1881.0, + 1406.0, + 1918.0, + 294.0, + 1918.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1907.0, + 1406.0, + 1907.0, + 1406.0, + 1949.0, + 294.0, + 1949.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1940.0, + 1274.0, + 1940.0, + 1274.0, + 1979.0, + 294.0, + 1979.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1360.0, + 1940.0, + 1406.0, + 1940.0, + 1406.0, + 1979.0, + 1360.0, + 1979.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1971.0, + 460.0, + 1971.0, + 460.0, + 2008.0, + 294.0, + 2008.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 585.0, + 1971.0, + 589.0, + 1971.0, + 589.0, + 2008.0, + 585.0, + 2008.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 673.0, + 1971.0, + 807.0, + 1971.0, + 807.0, + 2008.0, + 673.0, + 2008.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 886.0, + 1971.0, + 1076.0, + 1971.0, + 1076.0, + 2008.0, + 886.0, + 2008.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1156.0, + 1971.0, + 1406.0, + 1971.0, + 1406.0, + 2008.0, + 1156.0, + 2008.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 2000.0, + 1409.0, + 2000.0, + 1409.0, + 2039.0, + 294.0, + 2039.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1163.0, + 485.0, + 1163.0, + 485.0, + 1198.0, + 295.0, + 1198.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 586.0, + 1163.0, + 1405.0, + 1163.0, + 1405.0, + 1198.0, + 586.0, + 1198.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1194.0, + 332.0, + 1194.0, + 332.0, + 1229.0, + 294.0, + 1229.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 396.0, + 1194.0, + 466.0, + 1194.0, + 466.0, + 1229.0, + 396.0, + 1229.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 531.0, + 1194.0, + 759.0, + 1194.0, + 759.0, + 1229.0, + 531.0, + 1229.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 824.0, + 1194.0, + 893.0, + 1194.0, + 893.0, + 1229.0, + 824.0, + 1229.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 959.0, + 1194.0, + 1405.0, + 1194.0, + 1405.0, + 1229.0, + 959.0, + 1229.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1225.0, + 1405.0, + 1225.0, + 1405.0, + 1260.0, + 295.0, + 1260.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1252.0, + 739.0, + 1252.0, + 739.0, + 1295.0, + 292.0, + 1295.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 815.0, + 1252.0, + 1406.0, + 1252.0, + 1406.0, + 1295.0, + 815.0, + 1295.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1279.0, + 895.0, + 1279.0, + 895.0, + 1326.0, + 291.0, + 1326.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 957.0, + 1279.0, + 1408.0, + 1279.0, + 1408.0, + 1326.0, + 957.0, + 1326.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1316.0, + 1405.0, + 1316.0, + 1405.0, + 1352.0, + 295.0, + 1352.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1347.0, + 1406.0, + 1347.0, + 1406.0, + 1382.0, + 295.0, + 1382.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1376.0, + 386.0, + 1376.0, + 386.0, + 1411.0, + 296.0, + 1411.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 451.0, + 1376.0, + 581.0, + 1376.0, + 581.0, + 1411.0, + 451.0, + 1411.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 646.0, + 1376.0, + 1405.0, + 1376.0, + 1405.0, + 1411.0, + 646.0, + 1411.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1408.0, + 1406.0, + 1408.0, + 1406.0, + 1443.0, + 295.0, + 1443.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1441.0, + 781.0, + 1441.0, + 781.0, + 1469.0, + 297.0, + 1469.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1511.0, + 711.0, + 1511.0, + 711.0, + 1549.0, + 295.0, + 1549.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1544.0, + 710.0, + 1544.0, + 710.0, + 1579.0, + 294.0, + 1579.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1577.0, + 709.0, + 1577.0, + 709.0, + 1608.0, + 296.0, + 1608.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1606.0, + 709.0, + 1606.0, + 709.0, + 1639.0, + 294.0, + 1639.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1637.0, + 708.0, + 1637.0, + 708.0, + 1669.0, + 296.0, + 1669.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1669.0, + 709.0, + 1669.0, + 709.0, + 1701.0, + 294.0, + 1701.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1696.0, + 360.0, + 1696.0, + 360.0, + 1732.0, + 294.0, + 1732.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 497.0, + 1696.0, + 713.0, + 1696.0, + 713.0, + 1732.0, + 497.0, + 1732.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1725.0, + 711.0, + 1725.0, + 711.0, + 1764.0, + 294.0, + 1764.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 724.0, + 1681.0, + 1406.0, + 1681.0, + 1406.0, + 1718.0, + 724.0, + 1718.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 724.0, + 1715.0, + 1195.0, + 1715.0, + 1195.0, + 1746.0, + 724.0, + 1746.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 6, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 297, + 1269, + 1405, + 1269, + 1405, + 1516, + 297, + 1516 + ], + "score": 0.974 + }, + { + "category_id": 5, + "poly": [ + 910, + 932, + 1376, + 932, + 1376, + 1076, + 910, + 1076 + ], + "score": 0.973, + "html": "
MWoZ
SOM-DST+BERT52.57
+ SCoRE on syn. text-to-SQL53.57
+ SCoRE on syn. MWoZ54.61
" + }, + { + "category_id": 1, + "poly": [ + 298, + 919, + 865, + 919, + 865, + 1161, + 298, + 1161 + ], + "score": 0.972 + }, + { + "category_id": 1, + "poly": [ + 300, + 1943, + 1404, + 1943, + 1404, + 2034, + 300, + 2034 + ], + "score": 0.969 + }, + { + "category_id": 5, + "poly": [ + 860, + 333, + 1388, + 333, + 1388, + 468, + 860, + 468 + ], + "score": 0.968, + "html": "
QMQ1Q2Q3Q4
RAT-SQL +BERT56.871.153.647.831.8
+RoBERTa58.268.758.548.935.2
+ SCoRE62.270.663.552.645.5
" + }, + { + "category_id": 1, + "poly": [ + 298, + 609, + 1026, + 609, + 1026, + 792, + 298, + 792 + ], + "score": 0.963 + }, + { + "category_id": 5, + "poly": [ + 1060, + 604, + 1384, + 604, + 1384, + 714, + 1060, + 714 + ], + "score": 0.963, + "html": "
CoSQLMWoZ
no syn48.458.37
with syn48.658.45
" + }, + { + "category_id": 1, + "poly": [ + 297, + 1550, + 1077, + 1550, + 1077, + 1764, + 297, + 1764 + ], + "score": 0.963 + }, + { + "category_id": 5, + "poly": [ + 1116, + 1562, + 1385, + 1562, + 1385, + 1672, + 1116, + 1672 + ], + "score": 0.962, + "html": "
QMIM
RoBERTa53.321.2
SCoRE57.126.1
" + }, + { + "category_id": 1, + "poly": [ + 298, + 328, + 825, + 328, + 825, + 546, + 298, + 546 + ], + "score": 0.956 + }, + { + "category_id": 1, + "poly": [ + 297, + 793, + 1391, + 793, + 1391, + 883, + 297, + 883 + ], + "score": 0.956 + }, + { + "category_id": 1, + "poly": [ + 299, + 1163, + 1402, + 1163, + 1402, + 1255, + 299, + 1255 + ], + "score": 0.953 + }, + { + "category_id": 1, + "poly": [ + 297, + 1765, + 1403, + 1765, + 1403, + 1825, + 297, + 1825 + ], + "score": 0.93 + }, + { + "category_id": 0, + "poly": [ + 301, + 1871, + 587, + 1871, + 587, + 1906, + 301, + 1906 + ], + "score": 0.898 + }, + { + "category_id": 2, + "poly": [ + 300, + 76, + 812, + 76, + 812, + 104, + 300, + 104 + ], + "score": 0.893 + }, + { + "category_id": 7, + "poly": [ + 1098, + 1679, + 1402, + 1679, + 1402, + 1768, + 1098, + 1768 + ], + "score": 0.868 + }, + { + "category_id": 2, + "poly": [ + 840, + 2088, + 858, + 2088, + 858, + 2112, + 840, + 2112 + ], + "score": 0.78 + }, + { + "category_id": 1, + "poly": [ + 845, + 474, + 1406, + 474, + 1406, + 535, + 845, + 535 + ], + "score": 0.701 + }, + { + "category_id": 1, + "poly": [ + 299, + 230, + 1400, + 230, + 1400, + 291, + 299, + 291 + ], + "score": 0.641 + }, + { + "category_id": 1, + "poly": [ + 1043, + 721, + 1401, + 721, + 1401, + 783, + 1043, + 783 + ], + "score": 0.636 + }, + { + "category_id": 1, + "poly": [ + 298, + 542, + 1364, + 542, + 1364, + 573, + 298, + 573 + ], + "score": 0.63 + }, + { + "category_id": 7, + "poly": [ + 1043, + 721, + 1401, + 721, + 1401, + 783, + 1043, + 783 + ], + "score": 0.482 + }, + { + "category_id": 7, + "poly": [ + 884, + 1082, + 1403, + 1082, + 1403, + 1144, + 884, + 1144 + ], + "score": 0.472 + }, + { + "category_id": 1, + "poly": [ + 884, + 1082, + 1403, + 1082, + 1403, + 1144, + 884, + 1144 + ], + "score": 0.47 + }, + { + "category_id": 7, + "poly": [ + 845, + 474, + 1406, + 474, + 1406, + 535, + 845, + 535 + ], + "score": 0.377 + }, + { + "category_id": 6, + "poly": [ + 299, + 230, + 1400, + 230, + 1400, + 291, + 299, + 291 + ], + "score": 0.296 + }, + { + "category_id": 7, + "poly": [ + 298, + 542, + 1364, + 542, + 1364, + 573, + 298, + 573 + ], + "score": 0.234 + }, + { + "category_id": 13, + "poly": [ + 1005, + 1332, + 1100, + 1332, + 1100, + 1363, + 1005, + 1363 + ], + "score": 0.89, + "latex": "( + 4 . 9 \\% )" + }, + { + "category_id": 13, + "poly": [ + 788, + 1332, + 884, + 1332, + 884, + 1363, + 788, + 1363 + ], + "score": 0.89, + "latex": "( + 2 . 7 \\% )" + }, + { + "category_id": 13, + "poly": [ + 520, + 1703, + 572, + 1703, + 572, + 1732, + 520, + 1732 + ], + "score": 0.86, + "latex": "10 \\%" + }, + { + "category_id": 13, + "poly": [ + 1122, + 502, + 1153, + 502, + 1153, + 531, + 1122, + 531 + ], + "score": 0.85, + "latex": "i ^ { \\mathrm { { t h } } }" + }, + { + "category_id": 13, + "poly": [ + 845, + 505, + 879, + 505, + 879, + 536, + 845, + 536 + ], + "score": 0.85, + "latex": "\\mathrm { Q } _ { i }" + }, + { + "category_id": 13, + "poly": [ + 837, + 1794, + 890, + 1794, + 890, + 1823, + 837, + 1823 + ], + "score": 0.85, + "latex": "10 \\%" + }, + { + "category_id": 13, + "poly": [ + 804, + 230, + 866, + 230, + 866, + 260, + 804, + 260 + ], + "score": 0.85, + "latex": "1 . 2 \\%" + }, + { + "category_id": 13, + "poly": [ + 1045, + 230, + 1108, + 230, + 1108, + 261, + 1045, + 261 + ], + "score": 0.84, + "latex": "0 . 8 \\%" + }, + { + "category_id": 13, + "poly": [ + 1180, + 1794, + 1241, + 1794, + 1241, + 1824, + 1180, + 1824 + ], + "score": 0.83, + "latex": "3 . 8 \\%" + }, + { + "category_id": 13, + "poly": [ + 1275, + 1794, + 1338, + 1794, + 1338, + 1824, + 1275, + 1824 + ], + "score": 0.83, + "latex": "2 . 6 \\%" + }, + { + "category_id": 13, + "poly": [ + 1244, + 1709, + 1301, + 1709, + 1301, + 1739, + 1244, + 1739 + ], + "score": 0.82, + "latex": "10 \\%" + }, + { + "category_id": 13, + "poly": [ + 1303, + 230, + 1366, + 230, + 1366, + 260, + 1303, + 260 + ], + "score": 0.82, + "latex": "4 . 4 \\%" + }, + { + "category_id": 13, + "poly": [ + 302, + 1301, + 431, + 1301, + 431, + 1331, + 302, + 1331 + ], + "score": 0.64, + "latex": "\\mathrm { ( T C S + C C S ) }" + }, + { + "category_id": 13, + "poly": [ + 525, + 1227, + 544, + 1227, + 544, + 1251, + 525, + 1251 + ], + "score": 0.45, + "latex": "+" + }, + { + "category_id": 13, + "poly": [ + 1235, + 790, + 1309, + 790, + 1309, + 820, + 1235, + 820 + ], + "score": 0.4, + "latex": "2 0 1 9 \\mathrm { c }" + }, + { + "category_id": 13, + "poly": [ + 778, + 1226, + 807, + 1226, + 807, + 1251, + 778, + 1251 + ], + "score": 0.34, + "latex": "+ \\mathsfit { S }" + }, + { + "category_id": 13, + "poly": [ + 1041, + 984, + 1061, + 984, + 1061, + 1005, + 1041, + 1005 + ], + "score": 0.33, + "latex": "^ +" + }, + { + "category_id": 13, + "poly": [ + 938, + 1012, + 959, + 1012, + 959, + 1034, + 938, + 1034 + ], + "score": 0.26, + "latex": "^ +" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1868.0, + 593.0, + 1868.0, + 593.0, + 1912.0, + 292.0, + 1912.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 73.0, + 815.0, + 73.0, + 815.0, + 108.0, + 295.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1094.0, + 1674.0, + 1406.0, + 1674.0, + 1406.0, + 1711.0, + 1094.0, + 1711.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1094.0, + 1703.0, + 1243.0, + 1703.0, + 1243.0, + 1746.0, + 1094.0, + 1746.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1302.0, + 1703.0, + 1407.0, + 1703.0, + 1407.0, + 1746.0, + 1302.0, + 1746.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1095.0, + 1738.0, + 1256.0, + 1738.0, + 1256.0, + 1773.0, + 1095.0, + 1773.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": [ + 1041.0, + 717.0, + 1403.0, + 717.0, + 1403.0, + 753.0, + 1041.0, + 753.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1041.0, + 751.0, + 1381.0, + 751.0, + 1381.0, + 785.0, + 1041.0, + 785.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 882.0, + 1081.0, + 1404.0, + 1081.0, + 1404.0, + 1115.0, + 882.0, + 1115.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 884.0, + 1112.0, + 1347.0, + 1112.0, + 1347.0, + 1144.0, + 884.0, + 1144.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 843.0, + 471.0, + 1408.0, + 471.0, + 1408.0, + 506.0, + 843.0, + 506.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 880.0, + 499.0, + 1121.0, + 499.0, + 1121.0, + 541.0, + 880.0, + 541.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1154.0, + 499.0, + 1411.0, + 499.0, + 1411.0, + 541.0, + 1154.0, + 541.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 225.0, + 803.0, + 225.0, + 803.0, + 268.0, + 293.0, + 268.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 867.0, + 225.0, + 1044.0, + 225.0, + 1044.0, + 268.0, + 867.0, + 268.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1109.0, + 225.0, + 1302.0, + 225.0, + 1302.0, + 268.0, + 1109.0, + 268.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1367.0, + 225.0, + 1406.0, + 225.0, + 1406.0, + 268.0, + 1367.0, + 268.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 257.0, + 377.0, + 257.0, + 377.0, + 299.0, + 292.0, + 299.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 537.0, + 1369.0, + 537.0, + 1369.0, + 579.0, + 295.0, + 579.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1267.0, + 1406.0, + 1267.0, + 1406.0, + 1306.0, + 291.0, + 1306.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1301.0, + 301.0, + 1301.0, + 301.0, + 1335.0, + 295.0, + 1335.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 432.0, + 1301.0, + 1407.0, + 1301.0, + 1407.0, + 1335.0, + 432.0, + 1335.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1332.0, + 787.0, + 1332.0, + 787.0, + 1366.0, + 295.0, + 1366.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 885.0, + 1332.0, + 1004.0, + 1332.0, + 1004.0, + 1366.0, + 885.0, + 1366.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1101.0, + 1332.0, + 1405.0, + 1332.0, + 1405.0, + 1366.0, + 1101.0, + 1366.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1362.0, + 1403.0, + 1362.0, + 1403.0, + 1396.0, + 295.0, + 1396.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1393.0, + 1406.0, + 1393.0, + 1406.0, + 1429.0, + 292.0, + 1429.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1421.0, + 1403.0, + 1421.0, + 1403.0, + 1455.0, + 295.0, + 1455.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1452.0, + 1406.0, + 1452.0, + 1406.0, + 1489.0, + 294.0, + 1489.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1483.0, + 1280.0, + 1483.0, + 1280.0, + 1520.0, + 294.0, + 1520.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 917.0, + 868.0, + 917.0, + 868.0, + 955.0, + 295.0, + 955.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 949.0, + 864.0, + 949.0, + 864.0, + 984.0, + 295.0, + 984.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 980.0, + 864.0, + 980.0, + 864.0, + 1014.0, + 297.0, + 1014.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1011.0, + 864.0, + 1011.0, + 864.0, + 1042.0, + 295.0, + 1042.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1038.0, + 868.0, + 1038.0, + 868.0, + 1076.0, + 294.0, + 1076.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1070.0, + 868.0, + 1070.0, + 868.0, + 1105.0, + 295.0, + 1105.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1101.0, + 867.0, + 1101.0, + 867.0, + 1134.0, + 294.0, + 1134.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1130.0, + 868.0, + 1130.0, + 868.0, + 1163.0, + 294.0, + 1163.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1943.0, + 1404.0, + 1943.0, + 1404.0, + 1977.0, + 296.0, + 1977.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1973.0, + 1405.0, + 1973.0, + 1405.0, + 2006.0, + 294.0, + 2006.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 2000.0, + 1409.0, + 2000.0, + 1409.0, + 2039.0, + 294.0, + 2039.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 606.0, + 1022.0, + 606.0, + 1022.0, + 643.0, + 296.0, + 643.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 639.0, + 1022.0, + 639.0, + 1022.0, + 670.0, + 295.0, + 670.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 667.0, + 1022.0, + 667.0, + 1022.0, + 702.0, + 294.0, + 702.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 698.0, + 1022.0, + 698.0, + 1022.0, + 733.0, + 295.0, + 733.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 728.0, + 1021.0, + 728.0, + 1021.0, + 764.0, + 295.0, + 764.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 759.0, + 1022.0, + 759.0, + 1022.0, + 796.0, + 295.0, + 796.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1549.0, + 1077.0, + 1549.0, + 1077.0, + 1582.0, + 297.0, + 1582.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1580.0, + 1077.0, + 1580.0, + 1077.0, + 1614.0, + 294.0, + 1614.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1611.0, + 1080.0, + 1611.0, + 1080.0, + 1644.0, + 294.0, + 1644.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1639.0, + 1079.0, + 1639.0, + 1079.0, + 1676.0, + 294.0, + 1676.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1671.0, + 1078.0, + 1671.0, + 1078.0, + 1706.0, + 294.0, + 1706.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1702.0, + 519.0, + 1702.0, + 519.0, + 1735.0, + 295.0, + 1735.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 573.0, + 1702.0, + 1078.0, + 1702.0, + 1078.0, + 1735.0, + 573.0, + 1735.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1733.0, + 1079.0, + 1733.0, + 1079.0, + 1769.0, + 295.0, + 1769.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 330.0, + 829.0, + 330.0, + 829.0, + 360.0, + 297.0, + 360.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 358.0, + 829.0, + 358.0, + 829.0, + 390.0, + 294.0, + 390.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 387.0, + 826.0, + 387.0, + 826.0, + 421.0, + 295.0, + 421.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 418.0, + 826.0, + 418.0, + 826.0, + 452.0, + 295.0, + 452.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 449.0, + 825.0, + 449.0, + 825.0, + 484.0, + 295.0, + 484.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 481.0, + 824.0, + 481.0, + 824.0, + 515.0, + 295.0, + 515.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 507.0, + 825.0, + 507.0, + 825.0, + 545.0, + 294.0, + 545.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 788.0, + 1234.0, + 788.0, + 1234.0, + 827.0, + 293.0, + 827.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1310.0, + 788.0, + 1396.0, + 788.0, + 1396.0, + 827.0, + 1310.0, + 827.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 823.0, + 1396.0, + 823.0, + 1396.0, + 856.0, + 294.0, + 856.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 852.0, + 1151.0, + 852.0, + 1151.0, + 885.0, + 296.0, + 885.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1161.0, + 1408.0, + 1161.0, + 1408.0, + 1198.0, + 294.0, + 1198.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1192.0, + 1404.0, + 1192.0, + 1404.0, + 1226.0, + 294.0, + 1226.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1221.0, + 524.0, + 1221.0, + 524.0, + 1259.0, + 294.0, + 1259.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 545.0, + 1221.0, + 777.0, + 1221.0, + 777.0, + 1259.0, + 545.0, + 1259.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 808.0, + 1221.0, + 1087.0, + 1221.0, + 1087.0, + 1259.0, + 808.0, + 1259.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1763.0, + 1405.0, + 1763.0, + 1405.0, + 1797.0, + 296.0, + 1797.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1794.0, + 836.0, + 1794.0, + 836.0, + 1827.0, + 293.0, + 1827.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 891.0, + 1794.0, + 1179.0, + 1794.0, + 1179.0, + 1827.0, + 891.0, + 1827.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1242.0, + 1794.0, + 1274.0, + 1794.0, + 1274.0, + 1827.0, + 1242.0, + 1827.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1339.0, + 1794.0, + 1356.0, + 1794.0, + 1356.0, + 1827.0, + 1339.0, + 1827.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 843.0, + 471.0, + 1408.0, + 471.0, + 1408.0, + 506.0, + 843.0, + 506.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 880.0, + 499.0, + 1121.0, + 499.0, + 1121.0, + 541.0, + 880.0, + 541.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1154.0, + 499.0, + 1411.0, + 499.0, + 1411.0, + 541.0, + 1154.0, + 541.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 225.0, + 803.0, + 225.0, + 803.0, + 268.0, + 293.0, + 268.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 867.0, + 225.0, + 1044.0, + 225.0, + 1044.0, + 268.0, + 867.0, + 268.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1109.0, + 225.0, + 1302.0, + 225.0, + 1302.0, + 268.0, + 1109.0, + 268.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1367.0, + 225.0, + 1406.0, + 225.0, + 1406.0, + 268.0, + 1367.0, + 268.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 257.0, + 377.0, + 257.0, + 377.0, + 299.0, + 292.0, + 299.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1041.0, + 717.0, + 1403.0, + 717.0, + 1403.0, + 753.0, + 1041.0, + 753.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1041.0, + 751.0, + 1381.0, + 751.0, + 1381.0, + 785.0, + 1041.0, + 785.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 537.0, + 1369.0, + 537.0, + 1369.0, + 579.0, + 295.0, + 579.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 882.0, + 1081.0, + 1404.0, + 1081.0, + 1404.0, + 1115.0, + 882.0, + 1115.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 884.0, + 1112.0, + 1347.0, + 1112.0, + 1347.0, + 1144.0, + 884.0, + 1144.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 7, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 298, + 572, + 1404, + 572, + 1404, + 1119, + 298, + 1119 + ], + "score": 0.984 + }, + { + "category_id": 1, + "poly": [ + 298, + 1155, + 1405, + 1155, + 1405, + 1583, + 298, + 1583 + ], + "score": 0.983 + }, + { + "category_id": 1, + "poly": [ + 298, + 1697, + 1404, + 1697, + 1404, + 2034, + 298, + 2034 + ], + "score": 0.983 + }, + { + "category_id": 1, + "poly": [ + 298, + 229, + 1404, + 229, + 1404, + 535, + 298, + 535 + ], + "score": 0.982 + }, + { + "category_id": 2, + "poly": [ + 300, + 76, + 813, + 76, + 813, + 104, + 300, + 104 + ], + "score": 0.891 + }, + { + "category_id": 0, + "poly": [ + 300, + 1628, + 543, + 1628, + 543, + 1663, + 300, + 1663 + ], + "score": 0.889 + }, + { + "category_id": 2, + "poly": [ + 841, + 2088, + 858, + 2088, + 858, + 2111, + 841, + 2111 + ], + "score": 0.791 + }, + { + "category_id": 15, + "poly": [ + 294.0, + 72.0, + 816.0, + 72.0, + 816.0, + 110.0, + 294.0, + 110.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1622.0, + 549.0, + 1622.0, + 549.0, + 1672.0, + 291.0, + 1672.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, + 573.0, + 1404.0, + 573.0, + 1404.0, + 604.0, + 297.0, + 604.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 598.0, + 1409.0, + 598.0, + 1409.0, + 640.0, + 292.0, + 640.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 631.0, + 1405.0, + 631.0, + 1405.0, + 666.0, + 294.0, + 666.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 662.0, + 1406.0, + 662.0, + 1406.0, + 698.0, + 294.0, + 698.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 691.0, + 1405.0, + 691.0, + 1405.0, + 731.0, + 292.0, + 731.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 720.0, + 1409.0, + 720.0, + 1409.0, + 761.0, + 292.0, + 761.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 753.0, + 1406.0, + 753.0, + 1406.0, + 789.0, + 294.0, + 789.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 785.0, + 1406.0, + 785.0, + 1406.0, + 820.0, + 294.0, + 820.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 813.0, + 1406.0, + 813.0, + 1406.0, + 853.0, + 291.0, + 853.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 847.0, + 1404.0, + 847.0, + 1404.0, + 878.0, + 296.0, + 878.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 876.0, + 1408.0, + 876.0, + 1408.0, + 911.0, + 294.0, + 911.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 902.0, + 1408.0, + 902.0, + 1408.0, + 944.0, + 292.0, + 944.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 933.0, + 1406.0, + 933.0, + 1406.0, + 976.0, + 292.0, + 976.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 967.0, + 1406.0, + 967.0, + 1406.0, + 1002.0, + 294.0, + 1002.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 997.0, + 1406.0, + 997.0, + 1406.0, + 1033.0, + 293.0, + 1033.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1026.0, + 1407.0, + 1026.0, + 1407.0, + 1063.0, + 291.0, + 1063.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1059.0, + 1404.0, + 1059.0, + 1404.0, + 1094.0, + 294.0, + 1094.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1088.0, + 759.0, + 1088.0, + 759.0, + 1122.0, + 293.0, + 1122.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1155.0, + 1406.0, + 1155.0, + 1406.0, + 1190.0, + 296.0, + 1190.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1187.0, + 1406.0, + 1187.0, + 1406.0, + 1219.0, + 295.0, + 1219.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1215.0, + 1407.0, + 1215.0, + 1407.0, + 1252.0, + 291.0, + 1252.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1248.0, + 1406.0, + 1248.0, + 1406.0, + 1280.0, + 295.0, + 1280.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1279.0, + 1408.0, + 1279.0, + 1408.0, + 1312.0, + 293.0, + 1312.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1306.0, + 1405.0, + 1306.0, + 1405.0, + 1345.0, + 293.0, + 1345.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1336.0, + 1407.0, + 1336.0, + 1407.0, + 1375.0, + 293.0, + 1375.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1369.0, + 1407.0, + 1369.0, + 1407.0, + 1405.0, + 293.0, + 1405.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1397.0, + 1407.0, + 1397.0, + 1407.0, + 1434.0, + 292.0, + 1434.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1430.0, + 1406.0, + 1430.0, + 1406.0, + 1465.0, + 293.0, + 1465.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1459.0, + 1405.0, + 1459.0, + 1405.0, + 1496.0, + 293.0, + 1496.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1491.0, + 1406.0, + 1491.0, + 1406.0, + 1525.0, + 292.0, + 1525.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1520.0, + 1406.0, + 1520.0, + 1406.0, + 1554.0, + 293.0, + 1554.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1548.0, + 640.0, + 1548.0, + 640.0, + 1587.0, + 294.0, + 1587.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1694.0, + 1405.0, + 1694.0, + 1405.0, + 1738.0, + 293.0, + 1738.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1728.0, + 1405.0, + 1728.0, + 1405.0, + 1765.0, + 295.0, + 1765.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1756.0, + 1405.0, + 1756.0, + 1405.0, + 1798.0, + 293.0, + 1798.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1787.0, + 1407.0, + 1787.0, + 1407.0, + 1828.0, + 291.0, + 1828.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1818.0, + 1406.0, + 1818.0, + 1406.0, + 1857.0, + 292.0, + 1857.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1851.0, + 1405.0, + 1851.0, + 1405.0, + 1885.0, + 292.0, + 1885.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1882.0, + 1405.0, + 1882.0, + 1405.0, + 1915.0, + 293.0, + 1915.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1910.0, + 1406.0, + 1910.0, + 1406.0, + 1949.0, + 293.0, + 1949.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1941.0, + 1405.0, + 1941.0, + 1405.0, + 1980.0, + 293.0, + 1980.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1974.0, + 1406.0, + 1974.0, + 1406.0, + 2008.0, + 294.0, + 2008.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 2001.0, + 1097.0, + 2001.0, + 1097.0, + 2038.0, + 293.0, + 2038.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 231.0, + 1402.0, + 231.0, + 1402.0, + 263.0, + 296.0, + 263.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 261.0, + 1406.0, + 261.0, + 1406.0, + 297.0, + 293.0, + 297.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 291.0, + 1405.0, + 291.0, + 1405.0, + 327.0, + 293.0, + 327.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 321.0, + 1402.0, + 321.0, + 1402.0, + 357.0, + 294.0, + 357.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 352.0, + 1405.0, + 352.0, + 1405.0, + 388.0, + 292.0, + 388.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 379.0, + 1406.0, + 379.0, + 1406.0, + 420.0, + 291.0, + 420.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 415.0, + 1404.0, + 415.0, + 1404.0, + 447.0, + 296.0, + 447.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 440.0, + 1405.0, + 440.0, + 1405.0, + 482.0, + 292.0, + 482.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 473.0, + 1405.0, + 473.0, + 1405.0, + 511.0, + 292.0, + 511.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 505.0, + 591.0, + 505.0, + 591.0, + 538.0, + 295.0, + 538.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 8, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 2, + "poly": [ + 300, + 75, + 813, + 75, + 813, + 105, + 300, + 105 + ], + "score": 0.89 + }, + { + "category_id": 1, + "poly": [ + 298, + 1613, + 1399, + 1613, + 1399, + 1678, + 298, + 1678 + ], + "score": 0.875 + }, + { + "category_id": 1, + "poly": [ + 298, + 1501, + 1405, + 1501, + 1405, + 1596, + 298, + 1596 + ], + "score": 0.861 + }, + { + "category_id": 1, + "poly": [ + 290, + 1001, + 1403, + 1001, + 1403, + 1066, + 290, + 1066 + ], + "score": 0.854 + }, + { + "category_id": 1, + "poly": [ + 297, + 278, + 1404, + 278, + 1404, + 342, + 297, + 342 + ], + "score": 0.85 + }, + { + "category_id": 1, + "poly": [ + 289, + 1276, + 1403, + 1276, + 1403, + 1343, + 289, + 1343 + ], + "score": 0.849 + }, + { + "category_id": 1, + "poly": [ + 297, + 1694, + 1407, + 1694, + 1407, + 1789, + 297, + 1789 + ], + "score": 0.848 + }, + { + "category_id": 1, + "poly": [ + 286, + 1082, + 1401, + 1082, + 1401, + 1149, + 286, + 1149 + ], + "score": 0.843 + }, + { + "category_id": 2, + "poly": [ + 836, + 2088, + 864, + 2088, + 864, + 2113, + 836, + 2113 + ], + "score": 0.828 + }, + { + "category_id": 1, + "poly": [ + 296, + 1164, + 1402, + 1164, + 1402, + 1260, + 296, + 1260 + ], + "score": 0.825 + }, + { + "category_id": 1, + "poly": [ + 296, + 359, + 1402, + 359, + 1402, + 424, + 296, + 424 + ], + "score": 0.817 + }, + { + "category_id": 1, + "poly": [ + 297, + 1808, + 1400, + 1808, + 1400, + 1872, + 297, + 1872 + ], + "score": 0.805 + }, + { + "category_id": 1, + "poly": [ + 298, + 1358, + 1407, + 1358, + 1407, + 1484, + 298, + 1484 + ], + "score": 0.801 + }, + { + "category_id": 1, + "poly": [ + 291, + 919, + 1403, + 919, + 1403, + 985, + 291, + 985 + ], + "score": 0.796 + }, + { + "category_id": 1, + "poly": [ + 298, + 807, + 1403, + 807, + 1403, + 904, + 298, + 904 + ], + "score": 0.781 + }, + { + "category_id": 1, + "poly": [ + 301, + 1971, + 1398, + 1971, + 1398, + 2034, + 301, + 2034 + ], + "score": 0.763 + }, + { + "category_id": 1, + "poly": [ + 300, + 553, + 1402, + 553, + 1402, + 648, + 300, + 648 + ], + "score": 0.761 + }, + { + "category_id": 1, + "poly": [ + 303, + 1888, + 1402, + 1888, + 1402, + 1955, + 303, + 1955 + ], + "score": 0.737 + }, + { + "category_id": 0, + "poly": [ + 299, + 227, + 489, + 227, + 489, + 261, + 299, + 261 + ], + "score": 0.724 + }, + { + "category_id": 1, + "poly": [ + 297, + 440, + 1407, + 440, + 1407, + 535, + 297, + 535 + ], + "score": 0.712 + }, + { + "category_id": 1, + "poly": [ + 296, + 664, + 1408, + 664, + 1408, + 792, + 296, + 792 + ], + "score": 0.689 + }, + { + "category_id": 1, + "poly": [ + 299, + 227, + 489, + 227, + 489, + 261, + 299, + 261 + ], + "score": 0.147 + }, + { + "category_id": 15, + "poly": [ + 295.0, + 73.0, + 815.0, + 73.0, + 815.0, + 108.0, + 295.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 831.0, + 2085.0, + 869.0, + 2085.0, + 869.0, + 2123.0, + 831.0, + 2123.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 228.0, + 491.0, + 228.0, + 491.0, + 264.0, + 297.0, + 264.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1608.0, + 1405.0, + 1608.0, + 1405.0, + 1653.0, + 292.0, + 1653.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 1644.0, + 800.0, + 1644.0, + 800.0, + 1680.0, + 324.0, + 1680.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1502.0, + 1405.0, + 1502.0, + 1405.0, + 1536.0, + 295.0, + 1536.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 1529.0, + 1410.0, + 1529.0, + 1410.0, + 1572.0, + 320.0, + 1572.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1563.0, + 522.0, + 1563.0, + 522.0, + 1595.0, + 323.0, + 1595.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1003.0, + 1404.0, + 1003.0, + 1404.0, + 1039.0, + 294.0, + 1039.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1034.0, + 777.0, + 1034.0, + 777.0, + 1064.0, + 322.0, + 1064.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 275.0, + 1405.0, + 275.0, + 1405.0, + 311.0, + 295.0, + 311.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 307.0, + 397.0, + 307.0, + 397.0, + 342.0, + 320.0, + 342.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1274.0, + 1406.0, + 1274.0, + 1406.0, + 1316.0, + 293.0, + 1316.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 1308.0, + 1182.0, + 1308.0, + 1182.0, + 1343.0, + 320.0, + 1343.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1694.0, + 1408.0, + 1694.0, + 1408.0, + 1732.0, + 294.0, + 1732.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1727.0, + 1409.0, + 1727.0, + 1409.0, + 1761.0, + 323.0, + 1761.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 319.0, + 1754.0, + 398.0, + 1754.0, + 398.0, + 1790.0, + 319.0, + 1790.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1078.0, + 1406.0, + 1078.0, + 1406.0, + 1123.0, + 292.0, + 1123.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1114.0, + 1197.0, + 1114.0, + 1197.0, + 1151.0, + 323.0, + 1151.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1163.0, + 1406.0, + 1163.0, + 1406.0, + 1201.0, + 294.0, + 1201.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1196.0, + 1408.0, + 1196.0, + 1408.0, + 1232.0, + 321.0, + 1232.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1227.0, + 777.0, + 1227.0, + 777.0, + 1261.0, + 323.0, + 1261.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 355.0, + 1406.0, + 355.0, + 1406.0, + 398.0, + 295.0, + 398.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 390.0, + 846.0, + 390.0, + 846.0, + 422.0, + 324.0, + 422.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1808.0, + 1404.0, + 1808.0, + 1404.0, + 1844.0, + 296.0, + 1844.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1840.0, + 996.0, + 1840.0, + 996.0, + 1872.0, + 322.0, + 1872.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1356.0, + 1408.0, + 1356.0, + 1408.0, + 1398.0, + 293.0, + 1398.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1390.0, + 1407.0, + 1390.0, + 1407.0, + 1427.0, + 322.0, + 1427.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1421.0, + 1408.0, + 1421.0, + 1408.0, + 1456.0, + 321.0, + 1456.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1453.0, + 931.0, + 1453.0, + 931.0, + 1486.0, + 322.0, + 1486.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 916.0, + 1405.0, + 916.0, + 1405.0, + 961.0, + 293.0, + 961.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 949.0, + 1328.0, + 949.0, + 1328.0, + 986.0, + 322.0, + 986.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 807.0, + 1407.0, + 807.0, + 1407.0, + 846.0, + 296.0, + 846.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 839.0, + 1404.0, + 839.0, + 1404.0, + 874.0, + 322.0, + 874.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 318.0, + 869.0, + 1408.0, + 869.0, + 1408.0, + 907.0, + 318.0, + 907.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1966.0, + 1403.0, + 1966.0, + 1403.0, + 2011.0, + 294.0, + 2011.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 2001.0, + 1040.0, + 2001.0, + 1040.0, + 2036.0, + 321.0, + 2036.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 554.0, + 1404.0, + 554.0, + 1404.0, + 588.0, + 295.0, + 588.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 586.0, + 1406.0, + 586.0, + 1406.0, + 620.0, + 324.0, + 620.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 616.0, + 910.0, + 616.0, + 910.0, + 648.0, + 323.0, + 648.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 298.0, + 1890.0, + 1406.0, + 1890.0, + 1406.0, + 1923.0, + 298.0, + 1923.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1920.0, + 1120.0, + 1920.0, + 1120.0, + 1955.0, + 322.0, + 1955.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 439.0, + 1408.0, + 439.0, + 1408.0, + 478.0, + 294.0, + 478.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 472.0, + 1405.0, + 472.0, + 1405.0, + 507.0, + 323.0, + 507.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 502.0, + 982.0, + 502.0, + 982.0, + 536.0, + 323.0, + 536.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 666.0, + 1406.0, + 666.0, + 1406.0, + 700.0, + 297.0, + 700.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 697.0, + 1407.0, + 697.0, + 1407.0, + 734.0, + 320.0, + 734.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 319.0, + 724.0, + 1411.0, + 724.0, + 1411.0, + 766.0, + 319.0, + 766.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 759.0, + 944.0, + 759.0, + 944.0, + 792.0, + 323.0, + 792.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 228.0, + 491.0, + 228.0, + 491.0, + 264.0, + 297.0, + 264.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 9, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 299, + 1349, + 1404, + 1349, + 1404, + 1475, + 299, + 1475 + ], + "score": 0.901 + }, + { + "category_id": 1, + "poly": [ + 296, + 845, + 1406, + 845, + 1406, + 1002, + 296, + 1002 + ], + "score": 0.899 + }, + { + "category_id": 1, + "poly": [ + 298, + 551, + 1409, + 551, + 1409, + 646, + 298, + 646 + ], + "score": 0.898 + }, + { + "category_id": 1, + "poly": [ + 294, + 229, + 1402, + 229, + 1402, + 293, + 294, + 293 + ], + "score": 0.893 + }, + { + "category_id": 1, + "poly": [ + 296, + 758, + 1404, + 758, + 1404, + 821, + 296, + 821 + ], + "score": 0.892 + }, + { + "category_id": 2, + "poly": [ + 300, + 75, + 813, + 75, + 813, + 105, + 300, + 105 + ], + "score": 0.89 + }, + { + "category_id": 1, + "poly": [ + 297, + 316, + 1405, + 316, + 1405, + 441, + 297, + 441 + ], + "score": 0.885 + }, + { + "category_id": 1, + "poly": [ + 296, + 1023, + 1402, + 1023, + 1402, + 1117, + 296, + 1117 + ], + "score": 0.883 + }, + { + "category_id": 1, + "poly": [ + 299, + 1228, + 1405, + 1228, + 1405, + 1324, + 299, + 1324 + ], + "score": 0.882 + }, + { + "category_id": 1, + "poly": [ + 300, + 465, + 1401, + 465, + 1401, + 529, + 300, + 529 + ], + "score": 0.873 + }, + { + "category_id": 1, + "poly": [ + 294, + 670, + 1402, + 670, + 1402, + 735, + 294, + 735 + ], + "score": 0.872 + }, + { + "category_id": 1, + "poly": [ + 291, + 1141, + 1403, + 1141, + 1403, + 1206, + 291, + 1206 + ], + "score": 0.87 + }, + { + "category_id": 1, + "poly": [ + 296, + 1586, + 1401, + 1586, + 1401, + 1651, + 296, + 1651 + ], + "score": 0.853 + }, + { + "category_id": 1, + "poly": [ + 297, + 1673, + 1404, + 1673, + 1404, + 1830, + 297, + 1830 + ], + "score": 0.841 + }, + { + "category_id": 1, + "poly": [ + 299, + 1941, + 1403, + 1941, + 1403, + 2034, + 299, + 2034 + ], + "score": 0.84 + }, + { + "category_id": 1, + "poly": [ + 292, + 1498, + 1403, + 1498, + 1403, + 1564, + 292, + 1564 + ], + "score": 0.823 + }, + { + "category_id": 2, + "poly": [ + 835, + 2088, + 861, + 2088, + 861, + 2113, + 835, + 2113 + ], + "score": 0.81 + }, + { + "category_id": 1, + "poly": [ + 291, + 1852, + 1402, + 1852, + 1402, + 1917, + 291, + 1917 + ], + "score": 0.809 + }, + { + "category_id": 15, + "poly": [ + 295.0, + 73.0, + 815.0, + 73.0, + 815.0, + 108.0, + 295.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 831.0, + 2085.0, + 867.0, + 2085.0, + 867.0, + 2125.0, + 831.0, + 2125.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1348.0, + 1406.0, + 1348.0, + 1406.0, + 1388.0, + 293.0, + 1388.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 319.0, + 1379.0, + 1405.0, + 1379.0, + 1405.0, + 1418.0, + 319.0, + 1418.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 319.0, + 1413.0, + 1405.0, + 1413.0, + 1405.0, + 1450.0, + 319.0, + 1450.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1443.0, + 740.0, + 1443.0, + 740.0, + 1476.0, + 322.0, + 1476.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 843.0, + 1408.0, + 843.0, + 1408.0, + 883.0, + 293.0, + 883.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 325.0, + 877.0, + 1403.0, + 877.0, + 1403.0, + 910.0, + 325.0, + 910.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 906.0, + 1406.0, + 906.0, + 1406.0, + 944.0, + 322.0, + 944.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 937.0, + 1406.0, + 937.0, + 1406.0, + 974.0, + 320.0, + 974.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 968.0, + 633.0, + 968.0, + 633.0, + 1005.0, + 323.0, + 1005.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 551.0, + 1405.0, + 551.0, + 1405.0, + 589.0, + 293.0, + 589.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 319.0, + 581.0, + 1409.0, + 581.0, + 1409.0, + 622.0, + 319.0, + 622.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 609.0, + 396.0, + 609.0, + 396.0, + 649.0, + 321.0, + 649.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 229.0, + 1404.0, + 229.0, + 1404.0, + 265.0, + 297.0, + 265.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 325.0, + 261.0, + 1248.0, + 261.0, + 1248.0, + 297.0, + 325.0, + 297.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 754.0, + 1409.0, + 754.0, + 1409.0, + 796.0, + 293.0, + 796.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 787.0, + 573.0, + 787.0, + 573.0, + 823.0, + 323.0, + 823.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 318.0, + 1406.0, + 318.0, + 1406.0, + 354.0, + 294.0, + 354.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 348.0, + 1406.0, + 348.0, + 1406.0, + 383.0, + 321.0, + 383.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 378.0, + 1405.0, + 378.0, + 1405.0, + 415.0, + 323.0, + 415.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 408.0, + 671.0, + 408.0, + 671.0, + 444.0, + 323.0, + 444.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1019.0, + 1407.0, + 1019.0, + 1407.0, + 1065.0, + 293.0, + 1065.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 1053.0, + 1409.0, + 1053.0, + 1409.0, + 1093.0, + 320.0, + 1093.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 1087.0, + 583.0, + 1087.0, + 583.0, + 1117.0, + 324.0, + 1117.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1229.0, + 1402.0, + 1229.0, + 1402.0, + 1264.0, + 297.0, + 1264.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 319.0, + 1258.0, + 1405.0, + 1258.0, + 1405.0, + 1299.0, + 319.0, + 1299.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1292.0, + 794.0, + 1292.0, + 794.0, + 1324.0, + 322.0, + 1324.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 462.0, + 1407.0, + 462.0, + 1407.0, + 503.0, + 294.0, + 503.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 496.0, + 1014.0, + 496.0, + 1014.0, + 532.0, + 323.0, + 532.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 664.0, + 1405.0, + 664.0, + 1405.0, + 712.0, + 292.0, + 712.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 701.0, + 853.0, + 701.0, + 853.0, + 736.0, + 321.0, + 736.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1139.0, + 1406.0, + 1139.0, + 1406.0, + 1181.0, + 295.0, + 1181.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1172.0, + 1045.0, + 1172.0, + 1045.0, + 1208.0, + 323.0, + 1208.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1589.0, + 1403.0, + 1589.0, + 1403.0, + 1621.0, + 297.0, + 1621.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1617.0, + 1158.0, + 1617.0, + 1158.0, + 1652.0, + 321.0, + 1652.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1674.0, + 1404.0, + 1674.0, + 1404.0, + 1711.0, + 295.0, + 1711.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1705.0, + 1406.0, + 1705.0, + 1406.0, + 1742.0, + 321.0, + 1742.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1734.0, + 1406.0, + 1734.0, + 1406.0, + 1773.0, + 321.0, + 1773.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 1761.0, + 1405.0, + 1761.0, + 1405.0, + 1808.0, + 320.0, + 1808.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 1796.0, + 663.0, + 1796.0, + 663.0, + 1832.0, + 320.0, + 1832.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1938.0, + 1405.0, + 1938.0, + 1405.0, + 1979.0, + 293.0, + 1979.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1971.0, + 1405.0, + 1971.0, + 1405.0, + 2007.0, + 323.0, + 2007.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 2001.0, + 1149.0, + 2001.0, + 1149.0, + 2037.0, + 323.0, + 2037.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1495.0, + 1405.0, + 1495.0, + 1405.0, + 1539.0, + 295.0, + 1539.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1531.0, + 1365.0, + 1531.0, + 1365.0, + 1565.0, + 323.0, + 1565.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1848.0, + 1405.0, + 1848.0, + 1405.0, + 1894.0, + 293.0, + 1894.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1883.0, + 1048.0, + 1883.0, + 1048.0, + 1919.0, + 322.0, + 1919.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 10, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 2, + "poly": [ + 300, + 75, + 813, + 75, + 813, + 105, + 300, + 105 + ], + "score": 0.885 + }, + { + "category_id": 1, + "poly": [ + 299, + 957, + 1402, + 957, + 1402, + 1021, + 299, + 1021 + ], + "score": 0.834 + }, + { + "category_id": 2, + "poly": [ + 836, + 2088, + 863, + 2088, + 863, + 2113, + 836, + 2113 + ], + "score": 0.83 + }, + { + "category_id": 1, + "poly": [ + 302, + 1038, + 1403, + 1038, + 1403, + 1104, + 302, + 1104 + ], + "score": 0.821 + }, + { + "category_id": 1, + "poly": [ + 301, + 1120, + 1402, + 1120, + 1402, + 1186, + 301, + 1186 + ], + "score": 0.82 + }, + { + "category_id": 1, + "poly": [ + 301, + 229, + 1403, + 229, + 1403, + 324, + 301, + 324 + ], + "score": 0.792 + }, + { + "category_id": 1, + "poly": [ + 296, + 1204, + 1396, + 1204, + 1396, + 1268, + 296, + 1268 + ], + "score": 0.789 + }, + { + "category_id": 1, + "poly": [ + 298, + 732, + 1405, + 732, + 1405, + 825, + 298, + 825 + ], + "score": 0.78 + }, + { + "category_id": 1, + "poly": [ + 297, + 1428, + 1405, + 1428, + 1405, + 1555, + 297, + 1555 + ], + "score": 0.775 + }, + { + "category_id": 1, + "poly": [ + 294, + 506, + 1403, + 506, + 1403, + 571, + 294, + 571 + ], + "score": 0.768 + }, + { + "category_id": 1, + "poly": [ + 299, + 1684, + 1404, + 1684, + 1404, + 1781, + 299, + 1781 + ], + "score": 0.767 + }, + { + "category_id": 1, + "poly": [ + 298, + 587, + 1408, + 587, + 1408, + 714, + 298, + 714 + ], + "score": 0.763 + }, + { + "category_id": 1, + "poly": [ + 298, + 1285, + 1405, + 1285, + 1405, + 1410, + 298, + 1410 + ], + "score": 0.753 + }, + { + "category_id": 1, + "poly": [ + 298, + 1571, + 1403, + 1571, + 1403, + 1667, + 298, + 1667 + ], + "score": 0.753 + }, + { + "category_id": 1, + "poly": [ + 295, + 424, + 1402, + 424, + 1402, + 488, + 295, + 488 + ], + "score": 0.753 + }, + { + "category_id": 1, + "poly": [ + 299, + 844, + 1406, + 844, + 1406, + 939, + 299, + 939 + ], + "score": 0.745 + }, + { + "category_id": 1, + "poly": [ + 296, + 342, + 1401, + 342, + 1401, + 404, + 296, + 404 + ], + "score": 0.737 + }, + { + "category_id": 1, + "poly": [ + 298, + 1797, + 1406, + 1797, + 1406, + 1923, + 298, + 1923 + ], + "score": 0.643 + }, + { + "category_id": 1, + "poly": [ + 299, + 1941, + 1403, + 1941, + 1403, + 2035, + 299, + 2035 + ], + "score": 0.642 + }, + { + "category_id": 15, + "poly": [ + 295.0, + 73.0, + 815.0, + 73.0, + 815.0, + 108.0, + 295.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 832.0, + 2085.0, + 868.0, + 2085.0, + 868.0, + 2124.0, + 832.0, + 2124.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 956.0, + 1406.0, + 956.0, + 1406.0, + 995.0, + 297.0, + 995.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 989.0, + 923.0, + 989.0, + 923.0, + 1021.0, + 322.0, + 1021.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1037.0, + 1405.0, + 1037.0, + 1405.0, + 1076.0, + 297.0, + 1076.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1068.0, + 1389.0, + 1068.0, + 1389.0, + 1106.0, + 322.0, + 1106.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1119.0, + 1404.0, + 1119.0, + 1404.0, + 1158.0, + 295.0, + 1158.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1153.0, + 910.0, + 1153.0, + 910.0, + 1187.0, + 322.0, + 1187.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 228.0, + 1408.0, + 228.0, + 1408.0, + 267.0, + 295.0, + 267.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 258.0, + 1409.0, + 258.0, + 1409.0, + 301.0, + 320.0, + 301.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 290.0, + 1388.0, + 290.0, + 1388.0, + 330.0, + 320.0, + 330.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1203.0, + 1402.0, + 1203.0, + 1402.0, + 1240.0, + 294.0, + 1240.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1236.0, + 1208.0, + 1236.0, + 1208.0, + 1268.0, + 322.0, + 1268.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 731.0, + 1406.0, + 731.0, + 1406.0, + 769.0, + 293.0, + 769.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 764.0, + 1405.0, + 764.0, + 1405.0, + 798.0, + 323.0, + 798.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 794.0, + 609.0, + 794.0, + 609.0, + 823.0, + 323.0, + 823.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1428.0, + 1405.0, + 1428.0, + 1405.0, + 1467.0, + 295.0, + 1467.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1460.0, + 1410.0, + 1460.0, + 1410.0, + 1496.0, + 323.0, + 1496.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1493.0, + 1407.0, + 1493.0, + 1407.0, + 1526.0, + 323.0, + 1526.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 1521.0, + 1410.0, + 1521.0, + 1410.0, + 1555.0, + 320.0, + 1555.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 506.0, + 1405.0, + 506.0, + 1405.0, + 542.0, + 296.0, + 542.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 537.0, + 1274.0, + 537.0, + 1274.0, + 573.0, + 322.0, + 573.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1682.0, + 1408.0, + 1682.0, + 1408.0, + 1723.0, + 293.0, + 1723.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1716.0, + 1406.0, + 1716.0, + 1406.0, + 1751.0, + 323.0, + 1751.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1746.0, + 1322.0, + 1746.0, + 1322.0, + 1784.0, + 323.0, + 1784.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 587.0, + 1408.0, + 587.0, + 1408.0, + 623.0, + 292.0, + 623.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 620.0, + 1405.0, + 620.0, + 1405.0, + 655.0, + 321.0, + 655.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 651.0, + 1409.0, + 651.0, + 1409.0, + 687.0, + 321.0, + 687.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 680.0, + 1060.0, + 680.0, + 1060.0, + 717.0, + 320.0, + 717.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1288.0, + 1408.0, + 1288.0, + 1408.0, + 1321.0, + 295.0, + 1321.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1318.0, + 1406.0, + 1318.0, + 1406.0, + 1351.0, + 322.0, + 1351.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 317.0, + 1346.0, + 1406.0, + 1346.0, + 1406.0, + 1385.0, + 317.0, + 1385.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 1377.0, + 1304.0, + 1377.0, + 1304.0, + 1412.0, + 320.0, + 1412.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1572.0, + 1403.0, + 1572.0, + 1403.0, + 1607.0, + 296.0, + 1607.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1602.0, + 1404.0, + 1602.0, + 1404.0, + 1639.0, + 322.0, + 1639.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1636.0, + 869.0, + 1636.0, + 869.0, + 1668.0, + 322.0, + 1668.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 424.0, + 1404.0, + 424.0, + 1404.0, + 460.0, + 297.0, + 460.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 456.0, + 981.0, + 456.0, + 981.0, + 488.0, + 324.0, + 488.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 844.0, + 1406.0, + 844.0, + 1406.0, + 878.0, + 297.0, + 878.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 873.0, + 1404.0, + 873.0, + 1404.0, + 912.0, + 321.0, + 912.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 905.0, + 873.0, + 905.0, + 873.0, + 943.0, + 322.0, + 943.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 343.0, + 1403.0, + 343.0, + 1403.0, + 378.0, + 296.0, + 378.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 373.0, + 705.0, + 373.0, + 705.0, + 406.0, + 320.0, + 406.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1799.0, + 1404.0, + 1799.0, + 1404.0, + 1832.0, + 296.0, + 1832.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1828.0, + 1404.0, + 1828.0, + 1404.0, + 1864.0, + 321.0, + 1864.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 1858.0, + 1409.0, + 1858.0, + 1409.0, + 1898.0, + 320.0, + 1898.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1889.0, + 997.0, + 1889.0, + 997.0, + 1926.0, + 321.0, + 1926.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1941.0, + 1407.0, + 1941.0, + 1407.0, + 1978.0, + 295.0, + 1978.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1973.0, + 1403.0, + 1973.0, + 1403.0, + 2007.0, + 323.0, + 2007.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 2003.0, + 1137.0, + 2003.0, + 1137.0, + 2036.0, + 323.0, + 2036.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 11, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 298, + 712, + 1405, + 712, + 1405, + 930, + 298, + 930 + ], + "score": 0.943 + }, + { + "category_id": 1, + "poly": [ + 298, + 948, + 1406, + 948, + 1406, + 1104, + 298, + 1104 + ], + "score": 0.935 + }, + { + "category_id": 1, + "poly": [ + 299, + 229, + 1404, + 229, + 1404, + 353, + 299, + 353 + ], + "score": 0.934 + }, + { + "category_id": 1, + "poly": [ + 298, + 569, + 1405, + 569, + 1405, + 692, + 298, + 692 + ], + "score": 0.93 + }, + { + "category_id": 1, + "poly": [ + 297, + 1318, + 1405, + 1318, + 1405, + 1474, + 297, + 1474 + ], + "score": 0.925 + }, + { + "category_id": 1, + "poly": [ + 298, + 456, + 1406, + 456, + 1406, + 550, + 298, + 550 + ], + "score": 0.925 + }, + { + "category_id": 1, + "poly": [ + 298, + 1123, + 1405, + 1123, + 1405, + 1217, + 298, + 1217 + ], + "score": 0.921 + }, + { + "category_id": 1, + "poly": [ + 300, + 1493, + 1401, + 1493, + 1401, + 1589, + 300, + 1589 + ], + "score": 0.919 + }, + { + "category_id": 1, + "poly": [ + 299, + 1690, + 1404, + 1690, + 1404, + 1785, + 299, + 1785 + ], + "score": 0.916 + }, + { + "category_id": 1, + "poly": [ + 293, + 373, + 1404, + 373, + 1404, + 436, + 293, + 436 + ], + "score": 0.908 + }, + { + "category_id": 1, + "poly": [ + 292, + 1607, + 1401, + 1607, + 1401, + 1672, + 292, + 1672 + ], + "score": 0.896 + }, + { + "category_id": 1, + "poly": [ + 295, + 1235, + 1401, + 1235, + 1401, + 1301, + 295, + 1301 + ], + "score": 0.89 + }, + { + "category_id": 2, + "poly": [ + 300, + 75, + 813, + 75, + 813, + 105, + 300, + 105 + ], + "score": 0.888 + }, + { + "category_id": 2, + "poly": [ + 835, + 2088, + 863, + 2088, + 863, + 2112, + 835, + 2112 + ], + "score": 0.839 + }, + { + "category_id": 15, + "poly": [ + 295.0, + 73.0, + 815.0, + 73.0, + 815.0, + 108.0, + 295.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 831.0, + 2084.0, + 868.0, + 2084.0, + 868.0, + 2123.0, + 831.0, + 2123.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 714.0, + 1405.0, + 714.0, + 1405.0, + 749.0, + 296.0, + 749.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 745.0, + 1407.0, + 745.0, + 1407.0, + 780.0, + 323.0, + 780.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 771.0, + 1406.0, + 771.0, + 1406.0, + 812.0, + 320.0, + 812.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 802.0, + 1406.0, + 802.0, + 1406.0, + 845.0, + 321.0, + 845.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 837.0, + 1407.0, + 837.0, + 1407.0, + 872.0, + 322.0, + 872.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 868.0, + 1406.0, + 868.0, + 1406.0, + 903.0, + 323.0, + 903.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 897.0, + 1403.0, + 897.0, + 1403.0, + 933.0, + 323.0, + 933.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 947.0, + 1408.0, + 947.0, + 1408.0, + 986.0, + 295.0, + 986.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 977.0, + 1406.0, + 977.0, + 1406.0, + 1018.0, + 320.0, + 1018.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 1010.0, + 1403.0, + 1010.0, + 1403.0, + 1043.0, + 324.0, + 1043.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1038.0, + 1406.0, + 1038.0, + 1406.0, + 1081.0, + 321.0, + 1081.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 1071.0, + 1373.0, + 1071.0, + 1373.0, + 1109.0, + 324.0, + 1109.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 229.0, + 1406.0, + 229.0, + 1406.0, + 265.0, + 294.0, + 265.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 319.0, + 261.0, + 1405.0, + 261.0, + 1405.0, + 297.0, + 319.0, + 297.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 318.0, + 291.0, + 1406.0, + 291.0, + 1406.0, + 326.0, + 318.0, + 326.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 320.0, + 1057.0, + 320.0, + 1057.0, + 355.0, + 322.0, + 355.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 569.0, + 1406.0, + 569.0, + 1406.0, + 605.0, + 295.0, + 605.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 600.0, + 1405.0, + 600.0, + 1405.0, + 636.0, + 320.0, + 636.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 629.0, + 1406.0, + 629.0, + 1406.0, + 668.0, + 320.0, + 668.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 663.0, + 511.0, + 663.0, + 511.0, + 693.0, + 323.0, + 693.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1315.0, + 1406.0, + 1315.0, + 1406.0, + 1360.0, + 292.0, + 1360.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 1352.0, + 1403.0, + 1352.0, + 1403.0, + 1385.0, + 324.0, + 1385.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 1383.0, + 1403.0, + 1383.0, + 1403.0, + 1416.0, + 324.0, + 1416.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 1408.0, + 1406.0, + 1408.0, + 1406.0, + 1452.0, + 320.0, + 1452.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1444.0, + 1025.0, + 1444.0, + 1025.0, + 1477.0, + 323.0, + 1477.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 456.0, + 1408.0, + 456.0, + 1408.0, + 493.0, + 295.0, + 493.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 486.0, + 1406.0, + 486.0, + 1406.0, + 525.0, + 321.0, + 525.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 519.0, + 1023.0, + 519.0, + 1023.0, + 553.0, + 324.0, + 553.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1124.0, + 1405.0, + 1124.0, + 1405.0, + 1158.0, + 296.0, + 1158.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 325.0, + 1154.0, + 1402.0, + 1154.0, + 1402.0, + 1188.0, + 325.0, + 1188.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1187.0, + 952.0, + 1187.0, + 952.0, + 1218.0, + 322.0, + 1218.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1491.0, + 1406.0, + 1491.0, + 1406.0, + 1532.0, + 295.0, + 1532.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1526.0, + 1405.0, + 1526.0, + 1405.0, + 1561.0, + 323.0, + 1561.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1557.0, + 978.0, + 1557.0, + 978.0, + 1591.0, + 321.0, + 1591.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1691.0, + 1405.0, + 1691.0, + 1405.0, + 1725.0, + 297.0, + 1725.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1719.0, + 1404.0, + 1719.0, + 1404.0, + 1761.0, + 322.0, + 1761.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1752.0, + 528.0, + 1752.0, + 528.0, + 1787.0, + 323.0, + 1787.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 371.0, + 1407.0, + 371.0, + 1407.0, + 410.0, + 295.0, + 410.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 403.0, + 848.0, + 403.0, + 848.0, + 438.0, + 322.0, + 438.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1605.0, + 1403.0, + 1605.0, + 1403.0, + 1646.0, + 296.0, + 1646.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1640.0, + 1193.0, + 1640.0, + 1193.0, + 1673.0, + 323.0, + 1673.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1236.0, + 1404.0, + 1236.0, + 1404.0, + 1272.0, + 294.0, + 1272.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 1267.0, + 1298.0, + 1267.0, + 1298.0, + 1303.0, + 320.0, + 1303.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 12, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 5, + "poly": [ + 302, + 1207, + 1403, + 1207, + 1403, + 1602, + 302, + 1602 + ], + "score": 0.982, + "html": "
Turn #Question-SQL TemplateSynthesized Question-SQL
1"Find the number of TABLEO with COLUMNO OPO VALUE0" SELECT COUNT(*)ORDER BY COLUMNO OPO VALUEO“Find the number of football team with team hometown is not murrieta,california?" SELECT COUNT(*)WHERE TEAM_HOMETOWN !=“MURRIETA, CALIFORNIA"
2“Can you give me their COLUMN1?” TCS: REPLACE(SELECT.COLUMNO), DEL(SELECT.AGG)“Can you give me their football team player?” SELECTFOOTBALL_TEAM_PLAYERWHERETEAM_HOMETOWN !=“MURRIETA,CALIFORNIA”
3“How about only show those with AsO cOL- UMN2?” TCS: ADD(ORDERBY_ASO.COLUMN2)“How about only show those with the largest age?” SELECTFOOTBALL_TEAM_PLAYER WHERE TEAM_HOMETOWN !="MURRIETA,CALIFORNIA”ORDER BY AGE DESC LIMIT1
4“AS1?” TCS: REPLACE(ORDERBY_AS1.COLUMN2)“The smallest?” SELECTFOOTBALL_TEAM_PLAYER WHERE TEAM_HOMETOWN !="MURRIETA,CALIFORNIA”ORDER BY AGE AS LIMIT1
" + }, + { + "category_id": 1, + "poly": [ + 297, + 1849, + 1406, + 1849, + 1406, + 2034, + 297, + 2034 + ], + "score": 0.98 + }, + { + "category_id": 5, + "poly": [ + 475, + 590, + 1223, + 590, + 1223, + 897, + 475, + 897 + ], + "score": 0.978, + "html": "
QMIMQ1Q2Q3
Wang et al. (2019)51.022.068.348.038.5
+RoBERTa62.833.277.261.752.1
+SCoRE65.438.578.465.355.1
Few-Shot (10% training data)
Wang et al. (2019)
+RoBERTa53.321.271.052.536.6
+SCoRE57.126.774.656.740.7
" + }, + { + "category_id": 5, + "poly": [ + 453, + 304, + 1246, + 304, + 1246, + 462, + 453, + 462 + ], + "score": 0.976, + "html": "
QMIMQ1Q2Q3Q4Q5
RAT-SQL + BERT48.419.154.648.447.543.931.0
+RoBERTa50.119.359.750.946.346.532.4
+ SCoRE52.122.060.853.047.549.132.4
" + }, + { + "category_id": 0, + "poly": [ + 299, + 1045, + 940, + 1045, + 940, + 1084, + 299, + 1084 + ], + "score": 0.92 + }, + { + "category_id": 6, + "poly": [ + 470, + 1630, + 1227, + 1630, + 1227, + 1663, + 470, + 1663 + ], + "score": 0.903 + }, + { + "category_id": 2, + "poly": [ + 299, + 75, + 813, + 75, + 813, + 105, + 299, + 105 + ], + "score": 0.902 + }, + { + "category_id": 0, + "poly": [ + 300, + 1723, + 748, + 1723, + 748, + 1759, + 300, + 1759 + ], + "score": 0.896 + }, + { + "category_id": 0, + "poly": [ + 298, + 1791, + 461, + 1791, + 461, + 1825, + 298, + 1825 + ], + "score": 0.894 + }, + { + "category_id": 2, + "poly": [ + 835, + 2088, + 863, + 2088, + 863, + 2112, + 835, + 2112 + ], + "score": 0.854 + }, + { + "category_id": 6, + "poly": [ + 299, + 489, + 1399, + 489, + 1399, + 552, + 299, + 552 + ], + "score": 0.793 + }, + { + "category_id": 6, + "poly": [ + 298, + 1115, + 1400, + 1115, + 1400, + 1179, + 298, + 1179 + ], + "score": 0.783 + }, + { + "category_id": 7, + "poly": [ + 293, + 922, + 1398, + 922, + 1398, + 986, + 293, + 986 + ], + "score": 0.518 + }, + { + "category_id": 6, + "poly": [ + 300, + 226, + 645, + 226, + 645, + 263, + 300, + 263 + ], + "score": 0.449 + }, + { + "category_id": 1, + "poly": [ + 298, + 1115, + 1400, + 1115, + 1400, + 1179, + 298, + 1179 + ], + "score": 0.126 + }, + { + "category_id": 13, + "poly": [ + 907, + 490, + 941, + 490, + 941, + 521, + 907, + 521 + ], + "score": 0.87, + "latex": "\\mathrm { Q } _ { i }" + }, + { + "category_id": 13, + "poly": [ + 890, + 923, + 925, + 923, + 925, + 954, + 890, + 954 + ], + "score": 0.87, + "latex": "\\mathrm { Q } _ { i }" + }, + { + "category_id": 13, + "poly": [ + 1190, + 921, + 1221, + 921, + 1221, + 951, + 1190, + 951 + ], + "score": 0.85, + "latex": "i ^ { \\mathrm { { t h } } }" + }, + { + "category_id": 13, + "poly": [ + 1195, + 488, + 1226, + 488, + 1226, + 517, + 1195, + 517 + ], + "score": 0.84, + "latex": "i ^ { \\mathrm { { t h } } }" + }, + { + "category_id": 13, + "poly": [ + 1181, + 1854, + 1226, + 1854, + 1226, + 1884, + 1181, + 1884 + ], + "score": 0.7, + "latex": "_ \\mathrm { l a r g e }" + }, + { + "category_id": 13, + "poly": [ + 1248, + 1298, + 1274, + 1298, + 1274, + 1320, + 1248, + 1320 + ], + "score": 0.65, + "latex": "! =" + }, + { + "category_id": 13, + "poly": [ + 662, + 1943, + 772, + 1943, + 772, + 1974, + 662, + 1974 + ], + "score": 0.36, + "latex": "\\mathbf { B E R T _ { b a s e } }" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1042.0, + 944.0, + 1042.0, + 944.0, + 1087.0, + 291.0, + 1087.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 470.0, + 1627.0, + 1228.0, + 1627.0, + 1228.0, + 1667.0, + 470.0, + 1667.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 73.0, + 815.0, + 73.0, + 815.0, + 108.0, + 295.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1719.0, + 752.0, + 1719.0, + 752.0, + 1764.0, + 293.0, + 1764.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1790.0, + 466.0, + 1790.0, + 466.0, + 1828.0, + 294.0, + 1828.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 831.0, + 2084.0, + 869.0, + 2084.0, + 869.0, + 2123.0, + 831.0, + 2123.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 484.0, + 906.0, + 484.0, + 906.0, + 527.0, + 291.0, + 527.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 942.0, + 484.0, + 1194.0, + 484.0, + 1194.0, + 527.0, + 942.0, + 527.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1227.0, + 484.0, + 1405.0, + 484.0, + 1405.0, + 527.0, + 1227.0, + 527.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 521.0, + 451.0, + 521.0, + 451.0, + 554.0, + 294.0, + 554.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1114.0, + 1404.0, + 1114.0, + 1404.0, + 1153.0, + 293.0, + 1153.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1148.0, + 495.0, + 1148.0, + 495.0, + 1180.0, + 294.0, + 1180.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 917.0, + 889.0, + 917.0, + 889.0, + 960.0, + 291.0, + 960.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 926.0, + 917.0, + 1189.0, + 917.0, + 1189.0, + 960.0, + 926.0, + 960.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1222.0, + 917.0, + 1405.0, + 917.0, + 1405.0, + 960.0, + 1222.0, + 960.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 954.0, + 449.0, + 954.0, + 449.0, + 983.0, + 296.0, + 983.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 222.0, + 646.0, + 222.0, + 646.0, + 268.0, + 293.0, + 268.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1850.0, + 1180.0, + 1850.0, + 1180.0, + 1886.0, + 295.0, + 1886.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1227.0, + 1850.0, + 1407.0, + 1850.0, + 1407.0, + 1886.0, + 1227.0, + 1886.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1878.0, + 1404.0, + 1878.0, + 1404.0, + 1920.0, + 294.0, + 1920.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1910.0, + 1407.0, + 1910.0, + 1407.0, + 1949.0, + 292.0, + 1949.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1940.0, + 661.0, + 1940.0, + 661.0, + 1980.0, + 291.0, + 1980.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 773.0, + 1940.0, + 1407.0, + 1940.0, + 1407.0, + 1980.0, + 773.0, + 1980.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1971.0, + 1407.0, + 1971.0, + 1407.0, + 2006.0, + 295.0, + 2006.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 2004.0, + 1408.0, + 2004.0, + 1408.0, + 2036.0, + 295.0, + 2036.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1114.0, + 1404.0, + 1114.0, + 1404.0, + 1153.0, + 293.0, + 1153.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1148.0, + 495.0, + 1148.0, + 495.0, + 1180.0, + 294.0, + 1180.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 13, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 297, + 741, + 1405, + 741, + 1405, + 987, + 297, + 987 + ], + "score": 0.977 + }, + { + "category_id": 1, + "poly": [ + 299, + 1102, + 825, + 1102, + 825, + 1406, + 299, + 1406 + ], + "score": 0.976 + }, + { + "category_id": 1, + "poly": [ + 298, + 1692, + 1405, + 1692, + 1405, + 1877, + 298, + 1877 + ], + "score": 0.975 + }, + { + "category_id": 1, + "poly": [ + 299, + 525, + 1404, + 525, + 1404, + 650, + 299, + 650 + ], + "score": 0.975 + }, + { + "category_id": 1, + "poly": [ + 299, + 1911, + 1402, + 1911, + 1402, + 2034, + 299, + 2034 + ], + "score": 0.97 + }, + { + "category_id": 1, + "poly": [ + 299, + 1486, + 1407, + 1486, + 1407, + 1576, + 299, + 1576 + ], + "score": 0.962 + }, + { + "category_id": 1, + "poly": [ + 299, + 229, + 1402, + 229, + 1402, + 323, + 299, + 323 + ], + "score": 0.959 + }, + { + "category_id": 3, + "poly": [ + 846, + 1111, + 1400, + 1111, + 1400, + 1383, + 846, + 1383 + ], + "score": 0.958 + }, + { + "category_id": 1, + "poly": [ + 294, + 664, + 1401, + 664, + 1401, + 726, + 294, + 726 + ], + "score": 0.941 + }, + { + "category_id": 1, + "poly": [ + 298, + 1424, + 825, + 1424, + 825, + 1485, + 298, + 1485 + ], + "score": 0.929 + }, + { + "category_id": 1, + "poly": [ + 299, + 418, + 1402, + 418, + 1402, + 510, + 299, + 510 + ], + "score": 0.919 + }, + { + "category_id": 4, + "poly": [ + 896, + 1414, + 1351, + 1414, + 1351, + 1447, + 896, + 1447 + ], + "score": 0.915 + }, + { + "category_id": 0, + "poly": [ + 299, + 360, + 548, + 360, + 548, + 392, + 299, + 392 + ], + "score": 0.909 + }, + { + "category_id": 2, + "poly": [ + 300, + 76, + 813, + 76, + 813, + 104, + 300, + 104 + ], + "score": 0.895 + }, + { + "category_id": 0, + "poly": [ + 300, + 1031, + 662, + 1031, + 662, + 1067, + 300, + 1067 + ], + "score": 0.89 + }, + { + "category_id": 0, + "poly": [ + 300, + 1623, + 678, + 1623, + 678, + 1657, + 300, + 1657 + ], + "score": 0.864 + }, + { + "category_id": 2, + "poly": [ + 836, + 2088, + 863, + 2088, + 863, + 2112, + 836, + 2112 + ], + "score": 0.843 + }, + { + "category_id": 3, + "poly": [ + 845, + 1111, + 1401, + 1111, + 1401, + 1382, + 845, + 1382 + ], + "score": 0.1 + }, + { + "category_id": 13, + "poly": [ + 1113, + 835, + 1168, + 835, + 1168, + 864, + 1113, + 864 + ], + "score": 0.87, + "latex": "87 \\%" + }, + { + "category_id": 13, + "poly": [ + 532, + 1846, + 594, + 1846, + 594, + 1875, + 532, + 1875 + ], + "score": 0.86, + "latex": "0 . 8 \\%" + }, + { + "category_id": 13, + "poly": [ + 466, + 926, + 507, + 926, + 507, + 955, + 466, + 955 + ], + "score": 0.85, + "latex": "1 \\%" + }, + { + "category_id": 13, + "poly": [ + 786, + 1846, + 848, + 1846, + 848, + 1875, + 786, + 1875 + ], + "score": 0.84, + "latex": "4 . 4 \\%" + }, + { + "category_id": 13, + "poly": [ + 1087, + 589, + 1128, + 589, + 1128, + 617, + 1087, + 617 + ], + "score": 0.83, + "latex": "2 \\%" + }, + { + "category_id": 13, + "poly": [ + 963, + 1754, + 1038, + 1754, + 1038, + 1784, + 963, + 1784 + ], + "score": 0.83, + "latex": "3 6 . 7 \\%" + }, + { + "category_id": 13, + "poly": [ + 1341, + 1724, + 1404, + 1724, + 1404, + 1753, + 1341, + 1753 + ], + "score": 0.83, + "latex": "2 . 4 \\%" + }, + { + "category_id": 13, + "poly": [ + 295, + 1846, + 357, + 1846, + 357, + 1875, + 295, + 1875 + ], + "score": 0.83, + "latex": "1 . 2 \\%" + }, + { + "category_id": 13, + "poly": [ + 846, + 1754, + 921, + 1754, + 921, + 1784, + 846, + 1784 + ], + "score": 0.82, + "latex": "3 9 . 1 \\%" + }, + { + "category_id": 13, + "poly": [ + 784, + 1815, + 905, + 1815, + 905, + 1844, + 784, + 1844 + ], + "score": 0.68, + "latex": "\\mathrm { C C S + T C S }" + }, + { + "category_id": 13, + "poly": [ + 1135, + 420, + 1181, + 420, + 1181, + 447, + 1135, + 447 + ], + "score": 0.41, + "latex": "4 0 \\mathrm { k }" + }, + { + "category_id": 15, + "poly": [ + 1332.0, + 1116.0, + 1401.0, + 1116.0, + 1401.0, + 1138.0, + 1332.0, + 1138.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 875.0, + 1122.0, + 897.0, + 1122.0, + 897.0, + 1140.0, + 875.0, + 1140.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 842.0, + 1127.0, + 867.0, + 1127.0, + 867.0, + 1327.0, + 842.0, + 1327.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1357.0, + 1133.0, + 1402.0, + 1133.0, + 1402.0, + 1153.0, + 1357.0, + 1153.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1332.0, + 1134.0, + 1365.0, + 1134.0, + 1365.0, + 1151.0, + 1332.0, + 1151.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1357.0, + 1148.0, + 1401.0, + 1148.0, + 1401.0, + 1169.0, + 1357.0, + 1169.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1334.0, + 1149.0, + 1361.0, + 1149.0, + 1361.0, + 1167.0, + 1334.0, + 1167.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 875.0, + 1172.0, + 897.0, + 1172.0, + 897.0, + 1191.0, + 875.0, + 1191.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1329.0, + 1162.0, + 1395.0, + 1162.0, + 1395.0, + 1188.0, + 1329.0, + 1188.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 874.0, + 1222.0, + 897.0, + 1222.0, + 897.0, + 1240.0, + 874.0, + 1240.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 875.0, + 1271.0, + 897.0, + 1271.0, + 897.0, + 1290.0, + 875.0, + 1290.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 875.0, + 1322.0, + 897.0, + 1322.0, + 897.0, + 1340.0, + 875.0, + 1340.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 950.0, + 1343.0, + 964.0, + 1343.0, + 964.0, + 1356.0, + 950.0, + 1356.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1026.0, + 1343.0, + 1039.0, + 1343.0, + 1039.0, + 1356.0, + 1026.0, + 1356.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1097.0, + 1340.0, + 1120.0, + 1340.0, + 1120.0, + 1359.0, + 1097.0, + 1359.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1173.0, + 1340.0, + 1196.0, + 1340.0, + 1196.0, + 1359.0, + 1173.0, + 1359.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1250.0, + 1342.0, + 1270.0, + 1342.0, + 1270.0, + 1357.0, + 1250.0, + 1357.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1039.0, + 1362.0, + 1178.0, + 1362.0, + 1178.0, + 1384.0, + 1039.0, + 1384.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 892.0, + 1409.0, + 1355.0, + 1409.0, + 1355.0, + 1453.0, + 892.0, + 1453.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 357.0, + 552.0, + 357.0, + 552.0, + 397.0, + 295.0, + 397.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 72.0, + 816.0, + 72.0, + 816.0, + 110.0, + 294.0, + 110.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1027.0, + 668.0, + 1027.0, + 668.0, + 1074.0, + 292.0, + 1074.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1620.0, + 682.0, + 1620.0, + 682.0, + 1663.0, + 293.0, + 1663.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 832.0, + 2085.0, + 867.0, + 2085.0, + 867.0, + 2124.0, + 832.0, + 2124.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1330.0, + 1116.0, + 1402.0, + 1116.0, + 1402.0, + 1138.0, + 1330.0, + 1138.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 876.0, + 1123.0, + 895.0, + 1123.0, + 895.0, + 1139.0, + 876.0, + 1139.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 844.0, + 1127.0, + 867.0, + 1127.0, + 867.0, + 1327.0, + 844.0, + 1327.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1357.0, + 1132.0, + 1402.0, + 1132.0, + 1402.0, + 1153.0, + 1357.0, + 1153.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1336.0, + 1135.0, + 1361.0, + 1135.0, + 1361.0, + 1150.0, + 1336.0, + 1150.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1354.0, + 1149.0, + 1401.0, + 1149.0, + 1401.0, + 1169.0, + 1354.0, + 1169.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1335.0, + 1151.0, + 1361.0, + 1151.0, + 1361.0, + 1165.0, + 1335.0, + 1165.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 875.0, + 1172.0, + 897.0, + 1172.0, + 897.0, + 1190.0, + 875.0, + 1190.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1328.0, + 1160.0, + 1395.0, + 1160.0, + 1395.0, + 1189.0, + 1328.0, + 1189.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 875.0, + 1223.0, + 896.0, + 1223.0, + 896.0, + 1239.0, + 875.0, + 1239.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 874.0, + 1271.0, + 897.0, + 1271.0, + 897.0, + 1290.0, + 874.0, + 1290.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 875.0, + 1323.0, + 895.0, + 1323.0, + 895.0, + 1338.0, + 875.0, + 1338.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 951.0, + 1343.0, + 963.0, + 1343.0, + 963.0, + 1357.0, + 951.0, + 1357.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1027.0, + 1342.0, + 1039.0, + 1342.0, + 1039.0, + 1357.0, + 1027.0, + 1357.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1097.0, + 1340.0, + 1120.0, + 1340.0, + 1120.0, + 1360.0, + 1097.0, + 1360.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1174.0, + 1342.0, + 1195.0, + 1342.0, + 1195.0, + 1358.0, + 1174.0, + 1358.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1250.0, + 1342.0, + 1270.0, + 1342.0, + 1270.0, + 1358.0, + 1250.0, + 1358.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1040.0, + 1362.0, + 1178.0, + 1362.0, + 1178.0, + 1384.0, + 1040.0, + 1384.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 741.0, + 1408.0, + 741.0, + 1408.0, + 779.0, + 294.0, + 779.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 770.0, + 1405.0, + 770.0, + 1405.0, + 810.0, + 291.0, + 810.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 803.0, + 1405.0, + 803.0, + 1405.0, + 839.0, + 294.0, + 839.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 832.0, + 1112.0, + 832.0, + 1112.0, + 874.0, + 291.0, + 874.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1169.0, + 832.0, + 1407.0, + 832.0, + 1407.0, + 874.0, + 1169.0, + 874.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 864.0, + 1406.0, + 864.0, + 1406.0, + 901.0, + 294.0, + 901.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 896.0, + 1407.0, + 896.0, + 1407.0, + 930.0, + 295.0, + 930.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 925.0, + 465.0, + 925.0, + 465.0, + 963.0, + 294.0, + 963.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 508.0, + 925.0, + 1406.0, + 925.0, + 1406.0, + 963.0, + 508.0, + 963.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 957.0, + 1032.0, + 957.0, + 1032.0, + 989.0, + 294.0, + 989.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1102.0, + 826.0, + 1102.0, + 826.0, + 1136.0, + 297.0, + 1136.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1133.0, + 825.0, + 1133.0, + 825.0, + 1167.0, + 295.0, + 1167.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1165.0, + 828.0, + 1165.0, + 828.0, + 1195.0, + 297.0, + 1195.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1195.0, + 826.0, + 1195.0, + 826.0, + 1228.0, + 295.0, + 1228.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1224.0, + 826.0, + 1224.0, + 826.0, + 1257.0, + 294.0, + 1257.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1252.0, + 826.0, + 1252.0, + 826.0, + 1291.0, + 293.0, + 1291.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1286.0, + 825.0, + 1286.0, + 825.0, + 1319.0, + 295.0, + 1319.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1316.0, + 824.0, + 1316.0, + 824.0, + 1350.0, + 295.0, + 1350.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1346.0, + 825.0, + 1346.0, + 825.0, + 1379.0, + 295.0, + 1379.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1378.0, + 576.0, + 1378.0, + 576.0, + 1406.0, + 295.0, + 1406.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1686.0, + 1406.0, + 1686.0, + 1406.0, + 1731.0, + 292.0, + 1731.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1723.0, + 1340.0, + 1723.0, + 1340.0, + 1755.0, + 296.0, + 1755.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1754.0, + 845.0, + 1754.0, + 845.0, + 1790.0, + 295.0, + 1790.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 922.0, + 1754.0, + 962.0, + 1754.0, + 962.0, + 1790.0, + 922.0, + 1790.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1039.0, + 1754.0, + 1408.0, + 1754.0, + 1408.0, + 1790.0, + 1039.0, + 1790.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1784.0, + 1407.0, + 1784.0, + 1407.0, + 1820.0, + 293.0, + 1820.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1811.0, + 783.0, + 1811.0, + 783.0, + 1852.0, + 293.0, + 1852.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 906.0, + 1811.0, + 1406.0, + 1811.0, + 1406.0, + 1852.0, + 906.0, + 1852.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 358.0, + 1843.0, + 531.0, + 1843.0, + 531.0, + 1881.0, + 358.0, + 1881.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 595.0, + 1843.0, + 785.0, + 1843.0, + 785.0, + 1881.0, + 595.0, + 1881.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 849.0, + 1843.0, + 958.0, + 1843.0, + 958.0, + 1881.0, + 849.0, + 1881.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 525.0, + 1406.0, + 525.0, + 1406.0, + 562.0, + 294.0, + 562.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 558.0, + 1405.0, + 558.0, + 1405.0, + 591.0, + 294.0, + 591.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 587.0, + 1086.0, + 587.0, + 1086.0, + 624.0, + 293.0, + 624.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1129.0, + 587.0, + 1405.0, + 587.0, + 1405.0, + 624.0, + 1129.0, + 624.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 619.0, + 1321.0, + 619.0, + 1321.0, + 652.0, + 295.0, + 652.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1912.0, + 1406.0, + 1912.0, + 1406.0, + 1945.0, + 295.0, + 1945.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1943.0, + 1406.0, + 1943.0, + 1406.0, + 1976.0, + 295.0, + 1976.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1974.0, + 1407.0, + 1974.0, + 1407.0, + 2007.0, + 293.0, + 2007.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 2003.0, + 1406.0, + 2003.0, + 1406.0, + 2036.0, + 293.0, + 2036.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1484.0, + 1404.0, + 1484.0, + 1404.0, + 1517.0, + 294.0, + 1517.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1514.0, + 1404.0, + 1514.0, + 1404.0, + 1550.0, + 294.0, + 1550.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1544.0, + 1101.0, + 1544.0, + 1101.0, + 1581.0, + 296.0, + 1581.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 229.0, + 1407.0, + 229.0, + 1407.0, + 266.0, + 294.0, + 266.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 260.0, + 1406.0, + 260.0, + 1406.0, + 295.0, + 294.0, + 295.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 292.0, + 1330.0, + 292.0, + 1330.0, + 326.0, + 295.0, + 326.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 662.0, + 1403.0, + 662.0, + 1403.0, + 700.0, + 293.0, + 700.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 695.0, + 434.0, + 695.0, + 434.0, + 728.0, + 294.0, + 728.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1421.0, + 828.0, + 1421.0, + 828.0, + 1456.0, + 295.0, + 1456.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1452.0, + 825.0, + 1452.0, + 825.0, + 1490.0, + 295.0, + 1490.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 417.0, + 1134.0, + 417.0, + 1134.0, + 454.0, + 294.0, + 454.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1182.0, + 417.0, + 1406.0, + 417.0, + 1406.0, + 454.0, + 1182.0, + 454.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 451.0, + 1406.0, + 451.0, + 1406.0, + 484.0, + 295.0, + 484.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 480.0, + 1135.0, + 480.0, + 1135.0, + 513.0, + 294.0, + 513.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 14, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 297, + 604, + 1406, + 604, + 1406, + 941, + 297, + 941 + ], + "score": 0.982 + }, + { + "category_id": 1, + "poly": [ + 298, + 228, + 1403, + 228, + 1403, + 414, + 298, + 414 + ], + "score": 0.976 + }, + { + "category_id": 5, + "poly": [ + 462, + 1066, + 1232, + 1066, + 1232, + 1331, + 462, + 1331 + ], + "score": 0.975, + "html": "
Name#Dialogue#UtteranceAvg. Turn#Domain
MetaLWOZ (Lee et al., 2019)37,884432,03611.447
Schema (Rastogi et al., 2019)22,825463,28420.317
Taskmaster (Byrne et al.,2019)13,215303,06622.96
MWOZ (Budzianowski etal.,2018)10,42071,4106.97
MSR-E2E (Li et al.,2018)10.08774,6867.43
SMD (Eric and Manning,2017)3,03115.9285.33
Frames (Asri et al.,2017)1,36919,98614.63
WOZ (Mrksic et al., 2016)1,2005,0124.21
CamRest676 (Wen et al.,2016)6762,7444.11
" + }, + { + "category_id": 1, + "poly": [ + 299, + 447, + 1404, + 447, + 1404, + 570, + 299, + 570 + ], + "score": 0.974 + }, + { + "category_id": 2, + "poly": [ + 300, + 76, + 813, + 76, + 813, + 104, + 300, + 104 + ], + "score": 0.9 + }, + { + "category_id": 2, + "poly": [ + 836, + 2089, + 864, + 2089, + 864, + 2112, + 836, + 2112 + ], + "score": 0.845 + }, + { + "category_id": 0, + "poly": [ + 299, + 986, + 916, + 986, + 916, + 1023, + 299, + 1023 + ], + "score": 0.795 + }, + { + "category_id": 1, + "poly": [ + 295, + 1364, + 1403, + 1364, + 1403, + 1397, + 295, + 1397 + ], + "score": 0.607 + }, + { + "category_id": 6, + "poly": [ + 295, + 1364, + 1403, + 1364, + 1403, + 1397, + 295, + 1397 + ], + "score": 0.292 + }, + { + "category_id": 6, + "poly": [ + 299, + 986, + 916, + 986, + 916, + 1023, + 299, + 1023 + ], + "score": 0.112 + }, + { + "category_id": 13, + "poly": [ + 463, + 383, + 540, + 383, + 540, + 413, + 463, + 413 + ], + "score": 0.87, + "latex": "6 2 . 8 \\%" + }, + { + "category_id": 13, + "poly": [ + 1080, + 262, + 1154, + 262, + 1154, + 291, + 1080, + 291 + ], + "score": 0.87, + "latex": "1 9 . 3 \\%" + }, + { + "category_id": 13, + "poly": [ + 949, + 850, + 1022, + 850, + 1022, + 879, + 949, + 879 + ], + "score": 0.87, + "latex": "6 2 . 4 \\%" + }, + { + "category_id": 13, + "poly": [ + 427, + 540, + 488, + 540, + 488, + 569, + 427, + 569 + ], + "score": 0.86, + "latex": "7 . 6 \\%" + }, + { + "category_id": 13, + "poly": [ + 296, + 849, + 370, + 849, + 370, + 879, + 296, + 879 + ], + "score": 0.85, + "latex": "67 . 8 \\%" + }, + { + "category_id": 13, + "poly": [ + 1005, + 819, + 1080, + 819, + 1080, + 848, + 1005, + 848 + ], + "score": 0.85, + "latex": "6 9 . 7 \\%" + }, + { + "category_id": 13, + "poly": [ + 781, + 758, + 860, + 758, + 860, + 788, + 781, + 788 + ], + "score": 0.85, + "latex": "6 9 . 6 \\%" + }, + { + "category_id": 13, + "poly": [ + 353, + 383, + 428, + 383, + 428, + 413, + 353, + 413 + ], + "score": 0.85, + "latex": "6 2 . 7 \\%" + }, + { + "category_id": 13, + "poly": [ + 569, + 262, + 644, + 262, + 644, + 292, + 569, + 292 + ], + "score": 0.85, + "latex": "1 9 . 3 \\%" + }, + { + "category_id": 13, + "poly": [ + 659, + 758, + 738, + 758, + 738, + 788, + 659, + 788 + ], + "score": 0.85, + "latex": "5 7 . 1 \\%" + }, + { + "category_id": 13, + "poly": [ + 298, + 540, + 389, + 540, + 389, + 571, + 298, + 571 + ], + "score": 0.84, + "latex": "( 5 4 . 6 \\% )" + }, + { + "category_id": 13, + "poly": [ + 453, + 262, + 525, + 262, + 525, + 292, + 453, + 292 + ], + "score": 0.82, + "latex": "1 9 . 6 \\%" + }, + { + "category_id": 13, + "poly": [ + 961, + 262, + 1036, + 262, + 1036, + 291, + 961, + 291 + ], + "score": 0.81, + "latex": "2 2 . 0 \\%" + }, + { + "category_id": 13, + "poly": [ + 1029, + 510, + 1119, + 510, + 1119, + 541, + 1029, + 541 + ], + "score": 0.81, + "latex": "( 6 2 . 2 \\% )" + }, + { + "category_id": 13, + "poly": [ + 682, + 821, + 706, + 821, + 706, + 846, + 682, + 846 + ], + "score": 0.76, + "latex": "^ +" + }, + { + "category_id": 13, + "poly": [ + 998, + 670, + 1021, + 670, + 1021, + 695, + 998, + 695 + ], + "score": 0.76, + "latex": "^ +" + }, + { + "category_id": 13, + "poly": [ + 548, + 853, + 570, + 853, + 570, + 878, + 548, + 878 + ], + "score": 0.75, + "latex": "^ +" + }, + { + "category_id": 13, + "poly": [ + 1226, + 730, + 1250, + 730, + 1250, + 756, + 1226, + 756 + ], + "score": 0.74, + "latex": "^ +" + }, + { + "category_id": 13, + "poly": [ + 632, + 512, + 656, + 512, + 656, + 537, + 632, + 537 + ], + "score": 0.73, + "latex": "^ +" + }, + { + "category_id": 13, + "poly": [ + 905, + 821, + 929, + 821, + 929, + 846, + 905, + 846 + ], + "score": 0.72, + "latex": "^ +" + }, + { + "category_id": 13, + "poly": [ + 1207, + 821, + 1231, + 821, + 1231, + 846, + 1207, + 846 + ], + "score": 0.66, + "latex": "^ +" + }, + { + "category_id": 13, + "poly": [ + 884, + 234, + 902, + 234, + 902, + 257, + 884, + 257 + ], + "score": 0.38, + "latex": "^ +" + }, + { + "category_id": 13, + "poly": [ + 1216, + 1365, + 1260, + 1365, + 1260, + 1394, + 1216, + 1394 + ], + "score": 0.32, + "latex": "\\mathrm { W u }" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 72.0, + 816.0, + 72.0, + 816.0, + 110.0, + 294.0, + 110.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 831.0, + 2085.0, + 868.0, + 2085.0, + 868.0, + 2124.0, + 831.0, + 2124.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 983.0, + 917.0, + 983.0, + 917.0, + 1027.0, + 293.0, + 1027.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1360.0, + 1215.0, + 1360.0, + 1215.0, + 1401.0, + 293.0, + 1401.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1261.0, + 1360.0, + 1408.0, + 1360.0, + 1408.0, + 1401.0, + 1261.0, + 1401.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 983.0, + 917.0, + 983.0, + 917.0, + 1027.0, + 293.0, + 1027.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 602.0, + 1407.0, + 602.0, + 1407.0, + 642.0, + 294.0, + 642.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 636.0, + 1407.0, + 636.0, + 1407.0, + 671.0, + 295.0, + 671.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 662.0, + 997.0, + 662.0, + 997.0, + 703.0, + 292.0, + 703.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1022.0, + 662.0, + 1407.0, + 662.0, + 1407.0, + 703.0, + 1022.0, + 703.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 697.0, + 1407.0, + 697.0, + 1407.0, + 732.0, + 294.0, + 732.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 723.0, + 1225.0, + 723.0, + 1225.0, + 766.0, + 292.0, + 766.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1251.0, + 723.0, + 1409.0, + 723.0, + 1409.0, + 766.0, + 1251.0, + 766.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 754.0, + 658.0, + 754.0, + 658.0, + 795.0, + 292.0, + 795.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 739.0, + 754.0, + 780.0, + 754.0, + 780.0, + 795.0, + 739.0, + 795.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 861.0, + 754.0, + 1408.0, + 754.0, + 1408.0, + 795.0, + 861.0, + 795.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 789.0, + 1406.0, + 789.0, + 1406.0, + 823.0, + 295.0, + 823.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 818.0, + 681.0, + 818.0, + 681.0, + 852.0, + 294.0, + 852.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 707.0, + 818.0, + 904.0, + 818.0, + 904.0, + 852.0, + 707.0, + 852.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 930.0, + 818.0, + 1004.0, + 818.0, + 1004.0, + 852.0, + 930.0, + 852.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1081.0, + 818.0, + 1206.0, + 818.0, + 1206.0, + 852.0, + 1081.0, + 852.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1232.0, + 818.0, + 1406.0, + 818.0, + 1406.0, + 852.0, + 1232.0, + 852.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 371.0, + 851.0, + 547.0, + 851.0, + 547.0, + 882.0, + 371.0, + 882.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 571.0, + 851.0, + 948.0, + 851.0, + 948.0, + 882.0, + 571.0, + 882.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1023.0, + 851.0, + 1404.0, + 851.0, + 1404.0, + 882.0, + 1023.0, + 882.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 879.0, + 1404.0, + 879.0, + 1404.0, + 914.0, + 295.0, + 914.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 909.0, + 765.0, + 909.0, + 765.0, + 944.0, + 292.0, + 944.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 230.0, + 883.0, + 230.0, + 883.0, + 265.0, + 294.0, + 265.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 903.0, + 230.0, + 1405.0, + 230.0, + 1405.0, + 265.0, + 903.0, + 265.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 260.0, + 452.0, + 260.0, + 452.0, + 297.0, + 293.0, + 297.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 526.0, + 260.0, + 568.0, + 260.0, + 568.0, + 297.0, + 526.0, + 297.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 645.0, + 260.0, + 960.0, + 260.0, + 960.0, + 297.0, + 645.0, + 297.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1037.0, + 260.0, + 1079.0, + 260.0, + 1079.0, + 297.0, + 1037.0, + 297.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1155.0, + 260.0, + 1405.0, + 260.0, + 1405.0, + 297.0, + 1155.0, + 297.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 293.0, + 1404.0, + 293.0, + 1404.0, + 325.0, + 294.0, + 325.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 321.0, + 1404.0, + 321.0, + 1404.0, + 357.0, + 294.0, + 357.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 350.0, + 1405.0, + 350.0, + 1405.0, + 389.0, + 293.0, + 389.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 382.0, + 352.0, + 382.0, + 352.0, + 418.0, + 294.0, + 418.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 429.0, + 382.0, + 462.0, + 382.0, + 462.0, + 418.0, + 429.0, + 418.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 541.0, + 382.0, + 558.0, + 382.0, + 558.0, + 418.0, + 541.0, + 418.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 448.0, + 1409.0, + 448.0, + 1409.0, + 484.0, + 293.0, + 484.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 478.0, + 1405.0, + 478.0, + 1405.0, + 514.0, + 294.0, + 514.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 510.0, + 631.0, + 510.0, + 631.0, + 543.0, + 290.0, + 543.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 657.0, + 510.0, + 1028.0, + 510.0, + 1028.0, + 543.0, + 657.0, + 543.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1120.0, + 510.0, + 1405.0, + 510.0, + 1405.0, + 543.0, + 1120.0, + 543.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 539.0, + 297.0, + 539.0, + 297.0, + 576.0, + 294.0, + 576.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 390.0, + 539.0, + 426.0, + 539.0, + 426.0, + 576.0, + 390.0, + 576.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 489.0, + 539.0, + 501.0, + 539.0, + 501.0, + 576.0, + 489.0, + 576.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1360.0, + 1215.0, + 1360.0, + 1215.0, + 1401.0, + 293.0, + 1401.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1261.0, + 1360.0, + 1408.0, + 1360.0, + 1408.0, + 1401.0, + 1261.0, + 1401.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/rJg3zxBYwH/rJg3zxBYwH.md b/parse/train/rJg3zxBYwH/rJg3zxBYwH.md new file mode 100644 index 0000000000000000000000000000000000000000..d6c2afe704356df6d5787c3e33ff287fee096a80 --- /dev/null +++ b/parse/train/rJg3zxBYwH/rJg3zxBYwH.md @@ -0,0 +1,358 @@ +# LEARNING LIKELIHOODS WITH CONDITIONAL NORMALIZING FLOWS + +Anonymous authors Paper under double-blind review + +# ABSTRACT + +Normalizing Flows (NFs) are able to model complicated distributions $p _ { Y } ( y )$ with strong inter-dimensional correlations and high multimodality by transforming a simple base density $p _ { Z } ( z )$ through an invertible neural network under the change of variables formula. Such behavior is desirable in multivariate structured prediction tasks, where handcrafted per-pixel loss-based methods inadequately capture strong correlations between output dimensions. We present a study of conditional normalizing flows (CNFs), a class of NFs where the base density to output space mapping is conditioned on an input $\mathbf { X }$ , to model conditional densities $p _ { Y \mid X } ( y | x )$ . CNFs are efficient in sampling and inference, they can be trained with a likelihood-based objective, and CNFs, being generative flows, do not suffer from mode collapse or training instabilities. We provide an effective method to train continuous CNFs for binary problems and in particular, we apply these CNFs to super-resolution and vessel segmentation tasks demonstrating competitive performance on standard benchmark datasets in terms of likelihood and conventional metrics. + +# 1 INTRODUCTION + +Learning conditional distributions $p _ { Y | X } ( \mathbf { y } | \mathbf { x } )$ is one of the oldest problems in machine learning. When the output $\mathbf { y }$ is high-dimensional this is a particularly challenging task, and the practitioner is left with many design choices. Do we factorize the conditional? If not, do we model correlations with, say, a conditional random field (Prince, 2012)? Do we use a unimodal distribution? How fat should the tails be? Do we use an explicit likelihood at all, or use implicit methods (Mohamed & Rezende, 2015) such as a GAN (Goodfellow et al., 2014)? Do we quantize the output? Ideally, the practitioner should not have to make design choices at all, and the distribution should be learned from the data. + +In the field of density estimation normalizing flows (NFs) are a relatively new family of models (Rezende & Mohamed, 2015). NFs model complicated high dimensional marginal distributions $p _ { Y } ( \mathbf { y } )$ by transforming a simple base distribution or prior $p _ { Z } ( \mathbf { z } )$ through a learnable, invertible mapping $f _ { \phi }$ and then applying the change of variables formula. NFs are efficient in inference and sampling, are able to learn inter-dimensional correlations and multi-modality, and they are exact likelihood models, amenable to gradient-based optimization. + +Flow-based generative models (Dinh et al., 2016) are generally trained on the image space, and are in some cases computationally efficient in both the forward and inverse direction. These are advantageous over other likelihood based methods because $i _ { , }$ ) sampling is efficient opposed to autoregressive models (Van Oord et al., 2016), and $i i$ ) flows admit exact likelihood optimization in contrast with variational autoencoders (Kingma & Welling, 2014). + +Conditional random fields directly model correlations between pixels, and have been fused with deep learning (Chen et al., 2016). However, they require the practitioner to choose which pixels have pairwise interactions. Another approach uses adversarial training (Goodfellow et al., 2014). A downside is that the training procedure can be unstable and they are difficult to evaluate quantitatively. + +We propose to learn the likelihood of conditional distributions with few modeling choices using Conditional Normalizing Flows (CNFs). CNFs can be harnessed for conditional distributions $p _ { Y | X } ( \mathbf { y } | \mathbf { x } )$ + +by conditioning the prior and the invertible mapping on the input x. In particular, we apply conditional flows to super-resolution (Wang et al., 2018) and vessel segmentation (Staal et al., 2004). We evaluate their performance gains on multivariate prediction tasks along side architecturally-matched factored baselines by comparing likelihood and application specific evaluation metrics. + +# 2 BACKGROUND + +In the following, we present the relevant background material on normalizing flows and structured prediction. This section covers the change of variables formula, invertible modules, variational dequantization and conventional likelihood optimization. + +# 2.1 NORMALIZING FLOWS + +A standard NF in continuous space is based on a simple change of variables formula. Given two spaces of equal dimension $\mathcal { Z }$ and $\mathcal { V }$ ; a once-differentiable, parametric, bijective1 mapping $f _ { \phi } : \mathcal { V } $ $\mathcal { Z }$ , where $\phi$ are the parameters of $f$ ; and a prior distribution $p _ { Z } ( \mathbf { z } )$ , we can model a complicated distribution $p _ { Y } ( \mathbf { y } )$ as + +$$ +p _ { Y } ( \mathbf { y } ) = p _ { Z } ( f _ { \phi } ( \mathbf { y } ) ) \left. \frac { \partial f _ { \phi } ( \mathbf { y } ) } { \partial \mathbf { y } } \right. . +$$ + +The term $| \partial f _ { \phi } ( \mathbf { y } ) / \partial \mathbf { y } |$ is the Jacobian determinant of $f _ { \phi }$ , evaluated at $\mathbf { y }$ and it accounts for volume changes induced by $f _ { \phi }$ . The transformation $f _ { \phi }$ introduces correlations and multi-modality in $p _ { Y }$ . The main challenge in the field of normalizing flows is designing the transformation $f _ { \phi }$ . It has to be $i ,$ bijective, $i i _ { . }$ ) have an efficient and tractable Jacobian determinant, iii) be from a ‘flexible’ model class. In addition, $i \nu _ { . }$ ) for fast sampling the inverse needs to be efficiently computable. Below we briefly state which invertible modules are used in our architectures, obeying the aforementioned points. + +Coupling layers Affine coupling layers (Dinh et al., 2016) are invertible, nonlinear layers. They work by splitting the input $\mathbf { z }$ into two components $\mathbf { z } _ { 0 }$ and $\mathbf { z } _ { 1 }$ and nonlinearly transforming $\mathbf { z } _ { 0 }$ as a function of $\mathbf { z } _ { 1 }$ , before reconcatenating the result. If ${ \bf z } = [ { \bf z } _ { 0 } , { \bf z } _ { 1 } ]$ and $\mathbf { y } = [ \mathbf { y } _ { 0 } , \mathbf { y } _ { 1 } ]$ this is + +$$ +\begin{array} { r l r l } & { \mathbf { y } _ { 0 } = s ( \mathbf { z } _ { 1 } ) \cdot \mathbf { z } _ { 0 } + t ( \mathbf { z } _ { 1 } ) \qquad } & & { \mathbf { z } _ { 0 } = ( \mathbf { z } _ { 0 } - t ( \mathbf { y } _ { 1 } ) ) / s ( \mathbf { y } _ { 1 } ) } \\ & { \mathbf { y } _ { 1 } = \mathbf { z } _ { 1 } \qquad } & & { \mathbf { z } _ { 1 } = \mathbf { y } _ { 1 } } \end{array} +$$ + +Where the scale $s ( \cdot )$ and translation $t ( \cdot )$ functions can be any function, typically implemented with a CNN. Similar conditioning with normalizing flows has been done in previous works by Mohamed & Rezende (2015) and Kingma et al. (2016b). + +Invertible $\textbf { 1 x 1 }$ Convolutions Proposed in Kingma & Dhariwal (2018), invertible $1 \times 1$ convolutions help mix information across channel dimensions. We implement them as regular $1 \times 1$ convolutions and for the inverse, we convolve with the inverse of the kernel. + +Squeeze layers Squeeze layers (Dinh et al., 2016) are used to compress the spatial resolution of activations. These also help with increasing spatial receptive field of pixels in the deeper activations. + +Split Prior Split priors (Dinh et al., 2016) work by spliting a set of activations $\mathbf { z }$ into two components $\mathbf { z } _ { 0 }$ and $\mathbf { z } _ { 1 }$ . We then condition $\mathbf { z } _ { 1 }$ on $\mathbf { z } _ { 0 }$ using a simple base density e.g. $p ( \mathbf { z } _ { 1 } | \mathbf { z } _ { 0 } ) =$ $\mathbf { \bar { \mathcal { N } } } ( \mathbf { z } _ { 1 } ; \mu ( \mathbf { z } _ { 0 } ) , \sigma ^ { 2 } ( \mathbf { z } _ { 0 } ) )$ , where $\mu ( \cdot )$ and $\sigma ^ { 2 } ( \cdot )$ are neural networks. The component $\mathbf { z } _ { 0 }$ can be modeled by further flow layers. This prior, is useful for modeling hierarchical correlations between dimensions, and also helps reduce computation, since $\mathbf { z } _ { 0 }$ is reduced in size. + +Variational dequantization When modeling discrete data, Theis et al. (2016) introduced the concept of dequantization. For this, they modeled the probability mass function over $\mathbf { y }$ as a latent variable model + +$$ +P _ { \mathrm { m o d e l } } ( \mathbf { y } ) = \int _ { \mathcal { V } } P ( \mathbf { y } | \mathbf { v } ) p ( \mathbf { v } ) \mathrm { d } \mathbf { v } = \int _ { \mathcal { V } } p ( \mathbf { y } , \mathbf { v } ) \mathrm { d } \mathbf { v } +$$ + +where the latent variables $\textbf { v } \in { \mathcal { V } }$ are continuous-valued. This is a convenient model to use, since the marginal $p ( \mathbf { v } )$ , living on a continuous sample space, can be modelled with a continuous NF. The distribution $P ( \mathbf { y } | \mathbf { v } )$ is known as the quantizer and is typically an indicator function $P ( \mathbf { y } | \mathbf { v } ) = \mathbb { I } [ \mathbf { v } \in$ $\mathbf { y } + [ 0 , 1 ) ^ { D } ]$ . Other works (Hoogeboom et al., $2 0 1 9 \mathrm { a }$ ; Tran et al., 2019) directly model $P _ { \mathrm { m o d e l } } ( \mathbf { y } )$ with a discrete-valued flow, but these are known to be difficult to optimize. As an extension of dequantization, Ho et al. (2019) introduced a variational distribution $\bar { \bf q } ( { \bf v } | { \bf y } )$ , called a dequantizer, and write a lower bound on the data log-likelihood using Jensen’s inequality as follows + +$$ +\begin{array} { r l } & { \mathbb { E } _ { P _ { \mathrm { d a t a } } ( \mathbf { y } ) } \log P _ { \mathrm { m o d e l } } ( \mathbf { y } ) = \mathbb { E } _ { P _ { \mathrm { d a t a } } ( \mathbf { y } ) } \log \displaystyle \int p ( \mathbf { y } , \mathbf { v } ) \mathrm { d } \mathbf { v } } \\ & { \qquad = \mathbb { E } _ { P _ { \mathrm { d a t a } } ( \mathbf { y } ) } \log \displaystyle \int \frac { q ( \mathbf { v } | \mathbf { y } ) } { q ( \mathbf { v } | \mathbf { y } ) } p ( \mathbf { y } , \mathbf { v } ) \mathrm { d } \mathbf { v } \geq \mathbb { E } _ { P _ { \mathrm { d a t a } } ( \mathbf { y } ) } \int q ( \mathbf { v } | \mathbf { y } ) \log \displaystyle \frac { p ( \mathbf { y } , \mathbf { v } ) } { q ( \mathbf { v } | \mathbf { y } ) } \mathrm { d } \mathbf { v } } \end{array} +$$ + +Noting that the joint $p ( \mathbf { y } , \mathbf { v } ) = \mathbb { I } [ \mathbf { v } \in \mathbf { y } + [ 0 , 1 ) ^ { D } ] p ( \mathbf { v } )$ , we see that the dequantizer distribution $q ( \mathbf { v } | \mathbf { y } )$ must be defined such that $\mathbf { v } \in \mathbf { y } + [ 0 , 1 ) ^ { D }$ , otherwise $p ( \mathbf { y } , \mathbf { v } ) = 0$ and the lower-bound is undefined. Restricting $q ( \mathbf { v } | \mathbf { y } )$ to satisfy this condition, results in the following variational dequantization bound + +$$ +\mathbb { E } _ { P _ { \mathrm { d a t a } } ( \mathbf { y } ) } \log P _ { \mathrm { m o d e l } } ( \mathbf { y } ) \geq \mathbb { E } _ { P _ { \mathrm { d a t a } } ( \mathbf { y } ) } \int q ( \mathbf { v } | \mathbf { y } ) \log \frac { p ( \mathbf { v } ) } { q ( \mathbf { v } | \mathbf { y } ) } \mathrm { d } \mathbf { v } . +$$ + +# 2.2 STRUCTURED PREDICTION + +Structured prediction tasks such as image segmentation or super-resolution, can be probabilistically framed as learning an unknown target distribution $p ^ { * } ( \mathbf { y } \vert \mathbf { x } )$ , with an input $\mathbf { x } \in \mathcal { X }$ and a target $\mathbf { y } \in \mathcal { V }$ . In practice with deep learning models, the unknown distribution is often learned by a factored model: + +$$ +p ( \mathbf { y } | \mathbf { x } ) = \prod _ { d = 1 } ^ { D } p ( y _ { d } | \mathbf { x } ) , +$$ + +where $y _ { d }$ represents the dth dimension of y. Several loss-based optimization methods are a special case of this factored model. The mean squared error is equivalent to a product of normal distributions with equal and fixed standard deviation. Other examples are: cross entropy, equivalent to a product of log categorical distributions, and binary cross entropy, equivalent to a product of log Bernoulli distributions. + +With factorized independent likelihoods, individual dimensions of y are assumed to be conditionally independent. As a result, sampling leads to results with uncorrelated noise over the output dimensions. In the literature, a fix for this problem is to visualize the mode of the distribution and interpret that as a prediction. However, because the likelihood was optimized assuming a conditionally independent noise distribution, these modes tend to be blurry and lack crisp details. + +# 3 METHOD + +In this section we present our main innovations. i) learning conditional likelihoods using CNFs and $i i$ ) a variational dequantization framework for binary random variables. + +# 3.1 CONDITIONAL NORMALIZING FLOWS + +We propose to learn conditional likelihoods using conditional normalizing flows for complicated target distributions in multivariate prediction tasks. Take an input $\mathbf { x } \in \mathcal { X }$ and a regression target $\mathbf { y } \in \mathcal { V }$ . We learn a complicated distribution $p _ { Y | X } ( \mathbf { y } | \mathbf { x } )$ using a conditional prior $p _ { Z | X } ( \mathbf { z } | \mathbf { x } )$ and a mapping $f _ { \phi } : \mathcal { V } \times \mathcal { X } \to \mathcal { Z }$ , which is bijective in $\mathcal { V }$ and $\mathcal { Z }$ . The likelihood of this model is: + +$$ +p _ { Y | X } ( \mathbf { y } | \mathbf { x } ) = p _ { Z | X } ( \mathbf { z } | \mathbf { x } ) \left| \frac { \partial \mathbf { z } } { \partial \mathbf { y } } \right| = p _ { Z | X } ( f _ { \phi } ( \mathbf { y } , \mathbf { x } ) | \mathbf { x } ) \left| \frac { \partial f _ { \phi } ( \mathbf { y } , \mathbf { x } ) } { \partial \mathbf { y } } \right| . +$$ + +Notice that the difference between Equations 1 and 7 is that all distributions are conditional and the flow has a conditioning argument of $\mathbf { x }$ . + +The generative process from x to $\mathbf { y }$ (shown in Figure 1) can be described by first sampling $\mathbf { z } \sim$ $p _ { Z | X } ( \mathbf { z } | \mathbf { x } )$ from a simple base density with its parameters conditioned on $\mathbf { x }$ (for us this is a diagonal Gaussian) and then passing it through a sequence of bijective mappings $f _ { \phi } ^ { - 1 } ( \mathbf { z } ; \mathbf { x } )$ . This allows for modelling multimodal conditional distributions in y, which is typically uncommon. + +For the training procedure, the process runs in reverse. We begin with label $\mathbf { y }$ and conditioning input $\mathbf { x }$ . We ‘flow’ the label back through $f _ { \phi }$ to yield $\mathbf { z } = f _ { \phi } ( \mathbf { y } ; \mathbf { x } )$ , and then we evaluate the log-likelihood of the parameters of the prior, given this transformed label $\mathbf { z }$ . The flow and prior parameters can be optimized using stochastic gradient descent and training in minibatches in the usual fashion. Note that this style of training a conditional density model $p _ { Y | X } ( \mathbf { y } | \mathbf { x } )$ differs fundamentally from traditional models, because we compute the log-likelihood in $\mathbf { z }$ -space and not y-space. As a result, we are not biasing our results with an arbitrary choice of output-space likelihood or in the case of this paper, handcrafted image loss. Instead, one could interpret this method as learning the correlational and multimodal structure of the likelihood or simply put loss-learning. + +![](images/1d00c1a305b002fe4da20995d0fabb8d03ca5c203d3362bd2c40e5bad8b0f3e7.jpg) +Figure 1: Diagram of our model in the train and sampling phases. Solid lines represent deterministic mappings and dashed lines represent sampling. The conditioning variable enters the network in base density $p ( \mathbf { z } | \mathbf { x } )$ and the bijective mappings $f ( \mathbf { y } , \mathbf { x } )$ . + +Conditional modules In our work, the conditioning is introduced in the prior, the split priors, and the affine coupling modules. For the prior, we set the mean and variance as functions of $\mathbf { x }$ . For the split prior, we add $\mathbf { x }$ as a conditoning argument to the conditional $p ( \mathbf { z } _ { 1 } | \mathbf { z } _ { 0 } , \mathbf { x } )$ . And for the affine coupling layers, we pass $\mathbf { x }$ to the scale and translation networks so that + +$$ +\begin{array} { r l } & { \mathrm { C o n d i t i o n a l ~ P r i o r } \qquad p ( \mathbf { z } | \mathbf { x } ) = \mathcal { N } ( \mathbf { z } ; \mu ( \mathbf { x } ) , \sigma ^ { 2 } ( \mathbf { x } ) ) } \\ & { \mathrm { C o n d i t i o n a l ~ S p l i t ~ P r i o r } \quad p ( \mathbf { z } _ { 1 } | \mathbf { z } _ { 0 } , \mathbf { x } ) = \mathcal { N } ( \mathbf { z } _ { 1 } ; \mu ( \mathbf { z } _ { 0 } , \mathbf { x } ) , \sigma ^ { 2 } ( \mathbf { z } _ { 0 } , \mathbf { x } ) ) } \\ & { \mathrm { C o n d i t i o n a l ~ C o u p l i n g } \quad \mathbf { y } _ { 0 } = s ( \mathbf { z } _ { 1 } , \mathbf { x } ) \cdot \mathbf { z } _ { 0 } + t ( \mathbf { z } _ { 1 } , \mathbf { x } ) ; \qquad \mathbf { y } _ { 1 } = \mathbf { z } _ { 1 } } \end{array} +$$ + +In practice these functions are implemented using deep neural networks. First the conditioning term $\mathbf { x }$ is transformed into a rich representation $\mathbf { h } = g ( \mathbf { x } )$ using a large network $g$ . Subsequently, each function in the flow is applied to a concatenation $[ \cdot , \cdot ]$ of $\mathbf { h }$ and the relevant part of $\mathbf { z }$ . For example, the translation of a conditional coupling is computed as $t ( \mathbf { z } _ { 1 } , \mathbf { x } ) = \mathbf { N N } ( [ \mathbf { z } _ { 1 } , \mathbf { h } ] )$ . + +# 3.2 VARIATIONAL DEQUANTIZATION FOR BINARY RANDOM VARIABLES + +We generalize the variational dequantization scheme for the binary setting. Let $\mathbf { y } \in \{ 0 , 1 \} ^ { D }$ be a multivariate binary random variable and $\mathbf { v } \in \mathbb { R } ^ { D }$ its dequantized representation. In Ho et al. (2019) the bound is not guaranteed to be tight, since there is a domain mismatch in the support of $p ( \mathbf { v } )$ and the variational dequantizer $q ( \mathbf { v } | \mathbf { y } )$ . Technically, if $p ( \mathbf { v } )$ is modeled as a bijective mapping from a Gaussian distribution where the mapping only has finite volume changes, then the support of $p ( \mathbf { v } )$ is unbounded. On the otherhand, the support of the dequantizer is bounded and so we have to redefine either the dequantizer to map to all of $\mathbb { R } ^ { D }$ or restrict the support of the flow to a bounded volume inside $\mathbb { R } ^ { D }$ . We resolve this by dequantizing with half-infinite noise, where + +$$ +\mathbf { v } | \mathbf { y } , \mathbf { z } = 0 . 5 + \mathrm { s i g n } ( \mathbf { y } - 0 . 5 ) \cdot \mathrm { s o f t p l u s } ( \mathrm { N N } ( \mathbf { z } ) ) . +$$ + +The softplus guarantees that samples from the neural network NN are only positive. If $\mathbf { y }$ is 1, the term $\mathrm { s i g n } ( \mathbf { y } - 0 . 5 )$ outputs positive-valued noise and if $\mathbf { y }$ is 0 the noise is negative-valued. + +# 4 RELATED WORK + +Normalizing flows were originally introduced to machine learning to learn a flexible variational posterior, a conditional distribution, in VAEs (Rezende & Mohamed, 2015; Kingma et al., 2016a; van den Berg et al., 2018). Flow-based generative models (Dinh et al., 2016; Papamakarios et al., 2017; Huang et al., 2018; Kingma & Dhariwal, 2018; Hoogeboom et al., 2019b; Grathwohl et al., 2019; Cao et al., 2019; Chen et al., 2019) are typically trained directly in the data space. Several of these are designed to be fast to invert, which makes them suitable for drawing samples after training. + +Different versions and applications of conditional normalizing flows include Agrawal & Dukkipati (2016) who utilize flows in the decoder of Variational AutoEncoders Kingma & Welling (2014), which are conditioned on the latent variable. Trippe & Turner (2018) who utilize conditional flows for prediction problems in a Bayesian framework for density estimation. Atanov et al. (2019) introduce a semi-conditional flow that provides an efficient way to learn from unlabeled data for semisupervised classification problems. Very recently, Ardizzone et al. (2019) have proposed conditional flow-based generative models for image colorization, which differs from our work in training objective, architecture and applicability to binary segmentation. Autoregressive models (Van Oord et al., 2016) have also been studied for conditional image generation van den Oord et al. (2016) but are generally slow to sample from. + +Adversarial methods (Goodfellow et al., 2014) have widely been applied to (conditional) image density modeling tasks (Vu et al., 2019; Sajjadi et al., 2017b; Yuan et al., 2018; Mechrez et al., 2018), because they tend to generate high-fidelity images. Disadvantages of adversarial methods are that they can be complicated to train, and it is difficult to obtain likelihoods. For this reason, it can be hard to assess whether they are overfitting or generalizing. + +# 5 EXPERIMENTS + +Here we explain our experiments into super-resolution and vessel segmentation. All models were implemented using the PyTorch framework. + +# 5.1 SINGLE IMAGE SUPER RESOLUTION + +Single Image Super Resolution (SISR) methods aims to find a high resolution image $x _ { h r }$ given a single (downsampled) low resolution image $x _ { l r }$ . Framing this problem as learning a likelihood, we utilize a CNF to learn the distribution $p ( x _ { h r } | x _ { l r } )$ . To compare our method we also train a factorized baseline likelihood model with comparable architectures and parameter budget. The factorized baseline uses a product of discretized logistic distributions (Kingma et al., 2016a; Salimans et al., 2017). All methods are compared on negative $\log _ { 2 }$ -likelihood if available, which has the information theoretic interpretation bits per dimensions. In addition, we evaluate using SSIM (Wang et al., 2004) and PSNR metrics. + +Implementation Details The flow is based on the (Dinh et al., 2016; Kingma & Dhariwal, 2018) multi-scale architectures. Each step of flow consists of $K$ subflows and $L$ levels. One subflow consists of an activation normalization, $1 \times 1$ convolution, and our conditional coupling layer. After completing a level, half of the representation is factored-out and modeled using our conditional split prior. After all levels have been completed, our conditional prior is used to model the final part of the latent variable. + +The conditioning variable $x _ { l r }$ is transformed into the feature representation h using Residual-inResidual Dense Block (RRDB) architecture (Wang et al., 2018), consisting of 16 residual-in-residual blocks. To match the parameter budget, the channel growth is 55 for the baseline and the growth is 32 for the CNF. + +Data The models are trained on natural image datasets, Imagenet32 and Imagenet64 (Chrabaszcz et al., 2017). Since the dataset has no test set, we use its validation images as a test set. For validation we take 10000 images from the train images. The performance is always reported on the test set unless specified otherwise. We evaluate our models on widely used benchmark datasets Set5 (Bevilacqua et al., 2012), Set14 (Zeyde et al., 2012) and BSD100 (Huang et al., 2015). At test time, we pad the test images with zeros at right and bottom so that they are square and compatible with squeeze layers. When evaluating on SSIM and PSNR, we can extract the patch with the exact image shape. For all datasets the LR images are obtained using MATLABs bicubic kernel function with reducing aliasing artifacts following Wang et al. (2018). For these experiments, the pixel values are dequantized by adding uniform noise (Theis et al., 2016). + +Training Settings We train on ImageNet32 and ImageNet64 for 200, 000 iterations with mini batches of size 64, and a learning rate of 0.0001 using the Adam optimizer (Kingma & Ba, 2015). + +![](images/968b128bcb0c0904815de5b4636633af6dac527cda75f1e445b409699c0fcf5b.jpg) +Figure 2: Super resolution results on the Imagenet64 test data. Samples are taken from the CNF $x _ { h r } \sim p ( x _ { h r } | x _ { l r } )$ and the mode is visualized for the factorized baseline model. Best viewed electronically. + +The high-resolution image $x _ { h r }$ either the original $3 2 \times 3 2$ or $6 4 \times 6 4$ original input images. The flow architecture is build with $L = 2$ levels and $K = 8$ . + +# 5.1.1 EVALUATION + +In this section the performance of CNFs for SISR is compared against a baseline likelihood model on ImageNet32 and ImageNet64. Their performance measured in $\log _ { 2 }$ -likelihood (bits per dimension) is shown in Table 1, which show that the CNF outperforms the factorized baseline in likelihood. Recall that the baseline model is factorized and conditionally independent. These results indicate that it is advantageous to capture the correlations and multi-modality present in the data. + +Table 1: Comparison of likelihood learning with CNFs and factorized discrete baseline on ImageNet32 and ImageNet64 measured in bits per dimensions. + +
DatasetCNFfactorized LL
ImageNet323.014.00
ImageNet642.903.61
+ +Super resolution samples $x _ { h r } \sim p ( x _ { h r } | x _ { l r } )$ from the Imagenet64 test data are shown in Figure 2. The distribution mode of the factorized baseline is displayed in Figure 2 panel c). We show that the baseline is able to learn a relationship between conditioning variable $\mathbf { x }$ and $\mathbf { y }$ , but lacks crisp details. The super-resolution images from the CNF are shown in panel b). Notice there are more high-frequency components modelled, for instance in grass and in hairs. Following Kingma & Dhariwal (2018), we sample from the base distributions with a temperature $\tau$ of 0.8 to achieve the best perceptual quality for the distribution learned by the CNF. + +As there are no standard metric for measuring perceptual quality, we measure performance results on PSNR and SSIM between our predicted image and the ground truth image in Table 2. We compare CNFs to other state-of-the-art per-pixel loss based methods and the factorized baseline for a $2 \mathbf { x }$ upsampling task on standard super-resolution benchmarks. If available, we report negative $\log _ { 2 ^ { - } }$ likelihood (bpd) (computed as an average over 1000 randomly cropped $1 2 8 \mathrm { ~ x ~ } 1 2 8$ patches). Note that without any hyperparameter tuning or compositional loss weighting, as is typical in SISR, the CNF performs competitively with state-of-the-art super-resolution methods by simply optimizing the likelihood. The SSIM scores for the baseline perform on par or better than the adversarial methods and the CNF on all benchmarks. On PSNR scores however, the CNF beats the factorized discrete baseline. Samples shown in Figure 3 show that the CNF predictions have more fine grained texture details. Comparing this finding with the baseline that outperforms every method on SSIM, show that metrics can be misleading. + +Notice how samples from a independent factorized likelihood model have a lot of color noise, whereas samples from the CNF do not have such problems. Increasing temperature increases highlevel detail, where we find that $\tau = 0 . 5$ strikes a balance between noise smoothing and detail. This can be attributed to the property of flows to model pixel correlations among output dimensions for high-dimensional data such as images. + +![](images/5602ea26bc9f0019bce5ce039c4e3071ca127744d2404a6971011ac9cc775f23.jpg) +Figure 3: Conditional samples from the CNF (ours) for sampling temperatures $\{ 0 . , 0 . 5 , 1 . 0 \}$ and the factorized discrete baseline for $2 \mathbf { x }$ upscaling. Conditioning image is a baboon from Set14 test set. Both models were trained on ImageNet64. Best viewed electronically. + +Table 2: CNF compared to factorized discrete baseline and adversarial, pixel-wise methods (Dong et al., 2015; Sajjadi et al., 2017a; Prez-Pellitero et al., 2016) based on negative $\log _ { 2 }$ -likelihood (bits per dimension or bpd), PSNR, SSIM and for $2 \mathbf { x }$ upscaling. Our methods were trained on ImageNet64. + +
Set5Set14BSD100
Model TypebpdPSNRSSIM 1bpdPSNRSSIMbpdPSNRSSIM
Bicubic-33.70.930-30.20.869129.60.843
SRCNN136.70.954132.40.906131.40.888
PSyCO136.90.956-32.60.898131.40.890
ENet137.30.958133.30.915132.00.898
LL Baseline2.3432.50.9583.2331.00.9173.2030.60.900
CNF (ours)2.1136.20.9572.5132.50.9112.3331.40.893
+ +# 5.2 VESSEL SEGMENTATION + +Vessel segmentation is an important, long-standing, medical imaging problem, where we seek to segment blood vessels from pictures of the retina (the back of the eye). This is a difficult task, because the vessels are thin and of varying thickness. A likelihood function used in segmentation is + +![](images/64404a415db694e85d9227c5b4fd54d66608ebbee408c1463360b6822919ce1f.jpg) +Figure 4: Example of retinal segmentations using DRIU, our likelihood baseline trained with the same loss, and our CNF. For the CNF, the mean of 100 samples is visualized. Notice that our segmentations more accurately capture the vessel width, which is overdilated in the DRIU and factored models. + +Table 3: Numerical results on the DRIVE dataset. We see that the CNF is in the range of the SOTA model DRIU. SE: Structured Forests (Dollar & Zitnick, 2013), LD: Line Detector (Ricci & Perfetti, ´ 2007), Wavelets (Soares et al., 2006), Human (Staal et al., 2004), HED: Holistic Edge Detector (Xie & Tu, 2015), KB: Kernel Boost Becker et al. (2013), $N ^ { 4 }$ : $N ^ { 4 }$ Fields (Ganin & Lempitsky, 2014), DRIU: Deep Retinal Image Understanding (Maninis et al., 2016). Our answers are shown in mean ± 1std form, where statistics are taken over 5 runs. + +
SELDWaveletsHumanHEDKBN4DRIUFactored (ours)CNF Uniform (Ours)CNF (ours)
bpd==0.0647 ± 0.00150.3366 ± 0.02900.0254± 0.0008
F-Score0.6580.6920.7620.7910.7940.8000.8050.8210.815 ± 0.0010.762 ± 0.0020.819 ± 0.001
+ +a weighted Bernoulli distribution + +$$ +\mathcal { L } = \prod _ { j } \frac { p _ { j } ^ { \beta \cdot y _ { j } } ( 1 - p _ { j } ) ^ { ( 1 - \beta ) \cdot ( 1 - y _ { j } ) } } { p _ { j } ^ { \beta } + ( 1 - p _ { j } ) ^ { 1 - \beta } } +$$ + +where $p _ { j } = p ( y _ { j } = 1 | \mathbf { x } )$ is the prediction probability that pixel $y _ { j }$ is positive (vessel class) and $\beta$ is a class balancing constant set to $\sim 1 0 \%$ for us. This loss function is preferred, because it accounts for the apparent class imbalance in the ratio of vessels to background. In practice, the numerator of this likelihood is used as a loss function and the normalizer is ignored. The resulting loss is called a weighted cross-entropy. In our experiments we train using the weighted cross-entropy (as in the literature), but we report likelihood values including the normalizer, for a meaningful comparison. + +Dataset and comparisons We test on the DRIVE database Staal et al. (2004) consisting of $5 8 4 \times$ 565, 8-bit RGB images, split into 20 train, and 20 test images. To compare against other methods, we plot precision-recall curves, report the maximum F-score along each curve (shown as a dot in the graph), report the bits per dimension, and plot distributions in PR-space. The main CNN-based contenders are Deep Retinal Image Understanding (DRIU) (Maninis et al., 2016) and HolisticallyNested Edge Detection (HED) (Xie & Tu, 2015), both of which are instances of Deeply-Supervised Nets (Lee et al., 2015). The main difference between DRIU and HED is that DRIU is pretrained on ImageNet Krizhevsky et al. (2012); whereas, HED is not. Other competing methods are reported with results cited from (Maninis et al., 2016). For fairness, we also train a model which we call the likelihood baseline, which uses the exact same architecture as the flow but run a feedforward model and trained with the weighted Bernoulli loss. + +Implementation The flow is identical to the flow used in the previous section, with some key differences. i) instead of activation normalization, we use instance normalization (Ulyanov et al., 2016), ii) the conditional affine coupling layers do not contain a scaling component $s ( \cdot )$ but just the translation $t ( \cdot )$ , hence it is volume preserving, and iii) we train using variational dequantization. Since the data is binary-valued, we dequantize according to the Flow $^ { + + }$ scheme of Ho et al., modified to binary variables (see Section 3.2), using a CNF at just a single scale for the dequantizer. The CNF is conditioned on resolution-matched features extracted from a VGG-like network Simonyan & Zisserman (2015). This model is composed of blocks of the form block $=$ [InstanceNorm, ReLU, conv], and $2 \mathbf { x } 2$ max-pooling layer, shown in Table 4. All filter sizes are $3 { \tt X } 3$ . The outputs are at layers 4 and 7. These are used to condition the resolution 512 and 256 levels of the CNF, respectively. + +Table 4: Feature extractor architecture for retinal vessel segmentation. RES. abbreviates resolution. Outputs are at layer 4 and 7. + +
LAYERTYPERES.
01inputblock10241024
234max-poolblockblock512512512
567max-poolblockblock256
256
256
+ +Training/test settings We train using the Adam optimizer at learning rate 0.001, and a minibatch size of 2 for 2000 epochs. All images are padded to $1 0 2 4 \mathrm { x } 1 0 2 4$ pixels, so that they are compatible with squeeze layers. We use $3 6 0 ^ { \circ }$ rotation augmentation, isotropic scalings in the range [0.8, 1.2], and shears drawn from a normal distribution with standard deviation $1 0 ^ { \circ }$ . At test time we draw samples from our model and compare those against the groundtruth labels. This contrasts with other methods, that measure labels against thresholded versions of a factorized predictive distribution. To create the PR curve in Figure 5 we take the average of 100 samples and threshold the resulting map (example shown in Figure 4). While crude, this mean image is useful in defining a PR-curve, since there is not great topology change between samples. + +Evaluation The results of our experiments are shown in Table 3 and Figure 5, with a visualization in Figure 4. We see in the table that the CNF trained with our binary dequantization achieves the best bits per dimension, with comparable F-score to the state of the art model (DRIU), but our model does not require pretraining on ImageNet. Interestingly, we found training a flow with uniform dequantization slightly unstable and the results were far from satisfactory. In the PR-curve Figure 5, we show a comparable curve for our binary dequantized CNF to the DRIU model. These results, however, say nothing about the calibration of the probability outputs, but just that the various probability predictions are well ranked. To gain an insight into the calibration of the probabilities, we measure the distribution of precision and recall values for point samples drawn from all models, including a second human grader, present in the original DRIVE dataset. We synthesized samples from factored distributions (all except ours and ‘human’), by sampling images from a factored Bernoulli with mean as the soft image. We see the results in the right hand plot of Figure 5, which shows that while the other CNN-based methods such as DRIU or HED have good precision, they suffer in term of recall. On the other hand, the CNF drops in precision a little bit, but makes up for this in terms of high recall, with a PR distribution overlapping the human grader. This indicates that the CNF has learned a well-calibrated distribution, compared to the baseline methods. Further evidence of this is seen in the visualization in Figure 4, which shows details from the predicted means (soft images). This shows that the DRIU and likelihood baseline overdilate segmentations and the CNF does not. This can be explained from the fact that in the weighted Bernoulli it is cheaper to overdilate than to underdilate. Since the CNF contains no handcrafted loss function, we circumvent this pathology. + +![](images/258f0bc2d5bbcbd0d20d8a912778473082ec933769f1dc7b2d5eb4d68b02c020.jpg) +Figure 5: Here we show two visualizations of the same data. LEFT: We show the PR-curves generated from a sweeping threshold on soft images output by each listed method. Maximal F-scores for each curve are shown as circles with the green lines indicating constant F-score. We see that our method beats all traditional methods and is on par with DRIU, which unlike us was pretrained on Imagenet. RIGHT: We show a scatter plot in PR-space of samples drawn from each model. To draw samples from the all factored models, we sample images from a factored Bernoulli with a mean as the soft image. We see that the DRIU and HED models, while having good precision, have poor recall in this regime. This indicates that while the output of their networks produce a good ranking of probabilities, the values of the probabilities are poorly calibrated. For us, we drop in precision slightly, but gain greatly in terms of recall, indicating that our samples are drawn from a better calibrated distribution, overlapping significantly with the Human distribution. + +# 6 CONCLUSION + +In this paper we propose to learn likelihoods of conditional distributions using conditional normalizing flows. In this setting, supervised prediction tasks can be framed probabilistically. In addition, we propose a generalization of variational dequantization for binary random variables, which is useful for binary segmentation problems. Experimentally we show competitive performance with competing methods in the domain of super-resolution and binary image segmentation. + +# REFERENCES + +Siddharth Agrawal and Ambedkar Dukkipati. Deep variational inference without pixel-wise reconstruction. CoRR, abs/1611.05209, 2016. + +Lynton Ardizzone, Carsten Luth, Jakob Kruse, Carsten Rother, and Ullrich K ¨ othe. Guided im- ¨ age generation with conditional invertible neural networks. CoRR, abs/1907.02392, 2019. URL http://arxiv.org/abs/1907.02392. + +Andrei Atanov, Alexandra Volokhova, Arsenii Ashukha, Ivan Sosnovik, and Dmitry Vetrov. Semiconditional normalizing flows for semi-supervised learning. 05 2019. + +Carlos J. Becker, Roberto Rigamonti, Vincent Lepetit, and Pascal Fua. Supervised feature learning for curvilinear structure segmentation. In Medical Image Computing and Computer-Assisted Intervention - MICCAI 2013 - 16th International Conference, Nagoya, Japan, September 22-26, 2013, Proceedings, Part I, pp. 526–533, 2013. doi: 10.1007/978-3-642-40811-3\ 66. URL https://doi.org/10.1007/978-3-642-40811-3_66. + +Marco Bevilacqua, Aline Roumy, Christine Guillemot, and Marie-Line Alberi-Morel. Lowcomplexity single-image super-resolution based on nonnegative neighbor embedding. In BMVC, 2012. + +Nicola De Cao, Wilker Aziz, and Ivan Titov. Block neural autoregressive flow. In Proceedings of the Thirty-Fifth Conference on Uncertainty in Artificial Intelligence, UAI 2019, Tel Aviv, Israel, July 22-25, 2019, pp. 511, 2019. + +Liang-Chieh Chen, George Papandreou, Iasonas Kokkinos, Kevin Murphy, and Alan L. Yuille. Deeplab: Semantic image segmentation with deep convolutional nets, atrous convolution, and fully connected crfs. CoRR, abs/1606.00915, 2016. URL http://arxiv.org/abs/1606. 00915. + +Ricky T. Q. Chen, Jens Behrmann, David Duvenaud, and Jorn-Henrik Jacobsen. Residual flows for ¨ invertible generative modeling. CoRR, abs/1906.02735, 2019. + +Patryk Chrabaszcz, Ilya Loshchilov, and Frank Hutter. A downsampled variant of imagenet as an alternative to the CIFAR datasets. CoRR, abs/1707.08819, 2017. URL http://arxiv.org/ abs/1707.08819. + +Laurent Dinh, Jascha Sohl-Dickstein, and Samy Bengio. Density estimation using real NVP. CoRR, abs/1605.08803, 2016. URL http://arxiv.org/abs/1605.08803. + +Piotr Dollar and C. Lawrence Zitnick. Structured forests for fast edge detection. In ´ IEEE International Conference on Computer Vision, ICCV 2013, Sydney, Australia, December 1-8, 2013, pp. 1841–1848, 2013. doi: 10.1109/ICCV.2013.231. URL https://doi.org/10.1109/ ICCV.2013.231. + +Chao Dong, Chen Change Loy, Kaiming He, and Xiaoou Tang. Image super-resolution using deep convolutional networks. CoRR, abs/1501.00092, 2015. URL http://arxiv.org/abs/ 1501.00092. + +Yaroslav Ganin and Victor S. Lempitsky. $\mathrm { N } ^ { 4 }$ -fields: Neural network nearest neighbor fields for image transforms. CoRR, abs/1406.6558, 2014. URL http://arxiv.org/abs/1406. 6558. + +Ian J. Goodfellow, Jean Pouget-Abadie, Mehdi Mirza, Bing Xu, David Warde-Farley, Sherjil Ozair, Aaron Courville, and Yoshua Bengio. Generative adversarial nets. In Proceedings of the 27th International Conference on Neural Information Processing Systems - Volume 2, NIPS’14, pp. 2672–2680, Cambridge, MA, USA, 2014. MIT Press. URL http://dl.acm.org/ citation.cfm?id=2969033.2969125. + +Will Grathwohl, Ricky T. Q. Chen, Jesse Bettencourt, Ilya Sutskever, and David Duvenaud. FFJORD: free-form continuous dynamics for scalable reversible generative models. In 7th International Conference on Learning Representations, ICLR 2019, 2019. + +Jonathan Ho, Xi Chen, Aravind Srinivas, Yan Duan, and Pieter Abbeel. Flow $^ { + + }$ : Improving flowbased generative models with variational dequantization and architecture design. In Proceedings of the 36th International Conference on Machine Learning, ICML 2019. + +Jonathan Ho, Xi Chen, Aravind Srinivas, Yan Duan, and Pieter Abbeel. Flow $^ { + + }$ : Improving flowbased generative models with variational dequantization and architecture design. In Proceedings of the 36th International Conference on Machine Learning, ICML 2019, 9-15 June 2019, Long Beach, California, USA, pp. 2722–2730, 2019. URL http://proceedings.mlr.press/ v97/ho19a.html. + +Emiel Hoogeboom, Jorn W. T. Peters, Rianne van den Berg, and Max Welling. Integer discrete flows and lossless compression. CoRR, abs/1905.07376, 2019a. URL http://arxiv.org/abs/ 1905.07376. + +Emiel Hoogeboom, Rianne van den Berg, and Max Welling. Emerging convolutions for generative normalizing flows. In Proceedings of the 36th International Conference on Machine Learning, ICML 2019, 2019b. + +Chin-Wei Huang, David Krueger, Alexandre Lacoste, and Aaron C. Courville. Neural autoregressive flows. In Proceedings of the 35th International Conference on Machine Learning, ICML 2018, Stockholmsmassan, Stockholm, Sweden, July 10-15, 2018 ¨ , pp. 2083–2092, 2018. + +J. Huang, A. Singh, and N. Ahuja. Single image super-resolution from transformed self-exemplars. In 2015 IEEE Conference on Computer Vision and Pattern Recognition (CVPR), pp. 5197–5206, June 2015. doi: 10.1109/CVPR.2015.7299156. + +Diederik Kingma and Jimmy Ba. Adam: A method for stochastic optimization. 2015. + +Diederik P Kingma and Max Welling. Auto-Encoding Variational Bayes. In Proceedings of the 2nd International Conference on Learning Representations, 2014. + +Diederik P. Kingma, Tim Salimans, and Max Welling. Improving variational inference with inverse autoregressive flow. CoRR, abs/1606.04934, 2016a. URL http://arxiv.org/abs/1606. 04934. + +Diederik P. Kingma, Tim Salimans, and Max Welling. Improving variational inference with inverse autoregressive flow. CoRR, abs/1606.04934, 2016b. URL http://arxiv.org/abs/1606. 04934. + +Durk P Kingma and Prafulla Dhariwal. Glow: Generative flow with invertible 1x1 convolutions. In S. Bengio, H. Wallach, H. Larochelle, K. Grauman, N. Cesa-Bianchi, and R. Garnett (eds.), Advances in Neural Information Processing Systems 31, pp. 10236– 10245. Curran Associates, Inc., 2018. URL http://papers.nips.cc/paper/ 8224-glow-generative-flow-with-invertible-1x1-convolutions.pdf. + +Alex Krizhevsky, Ilya Sutskever, and Geoffrey E. Hinton. Imagenet classification with deep convolutional neural networks. In Advances in Neural Information Processing Systems 25: 26th Annual Conference on Neural Information Processing Systems 2012. Proceedings of a meeting held December 3-6, 2012, Lake Tahoe, Nevada, United States., pp. 1106–1114, 2012. URL http://papers.nips.cc/paper/ 4824-imagenet-classification-with-deep-convolutional-neural-networks. + +Chen-Yu Lee, Saining Xie, Patrick W. Gallagher, Zhengyou Zhang, and Zhuowen Tu. Deeplysupervised nets. In Proceedings of the Eighteenth International Conference on Artificial Intelligence and Statistics, AISTATS 2015, San Diego, California, USA, May 9-12, 2015, 2015. URL http://proceedings.mlr.press/v38/lee15a.html. + +Kevis-Kokitsi Maninis, Jordi Pont-Tuset, Pablo Andres Arbel´ aez, and Luc Van Gool. Deep reti-´ nal image understanding. In Medical Image Computing and Computer-Assisted Intervention - MICCAI 2016 - 19th International Conference, Athens, Greece, October 17-21, 2016, Proceedings, Part II, pp. 140–148, 2016. doi: 10.1007/978-3-319-46723-8\ 17. URL https: //doi.org/10.1007/978-3-319-46723-8_17. + +Roey Mechrez, Itamar Talmi, Firas Shama, and Lihi Zelnik-Manor. Learning to maintain natural image statistics. CoRR, abs/1803.04626, 2018. URL http://arxiv.org/abs/1803.04626. + +Shakir Mohamed and Danilo J. Rezende. Variational information maximisation for intrinsically motivated reinforcement learning. In Proceedings of the 28th International Conference on Neural Information Processing Systems - Volume 2, NIPS’15, pp. 2125–2133, Cambridge, MA, USA, 2015. MIT Press. URL http://dl.acm.org/citation.cfm?id ${ . } = { }$ 2969442.2969477. + +George Papamakarios, Theo Pavlakou, and Iain Murray. Masked autoregressive flow for density estimation. In I. Guyon, U. V. Luxburg, S. Bengio, H. Wallach, R. Fergus, S. Vishwanathan, and R. Garnett (eds.), Advances in Neural Information Processing Systems 30, pp. 2338–2347. Curran Associates, Inc., 2017. URL http://papers.nips.cc/paper/ 6828-masked-autoregressive-flow-for-density-estimation.pdf. + +Simon JD Prince. Computer vision: models, learning, and inference. Cambridge University Press, 2012. + +Eduardo Prez-Pellitero, Jordi Salvador, Javier Ruiz-Hidalgo, and Bodo Rosenhahn. Manifold span reduction for super resolution. In IEEE Conference on Computer Vision and Pattern Recognition (CVPR)., June 2016. + +Danilo Jimenez Rezende and Shakir Mohamed. Variational inference with normalizing flows. In Proceedings of the 32nd International Conference on Machine Learning, ICML 2015, Lille, France, 6-11 July 2015, pp. 1530–1538, 2015. URL http://proceedings.mlr.press/ v37/rezende15.html. + +Elisa Ricci and Renzo Perfetti. Retinal blood vessel segmentation using line operators and support vector classification. IEEE Trans. Med. Imaging, 26(10):1357–1365, 2007. doi: 10.1109/TMI. 2007.898551. URL https://doi.org/10.1109/TMI.2007.898551. + +M. S. M. Sajjadi, B. Scholkopf, and M. Hirsch. EnhanceNet: Single image super- ¨ resolution through automated texture synthesis. In Proceedings IEEE International Conference on Computer Vision (ICCV), pp. 4501–4510, Piscataway, NJ, USA, October 2017a. IEEE. URL http://openaccess.thecvf.com/content_ICCV_2017/papers/ Sajjadi_EnhanceNet_Single_Image_ICCV_2017_paper.pdf. + +M. S. M. Sajjadi, B. Scholkopf, and M. Hirsch.¨ EnhanceNet: Single image superresolution through automated texture synthesis. In Proceedings IEEE International Conference on Computer Vision (ICCV), pp. 4501–4510, Piscataway, NJ, USA, October 2017b. IEEE. URL http://openaccess.thecvf.com/content_ICCV_2017/papers/ Sajjadi_EnhanceNet_Single_Image_ICCV_2017_paper.pdf. + +Tim Salimans, Andrej Karpathy, Xi Chen, and Diederik P. Kingma. Pixelcnn $^ { + + }$ : Improving the pixelcnn with discretized logistic mixture likelihood and other modifications. In 5th International Conference on Learning Representations, ICLR 2017, 2017. + +Karen Simonyan and Andrew Zisserman. Very deep convolutional networks for large-scale image recognition. In 3rd International Conference on Learning Representations, ICLR 2015, San Diego, CA, USA, May 7-9, 2015, Conference Track Proceedings, 2015. URL http: //arxiv.org/abs/1409.1556. + +Joao V. B. Soares, Jorge J. G. Leandro, Roberto M. Cesar, Herbert F. Jelinek, and Michael J. Cree.˜ Retinal vessel segmentation using the 2-d gabor wavelet and supervised classification. IEEE Trans. Med. Imaging, 25(9):1214–1222, 2006. doi: 10.1109/TMI.2006.879967. URL https: //doi.org/10.1109/TMI.2006.879967. + +Joes Staal, Michael D. Abramoff, Meindert Niemeijer, Max A. Viergever, and Bram van Ginneken. \` Ridge-based vessel segmentation in color images of the retina. IEEE Trans. Med. Imaging, 23 (4):501–509, 2004. doi: 10.1109/TMI.2004.825627. URL https://doi.org/10.1109/ TMI.2004.825627. + +Lucas Theis, Aaron van den Oord, and Matthias Bethge. A note on the evaluation of generative ¨ models. In 4th International Conference on Learning Representations, ICLR 2016, San Juan, Puerto Rico, May 2-4, 2016, Conference Track Proceedings, 2016. URL http://arxiv. org/abs/1511.01844. + +Dustin Tran, Keyon Vafa, Kumar Krishna Agrawal, Laurent Dinh, and Ben Poole. Discrete flows: Invertible generative models of discrete data. In Deep Generative Models for Highly Structured Data, ICLR 2019 Workshop, New Orleans, Louisiana, United States, May 6, 2019, 2019. URL https://openreview.net/forum?id $\underline { { \underline { { \mathbf { \Pi } } } } } =$ rJlo4UIt_E. + +Brian L Trippe and Richard E Turner. Conditional density estimation with bayesian normalising flows. 2018. URL https://arxiv.org/abs/1802.04908. + +Dmitry Ulyanov, Andrea Vedaldi, and Victor S. Lempitsky. Instance normalization: The missing ingredient for fast stylization. CoRR, abs/1607.08022, 2016. URL http://arxiv.org/ abs/1607.08022. + +Rianne van den Berg, Leonard Hasenclever, Jakub M. Tomczak, and Max Welling. Sylvester normalizing flows for variational inference. In Proceedings of the Thirty-Fourth Conference on Uncertainty in Artificial Intelligence, UAI 2018, Monterey, California, USA, August 6-10, 2018, pp. 393–402, 2018. + +Aaron van den Oord, Nal Kalchbrenner, Lasse Espeholt, Koray Kavukcuoglu, Oriol Vinyals, and ¨ Alex Graves. Conditional image generation with pixelcnn decoders. In Advances in Neural Information Processing Systems 29: Annual Conference on Neural Information Processing Systems 2016, pp. 4790–4798, 2016. + +Aaron Van Oord, Nal Kalchbrenner, and Koray Kavukcuoglu. Pixel recurrent neural networks. In International Conference on Machine Learning, pp. 1747–1756, 2016. + +Thang Vu, Tung Luu, and Chang Yoo. Perception-Enhanced Image Super-Resolution via Relativistic Generative Adversarial Networks: Munich, Germany, September 8-14, 2018, Proceedings, Part V, pp. 98–113. 01 2019. ISBN 978-3-030-11020-8. doi: 10.1007/978-3-030-11021-5 7. + +Xintao Wang, Ke Yu, Shixiang Wu, Jinjin Gu, Yihao Liu, Chao Dong, Chen Change Loy, Yu Qiao, and Xiaoou Tang. ESRGAN: enhanced super-resolution generative adversarial networks. CoRR, abs/1809.00219, 2018. URL http://arxiv.org/abs/1809.00219. + +Zhou Wang, Alan Bovik, Hamid Sheikh, and Eero Simoncelli. Image quality assessment: From error visibility to structural similarity. Image Processing, IEEE Transactions on, 13:600 – 612, 05 2004. doi: 10.1109/TIP.2003.819861. + +Saining Xie and Zhuowen Tu. Holistically-nested edge detection. In 2015 IEEE International Conference on Computer Vision, ICCV 2015, Santiago, Chile, December 7-13, 2015, pp. 1395–1403, 2015. doi: 10.1109/ICCV.2015.164. URL https://doi.org/10.1109/ICCV.2015. 164. + +Yuan Yuan, Siyuan Liu, Jiawei Zhang, Yongbing Zhang, Chao Dong, and Liang Lin. Unsupervised image super-resolution using cycle-in-cycle generative adversarial networks. 2018 IEEE/CVF Conference on Computer Vision and Pattern Recognition Workshops (CVPRW), pp. 814–81409, 2018. + +Roman Zeyde, Michael Elad, and Matan Protter. On single image scale-up using sparserepresentations. In Proceedings of the 7th International Conference on Curves and Surfaces, pp. 711–730, Berlin, Heidelberg, 2012. Springer-Verlag. ISBN 978-3-642-27412-1. doi: 10.1007/ 978-3-642-27413-8 47. URL https://doi.org/10.1007/978-3-642-27413-8_ 47. + +# A ARCHITECTURES + +This section describes architecture and optimization details of the conditional normalizing flow network, low-resolution image feature extractor, and shallow convolutional neural network in the conditional coupling layers. + +The conditional coupling layer is shown schematically in Figure 6. This shows that conditioned on an input $\mathbf { x }$ , we are able to build a relatively straight-forward invertible mapping between latent representations $\mathbf { z }$ and $\mathbf { y }$ , which have been partitioned into vectors of equal dimension. + +![](images/2906cf05b4049b80ff2c97e08543a9486c4b9062c854a0d47dfca1e5c23e7b3a.jpg) +Figure 6: The forward and reverse paths of the conditional coupling layer. In our experiments we concatenate an embedding of the conditioning input $\mathbf { x }$ to the latent $\mathbf { z } _ { 1 }$ , which is fed through another neural network to output the affine transformation parameters applied to $\mathbf { z } _ { 0 }$ . This operation is invertible in $\mathbf { z }$ and $\mathbf { y }$ , but not in $\mathbf { x }$ . + +Details for the CNFs are given in Table 5 and the details of the individual coupling layers in Table 6 and 7. The architecture of the feature extractor is given in Table 8. The architecture has levels and subflows, following (Dinh et al., 2016; Kingma & Dhariwal, 2018). All networks are optimized using Adam (Kingma & Ba, 2015) for 200000 iterations. + +Table 5: Configuration of the CNF architecture for the super-resolution task. + +
DATASETMINIBATCH SIZELEVELSSUB-FLOWSLEARNING RATE
ImageNet3264280.0001
ImageNet6464280.0001
DRIVE2220.001
+ +Table 6: Architecture details for a single coupling layer in the super resolution task. The variable $c _ { \mathrm { o u t } }$ denotes the number of output channels. The first two convolutional layers are followed by a ReLU activation. + +
LAYERINTERMEDIATE CHANNELSKERNEL SIZE
Conv2d5123×3
Conv2d5121×1
Conv2dCout3×3
+ +Table 7: Architecture details for a single coupling layer in the DRIVE segmentation task. The variable $c _ { \mathrm { o u t } }$ denotes the number of output channels for the . The first two convolutional layers are followed by a ReLU activation. + +
LAYERINTERMEDIATECHANNELSKERNEL SIZE
Conv2d323×3
InstanceNorm2d32-
ReLU-1
Conv2dCout3×3
+ +Table 8: Architecture details for the conditioning network in the super-resolution task. Residualin-residual denseblocks Wang et al. (2018) are utilized. The channel growth is adjusted so that the CNF and the factorized baseline have an equal number of parameters. + +
MODEL TYPERRDB BLOCKSCHANNEL GROWTH|CONTEXT CHANNELS
CNF1632128
Factorized LL1655128
+ +# B CONDITIONAL IMAGE GENERATION + +In this section, larger versions of the ImageNet64 samples are provided, sampled at different temperatures $\tau$ . + +![](images/0a1b755d79f462b7cefbe91d4b81893d50e8c7073b998c76ea0071da28ab93dc.jpg) +Figure 7: Super resolution results CNF trained on Imagenet64 sampled at temperature $\tau = 0$ + +![](images/3257972e069822bca22a6c7f5cbca32b0cdb3c594c59cdf3b43540caa1ed417e.jpg) +Figure 8: Super resolution results for the CNF trained on Imagenet64 sampled at $\tau = 0 . 5$ + +![](images/fd08e3c4f413073f337e8705bf075013fd0c3aff5e295b95f859bf009f1238ad.jpg) +Figure 9: Super resolution results for the CNF trained on Imagenet64 sampled at $\tau = 0 . 8$ \ No newline at end of file diff --git a/parse/train/rJg3zxBYwH/rJg3zxBYwH_content_list.json b/parse/train/rJg3zxBYwH/rJg3zxBYwH_content_list.json new file mode 100644 index 0000000000000000000000000000000000000000..4999e07261c7743fd4dfc0322d0dc10141953cf7 --- /dev/null +++ b/parse/train/rJg3zxBYwH/rJg3zxBYwH_content_list.json @@ -0,0 +1,1854 @@ +[ + { + "type": "text", + "text": "LEARNING LIKELIHOODS WITH CONDITIONAL NORMALIZING FLOWS ", + "text_level": 1, + "bbox": [ + 176, + 98, + 821, + 146 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "Anonymous authors Paper under double-blind review ", + "bbox": [ + 183, + 171, + 398, + 198 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "ABSTRACT ", + "text_level": 1, + "bbox": [ + 454, + 236, + 544, + 251 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "Normalizing Flows (NFs) are able to model complicated distributions $p _ { Y } ( y )$ with strong inter-dimensional correlations and high multimodality by transforming a simple base density $p _ { Z } ( z )$ through an invertible neural network under the change of variables formula. Such behavior is desirable in multivariate structured prediction tasks, where handcrafted per-pixel loss-based methods inadequately capture strong correlations between output dimensions. We present a study of conditional normalizing flows (CNFs), a class of NFs where the base density to output space mapping is conditioned on an input $\\mathbf { X }$ , to model conditional densities $p _ { Y \\mid X } ( y | x )$ . CNFs are efficient in sampling and inference, they can be trained with a likelihood-based objective, and CNFs, being generative flows, do not suffer from mode collapse or training instabilities. We provide an effective method to train continuous CNFs for binary problems and in particular, we apply these CNFs to super-resolution and vessel segmentation tasks demonstrating competitive performance on standard benchmark datasets in terms of likelihood and conventional metrics. ", + "bbox": [ + 233, + 267, + 764, + 474 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "1 INTRODUCTION ", + "text_level": 1, + "bbox": [ + 176, + 502, + 336, + 517 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "Learning conditional distributions $p _ { Y | X } ( \\mathbf { y } | \\mathbf { x } )$ is one of the oldest problems in machine learning. When the output $\\mathbf { y }$ is high-dimensional this is a particularly challenging task, and the practitioner is left with many design choices. Do we factorize the conditional? If not, do we model correlations with, say, a conditional random field (Prince, 2012)? Do we use a unimodal distribution? How fat should the tails be? Do we use an explicit likelihood at all, or use implicit methods (Mohamed & Rezende, 2015) such as a GAN (Goodfellow et al., 2014)? Do we quantize the output? Ideally, the practitioner should not have to make design choices at all, and the distribution should be learned from the data. ", + "bbox": [ + 174, + 532, + 825, + 643 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "In the field of density estimation normalizing flows (NFs) are a relatively new family of models (Rezende & Mohamed, 2015). NFs model complicated high dimensional marginal distributions $p _ { Y } ( \\mathbf { y } )$ by transforming a simple base distribution or prior $p _ { Z } ( \\mathbf { z } )$ through a learnable, invertible mapping $f _ { \\phi }$ and then applying the change of variables formula. NFs are efficient in inference and sampling, are able to learn inter-dimensional correlations and multi-modality, and they are exact likelihood models, amenable to gradient-based optimization. ", + "bbox": [ + 174, + 651, + 825, + 734 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "Flow-based generative models (Dinh et al., 2016) are generally trained on the image space, and are in some cases computationally efficient in both the forward and inverse direction. These are advantageous over other likelihood based methods because $i _ { , }$ ) sampling is efficient opposed to autoregressive models (Van Oord et al., 2016), and $i i$ ) flows admit exact likelihood optimization in contrast with variational autoencoders (Kingma & Welling, 2014). ", + "bbox": [ + 174, + 742, + 823, + 811 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "Conditional random fields directly model correlations between pixels, and have been fused with deep learning (Chen et al., 2016). However, they require the practitioner to choose which pixels have pairwise interactions. Another approach uses adversarial training (Goodfellow et al., 2014). A downside is that the training procedure can be unstable and they are difficult to evaluate quantitatively. ", + "bbox": [ + 174, + 819, + 823, + 888 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "We propose to learn the likelihood of conditional distributions with few modeling choices using Conditional Normalizing Flows (CNFs). CNFs can be harnessed for conditional distributions $p _ { Y | X } ( \\mathbf { y } | \\mathbf { x } )$ ", + "bbox": [ + 174, + 895, + 821, + 922 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "by conditioning the prior and the invertible mapping on the input x. In particular, we apply conditional flows to super-resolution (Wang et al., 2018) and vessel segmentation (Staal et al., 2004). We evaluate their performance gains on multivariate prediction tasks along side architecturally-matched factored baselines by comparing likelihood and application specific evaluation metrics. ", + "bbox": [ + 174, + 103, + 825, + 160 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "2 BACKGROUND ", + "text_level": 1, + "bbox": [ + 174, + 179, + 326, + 195 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "In the following, we present the relevant background material on normalizing flows and structured prediction. This section covers the change of variables formula, invertible modules, variational dequantization and conventional likelihood optimization. ", + "bbox": [ + 174, + 209, + 825, + 252 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "2.1 NORMALIZING FLOWS ", + "text_level": 1, + "bbox": [ + 174, + 268, + 372, + 284 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "A standard NF in continuous space is based on a simple change of variables formula. Given two spaces of equal dimension $\\mathcal { Z }$ and $\\mathcal { V }$ ; a once-differentiable, parametric, bijective1 mapping $f _ { \\phi } : \\mathcal { V } $ $\\mathcal { Z }$ , where $\\phi$ are the parameters of $f$ ; and a prior distribution $p _ { Z } ( \\mathbf { z } )$ , we can model a complicated distribution $p _ { Y } ( \\mathbf { y } )$ as ", + "bbox": [ + 173, + 294, + 825, + 351 + ], + "page_idx": 1 + }, + { + "type": "equation", + "img_path": "images/7036992575acd5e1200fcc3a38b41ba09b6ad4580fe60482f5c9e193539a34c7.jpg", + "text": "$$\np _ { Y } ( \\mathbf { y } ) = p _ { Z } ( f _ { \\phi } ( \\mathbf { y } ) ) \\left. \\frac { \\partial f _ { \\phi } ( \\mathbf { y } ) } { \\partial \\mathbf { y } } \\right. .\n$$", + "text_format": "latex", + "bbox": [ + 392, + 353, + 606, + 388 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "The term $| \\partial f _ { \\phi } ( \\mathbf { y } ) / \\partial \\mathbf { y } |$ is the Jacobian determinant of $f _ { \\phi }$ , evaluated at $\\mathbf { y }$ and it accounts for volume changes induced by $f _ { \\phi }$ . The transformation $f _ { \\phi }$ introduces correlations and multi-modality in $p _ { Y }$ . The main challenge in the field of normalizing flows is designing the transformation $f _ { \\phi }$ . It has to be $i ,$ bijective, $i i _ { . }$ ) have an efficient and tractable Jacobian determinant, iii) be from a ‘flexible’ model class. In addition, $i \\nu _ { . }$ ) for fast sampling the inverse needs to be efficiently computable. Below we briefly state which invertible modules are used in our architectures, obeying the aforementioned points. ", + "bbox": [ + 173, + 390, + 825, + 488 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "Coupling layers Affine coupling layers (Dinh et al., 2016) are invertible, nonlinear layers. They work by splitting the input $\\mathbf { z }$ into two components $\\mathbf { z } _ { 0 }$ and $\\mathbf { z } _ { 1 }$ and nonlinearly transforming $\\mathbf { z } _ { 0 }$ as a function of $\\mathbf { z } _ { 1 }$ , before reconcatenating the result. If ${ \\bf z } = [ { \\bf z } _ { 0 } , { \\bf z } _ { 1 } ]$ and $\\mathbf { y } = [ \\mathbf { y } _ { 0 } , \\mathbf { y } _ { 1 } ]$ this is ", + "bbox": [ + 176, + 502, + 825, + 546 + ], + "page_idx": 1 + }, + { + "type": "equation", + "img_path": "images/bebdfe9f23a2905951991a8339bcd5b58bc56777346c8ebfffd6bfa93bee2726.jpg", + "text": "$$\n\\begin{array} { r l r l } & { \\mathbf { y } _ { 0 } = s ( \\mathbf { z } _ { 1 } ) \\cdot \\mathbf { z } _ { 0 } + t ( \\mathbf { z } _ { 1 } ) \\qquad } & & { \\mathbf { z } _ { 0 } = ( \\mathbf { z } _ { 0 } - t ( \\mathbf { y } _ { 1 } ) ) / s ( \\mathbf { y } _ { 1 } ) } \\\\ & { \\mathbf { y } _ { 1 } = \\mathbf { z } _ { 1 } \\qquad } & & { \\mathbf { z } _ { 1 } = \\mathbf { y } _ { 1 } } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 267, + 547, + 728, + 584 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "Where the scale $s ( \\cdot )$ and translation $t ( \\cdot )$ functions can be any function, typically implemented with a CNN. Similar conditioning with normalizing flows has been done in previous works by Mohamed & Rezende (2015) and Kingma et al. (2016b). ", + "bbox": [ + 174, + 585, + 825, + 628 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "Invertible $\\textbf { 1 x 1 }$ Convolutions Proposed in Kingma & Dhariwal (2018), invertible $1 \\times 1$ convolutions help mix information across channel dimensions. We implement them as regular $1 \\times 1$ convolutions and for the inverse, we convolve with the inverse of the kernel. ", + "bbox": [ + 174, + 642, + 825, + 685 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "Squeeze layers Squeeze layers (Dinh et al., 2016) are used to compress the spatial resolution of activations. These also help with increasing spatial receptive field of pixels in the deeper activations. ", + "bbox": [ + 173, + 699, + 823, + 728 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "Split Prior Split priors (Dinh et al., 2016) work by spliting a set of activations $\\mathbf { z }$ into two components $\\mathbf { z } _ { 0 }$ and $\\mathbf { z } _ { 1 }$ . We then condition $\\mathbf { z } _ { 1 }$ on $\\mathbf { z } _ { 0 }$ using a simple base density e.g. $p ( \\mathbf { z } _ { 1 } | \\mathbf { z } _ { 0 } ) =$ $\\mathbf { \\bar { \\mathcal { N } } } ( \\mathbf { z } _ { 1 } ; \\mu ( \\mathbf { z } _ { 0 } ) , \\sigma ^ { 2 } ( \\mathbf { z } _ { 0 } ) )$ , where $\\mu ( \\cdot )$ and $\\sigma ^ { 2 } ( \\cdot )$ are neural networks. The component $\\mathbf { z } _ { 0 }$ can be modeled by further flow layers. This prior, is useful for modeling hierarchical correlations between dimensions, and also helps reduce computation, since $\\mathbf { z } _ { 0 }$ is reduced in size. ", + "bbox": [ + 173, + 742, + 825, + 813 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "Variational dequantization When modeling discrete data, Theis et al. (2016) introduced the concept of dequantization. For this, they modeled the probability mass function over $\\mathbf { y }$ as a latent variable model ", + "bbox": [ + 173, + 827, + 825, + 868 + ], + "page_idx": 1 + }, + { + "type": "equation", + "img_path": "images/b5893facc344b69d339884288e9a3dd38942be78703c2aec6fa9a0591a50456f.jpg", + "text": "$$\nP _ { \\mathrm { m o d e l } } ( \\mathbf { y } ) = \\int _ { \\mathcal { V } } P ( \\mathbf { y } | \\mathbf { v } ) p ( \\mathbf { v } ) \\mathrm { d } \\mathbf { v } = \\int _ { \\mathcal { V } } p ( \\mathbf { y } , \\mathbf { v } ) \\mathrm { d } \\mathbf { v }\n$$", + "text_format": "latex", + "bbox": [ + 334, + 868, + 663, + 902 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "where the latent variables $\\textbf { v } \\in { \\mathcal { V } }$ are continuous-valued. This is a convenient model to use, since the marginal $p ( \\mathbf { v } )$ , living on a continuous sample space, can be modelled with a continuous NF. The distribution $P ( \\mathbf { y } | \\mathbf { v } )$ is known as the quantizer and is typically an indicator function $P ( \\mathbf { y } | \\mathbf { v } ) = \\mathbb { I } [ \\mathbf { v } \\in$ $\\mathbf { y } + [ 0 , 1 ) ^ { D } ]$ . Other works (Hoogeboom et al., $2 0 1 9 \\mathrm { a }$ ; Tran et al., 2019) directly model $P _ { \\mathrm { m o d e l } } ( \\mathbf { y } )$ with a discrete-valued flow, but these are known to be difficult to optimize. As an extension of dequantization, Ho et al. (2019) introduced a variational distribution $\\bar { \\bf q } ( { \\bf v } | { \\bf y } )$ , called a dequantizer, and write a lower bound on the data log-likelihood using Jensen’s inequality as follows ", + "bbox": [ + 173, + 102, + 825, + 202 + ], + "page_idx": 2 + }, + { + "type": "equation", + "img_path": "images/b7bc96d773b6f38d9250ca973a49fd1d44e2b5ac5bfc3f16b80b0f7827d5f760.jpg", + "text": "$$\n\\begin{array} { r l } & { \\mathbb { E } _ { P _ { \\mathrm { d a t a } } ( \\mathbf { y } ) } \\log P _ { \\mathrm { m o d e l } } ( \\mathbf { y } ) = \\mathbb { E } _ { P _ { \\mathrm { d a t a } } ( \\mathbf { y } ) } \\log \\displaystyle \\int p ( \\mathbf { y } , \\mathbf { v } ) \\mathrm { d } \\mathbf { v } } \\\\ & { \\qquad = \\mathbb { E } _ { P _ { \\mathrm { d a t a } } ( \\mathbf { y } ) } \\log \\displaystyle \\int \\frac { q ( \\mathbf { v } | \\mathbf { y } ) } { q ( \\mathbf { v } | \\mathbf { y } ) } p ( \\mathbf { y } , \\mathbf { v } ) \\mathrm { d } \\mathbf { v } \\geq \\mathbb { E } _ { P _ { \\mathrm { d a t a } } ( \\mathbf { y } ) } \\int q ( \\mathbf { v } | \\mathbf { y } ) \\log \\displaystyle \\frac { p ( \\mathbf { y } , \\mathbf { v } ) } { q ( \\mathbf { v } | \\mathbf { y } ) } \\mathrm { d } \\mathbf { v } } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 228, + 208, + 767, + 277 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "Noting that the joint $p ( \\mathbf { y } , \\mathbf { v } ) = \\mathbb { I } [ \\mathbf { v } \\in \\mathbf { y } + [ 0 , 1 ) ^ { D } ] p ( \\mathbf { v } )$ , we see that the dequantizer distribution $q ( \\mathbf { v } | \\mathbf { y } )$ must be defined such that $\\mathbf { v } \\in \\mathbf { y } + [ 0 , 1 ) ^ { D }$ , otherwise $p ( \\mathbf { y } , \\mathbf { v } ) = 0$ and the lower-bound is undefined. Restricting $q ( \\mathbf { v } | \\mathbf { y } )$ to satisfy this condition, results in the following variational dequantization bound ", + "bbox": [ + 176, + 282, + 823, + 339 + ], + "page_idx": 2 + }, + { + "type": "equation", + "img_path": "images/5743de617a8072ac2e0a189a3464df35bff58a1ce296a8a343f1b5e5a8c4dc66.jpg", + "text": "$$\n\\mathbb { E } _ { P _ { \\mathrm { d a t a } } ( \\mathbf { y } ) } \\log P _ { \\mathrm { m o d e l } } ( \\mathbf { y } ) \\geq \\mathbb { E } _ { P _ { \\mathrm { d a t a } } ( \\mathbf { y } ) } \\int q ( \\mathbf { v } | \\mathbf { y } ) \\log \\frac { p ( \\mathbf { v } ) } { q ( \\mathbf { v } | \\mathbf { y } ) } \\mathrm { d } \\mathbf { v } .\n$$", + "text_format": "latex", + "bbox": [ + 303, + 344, + 694, + 378 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "2.2 STRUCTURED PREDICTION ", + "text_level": 1, + "bbox": [ + 174, + 393, + 398, + 409 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "Structured prediction tasks such as image segmentation or super-resolution, can be probabilistically framed as learning an unknown target distribution $p ^ { * } ( \\mathbf { y } \\vert \\mathbf { x } )$ , with an input $\\mathbf { x } \\in \\mathcal { X }$ and a target $\\mathbf { y } \\in \\mathcal { V }$ . In practice with deep learning models, the unknown distribution is often learned by a factored model: ", + "bbox": [ + 174, + 420, + 823, + 462 + ], + "page_idx": 2 + }, + { + "type": "equation", + "img_path": "images/7815807a3f3469484febf3715d3534e54217ecf52a7c6b4c301788a9ff0273c7.jpg", + "text": "$$\np ( \\mathbf { y } | \\mathbf { x } ) = \\prod _ { d = 1 } ^ { D } p ( y _ { d } | \\mathbf { x } ) ,\n$$", + "text_format": "latex", + "bbox": [ + 423, + 468, + 575, + 512 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "where $y _ { d }$ represents the dth dimension of y. Several loss-based optimization methods are a special case of this factored model. The mean squared error is equivalent to a product of normal distributions with equal and fixed standard deviation. Other examples are: cross entropy, equivalent to a product of log categorical distributions, and binary cross entropy, equivalent to a product of log Bernoulli distributions. ", + "bbox": [ + 173, + 518, + 825, + 589 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "With factorized independent likelihoods, individual dimensions of y are assumed to be conditionally independent. As a result, sampling leads to results with uncorrelated noise over the output dimensions. In the literature, a fix for this problem is to visualize the mode of the distribution and interpret that as a prediction. However, because the likelihood was optimized assuming a conditionally independent noise distribution, these modes tend to be blurry and lack crisp details. ", + "bbox": [ + 173, + 594, + 825, + 666 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "3 METHOD ", + "text_level": 1, + "bbox": [ + 174, + 686, + 282, + 702 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "In this section we present our main innovations. i) learning conditional likelihoods using CNFs and $i i$ ) a variational dequantization framework for binary random variables. ", + "bbox": [ + 173, + 718, + 825, + 747 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "3.1 CONDITIONAL NORMALIZING FLOWS ", + "text_level": 1, + "bbox": [ + 174, + 763, + 477, + 779 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "We propose to learn conditional likelihoods using conditional normalizing flows for complicated target distributions in multivariate prediction tasks. Take an input $\\mathbf { x } \\in \\mathcal { X }$ and a regression target $\\mathbf { y } \\in \\mathcal { V }$ . We learn a complicated distribution $p _ { Y | X } ( \\mathbf { y } | \\mathbf { x } )$ using a conditional prior $p _ { Z | X } ( \\mathbf { z } | \\mathbf { x } )$ and a mapping $f _ { \\phi } : \\mathcal { V } \\times \\mathcal { X } \\to \\mathcal { Z }$ , which is bijective in $\\mathcal { V }$ and $\\mathcal { Z }$ . The likelihood of this model is: ", + "bbox": [ + 173, + 790, + 825, + 847 + ], + "page_idx": 2 + }, + { + "type": "equation", + "img_path": "images/554fa0db53062c2d368377938d089582b6109ba3a57780be5f706b97e63fc090.jpg", + "text": "$$\np _ { Y | X } ( \\mathbf { y } | \\mathbf { x } ) = p _ { Z | X } ( \\mathbf { z } | \\mathbf { x } ) \\left| \\frac { \\partial \\mathbf { z } } { \\partial \\mathbf { y } } \\right| = p _ { Z | X } ( f _ { \\phi } ( \\mathbf { y } , \\mathbf { x } ) | \\mathbf { x } ) \\left| \\frac { \\partial f _ { \\phi } ( \\mathbf { y } , \\mathbf { x } ) } { \\partial \\mathbf { y } } \\right| .\n$$", + "text_format": "latex", + "bbox": [ + 281, + 854, + 717, + 888 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "Notice that the difference between Equations 1 and 7 is that all distributions are conditional and the flow has a conditioning argument of $\\mathbf { x }$ . ", + "bbox": [ + 174, + 895, + 823, + 924 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "The generative process from x to $\\mathbf { y }$ (shown in Figure 1) can be described by first sampling $\\mathbf { z } \\sim$ $p _ { Z | X } ( \\mathbf { z } | \\mathbf { x } )$ from a simple base density with its parameters conditioned on $\\mathbf { x }$ (for us this is a diagonal Gaussian) and then passing it through a sequence of bijective mappings $f _ { \\phi } ^ { - 1 } ( \\mathbf { z } ; \\mathbf { x } )$ . This allows for modelling multimodal conditional distributions in y, which is typically uncommon. ", + "bbox": [ + 174, + 103, + 825, + 165 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "For the training procedure, the process runs in reverse. We begin with label $\\mathbf { y }$ and conditioning input $\\mathbf { x }$ . We ‘flow’ the label back through $f _ { \\phi }$ to yield $\\mathbf { z } = f _ { \\phi } ( \\mathbf { y } ; \\mathbf { x } )$ , and then we evaluate the log-likelihood of the parameters of the prior, given this transformed label $\\mathbf { z }$ . The flow and prior parameters can be optimized using stochastic gradient descent and training in minibatches in the usual fashion. Note that this style of training a conditional density model $p _ { Y | X } ( \\mathbf { y } | \\mathbf { x } )$ differs fundamentally from traditional models, because we compute the log-likelihood in $\\mathbf { z }$ -space and not y-space. As a result, we are not biasing our results with an arbitrary choice of output-space likelihood or in the case of this paper, handcrafted image loss. Instead, one could interpret this method as learning the correlational and multimodal structure of the likelihood or simply put loss-learning. ", + "bbox": [ + 174, + 171, + 549, + 393 + ], + "page_idx": 3 + }, + { + "type": "image", + "img_path": "images/1d00c1a305b002fe4da20995d0fabb8d03ca5c203d3362bd2c40e5bad8b0f3e7.jpg", + "image_caption": [ + "Figure 1: Diagram of our model in the train and sampling phases. Solid lines represent deterministic mappings and dashed lines represent sampling. The conditioning variable enters the network in base density $p ( \\mathbf { z } | \\mathbf { x } )$ and the bijective mappings $f ( \\mathbf { y } , \\mathbf { x } )$ . " + ], + "image_footnote": [], + "bbox": [ + 562, + 186, + 823, + 260 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "Conditional modules In our work, the conditioning is introduced in the prior, the split priors, and the affine coupling modules. For the prior, we set the mean and variance as functions of $\\mathbf { x }$ . For the split prior, we add $\\mathbf { x }$ as a conditoning argument to the conditional $p ( \\mathbf { z } _ { 1 } | \\mathbf { z } _ { 0 } , \\mathbf { x } )$ . And for the affine coupling layers, we pass $\\mathbf { x }$ to the scale and translation networks so that ", + "bbox": [ + 176, + 407, + 825, + 463 + ], + "page_idx": 3 + }, + { + "type": "equation", + "img_path": "images/2432f77e6296154216b836b4d881c98255c92bbd5f2cdbc54dc9ba9937557734.jpg", + "text": "$$\n\\begin{array} { r l } & { \\mathrm { C o n d i t i o n a l ~ P r i o r } \\qquad p ( \\mathbf { z } | \\mathbf { x } ) = \\mathcal { N } ( \\mathbf { z } ; \\mu ( \\mathbf { x } ) , \\sigma ^ { 2 } ( \\mathbf { x } ) ) } \\\\ & { \\mathrm { C o n d i t i o n a l ~ S p l i t ~ P r i o r } \\quad p ( \\mathbf { z } _ { 1 } | \\mathbf { z } _ { 0 } , \\mathbf { x } ) = \\mathcal { N } ( \\mathbf { z } _ { 1 } ; \\mu ( \\mathbf { z } _ { 0 } , \\mathbf { x } ) , \\sigma ^ { 2 } ( \\mathbf { z } _ { 0 } , \\mathbf { x } ) ) } \\\\ & { \\mathrm { C o n d i t i o n a l ~ C o u p l i n g } \\quad \\mathbf { y } _ { 0 } = s ( \\mathbf { z } _ { 1 } , \\mathbf { x } ) \\cdot \\mathbf { z } _ { 0 } + t ( \\mathbf { z } _ { 1 } , \\mathbf { x } ) ; \\qquad \\mathbf { y } _ { 1 } = \\mathbf { z } _ { 1 } } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 267, + 472, + 730, + 521 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "In practice these functions are implemented using deep neural networks. First the conditioning term $\\mathbf { x }$ is transformed into a rich representation $\\mathbf { h } = g ( \\mathbf { x } )$ using a large network $g$ . Subsequently, each function in the flow is applied to a concatenation $[ \\cdot , \\cdot ]$ of $\\mathbf { h }$ and the relevant part of $\\mathbf { z }$ . For example, the translation of a conditional coupling is computed as $t ( \\mathbf { z } _ { 1 } , \\mathbf { x } ) = \\mathbf { N N } ( [ \\mathbf { z } _ { 1 } , \\mathbf { h } ] )$ . ", + "bbox": [ + 176, + 529, + 825, + 585 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "3.2 VARIATIONAL DEQUANTIZATION FOR BINARY RANDOM VARIABLES ", + "text_level": 1, + "bbox": [ + 176, + 599, + 687, + 614 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "We generalize the variational dequantization scheme for the binary setting. Let $\\mathbf { y } \\in \\{ 0 , 1 \\} ^ { D }$ be a multivariate binary random variable and $\\mathbf { v } \\in \\mathbb { R } ^ { D }$ its dequantized representation. In Ho et al. (2019) the bound is not guaranteed to be tight, since there is a domain mismatch in the support of $p ( \\mathbf { v } )$ and the variational dequantizer $q ( \\mathbf { v } | \\mathbf { y } )$ . Technically, if $p ( \\mathbf { v } )$ is modeled as a bijective mapping from a Gaussian distribution where the mapping only has finite volume changes, then the support of $p ( \\mathbf { v } )$ is unbounded. On the otherhand, the support of the dequantizer is bounded and so we have to redefine either the dequantizer to map to all of $\\mathbb { R } ^ { D }$ or restrict the support of the flow to a bounded volume inside $\\mathbb { R } ^ { D }$ . We resolve this by dequantizing with half-infinite noise, where ", + "bbox": [ + 173, + 626, + 825, + 738 + ], + "page_idx": 3 + }, + { + "type": "equation", + "img_path": "images/3dcf5000ee068c5360fa1025803f9b79d3eea096990484a6e972a440540fa3ac.jpg", + "text": "$$\n\\mathbf { v } | \\mathbf { y } , \\mathbf { z } = 0 . 5 + \\mathrm { s i g n } ( \\mathbf { y } - 0 . 5 ) \\cdot \\mathrm { s o f t p l u s } ( \\mathrm { N N } ( \\mathbf { z } ) ) .\n$$", + "text_format": "latex", + "bbox": [ + 336, + 741, + 658, + 758 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "The softplus guarantees that samples from the neural network NN are only positive. If $\\mathbf { y }$ is 1, the term $\\mathrm { s i g n } ( \\mathbf { y } - 0 . 5 )$ outputs positive-valued noise and if $\\mathbf { y }$ is 0 the noise is negative-valued. ", + "bbox": [ + 173, + 761, + 828, + 790 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "4 RELATED WORK ", + "text_level": 1, + "bbox": [ + 176, + 809, + 344, + 825 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "Normalizing flows were originally introduced to machine learning to learn a flexible variational posterior, a conditional distribution, in VAEs (Rezende & Mohamed, 2015; Kingma et al., 2016a; van den Berg et al., 2018). Flow-based generative models (Dinh et al., 2016; Papamakarios et al., 2017; Huang et al., 2018; Kingma & Dhariwal, 2018; Hoogeboom et al., 2019b; Grathwohl et al., 2019; Cao et al., 2019; Chen et al., 2019) are typically trained directly in the data space. Several of these are designed to be fast to invert, which makes them suitable for drawing samples after training. ", + "bbox": [ + 173, + 839, + 825, + 924 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "Different versions and applications of conditional normalizing flows include Agrawal & Dukkipati (2016) who utilize flows in the decoder of Variational AutoEncoders Kingma & Welling (2014), which are conditioned on the latent variable. Trippe & Turner (2018) who utilize conditional flows for prediction problems in a Bayesian framework for density estimation. Atanov et al. (2019) introduce a semi-conditional flow that provides an efficient way to learn from unlabeled data for semisupervised classification problems. Very recently, Ardizzone et al. (2019) have proposed conditional flow-based generative models for image colorization, which differs from our work in training objective, architecture and applicability to binary segmentation. Autoregressive models (Van Oord et al., 2016) have also been studied for conditional image generation van den Oord et al. (2016) but are generally slow to sample from. ", + "bbox": [ + 174, + 103, + 825, + 242 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "Adversarial methods (Goodfellow et al., 2014) have widely been applied to (conditional) image density modeling tasks (Vu et al., 2019; Sajjadi et al., 2017b; Yuan et al., 2018; Mechrez et al., 2018), because they tend to generate high-fidelity images. Disadvantages of adversarial methods are that they can be complicated to train, and it is difficult to obtain likelihoods. For this reason, it can be hard to assess whether they are overfitting or generalizing. ", + "bbox": [ + 174, + 250, + 825, + 319 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "5 EXPERIMENTS ", + "text_level": 1, + "bbox": [ + 176, + 342, + 326, + 357 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "Here we explain our experiments into super-resolution and vessel segmentation. All models were implemented using the PyTorch framework. ", + "bbox": [ + 176, + 375, + 823, + 401 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "5.1 SINGLE IMAGE SUPER RESOLUTION", + "text_level": 1, + "bbox": [ + 176, + 421, + 465, + 435 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "Single Image Super Resolution (SISR) methods aims to find a high resolution image $x _ { h r }$ given a single (downsampled) low resolution image $x _ { l r }$ . Framing this problem as learning a likelihood, we utilize a CNF to learn the distribution $p ( x _ { h r } | x _ { l r } )$ . To compare our method we also train a factorized baseline likelihood model with comparable architectures and parameter budget. The factorized baseline uses a product of discretized logistic distributions (Kingma et al., 2016a; Salimans et al., 2017). All methods are compared on negative $\\log _ { 2 }$ -likelihood if available, which has the information theoretic interpretation bits per dimensions. In addition, we evaluate using SSIM (Wang et al., 2004) and PSNR metrics. ", + "bbox": [ + 174, + 446, + 825, + 558 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "Implementation Details The flow is based on the (Dinh et al., 2016; Kingma & Dhariwal, 2018) multi-scale architectures. Each step of flow consists of $K$ subflows and $L$ levels. One subflow consists of an activation normalization, $1 \\times 1$ convolution, and our conditional coupling layer. After completing a level, half of the representation is factored-out and modeled using our conditional split prior. After all levels have been completed, our conditional prior is used to model the final part of the latent variable. ", + "bbox": [ + 174, + 575, + 825, + 660 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "The conditioning variable $x _ { l r }$ is transformed into the feature representation h using Residual-inResidual Dense Block (RRDB) architecture (Wang et al., 2018), consisting of 16 residual-in-residual blocks. To match the parameter budget, the channel growth is 55 for the baseline and the growth is 32 for the CNF. ", + "bbox": [ + 174, + 666, + 825, + 722 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "Data The models are trained on natural image datasets, Imagenet32 and Imagenet64 (Chrabaszcz et al., 2017). Since the dataset has no test set, we use its validation images as a test set. For validation we take 10000 images from the train images. The performance is always reported on the test set unless specified otherwise. We evaluate our models on widely used benchmark datasets Set5 (Bevilacqua et al., 2012), Set14 (Zeyde et al., 2012) and BSD100 (Huang et al., 2015). At test time, we pad the test images with zeros at right and bottom so that they are square and compatible with squeeze layers. When evaluating on SSIM and PSNR, we can extract the patch with the exact image shape. For all datasets the LR images are obtained using MATLABs bicubic kernel function with reducing aliasing artifacts following Wang et al. (2018). For these experiments, the pixel values are dequantized by adding uniform noise (Theis et al., 2016). ", + "bbox": [ + 174, + 739, + 825, + 878 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "Training Settings We train on ImageNet32 and ImageNet64 for 200, 000 iterations with mini batches of size 64, and a learning rate of 0.0001 using the Adam optimizer (Kingma & Ba, 2015). ", + "bbox": [ + 174, + 895, + 823, + 924 + ], + "page_idx": 4 + }, + { + "type": "image", + "img_path": "images/968b128bcb0c0904815de5b4636633af6dac527cda75f1e445b409699c0fcf5b.jpg", + "image_caption": [ + "Figure 2: Super resolution results on the Imagenet64 test data. Samples are taken from the CNF $x _ { h r } \\sim p ( x _ { h r } | x _ { l r } )$ and the mode is visualized for the factorized baseline model. Best viewed electronically. " + ], + "image_footnote": [], + "bbox": [ + 174, + 99, + 823, + 239 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "The high-resolution image $x _ { h r }$ either the original $3 2 \\times 3 2$ or $6 4 \\times 6 4$ original input images. The flow architecture is build with $L = 2$ levels and $K = 8$ . ", + "bbox": [ + 174, + 315, + 823, + 344 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "5.1.1 EVALUATION ", + "text_level": 1, + "bbox": [ + 174, + 359, + 320, + 373 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "In this section the performance of CNFs for SISR is compared against a baseline likelihood model on ImageNet32 and ImageNet64. Their performance measured in $\\log _ { 2 }$ -likelihood (bits per dimension) is shown in Table 1, which show that the CNF outperforms the factorized baseline in likelihood. Recall that the baseline model is factorized and conditionally independent. These results indicate that it is advantageous to capture the correlations and multi-modality present in the data. ", + "bbox": [ + 174, + 383, + 825, + 454 + ], + "page_idx": 5 + }, + { + "type": "table", + "img_path": "images/d38232654bdbbfd11a456af93a0e48b5ee651904fc5bcf891b6a3afaa8a205e5.jpg", + "table_caption": [ + "Table 1: Comparison of likelihood learning with CNFs and factorized discrete baseline on ImageNet32 and ImageNet64 measured in bits per dimensions. " + ], + "table_footnote": [], + "table_body": "
DatasetCNFfactorized LL
ImageNet323.014.00
ImageNet642.903.61
", + "bbox": [ + 364, + 506, + 632, + 563 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "Super resolution samples $x _ { h r } \\sim p ( x _ { h r } | x _ { l r } )$ from the Imagenet64 test data are shown in Figure 2. The distribution mode of the factorized baseline is displayed in Figure 2 panel c). We show that the baseline is able to learn a relationship between conditioning variable $\\mathbf { x }$ and $\\mathbf { y }$ , but lacks crisp details. The super-resolution images from the CNF are shown in panel b). Notice there are more high-frequency components modelled, for instance in grass and in hairs. Following Kingma & Dhariwal (2018), we sample from the base distributions with a temperature $\\tau$ of 0.8 to achieve the best perceptual quality for the distribution learned by the CNF. ", + "bbox": [ + 173, + 575, + 825, + 674 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "As there are no standard metric for measuring perceptual quality, we measure performance results on PSNR and SSIM between our predicted image and the ground truth image in Table 2. We compare CNFs to other state-of-the-art per-pixel loss based methods and the factorized baseline for a $2 \\mathbf { x }$ upsampling task on standard super-resolution benchmarks. If available, we report negative $\\log _ { 2 ^ { - } }$ likelihood (bpd) (computed as an average over 1000 randomly cropped $1 2 8 \\mathrm { ~ x ~ } 1 2 8$ patches). Note that without any hyperparameter tuning or compositional loss weighting, as is typical in SISR, the CNF performs competitively with state-of-the-art super-resolution methods by simply optimizing the likelihood. The SSIM scores for the baseline perform on par or better than the adversarial methods and the CNF on all benchmarks. On PSNR scores however, the CNF beats the factorized discrete baseline. Samples shown in Figure 3 show that the CNF predictions have more fine grained texture details. Comparing this finding with the baseline that outperforms every method on SSIM, show that metrics can be misleading. ", + "bbox": [ + 173, + 680, + 825, + 847 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "Notice how samples from a independent factorized likelihood model have a lot of color noise, whereas samples from the CNF do not have such problems. Increasing temperature increases highlevel detail, where we find that $\\tau = 0 . 5$ strikes a balance between noise smoothing and detail. This can be attributed to the property of flows to model pixel correlations among output dimensions for high-dimensional data such as images. ", + "bbox": [ + 174, + 854, + 823, + 924 + ], + "page_idx": 5 + }, + { + "type": "image", + "img_path": "images/5602ea26bc9f0019bce5ce039c4e3071ca127744d2404a6971011ac9cc775f23.jpg", + "image_caption": [ + "Figure 3: Conditional samples from the CNF (ours) for sampling temperatures $\\{ 0 . , 0 . 5 , 1 . 0 \\}$ and the factorized discrete baseline for $2 \\mathbf { x }$ upscaling. Conditioning image is a baboon from Set14 test set. Both models were trained on ImageNet64. Best viewed electronically. " + ], + "image_footnote": [], + "bbox": [ + 174, + 98, + 823, + 244 + ], + "page_idx": 6 + }, + { + "type": "table", + "img_path": "images/c532409d5f9005d84432d217c4ef6396c06f517490bbb717dae5d8d8fa4a2431.jpg", + "table_caption": [ + "Table 2: CNF compared to factorized discrete baseline and adversarial, pixel-wise methods (Dong et al., 2015; Sajjadi et al., 2017a; Prez-Pellitero et al., 2016) based on negative $\\log _ { 2 }$ -likelihood (bits per dimension or bpd), PSNR, SSIM and for $2 \\mathbf { x }$ upscaling. Our methods were trained on ImageNet64. " + ], + "table_footnote": [], + "table_body": "
Set5Set14BSD100
Model TypebpdPSNRSSIM 1bpdPSNRSSIMbpdPSNRSSIM
Bicubic-33.70.930-30.20.869129.60.843
SRCNN136.70.954132.40.906131.40.888
PSyCO136.90.956-32.60.898131.40.890
ENet137.30.958133.30.915132.00.898
LL Baseline2.3432.50.9583.2331.00.9173.2030.60.900
CNF (ours)2.1136.20.9572.5132.50.9112.3331.40.893
", + "bbox": [ + 173, + 391, + 821, + 534 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "5.2 VESSEL SEGMENTATION ", + "text_level": 1, + "bbox": [ + 174, + 569, + 383, + 583 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "Vessel segmentation is an important, long-standing, medical imaging problem, where we seek to segment blood vessels from pictures of the retina (the back of the eye). This is a difficult task, because the vessels are thin and of varying thickness. A likelihood function used in segmentation is ", + "bbox": [ + 173, + 599, + 826, + 642 + ], + "page_idx": 6 + }, + { + "type": "image", + "img_path": "images/64404a415db694e85d9227c5b4fd54d66608ebbee408c1463360b6822919ce1f.jpg", + "image_caption": [ + "Figure 4: Example of retinal segmentations using DRIU, our likelihood baseline trained with the same loss, and our CNF. For the CNF, the mean of 100 samples is visualized. Notice that our segmentations more accurately capture the vessel width, which is overdilated in the DRIU and factored models. " + ], + "image_footnote": [], + "bbox": [ + 174, + 672, + 825, + 853 + ], + "page_idx": 6 + }, + { + "type": "table", + "img_path": "images/6c6811f6732fcf8e7af3849b9391a8999fe2366d17bdfc5608fbbb332a3d7eb5.jpg", + "table_caption": [ + "Table 3: Numerical results on the DRIVE dataset. We see that the CNF is in the range of the SOTA model DRIU. SE: Structured Forests (Dollar & Zitnick, 2013), LD: Line Detector (Ricci & Perfetti, ´ 2007), Wavelets (Soares et al., 2006), Human (Staal et al., 2004), HED: Holistic Edge Detector (Xie & Tu, 2015), KB: Kernel Boost Becker et al. (2013), $N ^ { 4 }$ : $N ^ { 4 }$ Fields (Ganin & Lempitsky, 2014), DRIU: Deep Retinal Image Understanding (Maninis et al., 2016). Our answers are shown in mean ± 1std form, where statistics are taken over 5 runs. " + ], + "table_footnote": [], + "table_body": "
SELDWaveletsHumanHEDKBN4DRIUFactored (ours)CNF Uniform (Ours)CNF (ours)
bpd==0.0647 ± 0.00150.3366 ± 0.02900.0254± 0.0008
F-Score0.6580.6920.7620.7910.7940.8000.8050.8210.815 ± 0.0010.762 ± 0.0020.819 ± 0.001
", + "bbox": [ + 176, + 195, + 823, + 233 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "a weighted Bernoulli distribution ", + "bbox": [ + 173, + 260, + 393, + 273 + ], + "page_idx": 7 + }, + { + "type": "equation", + "img_path": "images/f2941e0fa60e747be02afea1233001f45cb5791567c8dc5a821ed218a2ff3028.jpg", + "text": "$$\n\\mathcal { L } = \\prod _ { j } \\frac { p _ { j } ^ { \\beta \\cdot y _ { j } } ( 1 - p _ { j } ) ^ { ( 1 - \\beta ) \\cdot ( 1 - y _ { j } ) } } { p _ { j } ^ { \\beta } + ( 1 - p _ { j } ) ^ { 1 - \\beta } }\n$$", + "text_format": "latex", + "bbox": [ + 382, + 280, + 616, + 325 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "where $p _ { j } = p ( y _ { j } = 1 | \\mathbf { x } )$ is the prediction probability that pixel $y _ { j }$ is positive (vessel class) and $\\beta$ is a class balancing constant set to $\\sim 1 0 \\%$ for us. This loss function is preferred, because it accounts for the apparent class imbalance in the ratio of vessels to background. In practice, the numerator of this likelihood is used as a loss function and the normalizer is ignored. The resulting loss is called a weighted cross-entropy. In our experiments we train using the weighted cross-entropy (as in the literature), but we report likelihood values including the normalizer, for a meaningful comparison. ", + "bbox": [ + 174, + 333, + 825, + 417 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "Dataset and comparisons We test on the DRIVE database Staal et al. (2004) consisting of $5 8 4 \\times$ 565, 8-bit RGB images, split into 20 train, and 20 test images. To compare against other methods, we plot precision-recall curves, report the maximum F-score along each curve (shown as a dot in the graph), report the bits per dimension, and plot distributions in PR-space. The main CNN-based contenders are Deep Retinal Image Understanding (DRIU) (Maninis et al., 2016) and HolisticallyNested Edge Detection (HED) (Xie & Tu, 2015), both of which are instances of Deeply-Supervised Nets (Lee et al., 2015). The main difference between DRIU and HED is that DRIU is pretrained on ImageNet Krizhevsky et al. (2012); whereas, HED is not. Other competing methods are reported with results cited from (Maninis et al., 2016). For fairness, we also train a model which we call the likelihood baseline, which uses the exact same architecture as the flow but run a feedforward model and trained with the weighted Bernoulli loss. ", + "bbox": [ + 174, + 433, + 825, + 585 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "Implementation The flow is identical to the flow used in the previous section, with some key differences. i) instead of activation normalization, we use instance normalization (Ulyanov et al., 2016), ii) the conditional affine coupling layers do not contain a scaling component $s ( \\cdot )$ but just the translation $t ( \\cdot )$ , hence it is volume preserving, and iii) we train using variational dequantization. Since the data is binary-valued, we dequantize according to the Flow $^ { + + }$ scheme of Ho et al., modified to binary variables (see Section 3.2), using a CNF at just a single scale for the dequantizer. The CNF is conditioned on resolution-matched features extracted from a VGG-like network Simonyan & Zisserman (2015). This model is composed of blocks of the form block $=$ [InstanceNorm, ReLU, conv], and $2 \\mathbf { x } 2$ max-pooling layer, shown in Table 4. All filter sizes are $3 { \\tt X } 3$ . The outputs are at layers 4 and 7. These are used to condition the resolution 512 and 256 levels of the CNF, respectively. ", + "bbox": [ + 174, + 603, + 612, + 824 + ], + "page_idx": 7 + }, + { + "type": "table", + "img_path": "images/1589cc26343e700cb779ff78a621169e5778c08b02c0e4960128025060235400.jpg", + "table_caption": [ + "Table 4: Feature extractor architecture for retinal vessel segmentation. RES. abbreviates resolution. Outputs are at layer 4 and 7. " + ], + "table_footnote": [], + "table_body": "
LAYERTYPERES.
01inputblock10241024
234max-poolblockblock512512512
567max-poolblockblock256
256
256
", + "bbox": [ + 625, + 671, + 831, + 806 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "Training/test settings We train using the Adam optimizer at learning rate 0.001, and a minibatch size of 2 for 2000 epochs. All images are padded to $1 0 2 4 \\mathrm { x } 1 0 2 4$ pixels, so that they are compatible with squeeze layers. We use $3 6 0 ^ { \\circ }$ rotation augmentation, isotropic scalings in the range [0.8, 1.2], and shears drawn from a normal distribution with standard deviation $1 0 ^ { \\circ }$ . At test time we draw samples from our model and compare those against the groundtruth labels. This contrasts with other methods, that measure labels against thresholded versions of a factorized predictive distribution. To create the PR curve in Figure 5 we take the average of 100 samples and threshold the resulting map (example shown in Figure 4). While crude, this mean image is useful in defining a PR-curve, since there is not great topology change between samples. ", + "bbox": [ + 174, + 840, + 825, + 924 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "", + "bbox": [ + 174, + 103, + 825, + 146 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "Evaluation The results of our experiments are shown in Table 3 and Figure 5, with a visualization in Figure 4. We see in the table that the CNF trained with our binary dequantization achieves the best bits per dimension, with comparable F-score to the state of the art model (DRIU), but our model does not require pretraining on ImageNet. Interestingly, we found training a flow with uniform dequantization slightly unstable and the results were far from satisfactory. In the PR-curve Figure 5, we show a comparable curve for our binary dequantized CNF to the DRIU model. These results, however, say nothing about the calibration of the probability outputs, but just that the various probability predictions are well ranked. To gain an insight into the calibration of the probabilities, we measure the distribution of precision and recall values for point samples drawn from all models, including a second human grader, present in the original DRIVE dataset. We synthesized samples from factored distributions (all except ours and ‘human’), by sampling images from a factored Bernoulli with mean as the soft image. We see the results in the right hand plot of Figure 5, which shows that while the other CNN-based methods such as DRIU or HED have good precision, they suffer in term of recall. On the other hand, the CNF drops in precision a little bit, but makes up for this in terms of high recall, with a PR distribution overlapping the human grader. This indicates that the CNF has learned a well-calibrated distribution, compared to the baseline methods. Further evidence of this is seen in the visualization in Figure 4, which shows details from the predicted means (soft images). This shows that the DRIU and likelihood baseline overdilate segmentations and the CNF does not. This can be explained from the fact that in the weighted Bernoulli it is cheaper to overdilate than to underdilate. Since the CNF contains no handcrafted loss function, we circumvent this pathology. ", + "bbox": [ + 173, + 171, + 825, + 450 + ], + "page_idx": 8 + }, + { + "type": "image", + "img_path": "images/258f0bc2d5bbcbd0d20d8a912778473082ec933769f1dc7b2d5eb4d68b02c020.jpg", + "image_caption": [ + "Figure 5: Here we show two visualizations of the same data. LEFT: We show the PR-curves generated from a sweeping threshold on soft images output by each listed method. Maximal F-scores for each curve are shown as circles with the green lines indicating constant F-score. We see that our method beats all traditional methods and is on par with DRIU, which unlike us was pretrained on Imagenet. RIGHT: We show a scatter plot in PR-space of samples drawn from each model. To draw samples from the all factored models, we sample images from a factored Bernoulli with a mean as the soft image. We see that the DRIU and HED models, while having good precision, have poor recall in this regime. This indicates that while the output of their networks produce a good ranking of probabilities, the values of the probabilities are poorly calibrated. For us, we drop in precision slightly, but gain greatly in terms of recall, indicating that our samples are drawn from a better calibrated distribution, overlapping significantly with the Human distribution. " + ], + "image_footnote": [], + "bbox": [ + 176, + 479, + 810, + 741 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "6 CONCLUSION ", + "text_level": 1, + "bbox": [ + 174, + 102, + 318, + 118 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "In this paper we propose to learn likelihoods of conditional distributions using conditional normalizing flows. In this setting, supervised prediction tasks can be framed probabilistically. In addition, we propose a generalization of variational dequantization for binary random variables, which is useful for binary segmentation problems. Experimentally we show competitive performance with competing methods in the domain of super-resolution and binary image segmentation. ", + "bbox": [ + 174, + 133, + 825, + 204 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "REFERENCES ", + "text_level": 1, + "bbox": [ + 174, + 224, + 285, + 241 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Siddharth Agrawal and Ambedkar Dukkipati. Deep variational inference without pixel-wise reconstruction. CoRR, abs/1611.05209, 2016. ", + "bbox": [ + 174, + 250, + 823, + 277 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Lynton Ardizzone, Carsten Luth, Jakob Kruse, Carsten Rother, and Ullrich K ¨ othe. Guided im- ¨ age generation with conditional invertible neural networks. CoRR, abs/1907.02392, 2019. URL http://arxiv.org/abs/1907.02392. ", + "bbox": [ + 173, + 287, + 821, + 330 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Andrei Atanov, Alexandra Volokhova, Arsenii Ashukha, Ivan Sosnovik, and Dmitry Vetrov. Semiconditional normalizing flows for semi-supervised learning. 05 2019. ", + "bbox": [ + 171, + 339, + 823, + 369 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Carlos J. Becker, Roberto Rigamonti, Vincent Lepetit, and Pascal Fua. Supervised feature learning for curvilinear structure segmentation. In Medical Image Computing and Computer-Assisted Intervention - MICCAI 2013 - 16th International Conference, Nagoya, Japan, September 22-26, 2013, Proceedings, Part I, pp. 526–533, 2013. doi: 10.1007/978-3-642-40811-3\\ 66. URL https://doi.org/10.1007/978-3-642-40811-3_66. ", + "bbox": [ + 173, + 378, + 826, + 450 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Marco Bevilacqua, Aline Roumy, Christine Guillemot, and Marie-Line Alberi-Morel. Lowcomplexity single-image super-resolution based on nonnegative neighbor embedding. In BMVC, 2012. ", + "bbox": [ + 174, + 459, + 825, + 502 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Nicola De Cao, Wilker Aziz, and Ivan Titov. Block neural autoregressive flow. In Proceedings of the Thirty-Fifth Conference on Uncertainty in Artificial Intelligence, UAI 2019, Tel Aviv, Israel, July 22-25, 2019, pp. 511, 2019. ", + "bbox": [ + 174, + 512, + 826, + 555 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Liang-Chieh Chen, George Papandreou, Iasonas Kokkinos, Kevin Murphy, and Alan L. Yuille. Deeplab: Semantic image segmentation with deep convolutional nets, atrous convolution, and fully connected crfs. CoRR, abs/1606.00915, 2016. URL http://arxiv.org/abs/1606. 00915. ", + "bbox": [ + 173, + 564, + 825, + 621 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Ricky T. Q. Chen, Jens Behrmann, David Duvenaud, and Jorn-Henrik Jacobsen. Residual flows for ¨ invertible generative modeling. CoRR, abs/1906.02735, 2019. ", + "bbox": [ + 173, + 631, + 823, + 661 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Patryk Chrabaszcz, Ilya Loshchilov, and Frank Hutter. A downsampled variant of imagenet as an alternative to the CIFAR datasets. CoRR, abs/1707.08819, 2017. URL http://arxiv.org/ abs/1707.08819. ", + "bbox": [ + 173, + 670, + 826, + 713 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Laurent Dinh, Jascha Sohl-Dickstein, and Samy Bengio. Density estimation using real NVP. CoRR, abs/1605.08803, 2016. URL http://arxiv.org/abs/1605.08803. ", + "bbox": [ + 171, + 723, + 823, + 752 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Piotr Dollar and C. Lawrence Zitnick. Structured forests for fast edge detection. In ´ IEEE International Conference on Computer Vision, ICCV 2013, Sydney, Australia, December 1-8, 2013, pp. 1841–1848, 2013. doi: 10.1109/ICCV.2013.231. URL https://doi.org/10.1109/ ICCV.2013.231. ", + "bbox": [ + 173, + 762, + 825, + 818 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Chao Dong, Chen Change Loy, Kaiming He, and Xiaoou Tang. Image super-resolution using deep convolutional networks. CoRR, abs/1501.00092, 2015. URL http://arxiv.org/abs/ 1501.00092. ", + "bbox": [ + 173, + 829, + 825, + 871 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Yaroslav Ganin and Victor S. Lempitsky. $\\mathrm { N } ^ { 4 }$ -fields: Neural network nearest neighbor fields for image transforms. CoRR, abs/1406.6558, 2014. URL http://arxiv.org/abs/1406. 6558. ", + "bbox": [ + 176, + 880, + 823, + 922 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Ian J. Goodfellow, Jean Pouget-Abadie, Mehdi Mirza, Bing Xu, David Warde-Farley, Sherjil Ozair, Aaron Courville, and Yoshua Bengio. Generative adversarial nets. In Proceedings of the 27th International Conference on Neural Information Processing Systems - Volume 2, NIPS’14, pp. 2672–2680, Cambridge, MA, USA, 2014. MIT Press. URL http://dl.acm.org/ citation.cfm?id=2969033.2969125. ", + "bbox": [ + 173, + 103, + 825, + 174 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Will Grathwohl, Ricky T. Q. Chen, Jesse Bettencourt, Ilya Sutskever, and David Duvenaud. FFJORD: free-form continuous dynamics for scalable reversible generative models. In 7th International Conference on Learning Representations, ICLR 2019, 2019. ", + "bbox": [ + 174, + 184, + 825, + 227 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Jonathan Ho, Xi Chen, Aravind Srinivas, Yan Duan, and Pieter Abbeel. Flow $^ { + + }$ : Improving flowbased generative models with variational dequantization and architecture design. In Proceedings of the 36th International Conference on Machine Learning, ICML 2019. ", + "bbox": [ + 171, + 238, + 825, + 280 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Jonathan Ho, Xi Chen, Aravind Srinivas, Yan Duan, and Pieter Abbeel. Flow $^ { + + }$ : Improving flowbased generative models with variational dequantization and architecture design. In Proceedings of the 36th International Conference on Machine Learning, ICML 2019, 9-15 June 2019, Long Beach, California, USA, pp. 2722–2730, 2019. URL http://proceedings.mlr.press/ v97/ho19a.html. ", + "bbox": [ + 173, + 291, + 825, + 361 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Emiel Hoogeboom, Jorn W. T. Peters, Rianne van den Berg, and Max Welling. Integer discrete flows and lossless compression. CoRR, abs/1905.07376, 2019a. URL http://arxiv.org/abs/ 1905.07376. ", + "bbox": [ + 173, + 372, + 825, + 415 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Emiel Hoogeboom, Rianne van den Berg, and Max Welling. Emerging convolutions for generative normalizing flows. In Proceedings of the 36th International Conference on Machine Learning, ICML 2019, 2019b. ", + "bbox": [ + 174, + 426, + 823, + 468 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Chin-Wei Huang, David Krueger, Alexandre Lacoste, and Aaron C. Courville. Neural autoregressive flows. In Proceedings of the 35th International Conference on Machine Learning, ICML 2018, Stockholmsmassan, Stockholm, Sweden, July 10-15, 2018 ¨ , pp. 2083–2092, 2018. ", + "bbox": [ + 176, + 479, + 823, + 522 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "J. Huang, A. Singh, and N. Ahuja. Single image super-resolution from transformed self-exemplars. In 2015 IEEE Conference on Computer Vision and Pattern Recognition (CVPR), pp. 5197–5206, June 2015. doi: 10.1109/CVPR.2015.7299156. ", + "bbox": [ + 174, + 532, + 825, + 575 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Diederik Kingma and Jimmy Ba. Adam: A method for stochastic optimization. 2015. ", + "bbox": [ + 174, + 587, + 736, + 602 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Diederik P Kingma and Max Welling. Auto-Encoding Variational Bayes. In Proceedings of the 2nd International Conference on Learning Representations, 2014. ", + "bbox": [ + 174, + 611, + 825, + 641 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Diederik P. Kingma, Tim Salimans, and Max Welling. Improving variational inference with inverse autoregressive flow. CoRR, abs/1606.04934, 2016a. URL http://arxiv.org/abs/1606. 04934. ", + "bbox": [ + 173, + 651, + 823, + 694 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Diederik P. Kingma, Tim Salimans, and Max Welling. Improving variational inference with inverse autoregressive flow. CoRR, abs/1606.04934, 2016b. URL http://arxiv.org/abs/1606. 04934. ", + "bbox": [ + 176, + 705, + 823, + 747 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Durk P Kingma and Prafulla Dhariwal. Glow: Generative flow with invertible 1x1 convolutions. In S. Bengio, H. Wallach, H. Larochelle, K. Grauman, N. Cesa-Bianchi, and R. Garnett (eds.), Advances in Neural Information Processing Systems 31, pp. 10236– 10245. Curran Associates, Inc., 2018. URL http://papers.nips.cc/paper/ 8224-glow-generative-flow-with-invertible-1x1-convolutions.pdf. ", + "bbox": [ + 173, + 758, + 825, + 829 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Alex Krizhevsky, Ilya Sutskever, and Geoffrey E. Hinton. Imagenet classification with deep convolutional neural networks. In Advances in Neural Information Processing Systems 25: 26th Annual Conference on Neural Information Processing Systems 2012. Proceedings of a meeting held December 3-6, 2012, Lake Tahoe, Nevada, United States., pp. 1106–1114, 2012. URL http://papers.nips.cc/paper/ 4824-imagenet-classification-with-deep-convolutional-neural-networks. ", + "bbox": [ + 174, + 840, + 864, + 924 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Chen-Yu Lee, Saining Xie, Patrick W. Gallagher, Zhengyou Zhang, and Zhuowen Tu. Deeplysupervised nets. In Proceedings of the Eighteenth International Conference on Artificial Intelligence and Statistics, AISTATS 2015, San Diego, California, USA, May 9-12, 2015, 2015. URL http://proceedings.mlr.press/v38/lee15a.html. ", + "bbox": [ + 174, + 103, + 823, + 160 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Kevis-Kokitsi Maninis, Jordi Pont-Tuset, Pablo Andres Arbel´ aez, and Luc Van Gool. Deep reti-´ nal image understanding. In Medical Image Computing and Computer-Assisted Intervention - MICCAI 2016 - 19th International Conference, Athens, Greece, October 17-21, 2016, Proceedings, Part II, pp. 140–148, 2016. doi: 10.1007/978-3-319-46723-8\\ 17. URL https: //doi.org/10.1007/978-3-319-46723-8_17. ", + "bbox": [ + 173, + 170, + 825, + 241 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Roey Mechrez, Itamar Talmi, Firas Shama, and Lihi Zelnik-Manor. Learning to maintain natural image statistics. CoRR, abs/1803.04626, 2018. URL http://arxiv.org/abs/1803.04626. ", + "bbox": [ + 169, + 251, + 823, + 281 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Shakir Mohamed and Danilo J. Rezende. Variational information maximisation for intrinsically motivated reinforcement learning. In Proceedings of the 28th International Conference on Neural Information Processing Systems - Volume 2, NIPS’15, pp. 2125–2133, Cambridge, MA, USA, 2015. MIT Press. URL http://dl.acm.org/citation.cfm?id ${ . } = { }$ 2969442.2969477. ", + "bbox": [ + 174, + 291, + 825, + 348 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "George Papamakarios, Theo Pavlakou, and Iain Murray. Masked autoregressive flow for density estimation. In I. Guyon, U. V. Luxburg, S. Bengio, H. Wallach, R. Fergus, S. Vishwanathan, and R. Garnett (eds.), Advances in Neural Information Processing Systems 30, pp. 2338–2347. Curran Associates, Inc., 2017. URL http://papers.nips.cc/paper/ 6828-masked-autoregressive-flow-for-density-estimation.pdf. ", + "bbox": [ + 173, + 358, + 825, + 429 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Simon JD Prince. Computer vision: models, learning, and inference. Cambridge University Press, 2012. ", + "bbox": [ + 171, + 439, + 823, + 468 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Eduardo Prez-Pellitero, Jordi Salvador, Javier Ruiz-Hidalgo, and Bodo Rosenhahn. Manifold span reduction for super resolution. In IEEE Conference on Computer Vision and Pattern Recognition (CVPR)., June 2016. ", + "bbox": [ + 174, + 478, + 823, + 521 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Danilo Jimenez Rezende and Shakir Mohamed. Variational inference with normalizing flows. In Proceedings of the 32nd International Conference on Machine Learning, ICML 2015, Lille, France, 6-11 July 2015, pp. 1530–1538, 2015. URL http://proceedings.mlr.press/ v37/rezende15.html. ", + "bbox": [ + 174, + 531, + 825, + 588 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Elisa Ricci and Renzo Perfetti. Retinal blood vessel segmentation using line operators and support vector classification. IEEE Trans. Med. Imaging, 26(10):1357–1365, 2007. doi: 10.1109/TMI. 2007.898551. URL https://doi.org/10.1109/TMI.2007.898551. ", + "bbox": [ + 173, + 598, + 825, + 641 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "M. S. M. Sajjadi, B. Scholkopf, and M. Hirsch. EnhanceNet: Single image super- ¨ resolution through automated texture synthesis. In Proceedings IEEE International Conference on Computer Vision (ICCV), pp. 4501–4510, Piscataway, NJ, USA, October 2017a. IEEE. URL http://openaccess.thecvf.com/content_ICCV_2017/papers/ Sajjadi_EnhanceNet_Single_Image_ICCV_2017_paper.pdf. ", + "bbox": [ + 173, + 652, + 825, + 723 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "M. S. M. Sajjadi, B. Scholkopf, and M. Hirsch.¨ EnhanceNet: Single image superresolution through automated texture synthesis. In Proceedings IEEE International Conference on Computer Vision (ICCV), pp. 4501–4510, Piscataway, NJ, USA, October 2017b. IEEE. URL http://openaccess.thecvf.com/content_ICCV_2017/papers/ Sajjadi_EnhanceNet_Single_Image_ICCV_2017_paper.pdf. ", + "bbox": [ + 173, + 733, + 825, + 804 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Tim Salimans, Andrej Karpathy, Xi Chen, and Diederik P. Kingma. Pixelcnn $^ { + + }$ : Improving the pixelcnn with discretized logistic mixture likelihood and other modifications. In 5th International Conference on Learning Representations, ICLR 2017, 2017. ", + "bbox": [ + 176, + 814, + 823, + 857 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Karen Simonyan and Andrew Zisserman. Very deep convolutional networks for large-scale image recognition. In 3rd International Conference on Learning Representations, ICLR 2015, San Diego, CA, USA, May 7-9, 2015, Conference Track Proceedings, 2015. URL http: //arxiv.org/abs/1409.1556. ", + "bbox": [ + 174, + 867, + 823, + 924 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Joao V. B. Soares, Jorge J. G. Leandro, Roberto M. Cesar, Herbert F. Jelinek, and Michael J. Cree.˜ Retinal vessel segmentation using the 2-d gabor wavelet and supervised classification. IEEE Trans. Med. Imaging, 25(9):1214–1222, 2006. doi: 10.1109/TMI.2006.879967. URL https: //doi.org/10.1109/TMI.2006.879967. ", + "bbox": [ + 173, + 103, + 825, + 160 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "Joes Staal, Michael D. Abramoff, Meindert Niemeijer, Max A. Viergever, and Bram van Ginneken. \\` Ridge-based vessel segmentation in color images of the retina. IEEE Trans. Med. Imaging, 23 (4):501–509, 2004. doi: 10.1109/TMI.2004.825627. URL https://doi.org/10.1109/ TMI.2004.825627. ", + "bbox": [ + 173, + 170, + 825, + 227 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "Lucas Theis, Aaron van den Oord, and Matthias Bethge. A note on the evaluation of generative ¨ models. In 4th International Conference on Learning Representations, ICLR 2016, San Juan, Puerto Rico, May 2-4, 2016, Conference Track Proceedings, 2016. URL http://arxiv. org/abs/1511.01844. ", + "bbox": [ + 173, + 238, + 825, + 294 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "Dustin Tran, Keyon Vafa, Kumar Krishna Agrawal, Laurent Dinh, and Ben Poole. Discrete flows: Invertible generative models of discrete data. In Deep Generative Models for Highly Structured Data, ICLR 2019 Workshop, New Orleans, Louisiana, United States, May 6, 2019, 2019. URL https://openreview.net/forum?id $\\underline { { \\underline { { \\mathbf { \\Pi } } } } } =$ rJlo4UIt_E. ", + "bbox": [ + 173, + 305, + 825, + 362 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "Brian L Trippe and Richard E Turner. Conditional density estimation with bayesian normalising flows. 2018. URL https://arxiv.org/abs/1802.04908. ", + "bbox": [ + 173, + 372, + 823, + 402 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "Dmitry Ulyanov, Andrea Vedaldi, and Victor S. Lempitsky. Instance normalization: The missing ingredient for fast stylization. CoRR, abs/1607.08022, 2016. URL http://arxiv.org/ abs/1607.08022. ", + "bbox": [ + 174, + 411, + 825, + 454 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "Rianne van den Berg, Leonard Hasenclever, Jakub M. Tomczak, and Max Welling. Sylvester normalizing flows for variational inference. In Proceedings of the Thirty-Fourth Conference on Uncertainty in Artificial Intelligence, UAI 2018, Monterey, California, USA, August 6-10, 2018, pp. 393–402, 2018. ", + "bbox": [ + 174, + 465, + 825, + 522 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "Aaron van den Oord, Nal Kalchbrenner, Lasse Espeholt, Koray Kavukcuoglu, Oriol Vinyals, and ¨ Alex Graves. Conditional image generation with pixelcnn decoders. In Advances in Neural Information Processing Systems 29: Annual Conference on Neural Information Processing Systems 2016, pp. 4790–4798, 2016. ", + "bbox": [ + 174, + 532, + 825, + 589 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "Aaron Van Oord, Nal Kalchbrenner, and Koray Kavukcuoglu. Pixel recurrent neural networks. In International Conference on Machine Learning, pp. 1747–1756, 2016. ", + "bbox": [ + 171, + 599, + 825, + 630 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "Thang Vu, Tung Luu, and Chang Yoo. Perception-Enhanced Image Super-Resolution via Relativistic Generative Adversarial Networks: Munich, Germany, September 8-14, 2018, Proceedings, Part V, pp. 98–113. 01 2019. ISBN 978-3-030-11020-8. doi: 10.1007/978-3-030-11021-5 7. ", + "bbox": [ + 174, + 640, + 823, + 683 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "Xintao Wang, Ke Yu, Shixiang Wu, Jinjin Gu, Yihao Liu, Chao Dong, Chen Change Loy, Yu Qiao, and Xiaoou Tang. ESRGAN: enhanced super-resolution generative adversarial networks. CoRR, abs/1809.00219, 2018. URL http://arxiv.org/abs/1809.00219. ", + "bbox": [ + 174, + 693, + 825, + 736 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "Zhou Wang, Alan Bovik, Hamid Sheikh, and Eero Simoncelli. Image quality assessment: From error visibility to structural similarity. Image Processing, IEEE Transactions on, 13:600 – 612, 05 2004. doi: 10.1109/TIP.2003.819861. ", + "bbox": [ + 173, + 746, + 825, + 789 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "Saining Xie and Zhuowen Tu. Holistically-nested edge detection. In 2015 IEEE International Conference on Computer Vision, ICCV 2015, Santiago, Chile, December 7-13, 2015, pp. 1395–1403, 2015. doi: 10.1109/ICCV.2015.164. URL https://doi.org/10.1109/ICCV.2015. 164. ", + "bbox": [ + 173, + 800, + 825, + 856 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "Yuan Yuan, Siyuan Liu, Jiawei Zhang, Yongbing Zhang, Chao Dong, and Liang Lin. Unsupervised image super-resolution using cycle-in-cycle generative adversarial networks. 2018 IEEE/CVF Conference on Computer Vision and Pattern Recognition Workshops (CVPRW), pp. 814–81409, 2018. ", + "bbox": [ + 174, + 867, + 825, + 922 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "Roman Zeyde, Michael Elad, and Matan Protter. On single image scale-up using sparserepresentations. In Proceedings of the 7th International Conference on Curves and Surfaces, pp. 711–730, Berlin, Heidelberg, 2012. Springer-Verlag. ISBN 978-3-642-27412-1. doi: 10.1007/ 978-3-642-27413-8 47. URL https://doi.org/10.1007/978-3-642-27413-8_ 47. ", + "bbox": [ + 174, + 103, + 825, + 172 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "A ARCHITECTURES ", + "text_level": 1, + "bbox": [ + 176, + 102, + 354, + 118 + ], + "page_idx": 14 + }, + { + "type": "text", + "text": "This section describes architecture and optimization details of the conditional normalizing flow network, low-resolution image feature extractor, and shallow convolutional neural network in the conditional coupling layers. ", + "bbox": [ + 174, + 133, + 825, + 176 + ], + "page_idx": 14 + }, + { + "type": "text", + "text": "The conditional coupling layer is shown schematically in Figure 6. This shows that conditioned on an input $\\mathbf { x }$ , we are able to build a relatively straight-forward invertible mapping between latent representations $\\mathbf { z }$ and $\\mathbf { y }$ , which have been partitioned into vectors of equal dimension. ", + "bbox": [ + 174, + 183, + 825, + 226 + ], + "page_idx": 14 + }, + { + "type": "image", + "img_path": "images/2906cf05b4049b80ff2c97e08543a9486c4b9062c854a0d47dfca1e5c23e7b3a.jpg", + "image_caption": [ + "Figure 6: The forward and reverse paths of the conditional coupling layer. In our experiments we concatenate an embedding of the conditioning input $\\mathbf { x }$ to the latent $\\mathbf { z } _ { 1 }$ , which is fed through another neural network to output the affine transformation parameters applied to $\\mathbf { z } _ { 0 }$ . This operation is invertible in $\\mathbf { z }$ and $\\mathbf { y }$ , but not in $\\mathbf { x }$ . " + ], + "image_footnote": [], + "bbox": [ + 251, + 236, + 746, + 314 + ], + "page_idx": 14 + }, + { + "type": "text", + "text": "Details for the CNFs are given in Table 5 and the details of the individual coupling layers in Table 6 and 7. The architecture of the feature extractor is given in Table 8. The architecture has levels and subflows, following (Dinh et al., 2016; Kingma & Dhariwal, 2018). All networks are optimized using Adam (Kingma & Ba, 2015) for 200000 iterations. ", + "bbox": [ + 174, + 393, + 825, + 450 + ], + "page_idx": 14 + }, + { + "type": "table", + "img_path": "images/bf99a8501d282fbd1540158999e38e2cbf793fb01f9b611d6047db5e941bbd34.jpg", + "table_caption": [ + "Table 5: Configuration of the CNF architecture for the super-resolution task. " + ], + "table_footnote": [], + "table_body": "
DATASETMINIBATCH SIZELEVELSSUB-FLOWSLEARNING RATE
ImageNet3264280.0001
ImageNet6464280.0001
DRIVE2220.001
", + "bbox": [ + 222, + 491, + 774, + 559 + ], + "page_idx": 14 + }, + { + "type": "table", + "img_path": "images/04d534c32137a63aeae64bd988806712a39468cfccb699e0d8547138059a74a1.jpg", + "table_caption": [ + "Table 6: Architecture details for a single coupling layer in the super resolution task. The variable $c _ { \\mathrm { o u t } }$ denotes the number of output channels. The first two convolutional layers are followed by a ReLU activation. " + ], + "table_footnote": [], + "table_body": "
LAYERINTERMEDIATE CHANNELSKERNEL SIZE
Conv2d5123×3
Conv2d5121×1
Conv2dCout3×3
", + "bbox": [ + 299, + 152, + 697, + 223 + ], + "page_idx": 15 + }, + { + "type": "table", + "img_path": "images/999132a82e222546bf3a135fec88309ef6e000a401bdaeb0a8e8b3b3d8e593e7.jpg", + "table_caption": [ + "Table 7: Architecture details for a single coupling layer in the DRIVE segmentation task. The variable $c _ { \\mathrm { o u t } }$ denotes the number of output channels for the . The first two convolutional layers are followed by a ReLU activation. " + ], + "table_footnote": [], + "table_body": "
LAYERINTERMEDIATECHANNELSKERNEL SIZE
Conv2d323×3
InstanceNorm2d32-
ReLU-1
Conv2dCout3×3
", + "bbox": [ + 269, + 296, + 728, + 382 + ], + "page_idx": 15 + }, + { + "type": "table", + "img_path": "images/07e7fb84eddb5f5af9fa3c750f8428430a0dbea1e936aad457a39ea09268ea26.jpg", + "table_caption": [ + "Table 8: Architecture details for the conditioning network in the super-resolution task. Residualin-residual denseblocks Wang et al. (2018) are utilized. The channel growth is adjusted so that the CNF and the factorized baseline have an equal number of parameters. " + ], + "table_footnote": [], + "table_body": "
MODEL TYPERRDB BLOCKSCHANNEL GROWTH|CONTEXT CHANNELS
CNF1632128
Factorized LL1655128
", + "bbox": [ + 214, + 457, + 784, + 512 + ], + "page_idx": 15 + }, + { + "type": "text", + "text": "B CONDITIONAL IMAGE GENERATION ", + "text_level": 1, + "bbox": [ + 174, + 102, + 508, + 118 + ], + "page_idx": 16 + }, + { + "type": "text", + "text": "In this section, larger versions of the ImageNet64 samples are provided, sampled at different temperatures $\\tau$ . ", + "bbox": [ + 174, + 133, + 823, + 161 + ], + "page_idx": 16 + }, + { + "type": "image", + "img_path": "images/0a1b755d79f462b7cefbe91d4b81893d50e8c7073b998c76ea0071da28ab93dc.jpg", + "image_caption": [ + "Figure 7: Super resolution results CNF trained on Imagenet64 sampled at temperature $\\tau = 0$ " + ], + "image_footnote": [], + "bbox": [ + 271, + 176, + 725, + 527 + ], + "page_idx": 16 + }, + { + "type": "image", + "img_path": "images/3257972e069822bca22a6c7f5cbca32b0cdb3c594c59cdf3b43540caa1ed417e.jpg", + "image_caption": [ + "Figure 8: Super resolution results for the CNF trained on Imagenet64 sampled at $\\tau = 0 . 5$ " + ], + "image_footnote": [], + "bbox": [ + 271, + 116, + 725, + 464 + ], + "page_idx": 17 + }, + { + "type": "image", + "img_path": "images/fd08e3c4f413073f337e8705bf075013fd0c3aff5e295b95f859bf009f1238ad.jpg", + "image_caption": [ + "Figure 9: Super resolution results for the CNF trained on Imagenet64 sampled at $\\tau = 0 . 8$ " + ], + "image_footnote": [], + "bbox": [ + 271, + 529, + 725, + 880 + ], + "page_idx": 17 + } +] \ No newline at end of file diff --git a/parse/train/rJg3zxBYwH/rJg3zxBYwH_middle.json b/parse/train/rJg3zxBYwH/rJg3zxBYwH_middle.json new file mode 100644 index 0000000000000000000000000000000000000000..f1fc9c4e0213f869b376372c485485129e897bcd --- /dev/null +++ b/parse/train/rJg3zxBYwH/rJg3zxBYwH_middle.json @@ -0,0 +1,43601 @@ +{ + "pdf_info": [ + { + "preproc_blocks": [ + { + "type": "title", + "bbox": [ + 108, + 78, + 503, + 116 + ], + "lines": [ + { + "bbox": [ + 105, + 78, + 505, + 98 + ], + "spans": [ + { + "bbox": [ + 105, + 78, + 505, + 98 + ], + "score": 1.0, + "content": "LEARNING LIKELIHOODS WITH CONDITIONAL NOR-", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 99, + 241, + 117 + ], + "spans": [ + { + "bbox": [ + 105, + 99, + 241, + 117 + ], + "score": 1.0, + "content": "MALIZING FLOWS", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5 + }, + { + "type": "text", + "bbox": [ + 112, + 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": [ + 112, + 146, + 245, + 159 + ], + "spans": [ + { + "bbox": [ + 112, + 146, + 245, + 159 + ], + "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, + 212, + 468, + 376 + ], + "lines": [ + { + "bbox": [ + 141, + 211, + 469, + 225 + ], + "spans": [ + { + "bbox": [ + 141, + 211, + 421, + 225 + ], + "score": 1.0, + "content": "Normalizing Flows (NFs) are able to model complicated distributions", + "type": "text" + }, + { + "bbox": [ + 421, + 212, + 447, + 224 + ], + "score": 0.92, + "content": "p _ { Y } ( y )", + "type": "inline_equation" + }, + { + "bbox": [ + 448, + 211, + 469, + 225 + ], + "score": 1.0, + "content": "with", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 141, + 222, + 470, + 236 + ], + "spans": [ + { + "bbox": [ + 141, + 222, + 470, + 236 + ], + "score": 1.0, + "content": "strong inter-dimensional correlations and high multimodality by transforming a", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 141, + 232, + 470, + 247 + ], + "spans": [ + { + "bbox": [ + 141, + 232, + 223, + 247 + ], + "score": 1.0, + "content": "simple base density", + "type": "text" + }, + { + "bbox": [ + 223, + 234, + 248, + 245 + ], + "score": 0.92, + "content": "p _ { Z } ( z )", + "type": "inline_equation" + }, + { + "bbox": [ + 249, + 232, + 470, + 247 + ], + "score": 1.0, + "content": "through an invertible neural network under the change", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 141, + 244, + 469, + 257 + ], + "spans": [ + { + "bbox": [ + 141, + 244, + 469, + 257 + ], + "score": 1.0, + "content": "of variables formula. Such behavior is desirable in multivariate structured pre-", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 141, + 255, + 469, + 269 + ], + "spans": [ + { + "bbox": [ + 141, + 255, + 469, + 269 + ], + "score": 1.0, + "content": "diction tasks, where handcrafted per-pixel loss-based methods inadequately cap-", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 142, + 267, + 469, + 279 + ], + "spans": [ + { + "bbox": [ + 142, + 267, + 469, + 279 + ], + "score": 1.0, + "content": "ture strong correlations between output dimensions. We present a study of con-", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 142, + 278, + 469, + 289 + ], + "spans": [ + { + "bbox": [ + 142, + 278, + 469, + 289 + ], + "score": 1.0, + "content": "ditional normalizing flows (CNFs), a class of NFs where the base density to out-", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 141, + 289, + 469, + 300 + ], + "spans": [ + { + "bbox": [ + 141, + 289, + 332, + 300 + ], + "score": 1.0, + "content": "put space mapping is conditioned on an input", + "type": "text" + }, + { + "bbox": [ + 333, + 290, + 339, + 299 + ], + "score": 0.4, + "content": "\\mathbf { X }", + "type": "inline_equation" + }, + { + "bbox": [ + 340, + 289, + 469, + 300 + ], + "score": 1.0, + "content": ", to model conditional densities", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 142, + 299, + 470, + 312 + ], + "spans": [ + { + "bbox": [ + 142, + 299, + 186, + 312 + ], + "score": 0.92, + "content": "p _ { Y \\mid X } ( y | x )", + "type": "inline_equation" + }, + { + "bbox": [ + 186, + 299, + 470, + 311 + ], + "score": 1.0, + "content": ". CNFs are efficient in sampling and inference, they can be trained", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 141, + 310, + 470, + 323 + ], + "spans": [ + { + "bbox": [ + 141, + 310, + 470, + 323 + ], + "score": 1.0, + "content": "with a likelihood-based objective, and CNFs, being generative flows, do not suf-", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 141, + 321, + 469, + 333 + ], + "spans": [ + { + "bbox": [ + 141, + 321, + 469, + 333 + ], + "score": 1.0, + "content": "fer from mode collapse or training instabilities. We provide an effective method to", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 141, + 332, + 470, + 345 + ], + "spans": [ + { + "bbox": [ + 141, + 332, + 470, + 345 + ], + "score": 1.0, + "content": "train continuous CNFs for binary problems and in particular, we apply these CNFs", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 141, + 343, + 470, + 356 + ], + "spans": [ + { + "bbox": [ + 141, + 343, + 470, + 356 + ], + "score": 1.0, + "content": "to super-resolution and vessel segmentation tasks demonstrating competitive per-", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 141, + 354, + 469, + 366 + ], + "spans": [ + { + "bbox": [ + 141, + 354, + 469, + 366 + ], + "score": 1.0, + "content": "formance on standard benchmark datasets in terms of likelihood and conventional", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 142, + 366, + 176, + 376 + ], + "spans": [ + { + "bbox": [ + 142, + 366, + 176, + 376 + ], + "score": 1.0, + "content": "metrics.", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 12 + }, + { + "type": "title", + "bbox": [ + 108, + 398, + 206, + 410 + ], + "lines": [ + { + "bbox": [ + 105, + 396, + 208, + 413 + ], + "spans": [ + { + "bbox": [ + 105, + 396, + 208, + 413 + ], + "score": 1.0, + "content": "1 INTRODUCTION", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 20 + }, + { + "type": "text", + "bbox": [ + 107, + 422, + 505, + 510 + ], + "lines": [ + { + "bbox": [ + 105, + 422, + 506, + 437 + ], + "spans": [ + { + "bbox": [ + 105, + 422, + 247, + 437 + ], + "score": 1.0, + "content": "Learning conditional distributions", + "type": "text" + }, + { + "bbox": [ + 248, + 423, + 293, + 435 + ], + "score": 0.95, + "content": "p _ { Y | X } ( \\mathbf { y } | \\mathbf { x } )", + "type": "inline_equation" + }, + { + "bbox": [ + 293, + 422, + 506, + 437 + ], + "score": 1.0, + "content": "is one of the oldest problems in machine learning.", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 433, + 505, + 446 + ], + "spans": [ + { + "bbox": [ + 105, + 433, + 175, + 446 + ], + "score": 1.0, + "content": "When the output", + "type": "text" + }, + { + "bbox": [ + 175, + 435, + 183, + 445 + ], + "score": 0.4, + "content": "\\mathbf { y }", + "type": "inline_equation" + }, + { + "bbox": [ + 183, + 433, + 505, + 446 + ], + "score": 1.0, + "content": "is high-dimensional this is a particularly challenging task, and the practitioner is", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 445, + 505, + 457 + ], + "spans": [ + { + "bbox": [ + 105, + 445, + 505, + 457 + ], + "score": 1.0, + "content": "left with many design choices. Do we factorize the conditional? If not, do we model correlations", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 456, + 505, + 468 + ], + "spans": [ + { + "bbox": [ + 105, + 456, + 505, + 468 + ], + "score": 1.0, + "content": "with, say, a conditional random field (Prince, 2012)? Do we use a unimodal distribution? How fat", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 467, + 505, + 479 + ], + "spans": [ + { + "bbox": [ + 105, + 467, + 505, + 479 + ], + "score": 1.0, + "content": "should the tails be? Do we use an explicit likelihood at all, or use implicit methods (Mohamed &", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 478, + 505, + 489 + ], + "spans": [ + { + "bbox": [ + 105, + 478, + 505, + 489 + ], + "score": 1.0, + "content": "Rezende, 2015) such as a GAN (Goodfellow et al., 2014)? Do we quantize the output? Ideally, the", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 489, + 506, + 501 + ], + "spans": [ + { + "bbox": [ + 105, + 489, + 506, + 501 + ], + "score": 1.0, + "content": "practitioner should not have to make design choices at all, and the distribution should be learned", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 106, + 498, + 164, + 511 + ], + "spans": [ + { + "bbox": [ + 106, + 498, + 164, + 511 + ], + "score": 1.0, + "content": "from the data.", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 24.5 + }, + { + "type": "text", + "bbox": [ + 107, + 516, + 505, + 582 + ], + "lines": [ + { + "bbox": [ + 105, + 516, + 505, + 529 + ], + "spans": [ + { + "bbox": [ + 105, + 516, + 505, + 529 + ], + "score": 1.0, + "content": "In the field of density estimation normalizing flows (NFs) are a relatively new family of models", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 527, + 505, + 540 + ], + "spans": [ + { + "bbox": [ + 105, + 527, + 505, + 540 + ], + "score": 1.0, + "content": "(Rezende & Mohamed, 2015). NFs model complicated high dimensional marginal distributions", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 106, + 538, + 506, + 551 + ], + "spans": [ + { + "bbox": [ + 106, + 538, + 133, + 550 + ], + "score": 0.89, + "content": "p _ { Y } ( \\mathbf { y } )", + "type": "inline_equation" + }, + { + "bbox": [ + 134, + 538, + 351, + 551 + ], + "score": 1.0, + "content": "by transforming a simple base distribution or prior", + "type": "text" + }, + { + "bbox": [ + 351, + 538, + 376, + 550 + ], + "score": 0.92, + "content": "p _ { Z } ( \\mathbf { z } )", + "type": "inline_equation" + }, + { + "bbox": [ + 377, + 538, + 506, + 551 + ], + "score": 1.0, + "content": "through a learnable, invertible", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 549, + 505, + 562 + ], + "spans": [ + { + "bbox": [ + 105, + 549, + 144, + 562 + ], + "score": 1.0, + "content": "mapping", + "type": "text" + }, + { + "bbox": [ + 145, + 550, + 156, + 562 + ], + "score": 0.89, + "content": "f _ { \\phi }", + "type": "inline_equation" + }, + { + "bbox": [ + 156, + 549, + 505, + 562 + ], + "score": 1.0, + "content": "and then applying the change of variables formula. NFs are efficient in inference and", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 560, + 506, + 573 + ], + "spans": [ + { + "bbox": [ + 105, + 560, + 506, + 573 + ], + "score": 1.0, + "content": "sampling, are able to learn inter-dimensional correlations and multi-modality, and they are exact", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 570, + 351, + 584 + ], + "spans": [ + { + "bbox": [ + 105, + 570, + 351, + 584 + ], + "score": 1.0, + "content": "likelihood models, amenable to gradient-based optimization.", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 31.5 + }, + { + "type": "text", + "bbox": [ + 107, + 588, + 504, + 643 + ], + "lines": [ + { + "bbox": [ + 105, + 588, + 505, + 601 + ], + "spans": [ + { + "bbox": [ + 105, + 588, + 505, + 601 + ], + "score": 1.0, + "content": "Flow-based generative models (Dinh et al., 2016) are generally trained on the image space, and", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 598, + 506, + 612 + ], + "spans": [ + { + "bbox": [ + 105, + 598, + 506, + 612 + ], + "score": 1.0, + "content": "are in some cases computationally efficient in both the forward and inverse direction. These are", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 609, + 505, + 622 + ], + "spans": [ + { + "bbox": [ + 105, + 609, + 348, + 622 + ], + "score": 1.0, + "content": "advantageous over other likelihood based methods because", + "type": "text" + }, + { + "bbox": [ + 348, + 611, + 353, + 621 + ], + "score": 0.44, + "content": "i _ { , }", + "type": "inline_equation" + }, + { + "bbox": [ + 354, + 609, + 505, + 622 + ], + "score": 1.0, + "content": ") sampling is efficient opposed to au-", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 106, + 621, + 506, + 634 + ], + "spans": [ + { + "bbox": [ + 106, + 621, + 309, + 634 + ], + "score": 1.0, + "content": "toregressive models (Van Oord et al., 2016), and", + "type": "text" + }, + { + "bbox": [ + 309, + 622, + 317, + 631 + ], + "score": 0.36, + "content": "i i", + "type": "inline_equation" + }, + { + "bbox": [ + 317, + 621, + 506, + 634 + ], + "score": 1.0, + "content": ") flows admit exact likelihood optimization in", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 632, + 373, + 645 + ], + "spans": [ + { + "bbox": [ + 105, + 632, + 373, + 645 + ], + "score": 1.0, + "content": "contrast with variational autoencoders (Kingma & Welling, 2014).", + "type": "text" + } + ], + "index": 39 + } + ], + "index": 37 + }, + { + "type": "text", + "bbox": [ + 107, + 649, + 504, + 704 + ], + "lines": [ + { + "bbox": [ + 106, + 649, + 505, + 660 + ], + "spans": [ + { + "bbox": [ + 106, + 649, + 505, + 660 + ], + "score": 1.0, + "content": "Conditional random fields directly model correlations between pixels, and have been fused with", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 106, + 660, + 505, + 672 + ], + "spans": [ + { + "bbox": [ + 106, + 660, + 505, + 672 + ], + "score": 1.0, + "content": "deep learning (Chen et al., 2016). However, they require the practitioner to choose which pixels", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 670, + 505, + 683 + ], + "spans": [ + { + "bbox": [ + 105, + 670, + 505, + 683 + ], + "score": 1.0, + "content": "have pairwise interactions. Another approach uses adversarial training (Goodfellow et al., 2014). A", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 680, + 505, + 695 + ], + "spans": [ + { + "bbox": [ + 105, + 680, + 505, + 695 + ], + "score": 1.0, + "content": "downside is that the training procedure can be unstable and they are difficult to evaluate quantita-", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 104, + 691, + 135, + 707 + ], + "spans": [ + { + "bbox": [ + 104, + 691, + 135, + 707 + ], + "score": 1.0, + "content": "tively.", + "type": "text" + } + ], + "index": 44 + } + ], + "index": 42 + }, + { + "type": "text", + "bbox": [ + 107, + 709, + 503, + 731 + ], + "lines": [ + { + "bbox": [ + 105, + 708, + 505, + 723 + ], + "spans": [ + { + "bbox": [ + 105, + 708, + 505, + 723 + ], + "score": 1.0, + "content": "We propose to learn the likelihood of conditional distributions with few modeling choices using Con-", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 105, + 718, + 504, + 734 + ], + "spans": [ + { + "bbox": [ + 105, + 718, + 458, + 734 + ], + "score": 1.0, + "content": "ditional Normalizing Flows (CNFs). CNFs can be harnessed for conditional distributions", + "type": "text" + }, + { + "bbox": [ + 459, + 721, + 504, + 733 + ], + "score": 0.92, + "content": "p _ { Y | X } ( \\mathbf { y } | \\mathbf { x } )", + "type": "inline_equation" + } + ], + "index": 46 + } + ], + "index": 45.5 + } + ], + "page_idx": 0, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 27, + 308, + 37 + ], + "lines": [ + { + "bbox": [ + 107, + 26, + 308, + 38 + ], + "spans": [ + { + "bbox": [ + 107, + 26, + 308, + 38 + ], + "score": 1.0, + "content": "Under review as a conference paper at ICLR 2020", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 303, + 752, + 308, + 759 + ], + "lines": [ + { + "bbox": [ + 302, + 751, + 309, + 762 + ], + "spans": [ + { + "bbox": [ + 302, + 751, + 309, + 762 + ], + "score": 1.0, + "content": "", + "type": "text", + "height": 11, + "width": 7 + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "title", + "bbox": [ + 108, + 78, + 503, + 116 + ], + "lines": [ + { + "bbox": [ + 105, + 78, + 505, + 98 + ], + "spans": [ + { + "bbox": [ + 105, + 78, + 505, + 98 + ], + "score": 1.0, + "content": "LEARNING LIKELIHOODS WITH CONDITIONAL NOR-", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 99, + 241, + 117 + ], + "spans": [ + { + "bbox": [ + 105, + 99, + 241, + 117 + ], + "score": 1.0, + "content": "MALIZING FLOWS", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5 + }, + { + "type": "text", + "bbox": [ + 112, + 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": [ + 112, + 146, + 245, + 159 + ], + "spans": [ + { + "bbox": [ + 112, + 146, + 245, + 159 + ], + "score": 1.0, + "content": "Paper under double-blind review", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 2.5, + "bbox_fs": [ + 112, + 136, + 245, + 159 + ] + }, + { + "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, + 212, + 468, + 376 + ], + "lines": [ + { + "bbox": [ + 141, + 211, + 469, + 225 + ], + "spans": [ + { + "bbox": [ + 141, + 211, + 421, + 225 + ], + "score": 1.0, + "content": "Normalizing Flows (NFs) are able to model complicated distributions", + "type": "text" + }, + { + "bbox": [ + 421, + 212, + 447, + 224 + ], + "score": 0.92, + "content": "p _ { Y } ( y )", + "type": "inline_equation" + }, + { + "bbox": [ + 448, + 211, + 469, + 225 + ], + "score": 1.0, + "content": "with", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 141, + 222, + 470, + 236 + ], + "spans": [ + { + "bbox": [ + 141, + 222, + 470, + 236 + ], + "score": 1.0, + "content": "strong inter-dimensional correlations and high multimodality by transforming a", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 141, + 232, + 470, + 247 + ], + "spans": [ + { + "bbox": [ + 141, + 232, + 223, + 247 + ], + "score": 1.0, + "content": "simple base density", + "type": "text" + }, + { + "bbox": [ + 223, + 234, + 248, + 245 + ], + "score": 0.92, + "content": "p _ { Z } ( z )", + "type": "inline_equation" + }, + { + "bbox": [ + 249, + 232, + 470, + 247 + ], + "score": 1.0, + "content": "through an invertible neural network under the change", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 141, + 244, + 469, + 257 + ], + "spans": [ + { + "bbox": [ + 141, + 244, + 469, + 257 + ], + "score": 1.0, + "content": "of variables formula. Such behavior is desirable in multivariate structured pre-", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 141, + 255, + 469, + 269 + ], + "spans": [ + { + "bbox": [ + 141, + 255, + 469, + 269 + ], + "score": 1.0, + "content": "diction tasks, where handcrafted per-pixel loss-based methods inadequately cap-", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 142, + 267, + 469, + 279 + ], + "spans": [ + { + "bbox": [ + 142, + 267, + 469, + 279 + ], + "score": 1.0, + "content": "ture strong correlations between output dimensions. We present a study of con-", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 142, + 278, + 469, + 289 + ], + "spans": [ + { + "bbox": [ + 142, + 278, + 469, + 289 + ], + "score": 1.0, + "content": "ditional normalizing flows (CNFs), a class of NFs where the base density to out-", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 141, + 289, + 469, + 300 + ], + "spans": [ + { + "bbox": [ + 141, + 289, + 332, + 300 + ], + "score": 1.0, + "content": "put space mapping is conditioned on an input", + "type": "text" + }, + { + "bbox": [ + 333, + 290, + 339, + 299 + ], + "score": 0.4, + "content": "\\mathbf { X }", + "type": "inline_equation" + }, + { + "bbox": [ + 340, + 289, + 469, + 300 + ], + "score": 1.0, + "content": ", to model conditional densities", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 142, + 299, + 470, + 312 + ], + "spans": [ + { + "bbox": [ + 142, + 299, + 186, + 312 + ], + "score": 0.92, + "content": "p _ { Y \\mid X } ( y | x )", + "type": "inline_equation" + }, + { + "bbox": [ + 186, + 299, + 470, + 311 + ], + "score": 1.0, + "content": ". CNFs are efficient in sampling and inference, they can be trained", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 141, + 310, + 470, + 323 + ], + "spans": [ + { + "bbox": [ + 141, + 310, + 470, + 323 + ], + "score": 1.0, + "content": "with a likelihood-based objective, and CNFs, being generative flows, do not suf-", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 141, + 321, + 469, + 333 + ], + "spans": [ + { + "bbox": [ + 141, + 321, + 469, + 333 + ], + "score": 1.0, + "content": "fer from mode collapse or training instabilities. We provide an effective method to", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 141, + 332, + 470, + 345 + ], + "spans": [ + { + "bbox": [ + 141, + 332, + 470, + 345 + ], + "score": 1.0, + "content": "train continuous CNFs for binary problems and in particular, we apply these CNFs", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 141, + 343, + 470, + 356 + ], + "spans": [ + { + "bbox": [ + 141, + 343, + 470, + 356 + ], + "score": 1.0, + "content": "to super-resolution and vessel segmentation tasks demonstrating competitive per-", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 141, + 354, + 469, + 366 + ], + "spans": [ + { + "bbox": [ + 141, + 354, + 469, + 366 + ], + "score": 1.0, + "content": "formance on standard benchmark datasets in terms of likelihood and conventional", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 142, + 366, + 176, + 376 + ], + "spans": [ + { + "bbox": [ + 142, + 366, + 176, + 376 + ], + "score": 1.0, + "content": "metrics.", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 12, + "bbox_fs": [ + 141, + 211, + 470, + 376 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 398, + 206, + 410 + ], + "lines": [ + { + "bbox": [ + 105, + 396, + 208, + 413 + ], + "spans": [ + { + "bbox": [ + 105, + 396, + 208, + 413 + ], + "score": 1.0, + "content": "1 INTRODUCTION", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 20 + }, + { + "type": "text", + "bbox": [ + 107, + 422, + 505, + 510 + ], + "lines": [ + { + "bbox": [ + 105, + 422, + 506, + 437 + ], + "spans": [ + { + "bbox": [ + 105, + 422, + 247, + 437 + ], + "score": 1.0, + "content": "Learning conditional distributions", + "type": "text" + }, + { + "bbox": [ + 248, + 423, + 293, + 435 + ], + "score": 0.95, + "content": "p _ { Y | X } ( \\mathbf { y } | \\mathbf { x } )", + "type": "inline_equation" + }, + { + "bbox": [ + 293, + 422, + 506, + 437 + ], + "score": 1.0, + "content": "is one of the oldest problems in machine learning.", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 433, + 505, + 446 + ], + "spans": [ + { + "bbox": [ + 105, + 433, + 175, + 446 + ], + "score": 1.0, + "content": "When the output", + "type": "text" + }, + { + "bbox": [ + 175, + 435, + 183, + 445 + ], + "score": 0.4, + "content": "\\mathbf { y }", + "type": "inline_equation" + }, + { + "bbox": [ + 183, + 433, + 505, + 446 + ], + "score": 1.0, + "content": "is high-dimensional this is a particularly challenging task, and the practitioner is", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 445, + 505, + 457 + ], + "spans": [ + { + "bbox": [ + 105, + 445, + 505, + 457 + ], + "score": 1.0, + "content": "left with many design choices. Do we factorize the conditional? If not, do we model correlations", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 456, + 505, + 468 + ], + "spans": [ + { + "bbox": [ + 105, + 456, + 505, + 468 + ], + "score": 1.0, + "content": "with, say, a conditional random field (Prince, 2012)? Do we use a unimodal distribution? How fat", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 467, + 505, + 479 + ], + "spans": [ + { + "bbox": [ + 105, + 467, + 505, + 479 + ], + "score": 1.0, + "content": "should the tails be? Do we use an explicit likelihood at all, or use implicit methods (Mohamed &", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 478, + 505, + 489 + ], + "spans": [ + { + "bbox": [ + 105, + 478, + 505, + 489 + ], + "score": 1.0, + "content": "Rezende, 2015) such as a GAN (Goodfellow et al., 2014)? Do we quantize the output? Ideally, the", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 489, + 506, + 501 + ], + "spans": [ + { + "bbox": [ + 105, + 489, + 506, + 501 + ], + "score": 1.0, + "content": "practitioner should not have to make design choices at all, and the distribution should be learned", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 106, + 498, + 164, + 511 + ], + "spans": [ + { + "bbox": [ + 106, + 498, + 164, + 511 + ], + "score": 1.0, + "content": "from the data.", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 24.5, + "bbox_fs": [ + 105, + 422, + 506, + 511 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 516, + 505, + 582 + ], + "lines": [ + { + "bbox": [ + 105, + 516, + 505, + 529 + ], + "spans": [ + { + "bbox": [ + 105, + 516, + 505, + 529 + ], + "score": 1.0, + "content": "In the field of density estimation normalizing flows (NFs) are a relatively new family of models", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 527, + 505, + 540 + ], + "spans": [ + { + "bbox": [ + 105, + 527, + 505, + 540 + ], + "score": 1.0, + "content": "(Rezende & Mohamed, 2015). NFs model complicated high dimensional marginal distributions", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 106, + 538, + 506, + 551 + ], + "spans": [ + { + "bbox": [ + 106, + 538, + 133, + 550 + ], + "score": 0.89, + "content": "p _ { Y } ( \\mathbf { y } )", + "type": "inline_equation" + }, + { + "bbox": [ + 134, + 538, + 351, + 551 + ], + "score": 1.0, + "content": "by transforming a simple base distribution or prior", + "type": "text" + }, + { + "bbox": [ + 351, + 538, + 376, + 550 + ], + "score": 0.92, + "content": "p _ { Z } ( \\mathbf { z } )", + "type": "inline_equation" + }, + { + "bbox": [ + 377, + 538, + 506, + 551 + ], + "score": 1.0, + "content": "through a learnable, invertible", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 549, + 505, + 562 + ], + "spans": [ + { + "bbox": [ + 105, + 549, + 144, + 562 + ], + "score": 1.0, + "content": "mapping", + "type": "text" + }, + { + "bbox": [ + 145, + 550, + 156, + 562 + ], + "score": 0.89, + "content": "f _ { \\phi }", + "type": "inline_equation" + }, + { + "bbox": [ + 156, + 549, + 505, + 562 + ], + "score": 1.0, + "content": "and then applying the change of variables formula. NFs are efficient in inference and", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 560, + 506, + 573 + ], + "spans": [ + { + "bbox": [ + 105, + 560, + 506, + 573 + ], + "score": 1.0, + "content": "sampling, are able to learn inter-dimensional correlations and multi-modality, and they are exact", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 570, + 351, + 584 + ], + "spans": [ + { + "bbox": [ + 105, + 570, + 351, + 584 + ], + "score": 1.0, + "content": "likelihood models, amenable to gradient-based optimization.", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 31.5, + "bbox_fs": [ + 105, + 516, + 506, + 584 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 588, + 504, + 643 + ], + "lines": [ + { + "bbox": [ + 105, + 588, + 505, + 601 + ], + "spans": [ + { + "bbox": [ + 105, + 588, + 505, + 601 + ], + "score": 1.0, + "content": "Flow-based generative models (Dinh et al., 2016) are generally trained on the image space, and", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 598, + 506, + 612 + ], + "spans": [ + { + "bbox": [ + 105, + 598, + 506, + 612 + ], + "score": 1.0, + "content": "are in some cases computationally efficient in both the forward and inverse direction. These are", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 609, + 505, + 622 + ], + "spans": [ + { + "bbox": [ + 105, + 609, + 348, + 622 + ], + "score": 1.0, + "content": "advantageous over other likelihood based methods because", + "type": "text" + }, + { + "bbox": [ + 348, + 611, + 353, + 621 + ], + "score": 0.44, + "content": "i _ { , }", + "type": "inline_equation" + }, + { + "bbox": [ + 354, + 609, + 505, + 622 + ], + "score": 1.0, + "content": ") sampling is efficient opposed to au-", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 106, + 621, + 506, + 634 + ], + "spans": [ + { + "bbox": [ + 106, + 621, + 309, + 634 + ], + "score": 1.0, + "content": "toregressive models (Van Oord et al., 2016), and", + "type": "text" + }, + { + "bbox": [ + 309, + 622, + 317, + 631 + ], + "score": 0.36, + "content": "i i", + "type": "inline_equation" + }, + { + "bbox": [ + 317, + 621, + 506, + 634 + ], + "score": 1.0, + "content": ") flows admit exact likelihood optimization in", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 632, + 373, + 645 + ], + "spans": [ + { + "bbox": [ + 105, + 632, + 373, + 645 + ], + "score": 1.0, + "content": "contrast with variational autoencoders (Kingma & Welling, 2014).", + "type": "text" + } + ], + "index": 39 + } + ], + "index": 37, + "bbox_fs": [ + 105, + 588, + 506, + 645 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 649, + 504, + 704 + ], + "lines": [ + { + "bbox": [ + 106, + 649, + 505, + 660 + ], + "spans": [ + { + "bbox": [ + 106, + 649, + 505, + 660 + ], + "score": 1.0, + "content": "Conditional random fields directly model correlations between pixels, and have been fused with", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 106, + 660, + 505, + 672 + ], + "spans": [ + { + "bbox": [ + 106, + 660, + 505, + 672 + ], + "score": 1.0, + "content": "deep learning (Chen et al., 2016). However, they require the practitioner to choose which pixels", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 670, + 505, + 683 + ], + "spans": [ + { + "bbox": [ + 105, + 670, + 505, + 683 + ], + "score": 1.0, + "content": "have pairwise interactions. Another approach uses adversarial training (Goodfellow et al., 2014). A", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 680, + 505, + 695 + ], + "spans": [ + { + "bbox": [ + 105, + 680, + 505, + 695 + ], + "score": 1.0, + "content": "downside is that the training procedure can be unstable and they are difficult to evaluate quantita-", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 104, + 691, + 135, + 707 + ], + "spans": [ + { + "bbox": [ + 104, + 691, + 135, + 707 + ], + "score": 1.0, + "content": "tively.", + "type": "text" + } + ], + "index": 44 + } + ], + "index": 42, + "bbox_fs": [ + 104, + 649, + 505, + 707 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 709, + 503, + 731 + ], + "lines": [ + { + "bbox": [ + 105, + 708, + 505, + 723 + ], + "spans": [ + { + "bbox": [ + 105, + 708, + 505, + 723 + ], + "score": 1.0, + "content": "We propose to learn the likelihood of conditional distributions with few modeling choices using Con-", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 105, + 718, + 504, + 734 + ], + "spans": [ + { + "bbox": [ + 105, + 718, + 458, + 734 + ], + "score": 1.0, + "content": "ditional Normalizing Flows (CNFs). CNFs can be harnessed for conditional distributions", + "type": "text" + }, + { + "bbox": [ + 459, + 721, + 504, + 733 + ], + "score": 0.92, + "content": "p _ { Y | X } ( \\mathbf { y } | \\mathbf { x } )", + "type": "inline_equation" + } + ], + "index": 46 + } + ], + "index": 45.5, + "bbox_fs": [ + 105, + 708, + 505, + 734 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 107, + 82, + 505, + 127 + ], + "lines": [ + { + "bbox": [ + 105, + 82, + 505, + 95 + ], + "spans": [ + { + "bbox": [ + 105, + 82, + 505, + 95 + ], + "score": 1.0, + "content": "by conditioning the prior and the invertible mapping on the input x. In particular, we apply condi-", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 93, + 506, + 106 + ], + "spans": [ + { + "bbox": [ + 105, + 93, + 506, + 106 + ], + "score": 1.0, + "content": "tional flows to super-resolution (Wang et al., 2018) and vessel segmentation (Staal et al., 2004). We", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 104, + 505, + 117 + ], + "spans": [ + { + "bbox": [ + 105, + 104, + 505, + 117 + ], + "score": 1.0, + "content": "evaluate their performance gains on multivariate prediction tasks along side architecturally-matched", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 115, + 456, + 128 + ], + "spans": [ + { + "bbox": [ + 105, + 115, + 456, + 128 + ], + "score": 1.0, + "content": "factored baselines by comparing likelihood and application specific evaluation metrics.", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 1.5 + }, + { + "type": "title", + "bbox": [ + 107, + 142, + 200, + 155 + ], + "lines": [ + { + "bbox": [ + 104, + 140, + 202, + 158 + ], + "spans": [ + { + "bbox": [ + 104, + 140, + 202, + 158 + ], + "score": 1.0, + "content": "2 BACKGROUND", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 4 + }, + { + "type": "text", + "bbox": [ + 107, + 166, + 505, + 200 + ], + "lines": [ + { + "bbox": [ + 105, + 166, + 505, + 179 + ], + "spans": [ + { + "bbox": [ + 105, + 166, + 505, + 179 + ], + "score": 1.0, + "content": "In the following, we present the relevant background material on normalizing flows and structured", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 177, + 505, + 190 + ], + "spans": [ + { + "bbox": [ + 105, + 177, + 505, + 190 + ], + "score": 1.0, + "content": "prediction. This section covers the change of variables formula, invertible modules, variational", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 189, + 336, + 202 + ], + "spans": [ + { + "bbox": [ + 105, + 189, + 336, + 202 + ], + "score": 1.0, + "content": "dequantization and conventional likelihood optimization.", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 6 + }, + { + "type": "title", + "bbox": [ + 107, + 213, + 228, + 225 + ], + "lines": [ + { + "bbox": [ + 105, + 212, + 229, + 226 + ], + "spans": [ + { + "bbox": [ + 105, + 212, + 229, + 226 + ], + "score": 1.0, + "content": "2.1 NORMALIZING FLOWS", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 8 + }, + { + "type": "text", + "bbox": [ + 106, + 233, + 505, + 278 + ], + "lines": [ + { + "bbox": [ + 105, + 233, + 505, + 246 + ], + "spans": [ + { + "bbox": [ + 105, + 233, + 505, + 246 + ], + "score": 1.0, + "content": "A standard NF in continuous space is based on a simple change of variables formula. Given two", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 244, + 505, + 257 + ], + "spans": [ + { + "bbox": [ + 105, + 244, + 213, + 257 + ], + "score": 1.0, + "content": "spaces of equal dimension", + "type": "text" + }, + { + "bbox": [ + 213, + 245, + 222, + 254 + ], + "score": 0.81, + "content": "\\mathcal { Z }", + "type": "inline_equation" + }, + { + "bbox": [ + 222, + 244, + 239, + 257 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 240, + 245, + 248, + 255 + ], + "score": 0.85, + "content": "\\mathcal { V }", + "type": "inline_equation" + }, + { + "bbox": [ + 249, + 244, + 464, + 257 + ], + "score": 1.0, + "content": "; a once-differentiable, parametric, bijective1 mapping", + "type": "text" + }, + { + "bbox": [ + 464, + 245, + 505, + 257 + ], + "score": 0.9, + "content": "f _ { \\phi } : \\mathcal { V } ", + "type": "inline_equation" + } + ], + "index": 10 + }, + { + "bbox": [ + 107, + 255, + 506, + 268 + ], + "spans": [ + { + "bbox": [ + 107, + 256, + 115, + 266 + ], + "score": 0.77, + "content": "\\mathcal { Z }", + "type": "inline_equation" + }, + { + "bbox": [ + 116, + 255, + 147, + 268 + ], + "score": 1.0, + "content": ", where", + "type": "text" + }, + { + "bbox": [ + 148, + 256, + 155, + 267 + ], + "score": 0.84, + "content": "\\phi", + "type": "inline_equation" + }, + { + "bbox": [ + 155, + 255, + 247, + 268 + ], + "score": 1.0, + "content": "are the parameters of", + "type": "text" + }, + { + "bbox": [ + 247, + 256, + 254, + 267 + ], + "score": 0.86, + "content": "f", + "type": "inline_equation" + }, + { + "bbox": [ + 254, + 255, + 356, + 268 + ], + "score": 1.0, + "content": "; and a prior distribution", + "type": "text" + }, + { + "bbox": [ + 357, + 255, + 382, + 268 + ], + "score": 0.92, + "content": "p _ { Z } ( \\mathbf { z } )", + "type": "inline_equation" + }, + { + "bbox": [ + 382, + 255, + 506, + 268 + ], + "score": 1.0, + "content": ", we can model a complicated", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 265, + 196, + 280 + ], + "spans": [ + { + "bbox": [ + 105, + 265, + 155, + 280 + ], + "score": 1.0, + "content": "distribution", + "type": "text" + }, + { + "bbox": [ + 155, + 267, + 182, + 279 + ], + "score": 0.91, + "content": "p _ { Y } ( \\mathbf { y } )", + "type": "inline_equation" + }, + { + "bbox": [ + 182, + 265, + 196, + 280 + ], + "score": 1.0, + "content": "as", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 10.5 + }, + { + "type": "interline_equation", + "bbox": [ + 240, + 280, + 371, + 308 + ], + "lines": [ + { + "bbox": [ + 240, + 280, + 371, + 308 + ], + "spans": [ + { + "bbox": [ + 240, + 280, + 371, + 308 + ], + "score": 0.94, + "content": "p _ { Y } ( \\mathbf { y } ) = p _ { Z } ( f _ { \\phi } ( \\mathbf { y } ) ) \\left. \\frac { \\partial f _ { \\phi } ( \\mathbf { y } ) } { \\partial \\mathbf { y } } \\right. .", + "type": "interline_equation", + "image_path": "7036992575acd5e1200fcc3a38b41ba09b6ad4580fe60482f5c9e193539a34c7.jpg" + } + ] + } + ], + "index": 13.5, + "virtual_lines": [ + { + "bbox": [ + 240, + 280, + 371, + 294.0 + ], + "spans": [], + "index": 13 + }, + { + "bbox": [ + 240, + 294.0, + 371, + 308.0 + ], + "spans": [], + "index": 14 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 309, + 505, + 387 + ], + "lines": [ + { + "bbox": [ + 106, + 309, + 506, + 323 + ], + "spans": [ + { + "bbox": [ + 106, + 309, + 145, + 323 + ], + "score": 1.0, + "content": "The term", + "type": "text" + }, + { + "bbox": [ + 145, + 310, + 199, + 322 + ], + "score": 0.92, + "content": "| \\partial f _ { \\phi } ( \\mathbf { y } ) / \\partial \\mathbf { y } |", + "type": "inline_equation" + }, + { + "bbox": [ + 199, + 309, + 324, + 323 + ], + "score": 1.0, + "content": "is the Jacobian determinant of", + "type": "text" + }, + { + "bbox": [ + 324, + 310, + 335, + 322 + ], + "score": 0.89, + "content": "f _ { \\phi }", + "type": "inline_equation" + }, + { + "bbox": [ + 335, + 309, + 388, + 323 + ], + "score": 1.0, + "content": ", evaluated at", + "type": "text" + }, + { + "bbox": [ + 388, + 312, + 396, + 322 + ], + "score": 0.34, + "content": "\\mathbf { y }", + "type": "inline_equation" + }, + { + "bbox": [ + 396, + 309, + 506, + 323 + ], + "score": 1.0, + "content": "and it accounts for volume", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 320, + 505, + 335 + ], + "spans": [ + { + "bbox": [ + 105, + 320, + 190, + 335 + ], + "score": 1.0, + "content": "changes induced by", + "type": "text" + }, + { + "bbox": [ + 190, + 322, + 201, + 334 + ], + "score": 0.88, + "content": "f _ { \\phi }", + "type": "inline_equation" + }, + { + "bbox": [ + 201, + 320, + 288, + 335 + ], + "score": 1.0, + "content": ". The transformation", + "type": "text" + }, + { + "bbox": [ + 288, + 322, + 299, + 333 + ], + "score": 0.89, + "content": "f _ { \\phi }", + "type": "inline_equation" + }, + { + "bbox": [ + 300, + 320, + 488, + 335 + ], + "score": 1.0, + "content": "introduces correlations and multi-modality in", + "type": "text" + }, + { + "bbox": [ + 488, + 323, + 501, + 333 + ], + "score": 0.79, + "content": "p _ { Y }", + "type": "inline_equation" + }, + { + "bbox": [ + 501, + 320, + 505, + 335 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 331, + 506, + 345 + ], + "spans": [ + { + "bbox": [ + 105, + 331, + 443, + 345 + ], + "score": 1.0, + "content": "The main challenge in the field of normalizing flows is designing the transformation", + "type": "text" + }, + { + "bbox": [ + 443, + 332, + 454, + 344 + ], + "score": 0.88, + "content": "f _ { \\phi }", + "type": "inline_equation" + }, + { + "bbox": [ + 455, + 331, + 506, + 345 + ], + "score": 1.0, + "content": ". It has to be", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 106, + 343, + 505, + 356 + ], + "spans": [ + { + "bbox": [ + 106, + 344, + 112, + 354 + ], + "score": 0.37, + "content": "i ,", + "type": "inline_equation" + }, + { + "bbox": [ + 113, + 343, + 155, + 356 + ], + "score": 1.0, + "content": "bijective,", + "type": "text" + }, + { + "bbox": [ + 155, + 344, + 162, + 353 + ], + "score": 0.4, + "content": "i i _ { . }", + "type": "inline_equation" + }, + { + "bbox": [ + 163, + 343, + 505, + 356 + ], + "score": 1.0, + "content": ") have an efficient and tractable Jacobian determinant, iii) be from a ‘flexible’ model", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 353, + 505, + 367 + ], + "spans": [ + { + "bbox": [ + 105, + 353, + 183, + 367 + ], + "score": 1.0, + "content": "class. In addition,", + "type": "text" + }, + { + "bbox": [ + 183, + 355, + 192, + 365 + ], + "score": 0.54, + "content": "i \\nu _ { . }", + "type": "inline_equation" + }, + { + "bbox": [ + 192, + 353, + 505, + 367 + ], + "score": 1.0, + "content": ") for fast sampling the inverse needs to be efficiently computable. Below we", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 364, + 505, + 377 + ], + "spans": [ + { + "bbox": [ + 105, + 364, + 505, + 377 + ], + "score": 1.0, + "content": "briefly state which invertible modules are used in our architectures, obeying the aforementioned", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 376, + 137, + 389 + ], + "spans": [ + { + "bbox": [ + 105, + 376, + 137, + 389 + ], + "score": 1.0, + "content": "points.", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 18 + }, + { + "type": "text", + "bbox": [ + 108, + 398, + 505, + 433 + ], + "lines": [ + { + "bbox": [ + 106, + 397, + 505, + 412 + ], + "spans": [ + { + "bbox": [ + 106, + 397, + 505, + 412 + ], + "score": 1.0, + "content": "Coupling layers Affine coupling layers (Dinh et al., 2016) are invertible, nonlinear layers. They", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 106, + 410, + 506, + 423 + ], + "spans": [ + { + "bbox": [ + 106, + 410, + 216, + 423 + ], + "score": 1.0, + "content": "work by splitting the input", + "type": "text" + }, + { + "bbox": [ + 217, + 412, + 223, + 420 + ], + "score": 0.54, + "content": "\\mathbf { z }", + "type": "inline_equation" + }, + { + "bbox": [ + 224, + 410, + 312, + 423 + ], + "score": 1.0, + "content": "into two components", + "type": "text" + }, + { + "bbox": [ + 312, + 412, + 323, + 421 + ], + "score": 0.85, + "content": "\\mathbf { z } _ { 0 }", + "type": "inline_equation" + }, + { + "bbox": [ + 323, + 410, + 342, + 423 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 342, + 411, + 353, + 421 + ], + "score": 0.86, + "content": "\\mathbf { z } _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 353, + 410, + 474, + 423 + ], + "score": 1.0, + "content": "and nonlinearly transforming", + "type": "text" + }, + { + "bbox": [ + 474, + 412, + 485, + 421 + ], + "score": 0.84, + "content": "\\mathbf { z } _ { 0 }", + "type": "inline_equation" + }, + { + "bbox": [ + 485, + 410, + 506, + 423 + ], + "score": 1.0, + "content": "as a", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 420, + 459, + 434 + ], + "spans": [ + { + "bbox": [ + 105, + 420, + 153, + 434 + ], + "score": 1.0, + "content": "function of", + "type": "text" + }, + { + "bbox": [ + 153, + 423, + 164, + 432 + ], + "score": 0.87, + "content": "\\mathbf { z } _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 164, + 420, + 312, + 434 + ], + "score": 1.0, + "content": ", before reconcatenating the result. If", + "type": "text" + }, + { + "bbox": [ + 312, + 421, + 361, + 433 + ], + "score": 0.93, + "content": "{ \\bf z } = [ { \\bf z } _ { 0 } , { \\bf z } _ { 1 } ]", + "type": "inline_equation" + }, + { + "bbox": [ + 361, + 420, + 379, + 434 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 379, + 421, + 431, + 433 + ], + "score": 0.95, + "content": "\\mathbf { y } = [ \\mathbf { y } _ { 0 } , \\mathbf { y } _ { 1 } ]", + "type": "inline_equation" + }, + { + "bbox": [ + 431, + 420, + 459, + 434 + ], + "score": 1.0, + "content": "this is", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 23 + }, + { + "type": "interline_equation", + "bbox": [ + 164, + 434, + 446, + 463 + ], + "lines": [ + { + "bbox": [ + 164, + 434, + 446, + 463 + ], + "spans": [ + { + "bbox": [ + 164, + 434, + 446, + 463 + ], + "score": 0.84, + "content": "\\begin{array} { r l r l } & { \\mathbf { y } _ { 0 } = s ( \\mathbf { z } _ { 1 } ) \\cdot \\mathbf { z } _ { 0 } + t ( \\mathbf { z } _ { 1 } ) \\qquad } & & { \\mathbf { z } _ { 0 } = ( \\mathbf { z } _ { 0 } - t ( \\mathbf { y } _ { 1 } ) ) / s ( \\mathbf { y } _ { 1 } ) } \\\\ & { \\mathbf { y } _ { 1 } = \\mathbf { z } _ { 1 } \\qquad } & & { \\mathbf { z } _ { 1 } = \\mathbf { y } _ { 1 } } \\end{array}", + "type": "interline_equation", + "image_path": "bebdfe9f23a2905951991a8339bcd5b58bc56777346c8ebfffd6bfa93bee2726.jpg" + } + ] + } + ], + "index": 26, + "virtual_lines": [ + { + "bbox": [ + 164, + 434, + 446, + 443.6666666666667 + ], + "spans": [], + "index": 25 + }, + { + "bbox": [ + 164, + 443.6666666666667, + 446, + 453.33333333333337 + ], + "spans": [], + "index": 26 + }, + { + "bbox": [ + 164, + 453.33333333333337, + 446, + 463.00000000000006 + ], + "spans": [], + "index": 27 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 464, + 505, + 498 + ], + "lines": [ + { + "bbox": [ + 106, + 464, + 505, + 477 + ], + "spans": [ + { + "bbox": [ + 106, + 464, + 173, + 477 + ], + "score": 1.0, + "content": "Where the scale", + "type": "text" + }, + { + "bbox": [ + 173, + 464, + 189, + 477 + ], + "score": 0.91, + "content": "s ( \\cdot )", + "type": "inline_equation" + }, + { + "bbox": [ + 190, + 464, + 252, + 477 + ], + "score": 1.0, + "content": "and translation", + "type": "text" + }, + { + "bbox": [ + 253, + 464, + 268, + 477 + ], + "score": 0.9, + "content": "t ( \\cdot )", + "type": "inline_equation" + }, + { + "bbox": [ + 268, + 464, + 505, + 477 + ], + "score": 1.0, + "content": "functions can be any function, typically implemented with", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 475, + 505, + 488 + ], + "spans": [ + { + "bbox": [ + 105, + 475, + 505, + 488 + ], + "score": 1.0, + "content": "a CNN. Similar conditioning with normalizing flows has been done in previous works by Mohamed", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 106, + 487, + 292, + 499 + ], + "spans": [ + { + "bbox": [ + 106, + 487, + 292, + 499 + ], + "score": 1.0, + "content": "& Rezende (2015) and Kingma et al. (2016b).", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 29 + }, + { + "type": "text", + "bbox": [ + 107, + 509, + 505, + 543 + ], + "lines": [ + { + "bbox": [ + 106, + 509, + 505, + 522 + ], + "spans": [ + { + "bbox": [ + 106, + 509, + 151, + 522 + ], + "score": 1.0, + "content": "Invertible", + "type": "text" + }, + { + "bbox": [ + 151, + 509, + 176, + 520 + ], + "score": 0.49, + "content": "\\textbf { 1 x 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 176, + 509, + 456, + 522 + ], + "score": 1.0, + "content": "Convolutions Proposed in Kingma & Dhariwal (2018), invertible", + "type": "text" + }, + { + "bbox": [ + 457, + 510, + 483, + 520 + ], + "score": 0.89, + "content": "1 \\times 1", + "type": "inline_equation" + }, + { + "bbox": [ + 483, + 509, + 505, + 522 + ], + "score": 1.0, + "content": "con-", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 106, + 521, + 504, + 532 + ], + "spans": [ + { + "bbox": [ + 106, + 521, + 479, + 532 + ], + "score": 1.0, + "content": "volutions help mix information across channel dimensions. We implement them as regular", + "type": "text" + }, + { + "bbox": [ + 479, + 521, + 504, + 531 + ], + "score": 0.89, + "content": "1 \\times 1", + "type": "inline_equation" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 531, + 412, + 543 + ], + "spans": [ + { + "bbox": [ + 105, + 531, + 412, + 543 + ], + "score": 1.0, + "content": "convolutions and for the inverse, we convolve with the inverse of the kernel.", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 32 + }, + { + "type": "text", + "bbox": [ + 106, + 554, + 504, + 577 + ], + "lines": [ + { + "bbox": [ + 106, + 554, + 505, + 567 + ], + "spans": [ + { + "bbox": [ + 106, + 554, + 505, + 567 + ], + "score": 1.0, + "content": "Squeeze layers Squeeze layers (Dinh et al., 2016) are used to compress the spatial resolution of", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 106, + 566, + 505, + 577 + ], + "spans": [ + { + "bbox": [ + 106, + 566, + 505, + 577 + ], + "score": 1.0, + "content": "activations. These also help with increasing spatial receptive field of pixels in the deeper activations.", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 34.5 + }, + { + "type": "text", + "bbox": [ + 106, + 588, + 505, + 644 + ], + "lines": [ + { + "bbox": [ + 106, + 587, + 505, + 601 + ], + "spans": [ + { + "bbox": [ + 106, + 587, + 437, + 601 + ], + "score": 1.0, + "content": "Split Prior Split priors (Dinh et al., 2016) work by spliting a set of activations", + "type": "text" + }, + { + "bbox": [ + 437, + 591, + 444, + 599 + ], + "score": 0.59, + "content": "\\mathbf { z }", + "type": "inline_equation" + }, + { + "bbox": [ + 444, + 587, + 505, + 601 + ], + "score": 1.0, + "content": "into two com-", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 599, + 504, + 613 + ], + "spans": [ + { + "bbox": [ + 105, + 599, + 141, + 613 + ], + "score": 1.0, + "content": "ponents", + "type": "text" + }, + { + "bbox": [ + 141, + 601, + 153, + 610 + ], + "score": 0.82, + "content": "\\mathbf { z } _ { 0 }", + "type": "inline_equation" + }, + { + "bbox": [ + 153, + 599, + 173, + 613 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 174, + 601, + 185, + 610 + ], + "score": 0.83, + "content": "\\mathbf { z } _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 185, + 599, + 274, + 613 + ], + "score": 1.0, + "content": ". We then condition", + "type": "text" + }, + { + "bbox": [ + 274, + 601, + 285, + 610 + ], + "score": 0.84, + "content": "\\mathbf { z } _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 285, + 599, + 302, + 613 + ], + "score": 1.0, + "content": "on", + "type": "text" + }, + { + "bbox": [ + 302, + 601, + 313, + 611 + ], + "score": 0.84, + "content": "\\mathbf { z } _ { 0 }", + "type": "inline_equation" + }, + { + "bbox": [ + 313, + 599, + 454, + 613 + ], + "score": 1.0, + "content": "using a simple base density e.g.", + "type": "text" + }, + { + "bbox": [ + 455, + 599, + 504, + 612 + ], + "score": 0.91, + "content": "p ( \\mathbf { z } _ { 1 } | \\mathbf { z } _ { 0 } ) =", + "type": "inline_equation" + } + ], + "index": 37 + }, + { + "bbox": [ + 107, + 610, + 505, + 623 + ], + "spans": [ + { + "bbox": [ + 107, + 610, + 195, + 622 + ], + "score": 0.92, + "content": "\\mathbf { \\bar { \\mathcal { N } } } ( \\mathbf { z } _ { 1 } ; \\mu ( \\mathbf { z } _ { 0 } ) , \\sigma ^ { 2 } ( \\mathbf { z } _ { 0 } ) )", + "type": "inline_equation" + }, + { + "bbox": [ + 195, + 610, + 226, + 623 + ], + "score": 1.0, + "content": ", where", + "type": "text" + }, + { + "bbox": [ + 226, + 610, + 244, + 622 + ], + "score": 0.9, + "content": "\\mu ( \\cdot )", + "type": "inline_equation" + }, + { + "bbox": [ + 244, + 610, + 263, + 623 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 263, + 610, + 285, + 622 + ], + "score": 0.91, + "content": "\\sigma ^ { 2 } ( \\cdot )", + "type": "inline_equation" + }, + { + "bbox": [ + 286, + 610, + 439, + 623 + ], + "score": 1.0, + "content": "are neural networks. The component", + "type": "text" + }, + { + "bbox": [ + 439, + 612, + 451, + 622 + ], + "score": 0.86, + "content": "\\mathbf { z } _ { 0 }", + "type": "inline_equation" + }, + { + "bbox": [ + 451, + 610, + 505, + 623 + ], + "score": 1.0, + "content": "can be mod-", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 621, + 506, + 634 + ], + "spans": [ + { + "bbox": [ + 105, + 621, + 506, + 634 + ], + "score": 1.0, + "content": "eled by further flow layers. This prior, is useful for modeling hierarchical correlations between", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 106, + 632, + 408, + 645 + ], + "spans": [ + { + "bbox": [ + 106, + 632, + 322, + 645 + ], + "score": 1.0, + "content": "dimensions, and also helps reduce computation, since", + "type": "text" + }, + { + "bbox": [ + 322, + 634, + 333, + 643 + ], + "score": 0.85, + "content": "\\mathbf { z } _ { 0 }", + "type": "inline_equation" + }, + { + "bbox": [ + 334, + 632, + 408, + 645 + ], + "score": 1.0, + "content": "is reduced in size.", + "type": "text" + } + ], + "index": 40 + } + ], + "index": 38 + }, + { + "type": "text", + "bbox": [ + 106, + 655, + 505, + 688 + ], + "lines": [ + { + "bbox": [ + 106, + 654, + 505, + 668 + ], + "spans": [ + { + "bbox": [ + 106, + 654, + 505, + 668 + ], + "score": 1.0, + "content": "Variational dequantization When modeling discrete data, Theis et al. (2016) introduced the con-", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 106, + 667, + 505, + 679 + ], + "spans": [ + { + "bbox": [ + 106, + 667, + 450, + 679 + ], + "score": 1.0, + "content": "cept of dequantization. For this, they modeled the probability mass function over", + "type": "text" + }, + { + "bbox": [ + 450, + 668, + 458, + 678 + ], + "score": 0.69, + "content": "\\mathbf { y }", + "type": "inline_equation" + }, + { + "bbox": [ + 458, + 667, + 505, + 679 + ], + "score": 1.0, + "content": "as a latent", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 106, + 678, + 168, + 688 + ], + "spans": [ + { + "bbox": [ + 106, + 678, + 168, + 688 + ], + "score": 1.0, + "content": "variable model", + "type": "text" + } + ], + "index": 43 + } + ], + "index": 42 + }, + { + "type": "interline_equation", + "bbox": [ + 205, + 688, + 406, + 715 + ], + "lines": [ + { + "bbox": [ + 205, + 688, + 406, + 715 + ], + "spans": [ + { + "bbox": [ + 205, + 688, + 406, + 715 + ], + "score": 0.93, + "content": "P _ { \\mathrm { m o d e l } } ( \\mathbf { y } ) = \\int _ { \\mathcal { V } } P ( \\mathbf { y } | \\mathbf { v } ) p ( \\mathbf { v } ) \\mathrm { d } \\mathbf { v } = \\int _ { \\mathcal { V } } p ( \\mathbf { y } , \\mathbf { v } ) \\mathrm { d } \\mathbf { v }", + "type": "interline_equation", + "image_path": "b5893facc344b69d339884288e9a3dd38942be78703c2aec6fa9a0591a50456f.jpg" + } + ] + } + ], + "index": 44.5, + "virtual_lines": [ + { + "bbox": [ + 205, + 688, + 406, + 701.5 + ], + "spans": [], + "index": 44 + }, + { + "bbox": [ + 205, + 701.5, + 406, + 715.0 + ], + "spans": [], + "index": 45 + } + ] + } + ], + "page_idx": 1, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 120, + 721, + 252, + 732 + ], + "lines": [ + { + "bbox": [ + 119, + 719, + 252, + 734 + ], + "spans": [ + { + "bbox": [ + 119, + 719, + 252, + 734 + ], + "score": 1.0, + "content": "1We can also use injective mappings", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 107, + 27, + 308, + 37 + ], + "lines": [ + { + "bbox": [ + 107, + 26, + 308, + 38 + ], + "spans": [ + { + "bbox": [ + 107, + 26, + 308, + 38 + ], + "score": 1.0, + "content": "Under review as a conference paper at ICLR 2020", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 302, + 751, + 309, + 760 + ], + "lines": [ + { + "bbox": [ + 301, + 750, + 310, + 763 + ], + "spans": [ + { + "bbox": [ + 301, + 750, + 310, + 763 + ], + "score": 1.0, + "content": "2", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 107, + 82, + 505, + 127 + ], + "lines": [ + { + "bbox": [ + 105, + 82, + 505, + 95 + ], + "spans": [ + { + "bbox": [ + 105, + 82, + 505, + 95 + ], + "score": 1.0, + "content": "by conditioning the prior and the invertible mapping on the input x. In particular, we apply condi-", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 93, + 506, + 106 + ], + "spans": [ + { + "bbox": [ + 105, + 93, + 506, + 106 + ], + "score": 1.0, + "content": "tional flows to super-resolution (Wang et al., 2018) and vessel segmentation (Staal et al., 2004). We", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 104, + 505, + 117 + ], + "spans": [ + { + "bbox": [ + 105, + 104, + 505, + 117 + ], + "score": 1.0, + "content": "evaluate their performance gains on multivariate prediction tasks along side architecturally-matched", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 115, + 456, + 128 + ], + "spans": [ + { + "bbox": [ + 105, + 115, + 456, + 128 + ], + "score": 1.0, + "content": "factored baselines by comparing likelihood and application specific evaluation metrics.", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 1.5, + "bbox_fs": [ + 105, + 82, + 506, + 128 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 142, + 200, + 155 + ], + "lines": [ + { + "bbox": [ + 104, + 140, + 202, + 158 + ], + "spans": [ + { + "bbox": [ + 104, + 140, + 202, + 158 + ], + "score": 1.0, + "content": "2 BACKGROUND", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 4 + }, + { + "type": "text", + "bbox": [ + 107, + 166, + 505, + 200 + ], + "lines": [ + { + "bbox": [ + 105, + 166, + 505, + 179 + ], + "spans": [ + { + "bbox": [ + 105, + 166, + 505, + 179 + ], + "score": 1.0, + "content": "In the following, we present the relevant background material on normalizing flows and structured", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 177, + 505, + 190 + ], + "spans": [ + { + "bbox": [ + 105, + 177, + 505, + 190 + ], + "score": 1.0, + "content": "prediction. This section covers the change of variables formula, invertible modules, variational", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 189, + 336, + 202 + ], + "spans": [ + { + "bbox": [ + 105, + 189, + 336, + 202 + ], + "score": 1.0, + "content": "dequantization and conventional likelihood optimization.", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 6, + "bbox_fs": [ + 105, + 166, + 505, + 202 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 213, + 228, + 225 + ], + "lines": [ + { + "bbox": [ + 105, + 212, + 229, + 226 + ], + "spans": [ + { + "bbox": [ + 105, + 212, + 229, + 226 + ], + "score": 1.0, + "content": "2.1 NORMALIZING FLOWS", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 8 + }, + { + "type": "text", + "bbox": [ + 106, + 233, + 505, + 278 + ], + "lines": [ + { + "bbox": [ + 105, + 233, + 505, + 246 + ], + "spans": [ + { + "bbox": [ + 105, + 233, + 505, + 246 + ], + "score": 1.0, + "content": "A standard NF in continuous space is based on a simple change of variables formula. Given two", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 244, + 505, + 257 + ], + "spans": [ + { + "bbox": [ + 105, + 244, + 213, + 257 + ], + "score": 1.0, + "content": "spaces of equal dimension", + "type": "text" + }, + { + "bbox": [ + 213, + 245, + 222, + 254 + ], + "score": 0.81, + "content": "\\mathcal { Z }", + "type": "inline_equation" + }, + { + "bbox": [ + 222, + 244, + 239, + 257 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 240, + 245, + 248, + 255 + ], + "score": 0.85, + "content": "\\mathcal { V }", + "type": "inline_equation" + }, + { + "bbox": [ + 249, + 244, + 464, + 257 + ], + "score": 1.0, + "content": "; a once-differentiable, parametric, bijective1 mapping", + "type": "text" + }, + { + "bbox": [ + 464, + 245, + 505, + 257 + ], + "score": 0.9, + "content": "f _ { \\phi } : \\mathcal { V } ", + "type": "inline_equation" + } + ], + "index": 10 + }, + { + "bbox": [ + 107, + 255, + 506, + 268 + ], + "spans": [ + { + "bbox": [ + 107, + 256, + 115, + 266 + ], + "score": 0.77, + "content": "\\mathcal { Z }", + "type": "inline_equation" + }, + { + "bbox": [ + 116, + 255, + 147, + 268 + ], + "score": 1.0, + "content": ", where", + "type": "text" + }, + { + "bbox": [ + 148, + 256, + 155, + 267 + ], + "score": 0.84, + "content": "\\phi", + "type": "inline_equation" + }, + { + "bbox": [ + 155, + 255, + 247, + 268 + ], + "score": 1.0, + "content": "are the parameters of", + "type": "text" + }, + { + "bbox": [ + 247, + 256, + 254, + 267 + ], + "score": 0.86, + "content": "f", + "type": "inline_equation" + }, + { + "bbox": [ + 254, + 255, + 356, + 268 + ], + "score": 1.0, + "content": "; and a prior distribution", + "type": "text" + }, + { + "bbox": [ + 357, + 255, + 382, + 268 + ], + "score": 0.92, + "content": "p _ { Z } ( \\mathbf { z } )", + "type": "inline_equation" + }, + { + "bbox": [ + 382, + 255, + 506, + 268 + ], + "score": 1.0, + "content": ", we can model a complicated", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 265, + 196, + 280 + ], + "spans": [ + { + "bbox": [ + 105, + 265, + 155, + 280 + ], + "score": 1.0, + "content": "distribution", + "type": "text" + }, + { + "bbox": [ + 155, + 267, + 182, + 279 + ], + "score": 0.91, + "content": "p _ { Y } ( \\mathbf { y } )", + "type": "inline_equation" + }, + { + "bbox": [ + 182, + 265, + 196, + 280 + ], + "score": 1.0, + "content": "as", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 10.5, + "bbox_fs": [ + 105, + 233, + 506, + 280 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 240, + 280, + 371, + 308 + ], + "lines": [ + { + "bbox": [ + 240, + 280, + 371, + 308 + ], + "spans": [ + { + "bbox": [ + 240, + 280, + 371, + 308 + ], + "score": 0.94, + "content": "p _ { Y } ( \\mathbf { y } ) = p _ { Z } ( f _ { \\phi } ( \\mathbf { y } ) ) \\left. \\frac { \\partial f _ { \\phi } ( \\mathbf { y } ) } { \\partial \\mathbf { y } } \\right. .", + "type": "interline_equation", + "image_path": "7036992575acd5e1200fcc3a38b41ba09b6ad4580fe60482f5c9e193539a34c7.jpg" + } + ] + } + ], + "index": 13.5, + "virtual_lines": [ + { + "bbox": [ + 240, + 280, + 371, + 294.0 + ], + "spans": [], + "index": 13 + }, + { + "bbox": [ + 240, + 294.0, + 371, + 308.0 + ], + "spans": [], + "index": 14 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 309, + 505, + 387 + ], + "lines": [ + { + "bbox": [ + 106, + 309, + 506, + 323 + ], + "spans": [ + { + "bbox": [ + 106, + 309, + 145, + 323 + ], + "score": 1.0, + "content": "The term", + "type": "text" + }, + { + "bbox": [ + 145, + 310, + 199, + 322 + ], + "score": 0.92, + "content": "| \\partial f _ { \\phi } ( \\mathbf { y } ) / \\partial \\mathbf { y } |", + "type": "inline_equation" + }, + { + "bbox": [ + 199, + 309, + 324, + 323 + ], + "score": 1.0, + "content": "is the Jacobian determinant of", + "type": "text" + }, + { + "bbox": [ + 324, + 310, + 335, + 322 + ], + "score": 0.89, + "content": "f _ { \\phi }", + "type": "inline_equation" + }, + { + "bbox": [ + 335, + 309, + 388, + 323 + ], + "score": 1.0, + "content": ", evaluated at", + "type": "text" + }, + { + "bbox": [ + 388, + 312, + 396, + 322 + ], + "score": 0.34, + "content": "\\mathbf { y }", + "type": "inline_equation" + }, + { + "bbox": [ + 396, + 309, + 506, + 323 + ], + "score": 1.0, + "content": "and it accounts for volume", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 320, + 505, + 335 + ], + "spans": [ + { + "bbox": [ + 105, + 320, + 190, + 335 + ], + "score": 1.0, + "content": "changes induced by", + "type": "text" + }, + { + "bbox": [ + 190, + 322, + 201, + 334 + ], + "score": 0.88, + "content": "f _ { \\phi }", + "type": "inline_equation" + }, + { + "bbox": [ + 201, + 320, + 288, + 335 + ], + "score": 1.0, + "content": ". The transformation", + "type": "text" + }, + { + "bbox": [ + 288, + 322, + 299, + 333 + ], + "score": 0.89, + "content": "f _ { \\phi }", + "type": "inline_equation" + }, + { + "bbox": [ + 300, + 320, + 488, + 335 + ], + "score": 1.0, + "content": "introduces correlations and multi-modality in", + "type": "text" + }, + { + "bbox": [ + 488, + 323, + 501, + 333 + ], + "score": 0.79, + "content": "p _ { Y }", + "type": "inline_equation" + }, + { + "bbox": [ + 501, + 320, + 505, + 335 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 331, + 506, + 345 + ], + "spans": [ + { + "bbox": [ + 105, + 331, + 443, + 345 + ], + "score": 1.0, + "content": "The main challenge in the field of normalizing flows is designing the transformation", + "type": "text" + }, + { + "bbox": [ + 443, + 332, + 454, + 344 + ], + "score": 0.88, + "content": "f _ { \\phi }", + "type": "inline_equation" + }, + { + "bbox": [ + 455, + 331, + 506, + 345 + ], + "score": 1.0, + "content": ". It has to be", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 106, + 343, + 505, + 356 + ], + "spans": [ + { + "bbox": [ + 106, + 344, + 112, + 354 + ], + "score": 0.37, + "content": "i ,", + "type": "inline_equation" + }, + { + "bbox": [ + 113, + 343, + 155, + 356 + ], + "score": 1.0, + "content": "bijective,", + "type": "text" + }, + { + "bbox": [ + 155, + 344, + 162, + 353 + ], + "score": 0.4, + "content": "i i _ { . }", + "type": "inline_equation" + }, + { + "bbox": [ + 163, + 343, + 505, + 356 + ], + "score": 1.0, + "content": ") have an efficient and tractable Jacobian determinant, iii) be from a ‘flexible’ model", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 353, + 505, + 367 + ], + "spans": [ + { + "bbox": [ + 105, + 353, + 183, + 367 + ], + "score": 1.0, + "content": "class. In addition,", + "type": "text" + }, + { + "bbox": [ + 183, + 355, + 192, + 365 + ], + "score": 0.54, + "content": "i \\nu _ { . }", + "type": "inline_equation" + }, + { + "bbox": [ + 192, + 353, + 505, + 367 + ], + "score": 1.0, + "content": ") for fast sampling the inverse needs to be efficiently computable. Below we", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 364, + 505, + 377 + ], + "spans": [ + { + "bbox": [ + 105, + 364, + 505, + 377 + ], + "score": 1.0, + "content": "briefly state which invertible modules are used in our architectures, obeying the aforementioned", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 376, + 137, + 389 + ], + "spans": [ + { + "bbox": [ + 105, + 376, + 137, + 389 + ], + "score": 1.0, + "content": "points.", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 18, + "bbox_fs": [ + 105, + 309, + 506, + 389 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 398, + 505, + 433 + ], + "lines": [ + { + "bbox": [ + 106, + 397, + 505, + 412 + ], + "spans": [ + { + "bbox": [ + 106, + 397, + 505, + 412 + ], + "score": 1.0, + "content": "Coupling layers Affine coupling layers (Dinh et al., 2016) are invertible, nonlinear layers. They", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 106, + 410, + 506, + 423 + ], + "spans": [ + { + "bbox": [ + 106, + 410, + 216, + 423 + ], + "score": 1.0, + "content": "work by splitting the input", + "type": "text" + }, + { + "bbox": [ + 217, + 412, + 223, + 420 + ], + "score": 0.54, + "content": "\\mathbf { z }", + "type": "inline_equation" + }, + { + "bbox": [ + 224, + 410, + 312, + 423 + ], + "score": 1.0, + "content": "into two components", + "type": "text" + }, + { + "bbox": [ + 312, + 412, + 323, + 421 + ], + "score": 0.85, + "content": "\\mathbf { z } _ { 0 }", + "type": "inline_equation" + }, + { + "bbox": [ + 323, + 410, + 342, + 423 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 342, + 411, + 353, + 421 + ], + "score": 0.86, + "content": "\\mathbf { z } _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 353, + 410, + 474, + 423 + ], + "score": 1.0, + "content": "and nonlinearly transforming", + "type": "text" + }, + { + "bbox": [ + 474, + 412, + 485, + 421 + ], + "score": 0.84, + "content": "\\mathbf { z } _ { 0 }", + "type": "inline_equation" + }, + { + "bbox": [ + 485, + 410, + 506, + 423 + ], + "score": 1.0, + "content": "as a", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 420, + 459, + 434 + ], + "spans": [ + { + "bbox": [ + 105, + 420, + 153, + 434 + ], + "score": 1.0, + "content": "function of", + "type": "text" + }, + { + "bbox": [ + 153, + 423, + 164, + 432 + ], + "score": 0.87, + "content": "\\mathbf { z } _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 164, + 420, + 312, + 434 + ], + "score": 1.0, + "content": ", before reconcatenating the result. If", + "type": "text" + }, + { + "bbox": [ + 312, + 421, + 361, + 433 + ], + "score": 0.93, + "content": "{ \\bf z } = [ { \\bf z } _ { 0 } , { \\bf z } _ { 1 } ]", + "type": "inline_equation" + }, + { + "bbox": [ + 361, + 420, + 379, + 434 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 379, + 421, + 431, + 433 + ], + "score": 0.95, + "content": "\\mathbf { y } = [ \\mathbf { y } _ { 0 } , \\mathbf { y } _ { 1 } ]", + "type": "inline_equation" + }, + { + "bbox": [ + 431, + 420, + 459, + 434 + ], + "score": 1.0, + "content": "this is", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 23, + "bbox_fs": [ + 105, + 397, + 506, + 434 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 164, + 434, + 446, + 463 + ], + "lines": [ + { + "bbox": [ + 164, + 434, + 446, + 463 + ], + "spans": [ + { + "bbox": [ + 164, + 434, + 446, + 463 + ], + "score": 0.84, + "content": "\\begin{array} { r l r l } & { \\mathbf { y } _ { 0 } = s ( \\mathbf { z } _ { 1 } ) \\cdot \\mathbf { z } _ { 0 } + t ( \\mathbf { z } _ { 1 } ) \\qquad } & & { \\mathbf { z } _ { 0 } = ( \\mathbf { z } _ { 0 } - t ( \\mathbf { y } _ { 1 } ) ) / s ( \\mathbf { y } _ { 1 } ) } \\\\ & { \\mathbf { y } _ { 1 } = \\mathbf { z } _ { 1 } \\qquad } & & { \\mathbf { z } _ { 1 } = \\mathbf { y } _ { 1 } } \\end{array}", + "type": "interline_equation", + "image_path": "bebdfe9f23a2905951991a8339bcd5b58bc56777346c8ebfffd6bfa93bee2726.jpg" + } + ] + } + ], + "index": 26, + "virtual_lines": [ + { + "bbox": [ + 164, + 434, + 446, + 443.6666666666667 + ], + "spans": [], + "index": 25 + }, + { + "bbox": [ + 164, + 443.6666666666667, + 446, + 453.33333333333337 + ], + "spans": [], + "index": 26 + }, + { + "bbox": [ + 164, + 453.33333333333337, + 446, + 463.00000000000006 + ], + "spans": [], + "index": 27 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 464, + 505, + 498 + ], + "lines": [ + { + "bbox": [ + 106, + 464, + 505, + 477 + ], + "spans": [ + { + "bbox": [ + 106, + 464, + 173, + 477 + ], + "score": 1.0, + "content": "Where the scale", + "type": "text" + }, + { + "bbox": [ + 173, + 464, + 189, + 477 + ], + "score": 0.91, + "content": "s ( \\cdot )", + "type": "inline_equation" + }, + { + "bbox": [ + 190, + 464, + 252, + 477 + ], + "score": 1.0, + "content": "and translation", + "type": "text" + }, + { + "bbox": [ + 253, + 464, + 268, + 477 + ], + "score": 0.9, + "content": "t ( \\cdot )", + "type": "inline_equation" + }, + { + "bbox": [ + 268, + 464, + 505, + 477 + ], + "score": 1.0, + "content": "functions can be any function, typically implemented with", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 475, + 505, + 488 + ], + "spans": [ + { + "bbox": [ + 105, + 475, + 505, + 488 + ], + "score": 1.0, + "content": "a CNN. Similar conditioning with normalizing flows has been done in previous works by Mohamed", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 106, + 487, + 292, + 499 + ], + "spans": [ + { + "bbox": [ + 106, + 487, + 292, + 499 + ], + "score": 1.0, + "content": "& Rezende (2015) and Kingma et al. (2016b).", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 29, + "bbox_fs": [ + 105, + 464, + 505, + 499 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 509, + 505, + 543 + ], + "lines": [ + { + "bbox": [ + 106, + 509, + 505, + 522 + ], + "spans": [ + { + "bbox": [ + 106, + 509, + 151, + 522 + ], + "score": 1.0, + "content": "Invertible", + "type": "text" + }, + { + "bbox": [ + 151, + 509, + 176, + 520 + ], + "score": 0.49, + "content": "\\textbf { 1 x 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 176, + 509, + 456, + 522 + ], + "score": 1.0, + "content": "Convolutions Proposed in Kingma & Dhariwal (2018), invertible", + "type": "text" + }, + { + "bbox": [ + 457, + 510, + 483, + 520 + ], + "score": 0.89, + "content": "1 \\times 1", + "type": "inline_equation" + }, + { + "bbox": [ + 483, + 509, + 505, + 522 + ], + "score": 1.0, + "content": "con-", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 106, + 521, + 504, + 532 + ], + "spans": [ + { + "bbox": [ + 106, + 521, + 479, + 532 + ], + "score": 1.0, + "content": "volutions help mix information across channel dimensions. We implement them as regular", + "type": "text" + }, + { + "bbox": [ + 479, + 521, + 504, + 531 + ], + "score": 0.89, + "content": "1 \\times 1", + "type": "inline_equation" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 531, + 412, + 543 + ], + "spans": [ + { + "bbox": [ + 105, + 531, + 412, + 543 + ], + "score": 1.0, + "content": "convolutions and for the inverse, we convolve with the inverse of the kernel.", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 32, + "bbox_fs": [ + 105, + 509, + 505, + 543 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 554, + 504, + 577 + ], + "lines": [ + { + "bbox": [ + 106, + 554, + 505, + 567 + ], + "spans": [ + { + "bbox": [ + 106, + 554, + 505, + 567 + ], + "score": 1.0, + "content": "Squeeze layers Squeeze layers (Dinh et al., 2016) are used to compress the spatial resolution of", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 106, + 566, + 505, + 577 + ], + "spans": [ + { + "bbox": [ + 106, + 566, + 505, + 577 + ], + "score": 1.0, + "content": "activations. These also help with increasing spatial receptive field of pixels in the deeper activations.", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 34.5, + "bbox_fs": [ + 106, + 554, + 505, + 577 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 588, + 505, + 644 + ], + "lines": [ + { + "bbox": [ + 106, + 587, + 505, + 601 + ], + "spans": [ + { + "bbox": [ + 106, + 587, + 437, + 601 + ], + "score": 1.0, + "content": "Split Prior Split priors (Dinh et al., 2016) work by spliting a set of activations", + "type": "text" + }, + { + "bbox": [ + 437, + 591, + 444, + 599 + ], + "score": 0.59, + "content": "\\mathbf { z }", + "type": "inline_equation" + }, + { + "bbox": [ + 444, + 587, + 505, + 601 + ], + "score": 1.0, + "content": "into two com-", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 599, + 504, + 613 + ], + "spans": [ + { + "bbox": [ + 105, + 599, + 141, + 613 + ], + "score": 1.0, + "content": "ponents", + "type": "text" + }, + { + "bbox": [ + 141, + 601, + 153, + 610 + ], + "score": 0.82, + "content": "\\mathbf { z } _ { 0 }", + "type": "inline_equation" + }, + { + "bbox": [ + 153, + 599, + 173, + 613 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 174, + 601, + 185, + 610 + ], + "score": 0.83, + "content": "\\mathbf { z } _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 185, + 599, + 274, + 613 + ], + "score": 1.0, + "content": ". We then condition", + "type": "text" + }, + { + "bbox": [ + 274, + 601, + 285, + 610 + ], + "score": 0.84, + "content": "\\mathbf { z } _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 285, + 599, + 302, + 613 + ], + "score": 1.0, + "content": "on", + "type": "text" + }, + { + "bbox": [ + 302, + 601, + 313, + 611 + ], + "score": 0.84, + "content": "\\mathbf { z } _ { 0 }", + "type": "inline_equation" + }, + { + "bbox": [ + 313, + 599, + 454, + 613 + ], + "score": 1.0, + "content": "using a simple base density e.g.", + "type": "text" + }, + { + "bbox": [ + 455, + 599, + 504, + 612 + ], + "score": 0.91, + "content": "p ( \\mathbf { z } _ { 1 } | \\mathbf { z } _ { 0 } ) =", + "type": "inline_equation" + } + ], + "index": 37 + }, + { + "bbox": [ + 107, + 610, + 505, + 623 + ], + "spans": [ + { + "bbox": [ + 107, + 610, + 195, + 622 + ], + "score": 0.92, + "content": "\\mathbf { \\bar { \\mathcal { N } } } ( \\mathbf { z } _ { 1 } ; \\mu ( \\mathbf { z } _ { 0 } ) , \\sigma ^ { 2 } ( \\mathbf { z } _ { 0 } ) )", + "type": "inline_equation" + }, + { + "bbox": [ + 195, + 610, + 226, + 623 + ], + "score": 1.0, + "content": ", where", + "type": "text" + }, + { + "bbox": [ + 226, + 610, + 244, + 622 + ], + "score": 0.9, + "content": "\\mu ( \\cdot )", + "type": "inline_equation" + }, + { + "bbox": [ + 244, + 610, + 263, + 623 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 263, + 610, + 285, + 622 + ], + "score": 0.91, + "content": "\\sigma ^ { 2 } ( \\cdot )", + "type": "inline_equation" + }, + { + "bbox": [ + 286, + 610, + 439, + 623 + ], + "score": 1.0, + "content": "are neural networks. The component", + "type": "text" + }, + { + "bbox": [ + 439, + 612, + 451, + 622 + ], + "score": 0.86, + "content": "\\mathbf { z } _ { 0 }", + "type": "inline_equation" + }, + { + "bbox": [ + 451, + 610, + 505, + 623 + ], + "score": 1.0, + "content": "can be mod-", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 621, + 506, + 634 + ], + "spans": [ + { + "bbox": [ + 105, + 621, + 506, + 634 + ], + "score": 1.0, + "content": "eled by further flow layers. This prior, is useful for modeling hierarchical correlations between", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 106, + 632, + 408, + 645 + ], + "spans": [ + { + "bbox": [ + 106, + 632, + 322, + 645 + ], + "score": 1.0, + "content": "dimensions, and also helps reduce computation, since", + "type": "text" + }, + { + "bbox": [ + 322, + 634, + 333, + 643 + ], + "score": 0.85, + "content": "\\mathbf { z } _ { 0 }", + "type": "inline_equation" + }, + { + "bbox": [ + 334, + 632, + 408, + 645 + ], + "score": 1.0, + "content": "is reduced in size.", + "type": "text" + } + ], + "index": 40 + } + ], + "index": 38, + "bbox_fs": [ + 105, + 587, + 506, + 645 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 655, + 505, + 688 + ], + "lines": [ + { + "bbox": [ + 106, + 654, + 505, + 668 + ], + "spans": [ + { + "bbox": [ + 106, + 654, + 505, + 668 + ], + "score": 1.0, + "content": "Variational dequantization When modeling discrete data, Theis et al. (2016) introduced the con-", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 106, + 667, + 505, + 679 + ], + "spans": [ + { + "bbox": [ + 106, + 667, + 450, + 679 + ], + "score": 1.0, + "content": "cept of dequantization. For this, they modeled the probability mass function over", + "type": "text" + }, + { + "bbox": [ + 450, + 668, + 458, + 678 + ], + "score": 0.69, + "content": "\\mathbf { y }", + "type": "inline_equation" + }, + { + "bbox": [ + 458, + 667, + 505, + 679 + ], + "score": 1.0, + "content": "as a latent", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 106, + 678, + 168, + 688 + ], + "spans": [ + { + "bbox": [ + 106, + 678, + 168, + 688 + ], + "score": 1.0, + "content": "variable model", + "type": "text" + } + ], + "index": 43 + } + ], + "index": 42, + "bbox_fs": [ + 106, + 654, + 505, + 688 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 205, + 688, + 406, + 715 + ], + "lines": [ + { + "bbox": [ + 205, + 688, + 406, + 715 + ], + "spans": [ + { + "bbox": [ + 205, + 688, + 406, + 715 + ], + "score": 0.93, + "content": "P _ { \\mathrm { m o d e l } } ( \\mathbf { y } ) = \\int _ { \\mathcal { V } } P ( \\mathbf { y } | \\mathbf { v } ) p ( \\mathbf { v } ) \\mathrm { d } \\mathbf { v } = \\int _ { \\mathcal { V } } p ( \\mathbf { y } , \\mathbf { v } ) \\mathrm { d } \\mathbf { v }", + "type": "interline_equation", + "image_path": "b5893facc344b69d339884288e9a3dd38942be78703c2aec6fa9a0591a50456f.jpg" + } + ] + } + ], + "index": 44.5, + "virtual_lines": [ + { + "bbox": [ + 205, + 688, + 406, + 701.5 + ], + "spans": [], + "index": 44 + }, + { + "bbox": [ + 205, + 701.5, + 406, + 715.0 + ], + "spans": [], + "index": 45 + } + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 106, + 81, + 505, + 160 + ], + "lines": [ + { + "bbox": [ + 106, + 82, + 505, + 95 + ], + "spans": [ + { + "bbox": [ + 106, + 82, + 213, + 95 + ], + "score": 1.0, + "content": "where the latent variables", + "type": "text" + }, + { + "bbox": [ + 213, + 83, + 243, + 93 + ], + "score": 0.9, + "content": "\\textbf { v } \\in { \\mathcal { V } }", + "type": "inline_equation" + }, + { + "bbox": [ + 243, + 82, + 505, + 95 + ], + "score": 1.0, + "content": "are continuous-valued. This is a convenient model to use, since", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 93, + 506, + 106 + ], + "spans": [ + { + "bbox": [ + 105, + 93, + 158, + 106 + ], + "score": 1.0, + "content": "the marginal", + "type": "text" + }, + { + "bbox": [ + 159, + 93, + 178, + 105 + ], + "score": 0.89, + "content": "p ( \\mathbf { v } )", + "type": "inline_equation" + }, + { + "bbox": [ + 179, + 93, + 506, + 106 + ], + "score": 1.0, + "content": ", living on a continuous sample space, can be modelled with a continuous NF. The", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 104, + 505, + 117 + ], + "spans": [ + { + "bbox": [ + 105, + 104, + 154, + 117 + ], + "score": 1.0, + "content": "distribution", + "type": "text" + }, + { + "bbox": [ + 154, + 105, + 186, + 116 + ], + "score": 0.91, + "content": "P ( \\mathbf { y } | \\mathbf { v } )", + "type": "inline_equation" + }, + { + "bbox": [ + 186, + 104, + 436, + 117 + ], + "score": 1.0, + "content": "is known as the quantizer and is typically an indicator function", + "type": "text" + }, + { + "bbox": [ + 437, + 104, + 505, + 116 + ], + "score": 0.9, + "content": "P ( \\mathbf { y } | \\mathbf { v } ) = \\mathbb { I } [ \\mathbf { v } \\in", + "type": "inline_equation" + } + ], + "index": 2 + }, + { + "bbox": [ + 106, + 113, + 504, + 130 + ], + "spans": [ + { + "bbox": [ + 106, + 115, + 158, + 127 + ], + "score": 0.92, + "content": "\\mathbf { y } + [ 0 , 1 ) ^ { D } ]", + "type": "inline_equation" + }, + { + "bbox": [ + 158, + 113, + 298, + 130 + ], + "score": 1.0, + "content": ". Other works (Hoogeboom et al.,", + "type": "text" + }, + { + "bbox": [ + 299, + 115, + 325, + 126 + ], + "score": 0.34, + "content": "2 0 1 9 \\mathrm { a }", + "type": "inline_equation" + }, + { + "bbox": [ + 325, + 113, + 464, + 130 + ], + "score": 1.0, + "content": "; Tran et al., 2019) directly model", + "type": "text" + }, + { + "bbox": [ + 464, + 116, + 504, + 127 + ], + "score": 0.89, + "content": "P _ { \\mathrm { m o d e l } } ( \\mathbf { y } )", + "type": "inline_equation" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 126, + 506, + 139 + ], + "spans": [ + { + "bbox": [ + 105, + 126, + 506, + 139 + ], + "score": 1.0, + "content": "with a discrete-valued flow, but these are known to be difficult to optimize. As an extension of", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 137, + 505, + 150 + ], + "spans": [ + { + "bbox": [ + 105, + 137, + 385, + 150 + ], + "score": 1.0, + "content": "dequantization, Ho et al. (2019) introduced a variational distribution", + "type": "text" + }, + { + "bbox": [ + 385, + 137, + 414, + 149 + ], + "score": 0.92, + "content": "\\bar { \\bf q } ( { \\bf v } | { \\bf y } )", + "type": "inline_equation" + }, + { + "bbox": [ + 415, + 137, + 505, + 150 + ], + "score": 1.0, + "content": ", called a dequantizer,", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 148, + 456, + 161 + ], + "spans": [ + { + "bbox": [ + 105, + 148, + 456, + 161 + ], + "score": 1.0, + "content": "and write a lower bound on the data log-likelihood using Jensen’s inequality as follows", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 3 + }, + { + "type": "interline_equation", + "bbox": [ + 140, + 165, + 470, + 220 + ], + "lines": [ + { + "bbox": [ + 140, + 165, + 470, + 220 + ], + "spans": [ + { + "bbox": [ + 140, + 165, + 470, + 220 + ], + "score": 0.95, + "content": "\\begin{array} { r l } & { \\mathbb { E } _ { P _ { \\mathrm { d a t a } } ( \\mathbf { y } ) } \\log P _ { \\mathrm { m o d e l } } ( \\mathbf { y } ) = \\mathbb { E } _ { P _ { \\mathrm { d a t a } } ( \\mathbf { y } ) } \\log \\displaystyle \\int p ( \\mathbf { y } , \\mathbf { v } ) \\mathrm { d } \\mathbf { v } } \\\\ & { \\qquad = \\mathbb { E } _ { P _ { \\mathrm { d a t a } } ( \\mathbf { y } ) } \\log \\displaystyle \\int \\frac { q ( \\mathbf { v } | \\mathbf { y } ) } { q ( \\mathbf { v } | \\mathbf { y } ) } p ( \\mathbf { y } , \\mathbf { v } ) \\mathrm { d } \\mathbf { v } \\geq \\mathbb { E } _ { P _ { \\mathrm { d a t a } } ( \\mathbf { y } ) } \\int q ( \\mathbf { v } | \\mathbf { y } ) \\log \\displaystyle \\frac { p ( \\mathbf { y } , \\mathbf { v } ) } { q ( \\mathbf { v } | \\mathbf { y } ) } \\mathrm { d } \\mathbf { v } } \\end{array}", + "type": "interline_equation", + "image_path": "b7bc96d773b6f38d9250ca973a49fd1d44e2b5ac5bfc3f16b80b0f7827d5f760.jpg" + } + ] + } + ], + "index": 8, + "virtual_lines": [ + { + "bbox": [ + 140, + 165, + 470, + 183.33333333333334 + ], + "spans": [], + "index": 7 + }, + { + "bbox": [ + 140, + 183.33333333333334, + 470, + 201.66666666666669 + ], + "spans": [], + "index": 8 + }, + { + "bbox": [ + 140, + 201.66666666666669, + 470, + 220.00000000000003 + ], + "spans": [], + "index": 9 + } + ] + }, + { + "type": "text", + "bbox": [ + 108, + 224, + 504, + 269 + ], + "lines": [ + { + "bbox": [ + 105, + 224, + 506, + 238 + ], + "spans": [ + { + "bbox": [ + 105, + 224, + 192, + 238 + ], + "score": 1.0, + "content": "Noting that the joint", + "type": "text" + }, + { + "bbox": [ + 193, + 224, + 338, + 237 + ], + "score": 0.91, + "content": "p ( \\mathbf { y } , \\mathbf { v } ) = \\mathbb { I } [ \\mathbf { v } \\in \\mathbf { y } + [ 0 , 1 ) ^ { D } ] p ( \\mathbf { v } )", + "type": "inline_equation" + }, + { + "bbox": [ + 338, + 224, + 506, + 238 + ], + "score": 1.0, + "content": ", we see that the dequantizer distribution", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 107, + 235, + 506, + 250 + ], + "spans": [ + { + "bbox": [ + 107, + 236, + 135, + 248 + ], + "score": 0.91, + "content": "q ( \\mathbf { v } | \\mathbf { y } )", + "type": "inline_equation" + }, + { + "bbox": [ + 135, + 235, + 243, + 250 + ], + "score": 1.0, + "content": "must be defined such that", + "type": "text" + }, + { + "bbox": [ + 243, + 236, + 311, + 248 + ], + "score": 0.9, + "content": "\\mathbf { v } \\in \\mathbf { y } + [ 0 , 1 ) ^ { D }", + "type": "inline_equation" + }, + { + "bbox": [ + 312, + 235, + 358, + 250 + ], + "score": 1.0, + "content": ", otherwise", + "type": "text" + }, + { + "bbox": [ + 358, + 236, + 408, + 248 + ], + "score": 0.93, + "content": "p ( \\mathbf { y } , \\mathbf { v } ) = 0", + "type": "inline_equation" + }, + { + "bbox": [ + 409, + 235, + 506, + 250 + ], + "score": 1.0, + "content": "and the lower-bound is", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 247, + 505, + 260 + ], + "spans": [ + { + "bbox": [ + 105, + 247, + 198, + 260 + ], + "score": 1.0, + "content": "undefined. Restricting", + "type": "text" + }, + { + "bbox": [ + 198, + 247, + 226, + 259 + ], + "score": 0.92, + "content": "q ( \\mathbf { v } | \\mathbf { y } )", + "type": "inline_equation" + }, + { + "bbox": [ + 226, + 247, + 505, + 260 + ], + "score": 1.0, + "content": "to satisfy this condition, results in the following variational dequanti-", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 106, + 258, + 161, + 269 + ], + "spans": [ + { + "bbox": [ + 106, + 258, + 161, + 269 + ], + "score": 1.0, + "content": "zation bound", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 11.5 + }, + { + "type": "interline_equation", + "bbox": [ + 186, + 273, + 425, + 300 + ], + "lines": [ + { + "bbox": [ + 186, + 273, + 425, + 300 + ], + "spans": [ + { + "bbox": [ + 186, + 273, + 425, + 300 + ], + "score": 0.93, + "content": "\\mathbb { E } _ { P _ { \\mathrm { d a t a } } ( \\mathbf { y } ) } \\log P _ { \\mathrm { m o d e l } } ( \\mathbf { y } ) \\geq \\mathbb { E } _ { P _ { \\mathrm { d a t a } } ( \\mathbf { y } ) } \\int q ( \\mathbf { v } | \\mathbf { y } ) \\log \\frac { p ( \\mathbf { v } ) } { q ( \\mathbf { v } | \\mathbf { y } ) } \\mathrm { d } \\mathbf { v } .", + "type": "interline_equation", + "image_path": "5743de617a8072ac2e0a189a3464df35bff58a1ce296a8a343f1b5e5a8c4dc66.jpg" + } + ] + } + ], + "index": 14.5, + "virtual_lines": [ + { + "bbox": [ + 186, + 273, + 425, + 286.5 + ], + "spans": [], + "index": 14 + }, + { + "bbox": [ + 186, + 286.5, + 425, + 300.0 + ], + "spans": [], + "index": 15 + } + ] + }, + { + "type": "title", + "bbox": [ + 107, + 312, + 244, + 324 + ], + "lines": [ + { + "bbox": [ + 105, + 312, + 246, + 325 + ], + "spans": [ + { + "bbox": [ + 105, + 312, + 246, + 325 + ], + "score": 1.0, + "content": "2.2 STRUCTURED PREDICTION", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 16 + }, + { + "type": "text", + "bbox": [ + 107, + 333, + 504, + 366 + ], + "lines": [ + { + "bbox": [ + 105, + 332, + 506, + 346 + ], + "spans": [ + { + "bbox": [ + 105, + 332, + 506, + 346 + ], + "score": 1.0, + "content": "Structured prediction tasks such as image segmentation or super-resolution, can be probabilistically", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 344, + 506, + 357 + ], + "spans": [ + { + "bbox": [ + 105, + 344, + 306, + 357 + ], + "score": 1.0, + "content": "framed as learning an unknown target distribution", + "type": "text" + }, + { + "bbox": [ + 306, + 344, + 339, + 356 + ], + "score": 0.92, + "content": "p ^ { * } ( \\mathbf { y } \\vert \\mathbf { x } )", + "type": "inline_equation" + }, + { + "bbox": [ + 339, + 344, + 397, + 357 + ], + "score": 1.0, + "content": ", with an input", + "type": "text" + }, + { + "bbox": [ + 397, + 344, + 425, + 354 + ], + "score": 0.9, + "content": "\\mathbf { x } \\in \\mathcal { X }", + "type": "inline_equation" + }, + { + "bbox": [ + 425, + 344, + 474, + 357 + ], + "score": 1.0, + "content": "and a target", + "type": "text" + }, + { + "bbox": [ + 474, + 344, + 501, + 355 + ], + "score": 0.89, + "content": "\\mathbf { y } \\in \\mathcal { V }", + "type": "inline_equation" + }, + { + "bbox": [ + 501, + 344, + 506, + 357 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 355, + 505, + 367 + ], + "spans": [ + { + "bbox": [ + 105, + 355, + 505, + 367 + ], + "score": 1.0, + "content": "In practice with deep learning models, the unknown distribution is often learned by a factored model:", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 18 + }, + { + "type": "interline_equation", + "bbox": [ + 259, + 371, + 352, + 406 + ], + "lines": [ + { + "bbox": [ + 259, + 371, + 352, + 406 + ], + "spans": [ + { + "bbox": [ + 259, + 371, + 352, + 406 + ], + "score": 0.95, + "content": "p ( \\mathbf { y } | \\mathbf { x } ) = \\prod _ { d = 1 } ^ { D } p ( y _ { d } | \\mathbf { x } ) ,", + "type": "interline_equation", + "image_path": "7815807a3f3469484febf3715d3534e54217ecf52a7c6b4c301788a9ff0273c7.jpg" + } + ] + } + ], + "index": 20.5, + "virtual_lines": [ + { + "bbox": [ + 259, + 371, + 352, + 388.5 + ], + "spans": [], + "index": 20 + }, + { + "bbox": [ + 259, + 388.5, + 352, + 406.0 + ], + "spans": [], + "index": 21 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 411, + 505, + 467 + ], + "lines": [ + { + "bbox": [ + 106, + 412, + 505, + 424 + ], + "spans": [ + { + "bbox": [ + 106, + 412, + 133, + 424 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 133, + 414, + 145, + 423 + ], + "score": 0.85, + "content": "y _ { d }", + "type": "inline_equation" + }, + { + "bbox": [ + 145, + 412, + 505, + 424 + ], + "score": 1.0, + "content": "represents the dth dimension of y. Several loss-based optimization methods are a special", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 422, + 505, + 435 + ], + "spans": [ + { + "bbox": [ + 105, + 422, + 505, + 435 + ], + "score": 1.0, + "content": "case of this factored model. The mean squared error is equivalent to a product of normal distributions", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 433, + 505, + 447 + ], + "spans": [ + { + "bbox": [ + 105, + 433, + 505, + 447 + ], + "score": 1.0, + "content": "with equal and fixed standard deviation. Other examples are: cross entropy, equivalent to a product", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 444, + 505, + 457 + ], + "spans": [ + { + "bbox": [ + 105, + 444, + 505, + 457 + ], + "score": 1.0, + "content": "of log categorical distributions, and binary cross entropy, equivalent to a product of log Bernoulli", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 454, + 161, + 468 + ], + "spans": [ + { + "bbox": [ + 105, + 454, + 161, + 468 + ], + "score": 1.0, + "content": "distributions.", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 24 + }, + { + "type": "text", + "bbox": [ + 106, + 471, + 505, + 528 + ], + "lines": [ + { + "bbox": [ + 106, + 472, + 504, + 484 + ], + "spans": [ + { + "bbox": [ + 106, + 472, + 504, + 484 + ], + "score": 1.0, + "content": "With factorized independent likelihoods, individual dimensions of y are assumed to be conditionally", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 106, + 483, + 505, + 496 + ], + "spans": [ + { + "bbox": [ + 106, + 483, + 505, + 496 + ], + "score": 1.0, + "content": "independent. As a result, sampling leads to results with uncorrelated noise over the output dimen-", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 493, + 506, + 507 + ], + "spans": [ + { + "bbox": [ + 105, + 493, + 506, + 507 + ], + "score": 1.0, + "content": "sions. In the literature, a fix for this problem is to visualize the mode of the distribution and interpret", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 505, + 505, + 519 + ], + "spans": [ + { + "bbox": [ + 105, + 505, + 505, + 519 + ], + "score": 1.0, + "content": "that as a prediction. However, because the likelihood was optimized assuming a conditionally inde-", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 516, + 424, + 529 + ], + "spans": [ + { + "bbox": [ + 105, + 516, + 424, + 529 + ], + "score": 1.0, + "content": "pendent noise distribution, these modes tend to be blurry and lack crisp details.", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 29 + }, + { + "type": "title", + "bbox": [ + 107, + 544, + 173, + 556 + ], + "lines": [ + { + "bbox": [ + 104, + 542, + 175, + 560 + ], + "spans": [ + { + "bbox": [ + 104, + 542, + 175, + 560 + ], + "score": 1.0, + "content": "3 METHOD", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 32 + }, + { + "type": "text", + "bbox": [ + 106, + 569, + 505, + 592 + ], + "lines": [ + { + "bbox": [ + 105, + 568, + 505, + 581 + ], + "spans": [ + { + "bbox": [ + 105, + 568, + 505, + 581 + ], + "score": 1.0, + "content": "In this section we present our main innovations. i) learning conditional likelihoods using CNFs and", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 106, + 581, + 392, + 593 + ], + "spans": [ + { + "bbox": [ + 106, + 581, + 114, + 591 + ], + "score": 0.36, + "content": "i i", + "type": "inline_equation" + }, + { + "bbox": [ + 114, + 581, + 392, + 593 + ], + "score": 1.0, + "content": ") a variational dequantization framework for binary random variables.", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 33.5 + }, + { + "type": "title", + "bbox": [ + 107, + 605, + 292, + 617 + ], + "lines": [ + { + "bbox": [ + 105, + 605, + 293, + 619 + ], + "spans": [ + { + "bbox": [ + 105, + 605, + 293, + 619 + ], + "score": 1.0, + "content": "3.1 CONDITIONAL NORMALIZING FLOWS", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 35 + }, + { + "type": "text", + "bbox": [ + 106, + 626, + 505, + 671 + ], + "lines": [ + { + "bbox": [ + 106, + 626, + 505, + 638 + ], + "spans": [ + { + "bbox": [ + 106, + 626, + 505, + 638 + ], + "score": 1.0, + "content": "We propose to learn conditional likelihoods using conditional normalizing flows for complicated", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 637, + 506, + 650 + ], + "spans": [ + { + "bbox": [ + 105, + 637, + 377, + 650 + ], + "score": 1.0, + "content": "target distributions in multivariate prediction tasks. Take an input", + "type": "text" + }, + { + "bbox": [ + 378, + 638, + 408, + 648 + ], + "score": 0.9, + "content": "\\mathbf { x } \\in \\mathcal { X }", + "type": "inline_equation" + }, + { + "bbox": [ + 409, + 637, + 506, + 650 + ], + "score": 1.0, + "content": "and a regression target", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 106, + 648, + 506, + 662 + ], + "spans": [ + { + "bbox": [ + 106, + 649, + 135, + 660 + ], + "score": 0.89, + "content": "\\mathbf { y } \\in \\mathcal { V }", + "type": "inline_equation" + }, + { + "bbox": [ + 135, + 649, + 286, + 662 + ], + "score": 1.0, + "content": ". We learn a complicated distribution", + "type": "text" + }, + { + "bbox": [ + 287, + 649, + 332, + 661 + ], + "score": 0.92, + "content": "p _ { Y | X } ( \\mathbf { y } | \\mathbf { x } )", + "type": "inline_equation" + }, + { + "bbox": [ + 333, + 649, + 435, + 662 + ], + "score": 1.0, + "content": "using a conditional prior", + "type": "text" + }, + { + "bbox": [ + 435, + 648, + 479, + 661 + ], + "score": 0.92, + "content": "p _ { Z | X } ( \\mathbf { z } | \\mathbf { x } )", + "type": "inline_equation" + }, + { + "bbox": [ + 479, + 649, + 506, + 662 + ], + "score": 1.0, + "content": "and a", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 659, + 470, + 672 + ], + "spans": [ + { + "bbox": [ + 105, + 659, + 144, + 671 + ], + "score": 1.0, + "content": "mapping", + "type": "text" + }, + { + "bbox": [ + 144, + 660, + 215, + 672 + ], + "score": 0.92, + "content": "f _ { \\phi } : \\mathcal { V } \\times \\mathcal { X } \\to \\mathcal { Z }", + "type": "inline_equation" + }, + { + "bbox": [ + 216, + 659, + 302, + 671 + ], + "score": 1.0, + "content": ", which is bijective in", + "type": "text" + }, + { + "bbox": [ + 302, + 661, + 311, + 671 + ], + "score": 0.84, + "content": "\\mathcal { V }", + "type": "inline_equation" + }, + { + "bbox": [ + 311, + 659, + 329, + 671 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 329, + 660, + 338, + 669 + ], + "score": 0.81, + "content": "\\mathcal { Z }", + "type": "inline_equation" + }, + { + "bbox": [ + 338, + 659, + 470, + 671 + ], + "score": 1.0, + "content": ". The likelihood of this model is:", + "type": "text" + } + ], + "index": 39 + } + ], + "index": 37.5 + }, + { + "type": "interline_equation", + "bbox": [ + 172, + 677, + 439, + 704 + ], + "lines": [ + { + "bbox": [ + 172, + 677, + 439, + 704 + ], + "spans": [ + { + "bbox": [ + 172, + 677, + 439, + 704 + ], + "score": 0.94, + "content": "p _ { Y | X } ( \\mathbf { y } | \\mathbf { x } ) = p _ { Z | X } ( \\mathbf { z } | \\mathbf { x } ) \\left| \\frac { \\partial \\mathbf { z } } { \\partial \\mathbf { y } } \\right| = p _ { Z | X } ( f _ { \\phi } ( \\mathbf { y } , \\mathbf { x } ) | \\mathbf { x } ) \\left| \\frac { \\partial f _ { \\phi } ( \\mathbf { y } , \\mathbf { x } ) } { \\partial \\mathbf { y } } \\right| .", + "type": "interline_equation", + "image_path": "554fa0db53062c2d368377938d089582b6109ba3a57780be5f706b97e63fc090.jpg" + } + ] + } + ], + "index": 41, + "virtual_lines": [ + { + "bbox": [ + 172, + 677, + 439, + 686.0 + ], + "spans": [], + "index": 40 + }, + { + "bbox": [ + 172, + 686.0, + 439, + 695.0 + ], + "spans": [], + "index": 41 + }, + { + "bbox": [ + 172, + 695.0, + 439, + 704.0 + ], + "spans": [], + "index": 42 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 709, + 504, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 709, + 505, + 721 + ], + "spans": [ + { + "bbox": [ + 106, + 709, + 505, + 721 + ], + "score": 1.0, + "content": "Notice that the difference between Equations 1 and 7 is that all distributions are conditional and the", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 106, + 721, + 263, + 732 + ], + "spans": [ + { + "bbox": [ + 106, + 721, + 253, + 732 + ], + "score": 1.0, + "content": "flow has a conditioning argument of", + "type": "text" + }, + { + "bbox": [ + 253, + 725, + 260, + 730 + ], + "score": 0.83, + "content": "\\mathbf { x }", + "type": "inline_equation" + }, + { + "bbox": [ + 260, + 721, + 263, + 732 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 44 + } + ], + "index": 43.5 + } + ], + "page_idx": 2, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 27, + 308, + 37 + ], + "lines": [ + { + "bbox": [ + 107, + 26, + 308, + 38 + ], + "spans": [ + { + "bbox": [ + 107, + 26, + 308, + 38 + ], + "score": 1.0, + "content": "Under review as a conference paper at ICLR 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, + 81, + 505, + 160 + ], + "lines": [ + { + "bbox": [ + 106, + 82, + 505, + 95 + ], + "spans": [ + { + "bbox": [ + 106, + 82, + 213, + 95 + ], + "score": 1.0, + "content": "where the latent variables", + "type": "text" + }, + { + "bbox": [ + 213, + 83, + 243, + 93 + ], + "score": 0.9, + "content": "\\textbf { v } \\in { \\mathcal { V } }", + "type": "inline_equation" + }, + { + "bbox": [ + 243, + 82, + 505, + 95 + ], + "score": 1.0, + "content": "are continuous-valued. This is a convenient model to use, since", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 93, + 506, + 106 + ], + "spans": [ + { + "bbox": [ + 105, + 93, + 158, + 106 + ], + "score": 1.0, + "content": "the marginal", + "type": "text" + }, + { + "bbox": [ + 159, + 93, + 178, + 105 + ], + "score": 0.89, + "content": "p ( \\mathbf { v } )", + "type": "inline_equation" + }, + { + "bbox": [ + 179, + 93, + 506, + 106 + ], + "score": 1.0, + "content": ", living on a continuous sample space, can be modelled with a continuous NF. The", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 104, + 505, + 117 + ], + "spans": [ + { + "bbox": [ + 105, + 104, + 154, + 117 + ], + "score": 1.0, + "content": "distribution", + "type": "text" + }, + { + "bbox": [ + 154, + 105, + 186, + 116 + ], + "score": 0.91, + "content": "P ( \\mathbf { y } | \\mathbf { v } )", + "type": "inline_equation" + }, + { + "bbox": [ + 186, + 104, + 436, + 117 + ], + "score": 1.0, + "content": "is known as the quantizer and is typically an indicator function", + "type": "text" + }, + { + "bbox": [ + 437, + 104, + 505, + 116 + ], + "score": 0.9, + "content": "P ( \\mathbf { y } | \\mathbf { v } ) = \\mathbb { I } [ \\mathbf { v } \\in", + "type": "inline_equation" + } + ], + "index": 2 + }, + { + "bbox": [ + 106, + 113, + 504, + 130 + ], + "spans": [ + { + "bbox": [ + 106, + 115, + 158, + 127 + ], + "score": 0.92, + "content": "\\mathbf { y } + [ 0 , 1 ) ^ { D } ]", + "type": "inline_equation" + }, + { + "bbox": [ + 158, + 113, + 298, + 130 + ], + "score": 1.0, + "content": ". Other works (Hoogeboom et al.,", + "type": "text" + }, + { + "bbox": [ + 299, + 115, + 325, + 126 + ], + "score": 0.34, + "content": "2 0 1 9 \\mathrm { a }", + "type": "inline_equation" + }, + { + "bbox": [ + 325, + 113, + 464, + 130 + ], + "score": 1.0, + "content": "; Tran et al., 2019) directly model", + "type": "text" + }, + { + "bbox": [ + 464, + 116, + 504, + 127 + ], + "score": 0.89, + "content": "P _ { \\mathrm { m o d e l } } ( \\mathbf { y } )", + "type": "inline_equation" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 126, + 506, + 139 + ], + "spans": [ + { + "bbox": [ + 105, + 126, + 506, + 139 + ], + "score": 1.0, + "content": "with a discrete-valued flow, but these are known to be difficult to optimize. As an extension of", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 137, + 505, + 150 + ], + "spans": [ + { + "bbox": [ + 105, + 137, + 385, + 150 + ], + "score": 1.0, + "content": "dequantization, Ho et al. (2019) introduced a variational distribution", + "type": "text" + }, + { + "bbox": [ + 385, + 137, + 414, + 149 + ], + "score": 0.92, + "content": "\\bar { \\bf q } ( { \\bf v } | { \\bf y } )", + "type": "inline_equation" + }, + { + "bbox": [ + 415, + 137, + 505, + 150 + ], + "score": 1.0, + "content": ", called a dequantizer,", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 148, + 456, + 161 + ], + "spans": [ + { + "bbox": [ + 105, + 148, + 456, + 161 + ], + "score": 1.0, + "content": "and write a lower bound on the data log-likelihood using Jensen’s inequality as follows", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 3, + "bbox_fs": [ + 105, + 82, + 506, + 161 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 140, + 165, + 470, + 220 + ], + "lines": [ + { + "bbox": [ + 140, + 165, + 470, + 220 + ], + "spans": [ + { + "bbox": [ + 140, + 165, + 470, + 220 + ], + "score": 0.95, + "content": "\\begin{array} { r l } & { \\mathbb { E } _ { P _ { \\mathrm { d a t a } } ( \\mathbf { y } ) } \\log P _ { \\mathrm { m o d e l } } ( \\mathbf { y } ) = \\mathbb { E } _ { P _ { \\mathrm { d a t a } } ( \\mathbf { y } ) } \\log \\displaystyle \\int p ( \\mathbf { y } , \\mathbf { v } ) \\mathrm { d } \\mathbf { v } } \\\\ & { \\qquad = \\mathbb { E } _ { P _ { \\mathrm { d a t a } } ( \\mathbf { y } ) } \\log \\displaystyle \\int \\frac { q ( \\mathbf { v } | \\mathbf { y } ) } { q ( \\mathbf { v } | \\mathbf { y } ) } p ( \\mathbf { y } , \\mathbf { v } ) \\mathrm { d } \\mathbf { v } \\geq \\mathbb { E } _ { P _ { \\mathrm { d a t a } } ( \\mathbf { y } ) } \\int q ( \\mathbf { v } | \\mathbf { y } ) \\log \\displaystyle \\frac { p ( \\mathbf { y } , \\mathbf { v } ) } { q ( \\mathbf { v } | \\mathbf { y } ) } \\mathrm { d } \\mathbf { v } } \\end{array}", + "type": "interline_equation", + "image_path": "b7bc96d773b6f38d9250ca973a49fd1d44e2b5ac5bfc3f16b80b0f7827d5f760.jpg" + } + ] + } + ], + "index": 8, + "virtual_lines": [ + { + "bbox": [ + 140, + 165, + 470, + 183.33333333333334 + ], + "spans": [], + "index": 7 + }, + { + "bbox": [ + 140, + 183.33333333333334, + 470, + 201.66666666666669 + ], + "spans": [], + "index": 8 + }, + { + "bbox": [ + 140, + 201.66666666666669, + 470, + 220.00000000000003 + ], + "spans": [], + "index": 9 + } + ] + }, + { + "type": "text", + "bbox": [ + 108, + 224, + 504, + 269 + ], + "lines": [ + { + "bbox": [ + 105, + 224, + 506, + 238 + ], + "spans": [ + { + "bbox": [ + 105, + 224, + 192, + 238 + ], + "score": 1.0, + "content": "Noting that the joint", + "type": "text" + }, + { + "bbox": [ + 193, + 224, + 338, + 237 + ], + "score": 0.91, + "content": "p ( \\mathbf { y } , \\mathbf { v } ) = \\mathbb { I } [ \\mathbf { v } \\in \\mathbf { y } + [ 0 , 1 ) ^ { D } ] p ( \\mathbf { v } )", + "type": "inline_equation" + }, + { + "bbox": [ + 338, + 224, + 506, + 238 + ], + "score": 1.0, + "content": ", we see that the dequantizer distribution", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 107, + 235, + 506, + 250 + ], + "spans": [ + { + "bbox": [ + 107, + 236, + 135, + 248 + ], + "score": 0.91, + "content": "q ( \\mathbf { v } | \\mathbf { y } )", + "type": "inline_equation" + }, + { + "bbox": [ + 135, + 235, + 243, + 250 + ], + "score": 1.0, + "content": "must be defined such that", + "type": "text" + }, + { + "bbox": [ + 243, + 236, + 311, + 248 + ], + "score": 0.9, + "content": "\\mathbf { v } \\in \\mathbf { y } + [ 0 , 1 ) ^ { D }", + "type": "inline_equation" + }, + { + "bbox": [ + 312, + 235, + 358, + 250 + ], + "score": 1.0, + "content": ", otherwise", + "type": "text" + }, + { + "bbox": [ + 358, + 236, + 408, + 248 + ], + "score": 0.93, + "content": "p ( \\mathbf { y } , \\mathbf { v } ) = 0", + "type": "inline_equation" + }, + { + "bbox": [ + 409, + 235, + 506, + 250 + ], + "score": 1.0, + "content": "and the lower-bound is", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 247, + 505, + 260 + ], + "spans": [ + { + "bbox": [ + 105, + 247, + 198, + 260 + ], + "score": 1.0, + "content": "undefined. Restricting", + "type": "text" + }, + { + "bbox": [ + 198, + 247, + 226, + 259 + ], + "score": 0.92, + "content": "q ( \\mathbf { v } | \\mathbf { y } )", + "type": "inline_equation" + }, + { + "bbox": [ + 226, + 247, + 505, + 260 + ], + "score": 1.0, + "content": "to satisfy this condition, results in the following variational dequanti-", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 106, + 258, + 161, + 269 + ], + "spans": [ + { + "bbox": [ + 106, + 258, + 161, + 269 + ], + "score": 1.0, + "content": "zation bound", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 11.5, + "bbox_fs": [ + 105, + 224, + 506, + 269 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 186, + 273, + 425, + 300 + ], + "lines": [ + { + "bbox": [ + 186, + 273, + 425, + 300 + ], + "spans": [ + { + "bbox": [ + 186, + 273, + 425, + 300 + ], + "score": 0.93, + "content": "\\mathbb { E } _ { P _ { \\mathrm { d a t a } } ( \\mathbf { y } ) } \\log P _ { \\mathrm { m o d e l } } ( \\mathbf { y } ) \\geq \\mathbb { E } _ { P _ { \\mathrm { d a t a } } ( \\mathbf { y } ) } \\int q ( \\mathbf { v } | \\mathbf { y } ) \\log \\frac { p ( \\mathbf { v } ) } { q ( \\mathbf { v } | \\mathbf { y } ) } \\mathrm { d } \\mathbf { v } .", + "type": "interline_equation", + "image_path": "5743de617a8072ac2e0a189a3464df35bff58a1ce296a8a343f1b5e5a8c4dc66.jpg" + } + ] + } + ], + "index": 14.5, + "virtual_lines": [ + { + "bbox": [ + 186, + 273, + 425, + 286.5 + ], + "spans": [], + "index": 14 + }, + { + "bbox": [ + 186, + 286.5, + 425, + 300.0 + ], + "spans": [], + "index": 15 + } + ] + }, + { + "type": "title", + "bbox": [ + 107, + 312, + 244, + 324 + ], + "lines": [ + { + "bbox": [ + 105, + 312, + 246, + 325 + ], + "spans": [ + { + "bbox": [ + 105, + 312, + 246, + 325 + ], + "score": 1.0, + "content": "2.2 STRUCTURED PREDICTION", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 16 + }, + { + "type": "text", + "bbox": [ + 107, + 333, + 504, + 366 + ], + "lines": [ + { + "bbox": [ + 105, + 332, + 506, + 346 + ], + "spans": [ + { + "bbox": [ + 105, + 332, + 506, + 346 + ], + "score": 1.0, + "content": "Structured prediction tasks such as image segmentation or super-resolution, can be probabilistically", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 344, + 506, + 357 + ], + "spans": [ + { + "bbox": [ + 105, + 344, + 306, + 357 + ], + "score": 1.0, + "content": "framed as learning an unknown target distribution", + "type": "text" + }, + { + "bbox": [ + 306, + 344, + 339, + 356 + ], + "score": 0.92, + "content": "p ^ { * } ( \\mathbf { y } \\vert \\mathbf { x } )", + "type": "inline_equation" + }, + { + "bbox": [ + 339, + 344, + 397, + 357 + ], + "score": 1.0, + "content": ", with an input", + "type": "text" + }, + { + "bbox": [ + 397, + 344, + 425, + 354 + ], + "score": 0.9, + "content": "\\mathbf { x } \\in \\mathcal { X }", + "type": "inline_equation" + }, + { + "bbox": [ + 425, + 344, + 474, + 357 + ], + "score": 1.0, + "content": "and a target", + "type": "text" + }, + { + "bbox": [ + 474, + 344, + 501, + 355 + ], + "score": 0.89, + "content": "\\mathbf { y } \\in \\mathcal { V }", + "type": "inline_equation" + }, + { + "bbox": [ + 501, + 344, + 506, + 357 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 355, + 505, + 367 + ], + "spans": [ + { + "bbox": [ + 105, + 355, + 505, + 367 + ], + "score": 1.0, + "content": "In practice with deep learning models, the unknown distribution is often learned by a factored model:", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 18, + "bbox_fs": [ + 105, + 332, + 506, + 367 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 259, + 371, + 352, + 406 + ], + "lines": [ + { + "bbox": [ + 259, + 371, + 352, + 406 + ], + "spans": [ + { + "bbox": [ + 259, + 371, + 352, + 406 + ], + "score": 0.95, + "content": "p ( \\mathbf { y } | \\mathbf { x } ) = \\prod _ { d = 1 } ^ { D } p ( y _ { d } | \\mathbf { x } ) ,", + "type": "interline_equation", + "image_path": "7815807a3f3469484febf3715d3534e54217ecf52a7c6b4c301788a9ff0273c7.jpg" + } + ] + } + ], + "index": 20.5, + "virtual_lines": [ + { + "bbox": [ + 259, + 371, + 352, + 388.5 + ], + "spans": [], + "index": 20 + }, + { + "bbox": [ + 259, + 388.5, + 352, + 406.0 + ], + "spans": [], + "index": 21 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 411, + 505, + 467 + ], + "lines": [ + { + "bbox": [ + 106, + 412, + 505, + 424 + ], + "spans": [ + { + "bbox": [ + 106, + 412, + 133, + 424 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 133, + 414, + 145, + 423 + ], + "score": 0.85, + "content": "y _ { d }", + "type": "inline_equation" + }, + { + "bbox": [ + 145, + 412, + 505, + 424 + ], + "score": 1.0, + "content": "represents the dth dimension of y. Several loss-based optimization methods are a special", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 422, + 505, + 435 + ], + "spans": [ + { + "bbox": [ + 105, + 422, + 505, + 435 + ], + "score": 1.0, + "content": "case of this factored model. The mean squared error is equivalent to a product of normal distributions", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 433, + 505, + 447 + ], + "spans": [ + { + "bbox": [ + 105, + 433, + 505, + 447 + ], + "score": 1.0, + "content": "with equal and fixed standard deviation. Other examples are: cross entropy, equivalent to a product", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 444, + 505, + 457 + ], + "spans": [ + { + "bbox": [ + 105, + 444, + 505, + 457 + ], + "score": 1.0, + "content": "of log categorical distributions, and binary cross entropy, equivalent to a product of log Bernoulli", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 454, + 161, + 468 + ], + "spans": [ + { + "bbox": [ + 105, + 454, + 161, + 468 + ], + "score": 1.0, + "content": "distributions.", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 24, + "bbox_fs": [ + 105, + 412, + 505, + 468 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 471, + 505, + 528 + ], + "lines": [ + { + "bbox": [ + 106, + 472, + 504, + 484 + ], + "spans": [ + { + "bbox": [ + 106, + 472, + 504, + 484 + ], + "score": 1.0, + "content": "With factorized independent likelihoods, individual dimensions of y are assumed to be conditionally", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 106, + 483, + 505, + 496 + ], + "spans": [ + { + "bbox": [ + 106, + 483, + 505, + 496 + ], + "score": 1.0, + "content": "independent. As a result, sampling leads to results with uncorrelated noise over the output dimen-", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 493, + 506, + 507 + ], + "spans": [ + { + "bbox": [ + 105, + 493, + 506, + 507 + ], + "score": 1.0, + "content": "sions. In the literature, a fix for this problem is to visualize the mode of the distribution and interpret", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 505, + 505, + 519 + ], + "spans": [ + { + "bbox": [ + 105, + 505, + 505, + 519 + ], + "score": 1.0, + "content": "that as a prediction. However, because the likelihood was optimized assuming a conditionally inde-", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 516, + 424, + 529 + ], + "spans": [ + { + "bbox": [ + 105, + 516, + 424, + 529 + ], + "score": 1.0, + "content": "pendent noise distribution, these modes tend to be blurry and lack crisp details.", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 29, + "bbox_fs": [ + 105, + 472, + 506, + 529 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 544, + 173, + 556 + ], + "lines": [ + { + "bbox": [ + 104, + 542, + 175, + 560 + ], + "spans": [ + { + "bbox": [ + 104, + 542, + 175, + 560 + ], + "score": 1.0, + "content": "3 METHOD", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 32 + }, + { + "type": "text", + "bbox": [ + 106, + 569, + 505, + 592 + ], + "lines": [ + { + "bbox": [ + 105, + 568, + 505, + 581 + ], + "spans": [ + { + "bbox": [ + 105, + 568, + 505, + 581 + ], + "score": 1.0, + "content": "In this section we present our main innovations. i) learning conditional likelihoods using CNFs and", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 106, + 581, + 392, + 593 + ], + "spans": [ + { + "bbox": [ + 106, + 581, + 114, + 591 + ], + "score": 0.36, + "content": "i i", + "type": "inline_equation" + }, + { + "bbox": [ + 114, + 581, + 392, + 593 + ], + "score": 1.0, + "content": ") a variational dequantization framework for binary random variables.", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 33.5, + "bbox_fs": [ + 105, + 568, + 505, + 593 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 605, + 292, + 617 + ], + "lines": [ + { + "bbox": [ + 105, + 605, + 293, + 619 + ], + "spans": [ + { + "bbox": [ + 105, + 605, + 293, + 619 + ], + "score": 1.0, + "content": "3.1 CONDITIONAL NORMALIZING FLOWS", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 35 + }, + { + "type": "text", + "bbox": [ + 106, + 626, + 505, + 671 + ], + "lines": [ + { + "bbox": [ + 106, + 626, + 505, + 638 + ], + "spans": [ + { + "bbox": [ + 106, + 626, + 505, + 638 + ], + "score": 1.0, + "content": "We propose to learn conditional likelihoods using conditional normalizing flows for complicated", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 637, + 506, + 650 + ], + "spans": [ + { + "bbox": [ + 105, + 637, + 377, + 650 + ], + "score": 1.0, + "content": "target distributions in multivariate prediction tasks. Take an input", + "type": "text" + }, + { + "bbox": [ + 378, + 638, + 408, + 648 + ], + "score": 0.9, + "content": "\\mathbf { x } \\in \\mathcal { X }", + "type": "inline_equation" + }, + { + "bbox": [ + 409, + 637, + 506, + 650 + ], + "score": 1.0, + "content": "and a regression target", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 106, + 648, + 506, + 662 + ], + "spans": [ + { + "bbox": [ + 106, + 649, + 135, + 660 + ], + "score": 0.89, + "content": "\\mathbf { y } \\in \\mathcal { V }", + "type": "inline_equation" + }, + { + "bbox": [ + 135, + 649, + 286, + 662 + ], + "score": 1.0, + "content": ". We learn a complicated distribution", + "type": "text" + }, + { + "bbox": [ + 287, + 649, + 332, + 661 + ], + "score": 0.92, + "content": "p _ { Y | X } ( \\mathbf { y } | \\mathbf { x } )", + "type": "inline_equation" + }, + { + "bbox": [ + 333, + 649, + 435, + 662 + ], + "score": 1.0, + "content": "using a conditional prior", + "type": "text" + }, + { + "bbox": [ + 435, + 648, + 479, + 661 + ], + "score": 0.92, + "content": "p _ { Z | X } ( \\mathbf { z } | \\mathbf { x } )", + "type": "inline_equation" + }, + { + "bbox": [ + 479, + 649, + 506, + 662 + ], + "score": 1.0, + "content": "and a", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 659, + 470, + 672 + ], + "spans": [ + { + "bbox": [ + 105, + 659, + 144, + 671 + ], + "score": 1.0, + "content": "mapping", + "type": "text" + }, + { + "bbox": [ + 144, + 660, + 215, + 672 + ], + "score": 0.92, + "content": "f _ { \\phi } : \\mathcal { V } \\times \\mathcal { X } \\to \\mathcal { Z }", + "type": "inline_equation" + }, + { + "bbox": [ + 216, + 659, + 302, + 671 + ], + "score": 1.0, + "content": ", which is bijective in", + "type": "text" + }, + { + "bbox": [ + 302, + 661, + 311, + 671 + ], + "score": 0.84, + "content": "\\mathcal { V }", + "type": "inline_equation" + }, + { + "bbox": [ + 311, + 659, + 329, + 671 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 329, + 660, + 338, + 669 + ], + "score": 0.81, + "content": "\\mathcal { Z }", + "type": "inline_equation" + }, + { + "bbox": [ + 338, + 659, + 470, + 671 + ], + "score": 1.0, + "content": ". The likelihood of this model is:", + "type": "text" + } + ], + "index": 39 + } + ], + "index": 37.5, + "bbox_fs": [ + 105, + 626, + 506, + 672 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 172, + 677, + 439, + 704 + ], + "lines": [ + { + "bbox": [ + 172, + 677, + 439, + 704 + ], + "spans": [ + { + "bbox": [ + 172, + 677, + 439, + 704 + ], + "score": 0.94, + "content": "p _ { Y | X } ( \\mathbf { y } | \\mathbf { x } ) = p _ { Z | X } ( \\mathbf { z } | \\mathbf { x } ) \\left| \\frac { \\partial \\mathbf { z } } { \\partial \\mathbf { y } } \\right| = p _ { Z | X } ( f _ { \\phi } ( \\mathbf { y } , \\mathbf { x } ) | \\mathbf { x } ) \\left| \\frac { \\partial f _ { \\phi } ( \\mathbf { y } , \\mathbf { x } ) } { \\partial \\mathbf { y } } \\right| .", + "type": "interline_equation", + "image_path": "554fa0db53062c2d368377938d089582b6109ba3a57780be5f706b97e63fc090.jpg" + } + ] + } + ], + "index": 41, + "virtual_lines": [ + { + "bbox": [ + 172, + 677, + 439, + 686.0 + ], + "spans": [], + "index": 40 + }, + { + "bbox": [ + 172, + 686.0, + 439, + 695.0 + ], + "spans": [], + "index": 41 + }, + { + "bbox": [ + 172, + 695.0, + 439, + 704.0 + ], + "spans": [], + "index": 42 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 709, + 504, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 709, + 505, + 721 + ], + "spans": [ + { + "bbox": [ + 106, + 709, + 505, + 721 + ], + "score": 1.0, + "content": "Notice that the difference between Equations 1 and 7 is that all distributions are conditional and the", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 106, + 721, + 263, + 732 + ], + "spans": [ + { + "bbox": [ + 106, + 721, + 253, + 732 + ], + "score": 1.0, + "content": "flow has a conditioning argument of", + "type": "text" + }, + { + "bbox": [ + 253, + 725, + 260, + 730 + ], + "score": 0.83, + "content": "\\mathbf { x }", + "type": "inline_equation" + }, + { + "bbox": [ + 260, + 721, + 263, + 732 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 44 + } + ], + "index": 43.5, + "bbox_fs": [ + 106, + 709, + 505, + 732 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 107, + 82, + 505, + 131 + ], + "lines": [ + { + "bbox": [ + 105, + 82, + 505, + 95 + ], + "spans": [ + { + "bbox": [ + 105, + 82, + 246, + 95 + ], + "score": 1.0, + "content": "The generative process from x to", + "type": "text" + }, + { + "bbox": [ + 246, + 84, + 254, + 94 + ], + "score": 0.32, + "content": "\\mathbf { y }", + "type": "inline_equation" + }, + { + "bbox": [ + 255, + 82, + 484, + 95 + ], + "score": 1.0, + "content": "(shown in Figure 1) can be described by first sampling", + "type": "text" + }, + { + "bbox": [ + 485, + 84, + 505, + 93 + ], + "score": 0.78, + "content": "\\mathbf { z } \\sim", + "type": "inline_equation" + } + ], + "index": 0 + }, + { + "bbox": [ + 106, + 93, + 506, + 106 + ], + "spans": [ + { + "bbox": [ + 106, + 93, + 150, + 106 + ], + "score": 0.92, + "content": "p _ { Z | X } ( \\mathbf { z } | \\mathbf { x } )", + "type": "inline_equation" + }, + { + "bbox": [ + 150, + 93, + 398, + 106 + ], + "score": 1.0, + "content": "from a simple base density with its parameters conditioned on", + "type": "text" + }, + { + "bbox": [ + 399, + 95, + 407, + 104 + ], + "score": 0.52, + "content": "\\mathbf { x }", + "type": "inline_equation" + }, + { + "bbox": [ + 407, + 93, + 506, + 106 + ], + "score": 1.0, + "content": "(for us this is a diagonal", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 106, + 505, + 121 + ], + "spans": [ + { + "bbox": [ + 105, + 106, + 396, + 120 + ], + "score": 1.0, + "content": "Gaussian) and then passing it through a sequence of bijective mappings", + "type": "text" + }, + { + "bbox": [ + 396, + 106, + 437, + 121 + ], + "score": 0.93, + "content": "f _ { \\phi } ^ { - 1 } ( \\mathbf { z } ; \\mathbf { x } )", + "type": "inline_equation" + }, + { + "bbox": [ + 437, + 106, + 505, + 120 + ], + "score": 1.0, + "content": ". This allows for", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 118, + 442, + 132 + ], + "spans": [ + { + "bbox": [ + 105, + 118, + 442, + 132 + ], + "score": 1.0, + "content": "modelling multimodal conditional distributions in y, which is typically uncommon.", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 1.5 + }, + { + "type": "text", + "bbox": [ + 107, + 136, + 336, + 312 + ], + "lines": [ + { + "bbox": [ + 106, + 135, + 336, + 147 + ], + "spans": [ + { + "bbox": [ + 106, + 135, + 336, + 147 + ], + "score": 1.0, + "content": "For the training procedure, the process runs in reverse.", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 106, + 146, + 337, + 159 + ], + "spans": [ + { + "bbox": [ + 106, + 146, + 195, + 159 + ], + "score": 1.0, + "content": "We begin with label", + "type": "text" + }, + { + "bbox": [ + 195, + 149, + 204, + 158 + ], + "score": 0.5, + "content": "\\mathbf { y }", + "type": "inline_equation" + }, + { + "bbox": [ + 204, + 146, + 304, + 159 + ], + "score": 1.0, + "content": "and conditioning input", + "type": "text" + }, + { + "bbox": [ + 304, + 149, + 312, + 157 + ], + "score": 0.43, + "content": "\\mathbf { x }", + "type": "inline_equation" + }, + { + "bbox": [ + 312, + 146, + 337, + 159 + ], + "score": 1.0, + "content": ". We", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 106, + 156, + 337, + 171 + ], + "spans": [ + { + "bbox": [ + 106, + 156, + 228, + 171 + ], + "score": 1.0, + "content": "‘flow’ the label back through", + "type": "text" + }, + { + "bbox": [ + 228, + 158, + 240, + 170 + ], + "score": 0.88, + "content": "f _ { \\phi }", + "type": "inline_equation" + }, + { + "bbox": [ + 240, + 156, + 276, + 171 + ], + "score": 1.0, + "content": "to yield", + "type": "text" + }, + { + "bbox": [ + 276, + 158, + 333, + 170 + ], + "score": 0.92, + "content": "\\mathbf { z } = f _ { \\phi } ( \\mathbf { y } ; \\mathbf { x } )", + "type": "inline_equation" + }, + { + "bbox": [ + 333, + 156, + 337, + 171 + ], + "score": 1.0, + "content": ",", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 106, + 168, + 336, + 181 + ], + "spans": [ + { + "bbox": [ + 106, + 168, + 336, + 181 + ], + "score": 1.0, + "content": "and then we evaluate the log-likelihood of the parame-", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 180, + 336, + 191 + ], + "spans": [ + { + "bbox": [ + 105, + 180, + 287, + 191 + ], + "score": 1.0, + "content": "ters of the prior, given this transformed label", + "type": "text" + }, + { + "bbox": [ + 287, + 181, + 294, + 190 + ], + "score": 0.29, + "content": "\\mathbf { z }", + "type": "inline_equation" + }, + { + "bbox": [ + 294, + 180, + 336, + 191 + ], + "score": 1.0, + "content": ". The flow", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 106, + 190, + 337, + 203 + ], + "spans": [ + { + "bbox": [ + 106, + 190, + 337, + 203 + ], + "score": 1.0, + "content": "and prior parameters can be optimized using stochastic", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 106, + 202, + 337, + 213 + ], + "spans": [ + { + "bbox": [ + 106, + 202, + 337, + 213 + ], + "score": 1.0, + "content": "gradient descent and training in minibatches in the usual", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 106, + 213, + 336, + 224 + ], + "spans": [ + { + "bbox": [ + 106, + 213, + 336, + 224 + ], + "score": 1.0, + "content": "fashion. Note that this style of training a conditional den-", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 106, + 223, + 337, + 236 + ], + "spans": [ + { + "bbox": [ + 106, + 223, + 152, + 236 + ], + "score": 1.0, + "content": "sity model", + "type": "text" + }, + { + "bbox": [ + 152, + 223, + 198, + 236 + ], + "score": 0.93, + "content": "p _ { Y | X } ( \\mathbf { y } | \\mathbf { x } )", + "type": "inline_equation" + }, + { + "bbox": [ + 198, + 223, + 337, + 236 + ], + "score": 1.0, + "content": "differs fundamentally from tradi-", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 234, + 337, + 247 + ], + "spans": [ + { + "bbox": [ + 105, + 234, + 337, + 247 + ], + "score": 1.0, + "content": "tional models, because we compute the log-likelihood in", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 106, + 246, + 337, + 258 + ], + "spans": [ + { + "bbox": [ + 106, + 248, + 113, + 256 + ], + "score": 0.36, + "content": "\\mathbf { z }", + "type": "inline_equation" + }, + { + "bbox": [ + 113, + 246, + 337, + 258 + ], + "score": 1.0, + "content": "-space and not y-space. As a result, we are not biasing", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 106, + 257, + 336, + 268 + ], + "spans": [ + { + "bbox": [ + 106, + 257, + 336, + 268 + ], + "score": 1.0, + "content": "our results with an arbitrary choice of output-space likeli-", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 267, + 336, + 279 + ], + "spans": [ + { + "bbox": [ + 105, + 267, + 336, + 279 + ], + "score": 1.0, + "content": "hood or in the case of this paper, handcrafted image loss.", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 278, + 337, + 291 + ], + "spans": [ + { + "bbox": [ + 105, + 278, + 337, + 291 + ], + "score": 1.0, + "content": "Instead, one could interpret this method as learning the", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 106, + 289, + 337, + 300 + ], + "spans": [ + { + "bbox": [ + 106, + 289, + 337, + 300 + ], + "score": 1.0, + "content": "correlational and multimodal structure of the likelihood", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 299, + 218, + 313 + ], + "spans": [ + { + "bbox": [ + 105, + 299, + 218, + 313 + ], + "score": 1.0, + "content": "or simply put loss-learning.", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 11.5 + }, + { + "type": "image", + "bbox": [ + 344, + 148, + 504, + 206 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 344, + 148, + 504, + 206 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 344, + 148, + 504, + 206 + ], + "spans": [ + { + "bbox": [ + 344, + 148, + 504, + 206 + ], + "score": 0.94, + "type": "image", + "image_path": "1d00c1a305b002fe4da20995d0fabb8d03ca5c203d3362bd2c40e5bad8b0f3e7.jpg" + } + ] + } + ], + "index": 20.5, + "virtual_lines": [ + { + "bbox": [ + 344, + 148, + 504, + 162.5 + ], + "spans": [], + "index": 19 + }, + { + "bbox": [ + 344, + 162.5, + 504, + 177.0 + ], + "spans": [], + "index": 20 + }, + { + "bbox": [ + 344, + 177.0, + 504, + 191.5 + ], + "spans": [], + "index": 21 + }, + { + "bbox": [ + 344, + 191.5, + 504, + 206.0 + ], + "spans": [], + "index": 22 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 344, + 216, + 505, + 294 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 344, + 216, + 505, + 228 + ], + "spans": [ + { + "bbox": [ + 344, + 216, + 505, + 228 + ], + "score": 1.0, + "content": "Figure 1: Diagram of our model in the", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 343, + 227, + 506, + 239 + ], + "spans": [ + { + "bbox": [ + 343, + 227, + 506, + 239 + ], + "score": 1.0, + "content": "train and sampling phases. Solid lines", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 343, + 238, + 506, + 250 + ], + "spans": [ + { + "bbox": [ + 343, + 238, + 506, + 250 + ], + "score": 1.0, + "content": "represent deterministic mappings and", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 343, + 249, + 506, + 261 + ], + "spans": [ + { + "bbox": [ + 343, + 249, + 506, + 261 + ], + "score": 1.0, + "content": "dashed lines represent sampling. The", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 343, + 261, + 505, + 272 + ], + "spans": [ + { + "bbox": [ + 343, + 261, + 505, + 272 + ], + "score": 1.0, + "content": "conditioning variable enters the net-", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 343, + 271, + 505, + 283 + ], + "spans": [ + { + "bbox": [ + 343, + 271, + 429, + 283 + ], + "score": 1.0, + "content": "work in base density", + "type": "text" + }, + { + "bbox": [ + 429, + 271, + 457, + 283 + ], + "score": 0.92, + "content": "p ( \\mathbf { z } | \\mathbf { x } )", + "type": "inline_equation" + }, + { + "bbox": [ + 457, + 271, + 505, + 283 + ], + "score": 1.0, + "content": "and the bi-", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 343, + 282, + 449, + 295 + ], + "spans": [ + { + "bbox": [ + 343, + 282, + 414, + 295 + ], + "score": 1.0, + "content": "jective mappings", + "type": "text" + }, + { + "bbox": [ + 414, + 282, + 445, + 294 + ], + "score": 0.93, + "content": "f ( \\mathbf { y } , \\mathbf { x } )", + "type": "inline_equation" + }, + { + "bbox": [ + 445, + 282, + 449, + 295 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 26 + } + ], + "index": 23.25 + }, + { + "type": "text", + "bbox": [ + 108, + 323, + 505, + 367 + ], + "lines": [ + { + "bbox": [ + 106, + 323, + 505, + 335 + ], + "spans": [ + { + "bbox": [ + 106, + 323, + 505, + 335 + ], + "score": 1.0, + "content": "Conditional modules In our work, the conditioning is introduced in the prior, the split priors, and", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 106, + 335, + 505, + 347 + ], + "spans": [ + { + "bbox": [ + 106, + 335, + 461, + 347 + ], + "score": 1.0, + "content": "the affine coupling modules. For the prior, we set the mean and variance as functions of", + "type": "text" + }, + { + "bbox": [ + 462, + 336, + 469, + 344 + ], + "score": 0.63, + "content": "\\mathbf { x }", + "type": "inline_equation" + }, + { + "bbox": [ + 469, + 335, + 505, + 347 + ], + "score": 1.0, + "content": ". For the", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 106, + 345, + 505, + 357 + ], + "spans": [ + { + "bbox": [ + 106, + 345, + 183, + 357 + ], + "score": 1.0, + "content": "split prior, we add", + "type": "text" + }, + { + "bbox": [ + 183, + 347, + 192, + 356 + ], + "score": 0.31, + "content": "\\mathbf { x }", + "type": "inline_equation" + }, + { + "bbox": [ + 192, + 345, + 377, + 357 + ], + "score": 1.0, + "content": "as a conditoning argument to the conditional", + "type": "text" + }, + { + "bbox": [ + 377, + 345, + 423, + 357 + ], + "score": 0.94, + "content": "p ( \\mathbf { z } _ { 1 } | \\mathbf { z } _ { 0 } , \\mathbf { x } )", + "type": "inline_equation" + }, + { + "bbox": [ + 424, + 345, + 505, + 357 + ], + "score": 1.0, + "content": ". And for the affine", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 106, + 357, + 392, + 367 + ], + "spans": [ + { + "bbox": [ + 106, + 357, + 206, + 367 + ], + "score": 1.0, + "content": "coupling layers, we pass", + "type": "text" + }, + { + "bbox": [ + 206, + 358, + 214, + 366 + ], + "score": 0.47, + "content": "\\mathbf { x }", + "type": "inline_equation" + }, + { + "bbox": [ + 214, + 357, + 392, + 367 + ], + "score": 1.0, + "content": "to the scale and translation networks so that", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 32.5 + }, + { + "type": "interline_equation", + "bbox": [ + 164, + 374, + 447, + 413 + ], + "lines": [ + { + "bbox": [ + 164, + 374, + 447, + 413 + ], + "spans": [ + { + "bbox": [ + 164, + 374, + 447, + 413 + ], + "score": 0.86, + "content": "\\begin{array} { r l } & { \\mathrm { C o n d i t i o n a l ~ P r i o r } \\qquad p ( \\mathbf { z } | \\mathbf { x } ) = \\mathcal { N } ( \\mathbf { z } ; \\mu ( \\mathbf { x } ) , \\sigma ^ { 2 } ( \\mathbf { x } ) ) } \\\\ & { \\mathrm { C o n d i t i o n a l ~ S p l i t ~ P r i o r } \\quad p ( \\mathbf { z } _ { 1 } | \\mathbf { z } _ { 0 } , \\mathbf { x } ) = \\mathcal { N } ( \\mathbf { z } _ { 1 } ; \\mu ( \\mathbf { z } _ { 0 } , \\mathbf { x } ) , \\sigma ^ { 2 } ( \\mathbf { z } _ { 0 } , \\mathbf { x } ) ) } \\\\ & { \\mathrm { C o n d i t i o n a l ~ C o u p l i n g } \\quad \\mathbf { y } _ { 0 } = s ( \\mathbf { z } _ { 1 } , \\mathbf { x } ) \\cdot \\mathbf { z } _ { 0 } + t ( \\mathbf { z } _ { 1 } , \\mathbf { x } ) ; \\qquad \\mathbf { y } _ { 1 } = \\mathbf { z } _ { 1 } } \\end{array}", + "type": "interline_equation", + "image_path": "2432f77e6296154216b836b4d881c98255c92bbd5f2cdbc54dc9ba9937557734.jpg" + } + ] + } + ], + "index": 36, + "virtual_lines": [ + { + "bbox": [ + 164, + 374, + 447, + 387.0 + ], + "spans": [], + "index": 35 + }, + { + "bbox": [ + 164, + 387.0, + 447, + 400.0 + ], + "spans": [], + "index": 36 + }, + { + "bbox": [ + 164, + 400.0, + 447, + 413.0 + ], + "spans": [], + "index": 37 + } + ] + }, + { + "type": "text", + "bbox": [ + 108, + 419, + 505, + 464 + ], + "lines": [ + { + "bbox": [ + 105, + 418, + 505, + 432 + ], + "spans": [ + { + "bbox": [ + 105, + 418, + 505, + 432 + ], + "score": 1.0, + "content": "In practice these functions are implemented using deep neural networks. First the conditioning term", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 106, + 429, + 505, + 442 + ], + "spans": [ + { + "bbox": [ + 106, + 432, + 114, + 439 + ], + "score": 0.46, + "content": "\\mathbf { x }", + "type": "inline_equation" + }, + { + "bbox": [ + 115, + 429, + 280, + 442 + ], + "score": 1.0, + "content": "is transformed into a rich representation", + "type": "text" + }, + { + "bbox": [ + 280, + 430, + 321, + 441 + ], + "score": 0.91, + "content": "\\mathbf { h } = g ( \\mathbf { x } )", + "type": "inline_equation" + }, + { + "bbox": [ + 322, + 429, + 413, + 442 + ], + "score": 1.0, + "content": "using a large network", + "type": "text" + }, + { + "bbox": [ + 414, + 432, + 420, + 441 + ], + "score": 0.75, + "content": "g", + "type": "inline_equation" + }, + { + "bbox": [ + 420, + 429, + 505, + 442 + ], + "score": 1.0, + "content": ". Subsequently, each", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 106, + 441, + 505, + 452 + ], + "spans": [ + { + "bbox": [ + 106, + 441, + 302, + 452 + ], + "score": 1.0, + "content": "function in the flow is applied to a concatenation", + "type": "text" + }, + { + "bbox": [ + 302, + 441, + 325, + 452 + ], + "score": 0.89, + "content": "[ \\cdot , \\cdot ]", + "type": "inline_equation" + }, + { + "bbox": [ + 326, + 441, + 337, + 452 + ], + "score": 1.0, + "content": "of", + "type": "text" + }, + { + "bbox": [ + 337, + 441, + 345, + 450 + ], + "score": 0.57, + "content": "\\mathbf { h }", + "type": "inline_equation" + }, + { + "bbox": [ + 345, + 441, + 439, + 452 + ], + "score": 1.0, + "content": "and the relevant part of", + "type": "text" + }, + { + "bbox": [ + 440, + 442, + 446, + 450 + ], + "score": 0.66, + "content": "\\mathbf { z }", + "type": "inline_equation" + }, + { + "bbox": [ + 446, + 441, + 505, + 452 + ], + "score": 1.0, + "content": ". For example,", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 451, + 427, + 464 + ], + "spans": [ + { + "bbox": [ + 105, + 451, + 330, + 464 + ], + "score": 1.0, + "content": "the translation of a conditional coupling is computed as", + "type": "text" + }, + { + "bbox": [ + 330, + 451, + 423, + 464 + ], + "score": 0.93, + "content": "t ( \\mathbf { z } _ { 1 } , \\mathbf { x } ) = \\mathbf { N N } ( [ \\mathbf { z } _ { 1 } , \\mathbf { h } ] )", + "type": "inline_equation" + }, + { + "bbox": [ + 424, + 451, + 427, + 464 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 41 + } + ], + "index": 39.5 + }, + { + "type": "title", + "bbox": [ + 108, + 475, + 421, + 487 + ], + "lines": [ + { + "bbox": [ + 105, + 475, + 423, + 489 + ], + "spans": [ + { + "bbox": [ + 105, + 475, + 423, + 489 + ], + "score": 1.0, + "content": "3.2 VARIATIONAL DEQUANTIZATION FOR BINARY RANDOM VARIABLES", + "type": "text" + } + ], + "index": 42 + } + ], + "index": 42 + }, + { + "type": "text", + "bbox": [ + 106, + 496, + 505, + 585 + ], + "lines": [ + { + "bbox": [ + 105, + 495, + 507, + 509 + ], + "spans": [ + { + "bbox": [ + 105, + 495, + 430, + 509 + ], + "score": 1.0, + "content": "We generalize the variational dequantization scheme for the binary setting. Let", + "type": "text" + }, + { + "bbox": [ + 430, + 496, + 483, + 508 + ], + "score": 0.93, + "content": "\\mathbf { y } \\in \\{ 0 , 1 \\} ^ { D }", + "type": "inline_equation" + }, + { + "bbox": [ + 484, + 495, + 507, + 509 + ], + "score": 1.0, + "content": "be a", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 506, + 506, + 520 + ], + "spans": [ + { + "bbox": [ + 105, + 506, + 268, + 520 + ], + "score": 1.0, + "content": "multivariate binary random variable and", + "type": "text" + }, + { + "bbox": [ + 269, + 507, + 302, + 518 + ], + "score": 0.92, + "content": "\\mathbf { v } \\in \\mathbb { R } ^ { D }", + "type": "inline_equation" + }, + { + "bbox": [ + 303, + 506, + 506, + 520 + ], + "score": 1.0, + "content": "its dequantized representation. In Ho et al. (2019)", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 518, + 505, + 531 + ], + "spans": [ + { + "bbox": [ + 105, + 518, + 466, + 531 + ], + "score": 1.0, + "content": "the bound is not guaranteed to be tight, since there is a domain mismatch in the support of", + "type": "text" + }, + { + "bbox": [ + 467, + 519, + 487, + 530 + ], + "score": 0.92, + "content": "p ( \\mathbf { v } )", + "type": "inline_equation" + }, + { + "bbox": [ + 487, + 518, + 505, + 531 + ], + "score": 1.0, + "content": "and", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 105, + 529, + 506, + 542 + ], + "spans": [ + { + "bbox": [ + 105, + 529, + 217, + 542 + ], + "score": 1.0, + "content": "the variational dequantizer", + "type": "text" + }, + { + "bbox": [ + 217, + 529, + 245, + 541 + ], + "score": 0.92, + "content": "q ( \\mathbf { v } | \\mathbf { y } )", + "type": "inline_equation" + }, + { + "bbox": [ + 246, + 529, + 312, + 542 + ], + "score": 1.0, + "content": ". Technically, if", + "type": "text" + }, + { + "bbox": [ + 312, + 529, + 333, + 541 + ], + "score": 0.92, + "content": "p ( \\mathbf { v } )", + "type": "inline_equation" + }, + { + "bbox": [ + 333, + 529, + 506, + 542 + ], + "score": 1.0, + "content": "is modeled as a bijective mapping from a", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 105, + 540, + 506, + 554 + ], + "spans": [ + { + "bbox": [ + 105, + 540, + 474, + 554 + ], + "score": 1.0, + "content": "Gaussian distribution where the mapping only has finite volume changes, then the support of", + "type": "text" + }, + { + "bbox": [ + 475, + 540, + 495, + 552 + ], + "score": 0.92, + "content": "p ( \\mathbf { v } )", + "type": "inline_equation" + }, + { + "bbox": [ + 495, + 540, + 506, + 554 + ], + "score": 1.0, + "content": "is", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 106, + 551, + 505, + 564 + ], + "spans": [ + { + "bbox": [ + 106, + 551, + 505, + 564 + ], + "score": 1.0, + "content": "unbounded. On the otherhand, the support of the dequantizer is bounded and so we have to redefine", + "type": "text" + } + ], + "index": 48 + }, + { + "bbox": [ + 105, + 561, + 506, + 575 + ], + "spans": [ + { + "bbox": [ + 105, + 561, + 263, + 575 + ], + "score": 1.0, + "content": "either the dequantizer to map to all of", + "type": "text" + }, + { + "bbox": [ + 263, + 561, + 278, + 572 + ], + "score": 0.9, + "content": "\\mathbb { R } ^ { D }", + "type": "inline_equation" + }, + { + "bbox": [ + 279, + 561, + 506, + 575 + ], + "score": 1.0, + "content": "or restrict the support of the flow to a bounded volume", + "type": "text" + } + ], + "index": 49 + }, + { + "bbox": [ + 105, + 572, + 406, + 586 + ], + "spans": [ + { + "bbox": [ + 105, + 572, + 133, + 586 + ], + "score": 1.0, + "content": "inside", + "type": "text" + }, + { + "bbox": [ + 133, + 573, + 148, + 583 + ], + "score": 0.88, + "content": "\\mathbb { R } ^ { D }", + "type": "inline_equation" + }, + { + "bbox": [ + 149, + 572, + 406, + 586 + ], + "score": 1.0, + "content": ". We resolve this by dequantizing with half-infinite noise, where", + "type": "text" + } + ], + "index": 50 + } + ], + "index": 46.5 + }, + { + "type": "interline_equation", + "bbox": [ + 206, + 587, + 403, + 601 + ], + "lines": [ + { + "bbox": [ + 206, + 587, + 403, + 601 + ], + "spans": [ + { + "bbox": [ + 206, + 587, + 403, + 601 + ], + "score": 0.88, + "content": "\\mathbf { v } | \\mathbf { y } , \\mathbf { z } = 0 . 5 + \\mathrm { s i g n } ( \\mathbf { y } - 0 . 5 ) \\cdot \\mathrm { s o f t p l u s } ( \\mathrm { N N } ( \\mathbf { z } ) ) .", + "type": "interline_equation", + "image_path": "3dcf5000ee068c5360fa1025803f9b79d3eea096990484a6e972a440540fa3ac.jpg" + } + ] + } + ], + "index": 51, + "virtual_lines": [ + { + "bbox": [ + 206, + 587, + 403, + 601 + ], + "spans": [], + "index": 51 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 603, + 507, + 626 + ], + "lines": [ + { + "bbox": [ + 106, + 603, + 505, + 616 + ], + "spans": [ + { + "bbox": [ + 106, + 603, + 460, + 616 + ], + "score": 1.0, + "content": "The softplus guarantees that samples from the neural network NN are only positive. If", + "type": "text" + }, + { + "bbox": [ + 461, + 605, + 469, + 615 + ], + "score": 0.59, + "content": "\\mathbf { y }", + "type": "inline_equation" + }, + { + "bbox": [ + 469, + 603, + 505, + 616 + ], + "score": 1.0, + "content": "is 1, the", + "type": "text" + } + ], + "index": 52 + }, + { + "bbox": [ + 105, + 614, + 470, + 626 + ], + "spans": [ + { + "bbox": [ + 105, + 614, + 128, + 626 + ], + "score": 1.0, + "content": "term", + "type": "text" + }, + { + "bbox": [ + 128, + 614, + 183, + 626 + ], + "score": 0.78, + "content": "\\mathrm { s i g n } ( \\mathbf { y } - 0 . 5 )", + "type": "inline_equation" + }, + { + "bbox": [ + 184, + 614, + 329, + 626 + ], + "score": 1.0, + "content": "outputs positive-valued noise and if", + "type": "text" + }, + { + "bbox": [ + 329, + 616, + 337, + 626 + ], + "score": 0.78, + "content": "\\mathbf { y }", + "type": "inline_equation" + }, + { + "bbox": [ + 337, + 614, + 470, + 626 + ], + "score": 1.0, + "content": "is 0 the noise is negative-valued.", + "type": "text" + } + ], + "index": 53 + } + ], + "index": 52.5 + }, + { + "type": "title", + "bbox": [ + 108, + 641, + 211, + 654 + ], + "lines": [ + { + "bbox": [ + 105, + 640, + 213, + 655 + ], + "spans": [ + { + "bbox": [ + 105, + 640, + 213, + 655 + ], + "score": 1.0, + "content": "4 RELATED WORK", + "type": "text" + } + ], + "index": 54 + } + ], + "index": 54 + }, + { + "type": "text", + "bbox": [ + 106, + 665, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 665, + 505, + 678 + ], + "spans": [ + { + "bbox": [ + 105, + 665, + 505, + 678 + ], + "score": 1.0, + "content": "Normalizing flows were originally introduced to machine learning to learn a flexible variational", + "type": "text" + } + ], + "index": 55 + }, + { + "bbox": [ + 104, + 676, + 506, + 690 + ], + "spans": [ + { + "bbox": [ + 104, + 676, + 506, + 690 + ], + "score": 1.0, + "content": "posterior, a conditional distribution, in VAEs (Rezende & Mohamed, 2015; Kingma et al., 2016a;", + "type": "text" + } + ], + "index": 56 + }, + { + "bbox": [ + 105, + 687, + 505, + 700 + ], + "spans": [ + { + "bbox": [ + 105, + 687, + 505, + 700 + ], + "score": 1.0, + "content": "van den Berg et al., 2018). Flow-based generative models (Dinh et al., 2016; Papamakarios et al.,", + "type": "text" + } + ], + "index": 57 + }, + { + "bbox": [ + 105, + 698, + 505, + 711 + ], + "spans": [ + { + "bbox": [ + 105, + 698, + 505, + 711 + ], + "score": 1.0, + "content": "2017; Huang et al., 2018; Kingma & Dhariwal, 2018; Hoogeboom et al., 2019b; Grathwohl et al.,", + "type": "text" + } + ], + "index": 58 + }, + { + "bbox": [ + 105, + 709, + 506, + 722 + ], + "spans": [ + { + "bbox": [ + 105, + 709, + 506, + 722 + ], + "score": 1.0, + "content": "2019; Cao et al., 2019; Chen et al., 2019) are typically trained directly in the data space. Several of", + "type": "text" + } + ], + "index": 59 + }, + { + "bbox": [ + 105, + 719, + 505, + 734 + ], + "spans": [ + { + "bbox": [ + 105, + 719, + 505, + 734 + ], + "score": 1.0, + "content": "these are designed to be fast to invert, which makes them suitable for drawing samples after training.", + "type": "text" + } + ], + "index": 60 + } + ], + "index": 57.5 + } + ], + "page_idx": 3, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 27, + 308, + 37 + ], + "lines": [ + { + "bbox": [ + 107, + 26, + 308, + 38 + ], + "spans": [ + { + "bbox": [ + 107, + 26, + 308, + 38 + ], + "score": 1.0, + "content": "Under review as a conference paper at ICLR 2020", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 302, + 752, + 308, + 759 + ], + "lines": [] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 107, + 82, + 505, + 131 + ], + "lines": [ + { + "bbox": [ + 105, + 82, + 505, + 95 + ], + "spans": [ + { + "bbox": [ + 105, + 82, + 246, + 95 + ], + "score": 1.0, + "content": "The generative process from x to", + "type": "text" + }, + { + "bbox": [ + 246, + 84, + 254, + 94 + ], + "score": 0.32, + "content": "\\mathbf { y }", + "type": "inline_equation" + }, + { + "bbox": [ + 255, + 82, + 484, + 95 + ], + "score": 1.0, + "content": "(shown in Figure 1) can be described by first sampling", + "type": "text" + }, + { + "bbox": [ + 485, + 84, + 505, + 93 + ], + "score": 0.78, + "content": "\\mathbf { z } \\sim", + "type": "inline_equation" + } + ], + "index": 0 + }, + { + "bbox": [ + 106, + 93, + 506, + 106 + ], + "spans": [ + { + "bbox": [ + 106, + 93, + 150, + 106 + ], + "score": 0.92, + "content": "p _ { Z | X } ( \\mathbf { z } | \\mathbf { x } )", + "type": "inline_equation" + }, + { + "bbox": [ + 150, + 93, + 398, + 106 + ], + "score": 1.0, + "content": "from a simple base density with its parameters conditioned on", + "type": "text" + }, + { + "bbox": [ + 399, + 95, + 407, + 104 + ], + "score": 0.52, + "content": "\\mathbf { x }", + "type": "inline_equation" + }, + { + "bbox": [ + 407, + 93, + 506, + 106 + ], + "score": 1.0, + "content": "(for us this is a diagonal", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 106, + 505, + 121 + ], + "spans": [ + { + "bbox": [ + 105, + 106, + 396, + 120 + ], + "score": 1.0, + "content": "Gaussian) and then passing it through a sequence of bijective mappings", + "type": "text" + }, + { + "bbox": [ + 396, + 106, + 437, + 121 + ], + "score": 0.93, + "content": "f _ { \\phi } ^ { - 1 } ( \\mathbf { z } ; \\mathbf { x } )", + "type": "inline_equation" + }, + { + "bbox": [ + 437, + 106, + 505, + 120 + ], + "score": 1.0, + "content": ". This allows for", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 118, + 442, + 132 + ], + "spans": [ + { + "bbox": [ + 105, + 118, + 442, + 132 + ], + "score": 1.0, + "content": "modelling multimodal conditional distributions in y, which is typically uncommon.", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 1.5, + "bbox_fs": [ + 105, + 82, + 506, + 132 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 136, + 336, + 312 + ], + "lines": [ + { + "bbox": [ + 106, + 135, + 336, + 147 + ], + "spans": [ + { + "bbox": [ + 106, + 135, + 336, + 147 + ], + "score": 1.0, + "content": "For the training procedure, the process runs in reverse.", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 106, + 146, + 337, + 159 + ], + "spans": [ + { + "bbox": [ + 106, + 146, + 195, + 159 + ], + "score": 1.0, + "content": "We begin with label", + "type": "text" + }, + { + "bbox": [ + 195, + 149, + 204, + 158 + ], + "score": 0.5, + "content": "\\mathbf { y }", + "type": "inline_equation" + }, + { + "bbox": [ + 204, + 146, + 304, + 159 + ], + "score": 1.0, + "content": "and conditioning input", + "type": "text" + }, + { + "bbox": [ + 304, + 149, + 312, + 157 + ], + "score": 0.43, + "content": "\\mathbf { x }", + "type": "inline_equation" + }, + { + "bbox": [ + 312, + 146, + 337, + 159 + ], + "score": 1.0, + "content": ". We", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 106, + 156, + 337, + 171 + ], + "spans": [ + { + "bbox": [ + 106, + 156, + 228, + 171 + ], + "score": 1.0, + "content": "‘flow’ the label back through", + "type": "text" + }, + { + "bbox": [ + 228, + 158, + 240, + 170 + ], + "score": 0.88, + "content": "f _ { \\phi }", + "type": "inline_equation" + }, + { + "bbox": [ + 240, + 156, + 276, + 171 + ], + "score": 1.0, + "content": "to yield", + "type": "text" + }, + { + "bbox": [ + 276, + 158, + 333, + 170 + ], + "score": 0.92, + "content": "\\mathbf { z } = f _ { \\phi } ( \\mathbf { y } ; \\mathbf { x } )", + "type": "inline_equation" + }, + { + "bbox": [ + 333, + 156, + 337, + 171 + ], + "score": 1.0, + "content": ",", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 106, + 168, + 336, + 181 + ], + "spans": [ + { + "bbox": [ + 106, + 168, + 336, + 181 + ], + "score": 1.0, + "content": "and then we evaluate the log-likelihood of the parame-", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 180, + 336, + 191 + ], + "spans": [ + { + "bbox": [ + 105, + 180, + 287, + 191 + ], + "score": 1.0, + "content": "ters of the prior, given this transformed label", + "type": "text" + }, + { + "bbox": [ + 287, + 181, + 294, + 190 + ], + "score": 0.29, + "content": "\\mathbf { z }", + "type": "inline_equation" + }, + { + "bbox": [ + 294, + 180, + 336, + 191 + ], + "score": 1.0, + "content": ". The flow", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 106, + 190, + 337, + 203 + ], + "spans": [ + { + "bbox": [ + 106, + 190, + 337, + 203 + ], + "score": 1.0, + "content": "and prior parameters can be optimized using stochastic", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 106, + 202, + 337, + 213 + ], + "spans": [ + { + "bbox": [ + 106, + 202, + 337, + 213 + ], + "score": 1.0, + "content": "gradient descent and training in minibatches in the usual", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 106, + 213, + 336, + 224 + ], + "spans": [ + { + "bbox": [ + 106, + 213, + 336, + 224 + ], + "score": 1.0, + "content": "fashion. Note that this style of training a conditional den-", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 106, + 223, + 337, + 236 + ], + "spans": [ + { + "bbox": [ + 106, + 223, + 152, + 236 + ], + "score": 1.0, + "content": "sity model", + "type": "text" + }, + { + "bbox": [ + 152, + 223, + 198, + 236 + ], + "score": 0.93, + "content": "p _ { Y | X } ( \\mathbf { y } | \\mathbf { x } )", + "type": "inline_equation" + }, + { + "bbox": [ + 198, + 223, + 337, + 236 + ], + "score": 1.0, + "content": "differs fundamentally from tradi-", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 234, + 337, + 247 + ], + "spans": [ + { + "bbox": [ + 105, + 234, + 337, + 247 + ], + "score": 1.0, + "content": "tional models, because we compute the log-likelihood in", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 106, + 246, + 337, + 258 + ], + "spans": [ + { + "bbox": [ + 106, + 248, + 113, + 256 + ], + "score": 0.36, + "content": "\\mathbf { z }", + "type": "inline_equation" + }, + { + "bbox": [ + 113, + 246, + 337, + 258 + ], + "score": 1.0, + "content": "-space and not y-space. As a result, we are not biasing", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 106, + 257, + 336, + 268 + ], + "spans": [ + { + "bbox": [ + 106, + 257, + 336, + 268 + ], + "score": 1.0, + "content": "our results with an arbitrary choice of output-space likeli-", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 267, + 336, + 279 + ], + "spans": [ + { + "bbox": [ + 105, + 267, + 336, + 279 + ], + "score": 1.0, + "content": "hood or in the case of this paper, handcrafted image loss.", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 278, + 337, + 291 + ], + "spans": [ + { + "bbox": [ + 105, + 278, + 337, + 291 + ], + "score": 1.0, + "content": "Instead, one could interpret this method as learning the", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 106, + 289, + 337, + 300 + ], + "spans": [ + { + "bbox": [ + 106, + 289, + 337, + 300 + ], + "score": 1.0, + "content": "correlational and multimodal structure of the likelihood", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 299, + 218, + 313 + ], + "spans": [ + { + "bbox": [ + 105, + 299, + 218, + 313 + ], + "score": 1.0, + "content": "or simply put loss-learning.", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 11.5, + "bbox_fs": [ + 105, + 135, + 337, + 313 + ] + }, + { + "type": "image", + "bbox": [ + 344, + 148, + 504, + 206 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 344, + 148, + 504, + 206 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 344, + 148, + 504, + 206 + ], + "spans": [ + { + "bbox": [ + 344, + 148, + 504, + 206 + ], + "score": 0.94, + "type": "image", + "image_path": "1d00c1a305b002fe4da20995d0fabb8d03ca5c203d3362bd2c40e5bad8b0f3e7.jpg" + } + ] + } + ], + "index": 20.5, + "virtual_lines": [ + { + "bbox": [ + 344, + 148, + 504, + 162.5 + ], + "spans": [], + "index": 19 + }, + { + "bbox": [ + 344, + 162.5, + 504, + 177.0 + ], + "spans": [], + "index": 20 + }, + { + "bbox": [ + 344, + 177.0, + 504, + 191.5 + ], + "spans": [], + "index": 21 + }, + { + "bbox": [ + 344, + 191.5, + 504, + 206.0 + ], + "spans": [], + "index": 22 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 344, + 216, + 505, + 294 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 344, + 216, + 505, + 228 + ], + "spans": [ + { + "bbox": [ + 344, + 216, + 505, + 228 + ], + "score": 1.0, + "content": "Figure 1: Diagram of our model in the", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 343, + 227, + 506, + 239 + ], + "spans": [ + { + "bbox": [ + 343, + 227, + 506, + 239 + ], + "score": 1.0, + "content": "train and sampling phases. Solid lines", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 343, + 238, + 506, + 250 + ], + "spans": [ + { + "bbox": [ + 343, + 238, + 506, + 250 + ], + "score": 1.0, + "content": "represent deterministic mappings and", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 343, + 249, + 506, + 261 + ], + "spans": [ + { + "bbox": [ + 343, + 249, + 506, + 261 + ], + "score": 1.0, + "content": "dashed lines represent sampling. The", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 343, + 261, + 505, + 272 + ], + "spans": [ + { + "bbox": [ + 343, + 261, + 505, + 272 + ], + "score": 1.0, + "content": "conditioning variable enters the net-", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 343, + 271, + 505, + 283 + ], + "spans": [ + { + "bbox": [ + 343, + 271, + 429, + 283 + ], + "score": 1.0, + "content": "work in base density", + "type": "text" + }, + { + "bbox": [ + 429, + 271, + 457, + 283 + ], + "score": 0.92, + "content": "p ( \\mathbf { z } | \\mathbf { x } )", + "type": "inline_equation" + }, + { + "bbox": [ + 457, + 271, + 505, + 283 + ], + "score": 1.0, + "content": "and the bi-", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 343, + 282, + 449, + 295 + ], + "spans": [ + { + "bbox": [ + 343, + 282, + 414, + 295 + ], + "score": 1.0, + "content": "jective mappings", + "type": "text" + }, + { + "bbox": [ + 414, + 282, + 445, + 294 + ], + "score": 0.93, + "content": "f ( \\mathbf { y } , \\mathbf { x } )", + "type": "inline_equation" + }, + { + "bbox": [ + 445, + 282, + 449, + 295 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 26 + } + ], + "index": 23.25 + }, + { + "type": "text", + "bbox": [ + 108, + 323, + 505, + 367 + ], + "lines": [ + { + "bbox": [ + 106, + 323, + 505, + 335 + ], + "spans": [ + { + "bbox": [ + 106, + 323, + 505, + 335 + ], + "score": 1.0, + "content": "Conditional modules In our work, the conditioning is introduced in the prior, the split priors, and", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 106, + 335, + 505, + 347 + ], + "spans": [ + { + "bbox": [ + 106, + 335, + 461, + 347 + ], + "score": 1.0, + "content": "the affine coupling modules. For the prior, we set the mean and variance as functions of", + "type": "text" + }, + { + "bbox": [ + 462, + 336, + 469, + 344 + ], + "score": 0.63, + "content": "\\mathbf { x }", + "type": "inline_equation" + }, + { + "bbox": [ + 469, + 335, + 505, + 347 + ], + "score": 1.0, + "content": ". For the", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 106, + 345, + 505, + 357 + ], + "spans": [ + { + "bbox": [ + 106, + 345, + 183, + 357 + ], + "score": 1.0, + "content": "split prior, we add", + "type": "text" + }, + { + "bbox": [ + 183, + 347, + 192, + 356 + ], + "score": 0.31, + "content": "\\mathbf { x }", + "type": "inline_equation" + }, + { + "bbox": [ + 192, + 345, + 377, + 357 + ], + "score": 1.0, + "content": "as a conditoning argument to the conditional", + "type": "text" + }, + { + "bbox": [ + 377, + 345, + 423, + 357 + ], + "score": 0.94, + "content": "p ( \\mathbf { z } _ { 1 } | \\mathbf { z } _ { 0 } , \\mathbf { x } )", + "type": "inline_equation" + }, + { + "bbox": [ + 424, + 345, + 505, + 357 + ], + "score": 1.0, + "content": ". And for the affine", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 106, + 357, + 392, + 367 + ], + "spans": [ + { + "bbox": [ + 106, + 357, + 206, + 367 + ], + "score": 1.0, + "content": "coupling layers, we pass", + "type": "text" + }, + { + "bbox": [ + 206, + 358, + 214, + 366 + ], + "score": 0.47, + "content": "\\mathbf { x }", + "type": "inline_equation" + }, + { + "bbox": [ + 214, + 357, + 392, + 367 + ], + "score": 1.0, + "content": "to the scale and translation networks so that", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 32.5, + "bbox_fs": [ + 106, + 323, + 505, + 367 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 164, + 374, + 447, + 413 + ], + "lines": [ + { + "bbox": [ + 164, + 374, + 447, + 413 + ], + "spans": [ + { + "bbox": [ + 164, + 374, + 447, + 413 + ], + "score": 0.86, + "content": "\\begin{array} { r l } & { \\mathrm { C o n d i t i o n a l ~ P r i o r } \\qquad p ( \\mathbf { z } | \\mathbf { x } ) = \\mathcal { N } ( \\mathbf { z } ; \\mu ( \\mathbf { x } ) , \\sigma ^ { 2 } ( \\mathbf { x } ) ) } \\\\ & { \\mathrm { C o n d i t i o n a l ~ S p l i t ~ P r i o r } \\quad p ( \\mathbf { z } _ { 1 } | \\mathbf { z } _ { 0 } , \\mathbf { x } ) = \\mathcal { N } ( \\mathbf { z } _ { 1 } ; \\mu ( \\mathbf { z } _ { 0 } , \\mathbf { x } ) , \\sigma ^ { 2 } ( \\mathbf { z } _ { 0 } , \\mathbf { x } ) ) } \\\\ & { \\mathrm { C o n d i t i o n a l ~ C o u p l i n g } \\quad \\mathbf { y } _ { 0 } = s ( \\mathbf { z } _ { 1 } , \\mathbf { x } ) \\cdot \\mathbf { z } _ { 0 } + t ( \\mathbf { z } _ { 1 } , \\mathbf { x } ) ; \\qquad \\mathbf { y } _ { 1 } = \\mathbf { z } _ { 1 } } \\end{array}", + "type": "interline_equation", + "image_path": "2432f77e6296154216b836b4d881c98255c92bbd5f2cdbc54dc9ba9937557734.jpg" + } + ] + } + ], + "index": 36, + "virtual_lines": [ + { + "bbox": [ + 164, + 374, + 447, + 387.0 + ], + "spans": [], + "index": 35 + }, + { + "bbox": [ + 164, + 387.0, + 447, + 400.0 + ], + "spans": [], + "index": 36 + }, + { + "bbox": [ + 164, + 400.0, + 447, + 413.0 + ], + "spans": [], + "index": 37 + } + ] + }, + { + "type": "text", + "bbox": [ + 108, + 419, + 505, + 464 + ], + "lines": [ + { + "bbox": [ + 105, + 418, + 505, + 432 + ], + "spans": [ + { + "bbox": [ + 105, + 418, + 505, + 432 + ], + "score": 1.0, + "content": "In practice these functions are implemented using deep neural networks. First the conditioning term", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 106, + 429, + 505, + 442 + ], + "spans": [ + { + "bbox": [ + 106, + 432, + 114, + 439 + ], + "score": 0.46, + "content": "\\mathbf { x }", + "type": "inline_equation" + }, + { + "bbox": [ + 115, + 429, + 280, + 442 + ], + "score": 1.0, + "content": "is transformed into a rich representation", + "type": "text" + }, + { + "bbox": [ + 280, + 430, + 321, + 441 + ], + "score": 0.91, + "content": "\\mathbf { h } = g ( \\mathbf { x } )", + "type": "inline_equation" + }, + { + "bbox": [ + 322, + 429, + 413, + 442 + ], + "score": 1.0, + "content": "using a large network", + "type": "text" + }, + { + "bbox": [ + 414, + 432, + 420, + 441 + ], + "score": 0.75, + "content": "g", + "type": "inline_equation" + }, + { + "bbox": [ + 420, + 429, + 505, + 442 + ], + "score": 1.0, + "content": ". Subsequently, each", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 106, + 441, + 505, + 452 + ], + "spans": [ + { + "bbox": [ + 106, + 441, + 302, + 452 + ], + "score": 1.0, + "content": "function in the flow is applied to a concatenation", + "type": "text" + }, + { + "bbox": [ + 302, + 441, + 325, + 452 + ], + "score": 0.89, + "content": "[ \\cdot , \\cdot ]", + "type": "inline_equation" + }, + { + "bbox": [ + 326, + 441, + 337, + 452 + ], + "score": 1.0, + "content": "of", + "type": "text" + }, + { + "bbox": [ + 337, + 441, + 345, + 450 + ], + "score": 0.57, + "content": "\\mathbf { h }", + "type": "inline_equation" + }, + { + "bbox": [ + 345, + 441, + 439, + 452 + ], + "score": 1.0, + "content": "and the relevant part of", + "type": "text" + }, + { + "bbox": [ + 440, + 442, + 446, + 450 + ], + "score": 0.66, + "content": "\\mathbf { z }", + "type": "inline_equation" + }, + { + "bbox": [ + 446, + 441, + 505, + 452 + ], + "score": 1.0, + "content": ". For example,", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 451, + 427, + 464 + ], + "spans": [ + { + "bbox": [ + 105, + 451, + 330, + 464 + ], + "score": 1.0, + "content": "the translation of a conditional coupling is computed as", + "type": "text" + }, + { + "bbox": [ + 330, + 451, + 423, + 464 + ], + "score": 0.93, + "content": "t ( \\mathbf { z } _ { 1 } , \\mathbf { x } ) = \\mathbf { N N } ( [ \\mathbf { z } _ { 1 } , \\mathbf { h } ] )", + "type": "inline_equation" + }, + { + "bbox": [ + 424, + 451, + 427, + 464 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 41 + } + ], + "index": 39.5, + "bbox_fs": [ + 105, + 418, + 505, + 464 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 475, + 421, + 487 + ], + "lines": [ + { + "bbox": [ + 105, + 475, + 423, + 489 + ], + "spans": [ + { + "bbox": [ + 105, + 475, + 423, + 489 + ], + "score": 1.0, + "content": "3.2 VARIATIONAL DEQUANTIZATION FOR BINARY RANDOM VARIABLES", + "type": "text" + } + ], + "index": 42 + } + ], + "index": 42 + }, + { + "type": "text", + "bbox": [ + 106, + 496, + 505, + 585 + ], + "lines": [ + { + "bbox": [ + 105, + 495, + 507, + 509 + ], + "spans": [ + { + "bbox": [ + 105, + 495, + 430, + 509 + ], + "score": 1.0, + "content": "We generalize the variational dequantization scheme for the binary setting. Let", + "type": "text" + }, + { + "bbox": [ + 430, + 496, + 483, + 508 + ], + "score": 0.93, + "content": "\\mathbf { y } \\in \\{ 0 , 1 \\} ^ { D }", + "type": "inline_equation" + }, + { + "bbox": [ + 484, + 495, + 507, + 509 + ], + "score": 1.0, + "content": "be a", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 506, + 506, + 520 + ], + "spans": [ + { + "bbox": [ + 105, + 506, + 268, + 520 + ], + "score": 1.0, + "content": "multivariate binary random variable and", + "type": "text" + }, + { + "bbox": [ + 269, + 507, + 302, + 518 + ], + "score": 0.92, + "content": "\\mathbf { v } \\in \\mathbb { R } ^ { D }", + "type": "inline_equation" + }, + { + "bbox": [ + 303, + 506, + 506, + 520 + ], + "score": 1.0, + "content": "its dequantized representation. In Ho et al. (2019)", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 518, + 505, + 531 + ], + "spans": [ + { + "bbox": [ + 105, + 518, + 466, + 531 + ], + "score": 1.0, + "content": "the bound is not guaranteed to be tight, since there is a domain mismatch in the support of", + "type": "text" + }, + { + "bbox": [ + 467, + 519, + 487, + 530 + ], + "score": 0.92, + "content": "p ( \\mathbf { v } )", + "type": "inline_equation" + }, + { + "bbox": [ + 487, + 518, + 505, + 531 + ], + "score": 1.0, + "content": "and", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 105, + 529, + 506, + 542 + ], + "spans": [ + { + "bbox": [ + 105, + 529, + 217, + 542 + ], + "score": 1.0, + "content": "the variational dequantizer", + "type": "text" + }, + { + "bbox": [ + 217, + 529, + 245, + 541 + ], + "score": 0.92, + "content": "q ( \\mathbf { v } | \\mathbf { y } )", + "type": "inline_equation" + }, + { + "bbox": [ + 246, + 529, + 312, + 542 + ], + "score": 1.0, + "content": ". Technically, if", + "type": "text" + }, + { + "bbox": [ + 312, + 529, + 333, + 541 + ], + "score": 0.92, + "content": "p ( \\mathbf { v } )", + "type": "inline_equation" + }, + { + "bbox": [ + 333, + 529, + 506, + 542 + ], + "score": 1.0, + "content": "is modeled as a bijective mapping from a", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 105, + 540, + 506, + 554 + ], + "spans": [ + { + "bbox": [ + 105, + 540, + 474, + 554 + ], + "score": 1.0, + "content": "Gaussian distribution where the mapping only has finite volume changes, then the support of", + "type": "text" + }, + { + "bbox": [ + 475, + 540, + 495, + 552 + ], + "score": 0.92, + "content": "p ( \\mathbf { v } )", + "type": "inline_equation" + }, + { + "bbox": [ + 495, + 540, + 506, + 554 + ], + "score": 1.0, + "content": "is", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 106, + 551, + 505, + 564 + ], + "spans": [ + { + "bbox": [ + 106, + 551, + 505, + 564 + ], + "score": 1.0, + "content": "unbounded. On the otherhand, the support of the dequantizer is bounded and so we have to redefine", + "type": "text" + } + ], + "index": 48 + }, + { + "bbox": [ + 105, + 561, + 506, + 575 + ], + "spans": [ + { + "bbox": [ + 105, + 561, + 263, + 575 + ], + "score": 1.0, + "content": "either the dequantizer to map to all of", + "type": "text" + }, + { + "bbox": [ + 263, + 561, + 278, + 572 + ], + "score": 0.9, + "content": "\\mathbb { R } ^ { D }", + "type": "inline_equation" + }, + { + "bbox": [ + 279, + 561, + 506, + 575 + ], + "score": 1.0, + "content": "or restrict the support of the flow to a bounded volume", + "type": "text" + } + ], + "index": 49 + }, + { + "bbox": [ + 105, + 572, + 406, + 586 + ], + "spans": [ + { + "bbox": [ + 105, + 572, + 133, + 586 + ], + "score": 1.0, + "content": "inside", + "type": "text" + }, + { + "bbox": [ + 133, + 573, + 148, + 583 + ], + "score": 0.88, + "content": "\\mathbb { R } ^ { D }", + "type": "inline_equation" + }, + { + "bbox": [ + 149, + 572, + 406, + 586 + ], + "score": 1.0, + "content": ". We resolve this by dequantizing with half-infinite noise, where", + "type": "text" + } + ], + "index": 50 + } + ], + "index": 46.5, + "bbox_fs": [ + 105, + 495, + 507, + 586 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 206, + 587, + 403, + 601 + ], + "lines": [ + { + "bbox": [ + 206, + 587, + 403, + 601 + ], + "spans": [ + { + "bbox": [ + 206, + 587, + 403, + 601 + ], + "score": 0.88, + "content": "\\mathbf { v } | \\mathbf { y } , \\mathbf { z } = 0 . 5 + \\mathrm { s i g n } ( \\mathbf { y } - 0 . 5 ) \\cdot \\mathrm { s o f t p l u s } ( \\mathrm { N N } ( \\mathbf { z } ) ) .", + "type": "interline_equation", + "image_path": "3dcf5000ee068c5360fa1025803f9b79d3eea096990484a6e972a440540fa3ac.jpg" + } + ] + } + ], + "index": 51, + "virtual_lines": [ + { + "bbox": [ + 206, + 587, + 403, + 601 + ], + "spans": [], + "index": 51 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 603, + 507, + 626 + ], + "lines": [ + { + "bbox": [ + 106, + 603, + 505, + 616 + ], + "spans": [ + { + "bbox": [ + 106, + 603, + 460, + 616 + ], + "score": 1.0, + "content": "The softplus guarantees that samples from the neural network NN are only positive. If", + "type": "text" + }, + { + "bbox": [ + 461, + 605, + 469, + 615 + ], + "score": 0.59, + "content": "\\mathbf { y }", + "type": "inline_equation" + }, + { + "bbox": [ + 469, + 603, + 505, + 616 + ], + "score": 1.0, + "content": "is 1, the", + "type": "text" + } + ], + "index": 52 + }, + { + "bbox": [ + 105, + 614, + 470, + 626 + ], + "spans": [ + { + "bbox": [ + 105, + 614, + 128, + 626 + ], + "score": 1.0, + "content": "term", + "type": "text" + }, + { + "bbox": [ + 128, + 614, + 183, + 626 + ], + "score": 0.78, + "content": "\\mathrm { s i g n } ( \\mathbf { y } - 0 . 5 )", + "type": "inline_equation" + }, + { + "bbox": [ + 184, + 614, + 329, + 626 + ], + "score": 1.0, + "content": "outputs positive-valued noise and if", + "type": "text" + }, + { + "bbox": [ + 329, + 616, + 337, + 626 + ], + "score": 0.78, + "content": "\\mathbf { y }", + "type": "inline_equation" + }, + { + "bbox": [ + 337, + 614, + 470, + 626 + ], + "score": 1.0, + "content": "is 0 the noise is negative-valued.", + "type": "text" + } + ], + "index": 53 + } + ], + "index": 52.5, + "bbox_fs": [ + 105, + 603, + 505, + 626 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 641, + 211, + 654 + ], + "lines": [ + { + "bbox": [ + 105, + 640, + 213, + 655 + ], + "spans": [ + { + "bbox": [ + 105, + 640, + 213, + 655 + ], + "score": 1.0, + "content": "4 RELATED WORK", + "type": "text" + } + ], + "index": 54 + } + ], + "index": 54 + }, + { + "type": "text", + "bbox": [ + 106, + 665, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 665, + 505, + 678 + ], + "spans": [ + { + "bbox": [ + 105, + 665, + 505, + 678 + ], + "score": 1.0, + "content": "Normalizing flows were originally introduced to machine learning to learn a flexible variational", + "type": "text" + } + ], + "index": 55 + }, + { + "bbox": [ + 104, + 676, + 506, + 690 + ], + "spans": [ + { + "bbox": [ + 104, + 676, + 506, + 690 + ], + "score": 1.0, + "content": "posterior, a conditional distribution, in VAEs (Rezende & Mohamed, 2015; Kingma et al., 2016a;", + "type": "text" + } + ], + "index": 56 + }, + { + "bbox": [ + 105, + 687, + 505, + 700 + ], + "spans": [ + { + "bbox": [ + 105, + 687, + 505, + 700 + ], + "score": 1.0, + "content": "van den Berg et al., 2018). Flow-based generative models (Dinh et al., 2016; Papamakarios et al.,", + "type": "text" + } + ], + "index": 57 + }, + { + "bbox": [ + 105, + 698, + 505, + 711 + ], + "spans": [ + { + "bbox": [ + 105, + 698, + 505, + 711 + ], + "score": 1.0, + "content": "2017; Huang et al., 2018; Kingma & Dhariwal, 2018; Hoogeboom et al., 2019b; Grathwohl et al.,", + "type": "text" + } + ], + "index": 58 + }, + { + "bbox": [ + 105, + 709, + 506, + 722 + ], + "spans": [ + { + "bbox": [ + 105, + 709, + 506, + 722 + ], + "score": 1.0, + "content": "2019; Cao et al., 2019; Chen et al., 2019) are typically trained directly in the data space. Several of", + "type": "text" + } + ], + "index": 59 + }, + { + "bbox": [ + 105, + 719, + 505, + 734 + ], + "spans": [ + { + "bbox": [ + 105, + 719, + 505, + 734 + ], + "score": 1.0, + "content": "these are designed to be fast to invert, which makes them suitable for drawing samples after training.", + "type": "text" + } + ], + "index": 60 + } + ], + "index": 57.5, + "bbox_fs": [ + 104, + 665, + 506, + 734 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 107, + 82, + 505, + 192 + ], + "lines": [ + { + "bbox": [ + 105, + 82, + 505, + 95 + ], + "spans": [ + { + "bbox": [ + 105, + 82, + 505, + 95 + ], + "score": 1.0, + "content": "Different versions and applications of conditional normalizing flows include Agrawal & Dukkipati", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 92, + 505, + 107 + ], + "spans": [ + { + "bbox": [ + 105, + 92, + 505, + 107 + ], + "score": 1.0, + "content": "(2016) who utilize flows in the decoder of Variational AutoEncoders Kingma & Welling (2014),", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 106, + 105, + 505, + 116 + ], + "spans": [ + { + "bbox": [ + 106, + 105, + 505, + 116 + ], + "score": 1.0, + "content": "which are conditioned on the latent variable. Trippe & Turner (2018) who utilize conditional flows", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 115, + 505, + 128 + ], + "spans": [ + { + "bbox": [ + 105, + 115, + 505, + 128 + ], + "score": 1.0, + "content": "for prediction problems in a Bayesian framework for density estimation. Atanov et al. (2019) intro-", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 126, + 505, + 138 + ], + "spans": [ + { + "bbox": [ + 105, + 126, + 505, + 138 + ], + "score": 1.0, + "content": "duce a semi-conditional flow that provides an efficient way to learn from unlabeled data for semi-", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 138, + 505, + 150 + ], + "spans": [ + { + "bbox": [ + 105, + 138, + 505, + 150 + ], + "score": 1.0, + "content": "supervised classification problems. Very recently, Ardizzone et al. (2019) have proposed conditional", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 148, + 505, + 161 + ], + "spans": [ + { + "bbox": [ + 105, + 148, + 505, + 161 + ], + "score": 1.0, + "content": "flow-based generative models for image colorization, which differs from our work in training objec-", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 159, + 505, + 172 + ], + "spans": [ + { + "bbox": [ + 105, + 159, + 505, + 172 + ], + "score": 1.0, + "content": "tive, architecture and applicability to binary segmentation. Autoregressive models (Van Oord et al.,", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 169, + 506, + 183 + ], + "spans": [ + { + "bbox": [ + 105, + 169, + 506, + 183 + ], + "score": 1.0, + "content": "2016) have also been studied for conditional image generation van den Oord et al. (2016) but are", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 181, + 232, + 194 + ], + "spans": [ + { + "bbox": [ + 105, + 181, + 232, + 194 + ], + "score": 1.0, + "content": "generally slow to sample from.", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 4.5 + }, + { + "type": "text", + "bbox": [ + 107, + 198, + 505, + 253 + ], + "lines": [ + { + "bbox": [ + 105, + 197, + 505, + 211 + ], + "spans": [ + { + "bbox": [ + 105, + 197, + 505, + 211 + ], + "score": 1.0, + "content": "Adversarial methods (Goodfellow et al., 2014) have widely been applied to (conditional) image", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 208, + 505, + 222 + ], + "spans": [ + { + "bbox": [ + 105, + 208, + 505, + 222 + ], + "score": 1.0, + "content": "density modeling tasks (Vu et al., 2019; Sajjadi et al., 2017b; Yuan et al., 2018; Mechrez et al.,", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 219, + 505, + 233 + ], + "spans": [ + { + "bbox": [ + 105, + 219, + 505, + 233 + ], + "score": 1.0, + "content": "2018), because they tend to generate high-fidelity images. Disadvantages of adversarial methods are", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 230, + 505, + 244 + ], + "spans": [ + { + "bbox": [ + 105, + 230, + 505, + 244 + ], + "score": 1.0, + "content": "that they can be complicated to train, and it is difficult to obtain likelihoods. For this reason, it can", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 241, + 353, + 255 + ], + "spans": [ + { + "bbox": [ + 105, + 241, + 353, + 255 + ], + "score": 1.0, + "content": "be hard to assess whether they are overfitting or generalizing.", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 12 + }, + { + "type": "title", + "bbox": [ + 108, + 271, + 200, + 283 + ], + "lines": [ + { + "bbox": [ + 105, + 270, + 201, + 285 + ], + "spans": [ + { + "bbox": [ + 105, + 270, + 201, + 285 + ], + "score": 1.0, + "content": "5 EXPERIMENTS", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 15 + }, + { + "type": "text", + "bbox": [ + 108, + 297, + 504, + 318 + ], + "lines": [ + { + "bbox": [ + 106, + 296, + 506, + 310 + ], + "spans": [ + { + "bbox": [ + 106, + 296, + 506, + 310 + ], + "score": 1.0, + "content": "Here we explain our experiments into super-resolution and vessel segmentation. All models were", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 106, + 308, + 284, + 320 + ], + "spans": [ + { + "bbox": [ + 106, + 308, + 284, + 320 + ], + "score": 1.0, + "content": "implemented using the PyTorch framework.", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 16.5 + }, + { + "type": "title", + "bbox": [ + 108, + 334, + 285, + 345 + ], + "lines": [ + { + "bbox": [ + 105, + 333, + 287, + 347 + ], + "spans": [ + { + "bbox": [ + 105, + 333, + 287, + 347 + ], + "score": 1.0, + "content": "5.1 SINGLE IMAGE SUPER RESOLUTION", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 18 + }, + { + "type": "text", + "bbox": [ + 107, + 354, + 505, + 442 + ], + "lines": [ + { + "bbox": [ + 105, + 353, + 507, + 368 + ], + "spans": [ + { + "bbox": [ + 105, + 353, + 455, + 368 + ], + "score": 1.0, + "content": "Single Image Super Resolution (SISR) methods aims to find a high resolution image", + "type": "text" + }, + { + "bbox": [ + 455, + 356, + 471, + 366 + ], + "score": 0.87, + "content": "x _ { h r }", + "type": "inline_equation" + }, + { + "bbox": [ + 471, + 353, + 507, + 368 + ], + "score": 1.0, + "content": "given a", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 366, + 505, + 378 + ], + "spans": [ + { + "bbox": [ + 105, + 366, + 284, + 378 + ], + "score": 1.0, + "content": "single (downsampled) low resolution image", + "type": "text" + }, + { + "bbox": [ + 284, + 367, + 298, + 377 + ], + "score": 0.85, + "content": "x _ { l r }", + "type": "inline_equation" + }, + { + "bbox": [ + 298, + 366, + 505, + 378 + ], + "score": 1.0, + "content": ". Framing this problem as learning a likelihood, we", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 376, + 505, + 389 + ], + "spans": [ + { + "bbox": [ + 105, + 376, + 262, + 389 + ], + "score": 1.0, + "content": "utilize a CNF to learn the distribution", + "type": "text" + }, + { + "bbox": [ + 263, + 377, + 307, + 389 + ], + "score": 0.93, + "content": "p ( x _ { h r } | x _ { l r } )", + "type": "inline_equation" + }, + { + "bbox": [ + 307, + 376, + 505, + 389 + ], + "score": 1.0, + "content": ". To compare our method we also train a factor-", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 388, + 505, + 400 + ], + "spans": [ + { + "bbox": [ + 105, + 388, + 505, + 400 + ], + "score": 1.0, + "content": "ized baseline likelihood model with comparable architectures and parameter budget. The factorized", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 397, + 505, + 412 + ], + "spans": [ + { + "bbox": [ + 105, + 397, + 505, + 412 + ], + "score": 1.0, + "content": "baseline uses a product of discretized logistic distributions (Kingma et al., 2016a; Salimans et al.,", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 409, + 505, + 422 + ], + "spans": [ + { + "bbox": [ + 105, + 409, + 295, + 422 + ], + "score": 1.0, + "content": "2017). All methods are compared on negative", + "type": "text" + }, + { + "bbox": [ + 295, + 410, + 313, + 421 + ], + "score": 0.84, + "content": "\\log _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 314, + 409, + 505, + 422 + ], + "score": 1.0, + "content": "-likelihood if available, which has the informa-", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 420, + 505, + 433 + ], + "spans": [ + { + "bbox": [ + 105, + 420, + 505, + 433 + ], + "score": 1.0, + "content": "tion theoretic interpretation bits per dimensions. In addition, we evaluate using SSIM (Wang et al.,", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 106, + 432, + 210, + 443 + ], + "spans": [ + { + "bbox": [ + 106, + 432, + 210, + 443 + ], + "score": 1.0, + "content": "2004) and PSNR metrics.", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 22.5 + }, + { + "type": "text", + "bbox": [ + 107, + 456, + 505, + 523 + ], + "lines": [ + { + "bbox": [ + 105, + 456, + 505, + 469 + ], + "spans": [ + { + "bbox": [ + 105, + 456, + 505, + 469 + ], + "score": 1.0, + "content": "Implementation Details The flow is based on the (Dinh et al., 2016; Kingma & Dhariwal, 2018)", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 106, + 467, + 505, + 479 + ], + "spans": [ + { + "bbox": [ + 106, + 467, + 340, + 479 + ], + "score": 1.0, + "content": "multi-scale architectures. Each step of flow consists of", + "type": "text" + }, + { + "bbox": [ + 340, + 468, + 349, + 477 + ], + "score": 0.74, + "content": "K", + "type": "inline_equation" + }, + { + "bbox": [ + 349, + 467, + 408, + 479 + ], + "score": 1.0, + "content": "subflows and", + "type": "text" + }, + { + "bbox": [ + 408, + 468, + 416, + 477 + ], + "score": 0.62, + "content": "L", + "type": "inline_equation" + }, + { + "bbox": [ + 416, + 467, + 505, + 479 + ], + "score": 1.0, + "content": "levels. One subflow", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 106, + 479, + 505, + 491 + ], + "spans": [ + { + "bbox": [ + 106, + 479, + 264, + 491 + ], + "score": 1.0, + "content": "consists of an activation normalization,", + "type": "text" + }, + { + "bbox": [ + 264, + 479, + 287, + 489 + ], + "score": 0.89, + "content": "1 \\times 1", + "type": "inline_equation" + }, + { + "bbox": [ + 288, + 479, + 505, + 491 + ], + "score": 1.0, + "content": "convolution, and our conditional coupling layer. After", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 489, + 505, + 502 + ], + "spans": [ + { + "bbox": [ + 105, + 489, + 505, + 502 + ], + "score": 1.0, + "content": "completing a level, half of the representation is factored-out and modeled using our conditional split", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 500, + 506, + 512 + ], + "spans": [ + { + "bbox": [ + 105, + 500, + 506, + 512 + ], + "score": 1.0, + "content": "prior. After all levels have been completed, our conditional prior is used to model the final part of", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 511, + 182, + 523 + ], + "spans": [ + { + "bbox": [ + 105, + 511, + 182, + 523 + ], + "score": 1.0, + "content": "the latent variable.", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 29.5 + }, + { + "type": "text", + "bbox": [ + 107, + 528, + 505, + 572 + ], + "lines": [ + { + "bbox": [ + 105, + 528, + 505, + 541 + ], + "spans": [ + { + "bbox": [ + 105, + 528, + 214, + 541 + ], + "score": 1.0, + "content": "The conditioning variable", + "type": "text" + }, + { + "bbox": [ + 214, + 530, + 228, + 539 + ], + "score": 0.86, + "content": "x _ { l r }", + "type": "inline_equation" + }, + { + "bbox": [ + 229, + 528, + 505, + 541 + ], + "score": 1.0, + "content": "is transformed into the feature representation h using Residual-in-", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 540, + 505, + 551 + ], + "spans": [ + { + "bbox": [ + 105, + 540, + 505, + 551 + ], + "score": 1.0, + "content": "Residual Dense Block (RRDB) architecture (Wang et al., 2018), consisting of 16 residual-in-residual", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 549, + 506, + 563 + ], + "spans": [ + { + "bbox": [ + 105, + 549, + 506, + 563 + ], + "score": 1.0, + "content": "blocks. To match the parameter budget, the channel growth is 55 for the baseline and the growth is", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 106, + 561, + 171, + 572 + ], + "spans": [ + { + "bbox": [ + 106, + 561, + 171, + 572 + ], + "score": 1.0, + "content": "32 for the CNF.", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 34.5 + }, + { + "type": "text", + "bbox": [ + 107, + 586, + 505, + 696 + ], + "lines": [ + { + "bbox": [ + 105, + 586, + 506, + 599 + ], + "spans": [ + { + "bbox": [ + 105, + 586, + 506, + 599 + ], + "score": 1.0, + "content": "Data The models are trained on natural image datasets, Imagenet32 and Imagenet64 (Chrabaszcz", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 596, + 506, + 609 + ], + "spans": [ + { + "bbox": [ + 105, + 596, + 506, + 609 + ], + "score": 1.0, + "content": "et al., 2017). Since the dataset has no test set, we use its validation images as a test set. For", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 608, + 506, + 621 + ], + "spans": [ + { + "bbox": [ + 105, + 608, + 506, + 621 + ], + "score": 1.0, + "content": "validation we take 10000 images from the train images. The performance is always reported on the", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 618, + 505, + 631 + ], + "spans": [ + { + "bbox": [ + 105, + 618, + 505, + 631 + ], + "score": 1.0, + "content": "test set unless specified otherwise. We evaluate our models on widely used benchmark datasets Set5", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 106, + 630, + 505, + 642 + ], + "spans": [ + { + "bbox": [ + 106, + 630, + 505, + 642 + ], + "score": 1.0, + "content": "(Bevilacqua et al., 2012), Set14 (Zeyde et al., 2012) and BSD100 (Huang et al., 2015). At test time,", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 106, + 641, + 505, + 654 + ], + "spans": [ + { + "bbox": [ + 106, + 641, + 505, + 654 + ], + "score": 1.0, + "content": "we pad the test images with zeros at right and bottom so that they are square and compatible with", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 652, + 505, + 665 + ], + "spans": [ + { + "bbox": [ + 105, + 652, + 505, + 665 + ], + "score": 1.0, + "content": "squeeze layers. When evaluating on SSIM and PSNR, we can extract the patch with the exact image", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 662, + 505, + 675 + ], + "spans": [ + { + "bbox": [ + 105, + 662, + 505, + 675 + ], + "score": 1.0, + "content": "shape. For all datasets the LR images are obtained using MATLABs bicubic kernel function with", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 674, + 506, + 687 + ], + "spans": [ + { + "bbox": [ + 105, + 674, + 506, + 687 + ], + "score": 1.0, + "content": "reducing aliasing artifacts following Wang et al. (2018). For these experiments, the pixel values are", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 105, + 684, + 338, + 697 + ], + "spans": [ + { + "bbox": [ + 105, + 684, + 338, + 697 + ], + "score": 1.0, + "content": "dequantized by adding uniform noise (Theis et al., 2016).", + "type": "text" + } + ], + "index": 46 + } + ], + "index": 41.5 + }, + { + "type": "text", + "bbox": [ + 107, + 709, + 504, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 709, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 106, + 709, + 505, + 722 + ], + "score": 1.0, + "content": "Training Settings We train on ImageNet32 and ImageNet64 for 200, 000 iterations with mini", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 105, + 720, + 505, + 733 + ], + "spans": [ + { + "bbox": [ + 105, + 720, + 505, + 733 + ], + "score": 1.0, + "content": "batches of size 64, and a learning rate of 0.0001 using the Adam optimizer (Kingma & Ba, 2015).", + "type": "text" + } + ], + "index": 48 + } + ], + "index": 47.5 + } + ], + "page_idx": 4, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 27, + 308, + 37 + ], + "lines": [ + { + "bbox": [ + 107, + 26, + 308, + 38 + ], + "spans": [ + { + "bbox": [ + 107, + 26, + 308, + 38 + ], + "score": 1.0, + "content": "Under review as a conference paper at ICLR 2020", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 302, + 751, + 309, + 760 + ], + "lines": [ + { + "bbox": [ + 301, + 750, + 310, + 762 + ], + "spans": [ + { + "bbox": [ + 301, + 750, + 310, + 762 + ], + "score": 1.0, + "content": "5", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 107, + 82, + 505, + 192 + ], + "lines": [ + { + "bbox": [ + 105, + 82, + 505, + 95 + ], + "spans": [ + { + "bbox": [ + 105, + 82, + 505, + 95 + ], + "score": 1.0, + "content": "Different versions and applications of conditional normalizing flows include Agrawal & Dukkipati", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 92, + 505, + 107 + ], + "spans": [ + { + "bbox": [ + 105, + 92, + 505, + 107 + ], + "score": 1.0, + "content": "(2016) who utilize flows in the decoder of Variational AutoEncoders Kingma & Welling (2014),", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 106, + 105, + 505, + 116 + ], + "spans": [ + { + "bbox": [ + 106, + 105, + 505, + 116 + ], + "score": 1.0, + "content": "which are conditioned on the latent variable. Trippe & Turner (2018) who utilize conditional flows", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 115, + 505, + 128 + ], + "spans": [ + { + "bbox": [ + 105, + 115, + 505, + 128 + ], + "score": 1.0, + "content": "for prediction problems in a Bayesian framework for density estimation. Atanov et al. (2019) intro-", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 126, + 505, + 138 + ], + "spans": [ + { + "bbox": [ + 105, + 126, + 505, + 138 + ], + "score": 1.0, + "content": "duce a semi-conditional flow that provides an efficient way to learn from unlabeled data for semi-", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 138, + 505, + 150 + ], + "spans": [ + { + "bbox": [ + 105, + 138, + 505, + 150 + ], + "score": 1.0, + "content": "supervised classification problems. Very recently, Ardizzone et al. (2019) have proposed conditional", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 148, + 505, + 161 + ], + "spans": [ + { + "bbox": [ + 105, + 148, + 505, + 161 + ], + "score": 1.0, + "content": "flow-based generative models for image colorization, which differs from our work in training objec-", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 159, + 505, + 172 + ], + "spans": [ + { + "bbox": [ + 105, + 159, + 505, + 172 + ], + "score": 1.0, + "content": "tive, architecture and applicability to binary segmentation. Autoregressive models (Van Oord et al.,", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 169, + 506, + 183 + ], + "spans": [ + { + "bbox": [ + 105, + 169, + 506, + 183 + ], + "score": 1.0, + "content": "2016) have also been studied for conditional image generation van den Oord et al. (2016) but are", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 181, + 232, + 194 + ], + "spans": [ + { + "bbox": [ + 105, + 181, + 232, + 194 + ], + "score": 1.0, + "content": "generally slow to sample from.", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 4.5, + "bbox_fs": [ + 105, + 82, + 506, + 194 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 198, + 505, + 253 + ], + "lines": [ + { + "bbox": [ + 105, + 197, + 505, + 211 + ], + "spans": [ + { + "bbox": [ + 105, + 197, + 505, + 211 + ], + "score": 1.0, + "content": "Adversarial methods (Goodfellow et al., 2014) have widely been applied to (conditional) image", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 208, + 505, + 222 + ], + "spans": [ + { + "bbox": [ + 105, + 208, + 505, + 222 + ], + "score": 1.0, + "content": "density modeling tasks (Vu et al., 2019; Sajjadi et al., 2017b; Yuan et al., 2018; Mechrez et al.,", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 219, + 505, + 233 + ], + "spans": [ + { + "bbox": [ + 105, + 219, + 505, + 233 + ], + "score": 1.0, + "content": "2018), because they tend to generate high-fidelity images. Disadvantages of adversarial methods are", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 230, + 505, + 244 + ], + "spans": [ + { + "bbox": [ + 105, + 230, + 505, + 244 + ], + "score": 1.0, + "content": "that they can be complicated to train, and it is difficult to obtain likelihoods. For this reason, it can", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 241, + 353, + 255 + ], + "spans": [ + { + "bbox": [ + 105, + 241, + 353, + 255 + ], + "score": 1.0, + "content": "be hard to assess whether they are overfitting or generalizing.", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 12, + "bbox_fs": [ + 105, + 197, + 505, + 255 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 271, + 200, + 283 + ], + "lines": [ + { + "bbox": [ + 105, + 270, + 201, + 285 + ], + "spans": [ + { + "bbox": [ + 105, + 270, + 201, + 285 + ], + "score": 1.0, + "content": "5 EXPERIMENTS", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 15 + }, + { + "type": "text", + "bbox": [ + 108, + 297, + 504, + 318 + ], + "lines": [ + { + "bbox": [ + 106, + 296, + 506, + 310 + ], + "spans": [ + { + "bbox": [ + 106, + 296, + 506, + 310 + ], + "score": 1.0, + "content": "Here we explain our experiments into super-resolution and vessel segmentation. All models were", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 106, + 308, + 284, + 320 + ], + "spans": [ + { + "bbox": [ + 106, + 308, + 284, + 320 + ], + "score": 1.0, + "content": "implemented using the PyTorch framework.", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 16.5, + "bbox_fs": [ + 106, + 296, + 506, + 320 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 334, + 285, + 345 + ], + "lines": [ + { + "bbox": [ + 105, + 333, + 287, + 347 + ], + "spans": [ + { + "bbox": [ + 105, + 333, + 287, + 347 + ], + "score": 1.0, + "content": "5.1 SINGLE IMAGE SUPER RESOLUTION", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 18 + }, + { + "type": "text", + "bbox": [ + 107, + 354, + 505, + 442 + ], + "lines": [ + { + "bbox": [ + 105, + 353, + 507, + 368 + ], + "spans": [ + { + "bbox": [ + 105, + 353, + 455, + 368 + ], + "score": 1.0, + "content": "Single Image Super Resolution (SISR) methods aims to find a high resolution image", + "type": "text" + }, + { + "bbox": [ + 455, + 356, + 471, + 366 + ], + "score": 0.87, + "content": "x _ { h r }", + "type": "inline_equation" + }, + { + "bbox": [ + 471, + 353, + 507, + 368 + ], + "score": 1.0, + "content": "given a", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 366, + 505, + 378 + ], + "spans": [ + { + "bbox": [ + 105, + 366, + 284, + 378 + ], + "score": 1.0, + "content": "single (downsampled) low resolution image", + "type": "text" + }, + { + "bbox": [ + 284, + 367, + 298, + 377 + ], + "score": 0.85, + "content": "x _ { l r }", + "type": "inline_equation" + }, + { + "bbox": [ + 298, + 366, + 505, + 378 + ], + "score": 1.0, + "content": ". Framing this problem as learning a likelihood, we", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 376, + 505, + 389 + ], + "spans": [ + { + "bbox": [ + 105, + 376, + 262, + 389 + ], + "score": 1.0, + "content": "utilize a CNF to learn the distribution", + "type": "text" + }, + { + "bbox": [ + 263, + 377, + 307, + 389 + ], + "score": 0.93, + "content": "p ( x _ { h r } | x _ { l r } )", + "type": "inline_equation" + }, + { + "bbox": [ + 307, + 376, + 505, + 389 + ], + "score": 1.0, + "content": ". To compare our method we also train a factor-", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 388, + 505, + 400 + ], + "spans": [ + { + "bbox": [ + 105, + 388, + 505, + 400 + ], + "score": 1.0, + "content": "ized baseline likelihood model with comparable architectures and parameter budget. The factorized", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 397, + 505, + 412 + ], + "spans": [ + { + "bbox": [ + 105, + 397, + 505, + 412 + ], + "score": 1.0, + "content": "baseline uses a product of discretized logistic distributions (Kingma et al., 2016a; Salimans et al.,", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 409, + 505, + 422 + ], + "spans": [ + { + "bbox": [ + 105, + 409, + 295, + 422 + ], + "score": 1.0, + "content": "2017). All methods are compared on negative", + "type": "text" + }, + { + "bbox": [ + 295, + 410, + 313, + 421 + ], + "score": 0.84, + "content": "\\log _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 314, + 409, + 505, + 422 + ], + "score": 1.0, + "content": "-likelihood if available, which has the informa-", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 420, + 505, + 433 + ], + "spans": [ + { + "bbox": [ + 105, + 420, + 505, + 433 + ], + "score": 1.0, + "content": "tion theoretic interpretation bits per dimensions. In addition, we evaluate using SSIM (Wang et al.,", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 106, + 432, + 210, + 443 + ], + "spans": [ + { + "bbox": [ + 106, + 432, + 210, + 443 + ], + "score": 1.0, + "content": "2004) and PSNR metrics.", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 22.5, + "bbox_fs": [ + 105, + 353, + 507, + 443 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 456, + 505, + 523 + ], + "lines": [ + { + "bbox": [ + 105, + 456, + 505, + 469 + ], + "spans": [ + { + "bbox": [ + 105, + 456, + 505, + 469 + ], + "score": 1.0, + "content": "Implementation Details The flow is based on the (Dinh et al., 2016; Kingma & Dhariwal, 2018)", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 106, + 467, + 505, + 479 + ], + "spans": [ + { + "bbox": [ + 106, + 467, + 340, + 479 + ], + "score": 1.0, + "content": "multi-scale architectures. Each step of flow consists of", + "type": "text" + }, + { + "bbox": [ + 340, + 468, + 349, + 477 + ], + "score": 0.74, + "content": "K", + "type": "inline_equation" + }, + { + "bbox": [ + 349, + 467, + 408, + 479 + ], + "score": 1.0, + "content": "subflows and", + "type": "text" + }, + { + "bbox": [ + 408, + 468, + 416, + 477 + ], + "score": 0.62, + "content": "L", + "type": "inline_equation" + }, + { + "bbox": [ + 416, + 467, + 505, + 479 + ], + "score": 1.0, + "content": "levels. One subflow", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 106, + 479, + 505, + 491 + ], + "spans": [ + { + "bbox": [ + 106, + 479, + 264, + 491 + ], + "score": 1.0, + "content": "consists of an activation normalization,", + "type": "text" + }, + { + "bbox": [ + 264, + 479, + 287, + 489 + ], + "score": 0.89, + "content": "1 \\times 1", + "type": "inline_equation" + }, + { + "bbox": [ + 288, + 479, + 505, + 491 + ], + "score": 1.0, + "content": "convolution, and our conditional coupling layer. After", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 489, + 505, + 502 + ], + "spans": [ + { + "bbox": [ + 105, + 489, + 505, + 502 + ], + "score": 1.0, + "content": "completing a level, half of the representation is factored-out and modeled using our conditional split", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 500, + 506, + 512 + ], + "spans": [ + { + "bbox": [ + 105, + 500, + 506, + 512 + ], + "score": 1.0, + "content": "prior. After all levels have been completed, our conditional prior is used to model the final part of", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 511, + 182, + 523 + ], + "spans": [ + { + "bbox": [ + 105, + 511, + 182, + 523 + ], + "score": 1.0, + "content": "the latent variable.", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 29.5, + "bbox_fs": [ + 105, + 456, + 506, + 523 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 528, + 505, + 572 + ], + "lines": [ + { + "bbox": [ + 105, + 528, + 505, + 541 + ], + "spans": [ + { + "bbox": [ + 105, + 528, + 214, + 541 + ], + "score": 1.0, + "content": "The conditioning variable", + "type": "text" + }, + { + "bbox": [ + 214, + 530, + 228, + 539 + ], + "score": 0.86, + "content": "x _ { l r }", + "type": "inline_equation" + }, + { + "bbox": [ + 229, + 528, + 505, + 541 + ], + "score": 1.0, + "content": "is transformed into the feature representation h using Residual-in-", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 540, + 505, + 551 + ], + "spans": [ + { + "bbox": [ + 105, + 540, + 505, + 551 + ], + "score": 1.0, + "content": "Residual Dense Block (RRDB) architecture (Wang et al., 2018), consisting of 16 residual-in-residual", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 549, + 506, + 563 + ], + "spans": [ + { + "bbox": [ + 105, + 549, + 506, + 563 + ], + "score": 1.0, + "content": "blocks. To match the parameter budget, the channel growth is 55 for the baseline and the growth is", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 106, + 561, + 171, + 572 + ], + "spans": [ + { + "bbox": [ + 106, + 561, + 171, + 572 + ], + "score": 1.0, + "content": "32 for the CNF.", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 34.5, + "bbox_fs": [ + 105, + 528, + 506, + 572 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 586, + 505, + 696 + ], + "lines": [ + { + "bbox": [ + 105, + 586, + 506, + 599 + ], + "spans": [ + { + "bbox": [ + 105, + 586, + 506, + 599 + ], + "score": 1.0, + "content": "Data The models are trained on natural image datasets, Imagenet32 and Imagenet64 (Chrabaszcz", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 596, + 506, + 609 + ], + "spans": [ + { + "bbox": [ + 105, + 596, + 506, + 609 + ], + "score": 1.0, + "content": "et al., 2017). Since the dataset has no test set, we use its validation images as a test set. For", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 608, + 506, + 621 + ], + "spans": [ + { + "bbox": [ + 105, + 608, + 506, + 621 + ], + "score": 1.0, + "content": "validation we take 10000 images from the train images. The performance is always reported on the", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 618, + 505, + 631 + ], + "spans": [ + { + "bbox": [ + 105, + 618, + 505, + 631 + ], + "score": 1.0, + "content": "test set unless specified otherwise. We evaluate our models on widely used benchmark datasets Set5", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 106, + 630, + 505, + 642 + ], + "spans": [ + { + "bbox": [ + 106, + 630, + 505, + 642 + ], + "score": 1.0, + "content": "(Bevilacqua et al., 2012), Set14 (Zeyde et al., 2012) and BSD100 (Huang et al., 2015). At test time,", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 106, + 641, + 505, + 654 + ], + "spans": [ + { + "bbox": [ + 106, + 641, + 505, + 654 + ], + "score": 1.0, + "content": "we pad the test images with zeros at right and bottom so that they are square and compatible with", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 652, + 505, + 665 + ], + "spans": [ + { + "bbox": [ + 105, + 652, + 505, + 665 + ], + "score": 1.0, + "content": "squeeze layers. When evaluating on SSIM and PSNR, we can extract the patch with the exact image", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 662, + 505, + 675 + ], + "spans": [ + { + "bbox": [ + 105, + 662, + 505, + 675 + ], + "score": 1.0, + "content": "shape. For all datasets the LR images are obtained using MATLABs bicubic kernel function with", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 674, + 506, + 687 + ], + "spans": [ + { + "bbox": [ + 105, + 674, + 506, + 687 + ], + "score": 1.0, + "content": "reducing aliasing artifacts following Wang et al. (2018). For these experiments, the pixel values are", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 105, + 684, + 338, + 697 + ], + "spans": [ + { + "bbox": [ + 105, + 684, + 338, + 697 + ], + "score": 1.0, + "content": "dequantized by adding uniform noise (Theis et al., 2016).", + "type": "text" + } + ], + "index": 46 + } + ], + "index": 41.5, + "bbox_fs": [ + 105, + 586, + 506, + 697 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 709, + 504, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 709, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 106, + 709, + 505, + 722 + ], + "score": 1.0, + "content": "Training Settings We train on ImageNet32 and ImageNet64 for 200, 000 iterations with mini", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 105, + 720, + 505, + 733 + ], + "spans": [ + { + "bbox": [ + 105, + 720, + 505, + 733 + ], + "score": 1.0, + "content": "batches of size 64, and a learning rate of 0.0001 using the Adam optimizer (Kingma & Ba, 2015).", + "type": "text" + } + ], + "index": 48 + } + ], + "index": 47.5, + "bbox_fs": [ + 105, + 709, + 505, + 733 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "image", + "bbox": [ + 107, + 79, + 504, + 190 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 107, + 79, + 504, + 190 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 107, + 79, + 504, + 190 + ], + "spans": [ + { + "bbox": [ + 107, + 79, + 504, + 190 + ], + "score": 0.974, + "type": "image", + "image_path": "968b128bcb0c0904815de5b4636633af6dac527cda75f1e445b409699c0fcf5b.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 107, + 79, + 504, + 116.0 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 107, + 116.0, + 504, + 153.0 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 107, + 153.0, + 504, + 190.0 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 198, + 505, + 232 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 198, + 505, + 210 + ], + "spans": [ + { + "bbox": [ + 106, + 198, + 505, + 210 + ], + "score": 1.0, + "content": "Figure 2: Super resolution results on the Imagenet64 test data. Samples are taken from the CNF", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 107, + 209, + 505, + 221 + ], + "spans": [ + { + "bbox": [ + 107, + 209, + 180, + 221 + ], + "score": 0.91, + "content": "x _ { h r } \\sim p ( x _ { h r } | x _ { l r } )", + "type": "inline_equation" + }, + { + "bbox": [ + 181, + 209, + 505, + 221 + ], + "score": 1.0, + "content": "and the mode is visualized for the factorized baseline model. Best viewed elec-", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 220, + 149, + 233 + ], + "spans": [ + { + "bbox": [ + 105, + 220, + 149, + 233 + ], + "score": 1.0, + "content": "tronically.", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 4 + } + ], + "index": 2.5 + }, + { + "type": "text", + "bbox": [ + 107, + 250, + 504, + 273 + ], + "lines": [ + { + "bbox": [ + 106, + 250, + 505, + 264 + ], + "spans": [ + { + "bbox": [ + 106, + 250, + 216, + 264 + ], + "score": 1.0, + "content": "The high-resolution image", + "type": "text" + }, + { + "bbox": [ + 217, + 253, + 232, + 262 + ], + "score": 0.86, + "content": "x _ { h r }", + "type": "inline_equation" + }, + { + "bbox": [ + 233, + 250, + 309, + 264 + ], + "score": 1.0, + "content": "either the original", + "type": "text" + }, + { + "bbox": [ + 310, + 251, + 344, + 262 + ], + "score": 0.89, + "content": "3 2 \\times 3 2", + "type": "inline_equation" + }, + { + "bbox": [ + 345, + 250, + 357, + 264 + ], + "score": 1.0, + "content": "or", + "type": "text" + }, + { + "bbox": [ + 357, + 251, + 392, + 262 + ], + "score": 0.89, + "content": "6 4 \\times 6 4", + "type": "inline_equation" + }, + { + "bbox": [ + 393, + 250, + 505, + 264 + ], + "score": 1.0, + "content": "original input images. The", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 106, + 261, + 332, + 274 + ], + "spans": [ + { + "bbox": [ + 106, + 261, + 228, + 274 + ], + "score": 1.0, + "content": "flow architecture is build with", + "type": "text" + }, + { + "bbox": [ + 228, + 262, + 254, + 272 + ], + "score": 0.9, + "content": "L = 2", + "type": "inline_equation" + }, + { + "bbox": [ + 255, + 261, + 298, + 274 + ], + "score": 1.0, + "content": "levels and", + "type": "text" + }, + { + "bbox": [ + 298, + 262, + 326, + 272 + ], + "score": 0.9, + "content": "K = 8", + "type": "inline_equation" + }, + { + "bbox": [ + 327, + 261, + 332, + 274 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 6.5 + }, + { + "type": "title", + "bbox": [ + 107, + 285, + 196, + 296 + ], + "lines": [ + { + "bbox": [ + 105, + 284, + 198, + 298 + ], + "spans": [ + { + "bbox": [ + 105, + 284, + 198, + 298 + ], + "score": 1.0, + "content": "5.1.1 EVALUATION", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 8 + }, + { + "type": "text", + "bbox": [ + 107, + 304, + 505, + 360 + ], + "lines": [ + { + "bbox": [ + 106, + 304, + 505, + 316 + ], + "spans": [ + { + "bbox": [ + 106, + 304, + 505, + 316 + ], + "score": 1.0, + "content": "In this section the performance of CNFs for SISR is compared against a baseline likelihood model on", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 106, + 316, + 505, + 327 + ], + "spans": [ + { + "bbox": [ + 106, + 316, + 358, + 327 + ], + "score": 1.0, + "content": "ImageNet32 and ImageNet64. Their performance measured in", + "type": "text" + }, + { + "bbox": [ + 358, + 316, + 377, + 327 + ], + "score": 0.87, + "content": "\\log _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 377, + 316, + 505, + 327 + ], + "score": 1.0, + "content": "-likelihood (bits per dimension)", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 326, + 505, + 339 + ], + "spans": [ + { + "bbox": [ + 105, + 326, + 505, + 339 + ], + "score": 1.0, + "content": "is shown in Table 1, which show that the CNF outperforms the factorized baseline in likelihood.", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 106, + 338, + 505, + 349 + ], + "spans": [ + { + "bbox": [ + 106, + 338, + 505, + 349 + ], + "score": 1.0, + "content": "Recall that the baseline model is factorized and conditionally independent. These results indicate", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 348, + 461, + 362 + ], + "spans": [ + { + "bbox": [ + 105, + 348, + 461, + 362 + ], + "score": 1.0, + "content": "that it is advantageous to capture the correlations and multi-modality present in the data.", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 11 + }, + { + "type": "table", + "bbox": [ + 223, + 401, + 387, + 446 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 105, + 378, + 502, + 400 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 378, + 504, + 390 + ], + "spans": [ + { + "bbox": [ + 105, + 378, + 504, + 390 + ], + "score": 1.0, + "content": "Table 1: Comparison of likelihood learning with CNFs and factorized discrete baseline on Ima-", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 389, + 345, + 402 + ], + "spans": [ + { + "bbox": [ + 105, + 389, + 345, + 402 + ], + "score": 1.0, + "content": "geNet32 and ImageNet64 measured in bits per dimensions.", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 14.5 + }, + { + "type": "table_body", + "bbox": [ + 223, + 401, + 387, + 446 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 223, + 401, + 387, + 446 + ], + "spans": [ + { + "bbox": [ + 223, + 401, + 387, + 446 + ], + "score": 0.939, + "html": "
DatasetCNFfactorized LL
ImageNet323.014.00
ImageNet642.903.61
", + "type": "table", + "image_path": "d38232654bdbbfd11a456af93a0e48b5ee651904fc5bcf891b6a3afaa8a205e5.jpg" + } + ] + } + ], + "index": 17, + "virtual_lines": [ + { + "bbox": [ + 223, + 401, + 387, + 416.0 + ], + "spans": [], + "index": 16 + }, + { + "bbox": [ + 223, + 416.0, + 387, + 431.0 + ], + "spans": [], + "index": 17 + }, + { + "bbox": [ + 223, + 431.0, + 387, + 446.0 + ], + "spans": [], + "index": 18 + } + ] + } + ], + "index": 15.75 + }, + { + "type": "text", + "bbox": [ + 106, + 456, + 505, + 534 + ], + "lines": [ + { + "bbox": [ + 105, + 455, + 506, + 470 + ], + "spans": [ + { + "bbox": [ + 105, + 455, + 213, + 470 + ], + "score": 1.0, + "content": "Super resolution samples", + "type": "text" + }, + { + "bbox": [ + 213, + 456, + 289, + 469 + ], + "score": 0.92, + "content": "x _ { h r } \\sim p ( x _ { h r } | x _ { l r } )", + "type": "inline_equation" + }, + { + "bbox": [ + 290, + 455, + 506, + 470 + ], + "score": 1.0, + "content": "from the Imagenet64 test data are shown in Figure", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 466, + 505, + 480 + ], + "spans": [ + { + "bbox": [ + 105, + 466, + 505, + 480 + ], + "score": 1.0, + "content": "2. The distribution mode of the factorized baseline is displayed in Figure 2 panel c). We show", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 478, + 505, + 491 + ], + "spans": [ + { + "bbox": [ + 105, + 478, + 425, + 491 + ], + "score": 1.0, + "content": "that the baseline is able to learn a relationship between conditioning variable", + "type": "text" + }, + { + "bbox": [ + 425, + 480, + 434, + 489 + ], + "score": 0.5, + "content": "\\mathbf { x }", + "type": "inline_equation" + }, + { + "bbox": [ + 434, + 478, + 453, + 491 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 453, + 480, + 461, + 490 + ], + "score": 0.47, + "content": "\\mathbf { y }", + "type": "inline_equation" + }, + { + "bbox": [ + 461, + 478, + 505, + 491 + ], + "score": 1.0, + "content": ", but lacks", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 106, + 489, + 505, + 502 + ], + "spans": [ + { + "bbox": [ + 106, + 489, + 505, + 502 + ], + "score": 1.0, + "content": "crisp details. The super-resolution images from the CNF are shown in panel b). Notice there are", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 500, + 505, + 513 + ], + "spans": [ + { + "bbox": [ + 105, + 500, + 505, + 513 + ], + "score": 1.0, + "content": "more high-frequency components modelled, for instance in grass and in hairs. Following Kingma &", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 106, + 511, + 505, + 524 + ], + "spans": [ + { + "bbox": [ + 106, + 511, + 412, + 524 + ], + "score": 1.0, + "content": "Dhariwal (2018), we sample from the base distributions with a temperature", + "type": "text" + }, + { + "bbox": [ + 412, + 513, + 419, + 521 + ], + "score": 0.76, + "content": "\\tau", + "type": "inline_equation" + }, + { + "bbox": [ + 420, + 511, + 505, + 524 + ], + "score": 1.0, + "content": "of 0.8 to achieve the", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 106, + 523, + 358, + 535 + ], + "spans": [ + { + "bbox": [ + 106, + 523, + 358, + 535 + ], + "score": 1.0, + "content": "best perceptual quality for the distribution learned by the CNF.", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 22 + }, + { + "type": "text", + "bbox": [ + 106, + 539, + 505, + 671 + ], + "lines": [ + { + "bbox": [ + 105, + 538, + 506, + 553 + ], + "spans": [ + { + "bbox": [ + 105, + 538, + 506, + 553 + ], + "score": 1.0, + "content": "As there are no standard metric for measuring perceptual quality, we measure performance results on", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 104, + 549, + 506, + 564 + ], + "spans": [ + { + "bbox": [ + 104, + 549, + 506, + 564 + ], + "score": 1.0, + "content": "PSNR and SSIM between our predicted image and the ground truth image in Table 2. We compare", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 560, + 504, + 574 + ], + "spans": [ + { + "bbox": [ + 105, + 560, + 492, + 574 + ], + "score": 1.0, + "content": "CNFs to other state-of-the-art per-pixel loss based methods and the factorized baseline for a", + "type": "text" + }, + { + "bbox": [ + 492, + 562, + 504, + 572 + ], + "score": 0.7, + "content": "2 \\mathbf { x }", + "type": "inline_equation" + } + ], + "index": 28 + }, + { + "bbox": [ + 104, + 570, + 504, + 587 + ], + "spans": [ + { + "bbox": [ + 104, + 570, + 482, + 587 + ], + "score": 1.0, + "content": "upsampling task on standard super-resolution benchmarks. If available, we report negative", + "type": "text" + }, + { + "bbox": [ + 482, + 573, + 504, + 583 + ], + "score": 0.44, + "content": "\\log _ { 2 ^ { - } }", + "type": "inline_equation" + } + ], + "index": 29 + }, + { + "bbox": [ + 106, + 583, + 505, + 595 + ], + "spans": [ + { + "bbox": [ + 106, + 583, + 398, + 595 + ], + "score": 1.0, + "content": "likelihood (bpd) (computed as an average over 1000 randomly cropped", + "type": "text" + }, + { + "bbox": [ + 398, + 583, + 441, + 594 + ], + "score": 0.78, + "content": "1 2 8 \\mathrm { ~ x ~ } 1 2 8", + "type": "inline_equation" + }, + { + "bbox": [ + 441, + 583, + 505, + 595 + ], + "score": 1.0, + "content": "patches). Note", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 594, + 506, + 608 + ], + "spans": [ + { + "bbox": [ + 105, + 594, + 506, + 608 + ], + "score": 1.0, + "content": "that without any hyperparameter tuning or compositional loss weighting, as is typical in SISR, the", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 604, + 505, + 618 + ], + "spans": [ + { + "bbox": [ + 105, + 604, + 505, + 618 + ], + "score": 1.0, + "content": "CNF performs competitively with state-of-the-art super-resolution methods by simply optimizing", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 615, + 505, + 628 + ], + "spans": [ + { + "bbox": [ + 105, + 615, + 505, + 628 + ], + "score": 1.0, + "content": "the likelihood. The SSIM scores for the baseline perform on par or better than the adversarial", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 627, + 505, + 639 + ], + "spans": [ + { + "bbox": [ + 105, + 627, + 505, + 639 + ], + "score": 1.0, + "content": "methods and the CNF on all benchmarks. On PSNR scores however, the CNF beats the factorized", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 106, + 638, + 505, + 650 + ], + "spans": [ + { + "bbox": [ + 106, + 638, + 505, + 650 + ], + "score": 1.0, + "content": "discrete baseline. Samples shown in Figure 3 show that the CNF predictions have more fine grained", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 649, + 506, + 662 + ], + "spans": [ + { + "bbox": [ + 105, + 649, + 506, + 662 + ], + "score": 1.0, + "content": "texture details. Comparing this finding with the baseline that outperforms every method on SSIM,", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 659, + 255, + 673 + ], + "spans": [ + { + "bbox": [ + 105, + 659, + 255, + 673 + ], + "score": 1.0, + "content": "show that metrics can be misleading.", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 31.5 + }, + { + "type": "text", + "bbox": [ + 107, + 677, + 504, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 676, + 506, + 690 + ], + "spans": [ + { + "bbox": [ + 105, + 676, + 506, + 690 + ], + "score": 1.0, + "content": "Notice how samples from a independent factorized likelihood model have a lot of color noise,", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 686, + 505, + 700 + ], + "spans": [ + { + "bbox": [ + 105, + 686, + 505, + 700 + ], + "score": 1.0, + "content": "whereas samples from the CNF do not have such problems. Increasing temperature increases high-", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 698, + 505, + 711 + ], + "spans": [ + { + "bbox": [ + 105, + 698, + 232, + 711 + ], + "score": 1.0, + "content": "level detail, where we find that", + "type": "text" + }, + { + "bbox": [ + 232, + 699, + 266, + 709 + ], + "score": 0.88, + "content": "\\tau = 0 . 5", + "type": "inline_equation" + }, + { + "bbox": [ + 266, + 698, + 505, + 711 + ], + "score": 1.0, + "content": "strikes a balance between noise smoothing and detail. This", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 709, + 506, + 723 + ], + "spans": [ + { + "bbox": [ + 105, + 709, + 506, + 723 + ], + "score": 1.0, + "content": "can be attributed to the property of flows to model pixel correlations among output dimensions for", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 720, + 262, + 734 + ], + "spans": [ + { + "bbox": [ + 105, + 720, + 262, + 734 + ], + "score": 1.0, + "content": "high-dimensional data such as images.", + "type": "text" + } + ], + "index": 42 + } + ], + "index": 40 + } + ], + "page_idx": 5, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 106, + 27, + 308, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 26, + 308, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 26, + 308, + 38 + ], + "score": 1.0, + "content": "Under review as a conference paper at ICLR 2020", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 302, + 752, + 308, + 760 + ], + "lines": [ + { + "bbox": [ + 302, + 751, + 309, + 762 + ], + "spans": [ + { + "bbox": [ + 302, + 751, + 309, + 762 + ], + "score": 1.0, + "content": "6", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "image", + "bbox": [ + 107, + 79, + 504, + 190 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 107, + 79, + 504, + 190 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 107, + 79, + 504, + 190 + ], + "spans": [ + { + "bbox": [ + 107, + 79, + 504, + 190 + ], + "score": 0.974, + "type": "image", + "image_path": "968b128bcb0c0904815de5b4636633af6dac527cda75f1e445b409699c0fcf5b.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 107, + 79, + 504, + 116.0 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 107, + 116.0, + 504, + 153.0 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 107, + 153.0, + 504, + 190.0 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 198, + 505, + 232 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 198, + 505, + 210 + ], + "spans": [ + { + "bbox": [ + 106, + 198, + 505, + 210 + ], + "score": 1.0, + "content": "Figure 2: Super resolution results on the Imagenet64 test data. Samples are taken from the CNF", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 107, + 209, + 505, + 221 + ], + "spans": [ + { + "bbox": [ + 107, + 209, + 180, + 221 + ], + "score": 0.91, + "content": "x _ { h r } \\sim p ( x _ { h r } | x _ { l r } )", + "type": "inline_equation" + }, + { + "bbox": [ + 181, + 209, + 505, + 221 + ], + "score": 1.0, + "content": "and the mode is visualized for the factorized baseline model. Best viewed elec-", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 220, + 149, + 233 + ], + "spans": [ + { + "bbox": [ + 105, + 220, + 149, + 233 + ], + "score": 1.0, + "content": "tronically.", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 4 + } + ], + "index": 2.5 + }, + { + "type": "text", + "bbox": [ + 107, + 250, + 504, + 273 + ], + "lines": [ + { + "bbox": [ + 106, + 250, + 505, + 264 + ], + "spans": [ + { + "bbox": [ + 106, + 250, + 216, + 264 + ], + "score": 1.0, + "content": "The high-resolution image", + "type": "text" + }, + { + "bbox": [ + 217, + 253, + 232, + 262 + ], + "score": 0.86, + "content": "x _ { h r }", + "type": "inline_equation" + }, + { + "bbox": [ + 233, + 250, + 309, + 264 + ], + "score": 1.0, + "content": "either the original", + "type": "text" + }, + { + "bbox": [ + 310, + 251, + 344, + 262 + ], + "score": 0.89, + "content": "3 2 \\times 3 2", + "type": "inline_equation" + }, + { + "bbox": [ + 345, + 250, + 357, + 264 + ], + "score": 1.0, + "content": "or", + "type": "text" + }, + { + "bbox": [ + 357, + 251, + 392, + 262 + ], + "score": 0.89, + "content": "6 4 \\times 6 4", + "type": "inline_equation" + }, + { + "bbox": [ + 393, + 250, + 505, + 264 + ], + "score": 1.0, + "content": "original input images. The", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 106, + 261, + 332, + 274 + ], + "spans": [ + { + "bbox": [ + 106, + 261, + 228, + 274 + ], + "score": 1.0, + "content": "flow architecture is build with", + "type": "text" + }, + { + "bbox": [ + 228, + 262, + 254, + 272 + ], + "score": 0.9, + "content": "L = 2", + "type": "inline_equation" + }, + { + "bbox": [ + 255, + 261, + 298, + 274 + ], + "score": 1.0, + "content": "levels and", + "type": "text" + }, + { + "bbox": [ + 298, + 262, + 326, + 272 + ], + "score": 0.9, + "content": "K = 8", + "type": "inline_equation" + }, + { + "bbox": [ + 327, + 261, + 332, + 274 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 6.5, + "bbox_fs": [ + 106, + 250, + 505, + 274 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 285, + 196, + 296 + ], + "lines": [ + { + "bbox": [ + 105, + 284, + 198, + 298 + ], + "spans": [ + { + "bbox": [ + 105, + 284, + 198, + 298 + ], + "score": 1.0, + "content": "5.1.1 EVALUATION", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 8 + }, + { + "type": "text", + "bbox": [ + 107, + 304, + 505, + 360 + ], + "lines": [ + { + "bbox": [ + 106, + 304, + 505, + 316 + ], + "spans": [ + { + "bbox": [ + 106, + 304, + 505, + 316 + ], + "score": 1.0, + "content": "In this section the performance of CNFs for SISR is compared against a baseline likelihood model on", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 106, + 316, + 505, + 327 + ], + "spans": [ + { + "bbox": [ + 106, + 316, + 358, + 327 + ], + "score": 1.0, + "content": "ImageNet32 and ImageNet64. Their performance measured in", + "type": "text" + }, + { + "bbox": [ + 358, + 316, + 377, + 327 + ], + "score": 0.87, + "content": "\\log _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 377, + 316, + 505, + 327 + ], + "score": 1.0, + "content": "-likelihood (bits per dimension)", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 326, + 505, + 339 + ], + "spans": [ + { + "bbox": [ + 105, + 326, + 505, + 339 + ], + "score": 1.0, + "content": "is shown in Table 1, which show that the CNF outperforms the factorized baseline in likelihood.", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 106, + 338, + 505, + 349 + ], + "spans": [ + { + "bbox": [ + 106, + 338, + 505, + 349 + ], + "score": 1.0, + "content": "Recall that the baseline model is factorized and conditionally independent. These results indicate", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 348, + 461, + 362 + ], + "spans": [ + { + "bbox": [ + 105, + 348, + 461, + 362 + ], + "score": 1.0, + "content": "that it is advantageous to capture the correlations and multi-modality present in the data.", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 11, + "bbox_fs": [ + 105, + 304, + 505, + 362 + ] + }, + { + "type": "table", + "bbox": [ + 223, + 401, + 387, + 446 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 105, + 378, + 502, + 400 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 378, + 504, + 390 + ], + "spans": [ + { + "bbox": [ + 105, + 378, + 504, + 390 + ], + "score": 1.0, + "content": "Table 1: Comparison of likelihood learning with CNFs and factorized discrete baseline on Ima-", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 389, + 345, + 402 + ], + "spans": [ + { + "bbox": [ + 105, + 389, + 345, + 402 + ], + "score": 1.0, + "content": "geNet32 and ImageNet64 measured in bits per dimensions.", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 14.5 + }, + { + "type": "table_body", + "bbox": [ + 223, + 401, + 387, + 446 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 223, + 401, + 387, + 446 + ], + "spans": [ + { + "bbox": [ + 223, + 401, + 387, + 446 + ], + "score": 0.939, + "html": "
DatasetCNFfactorized LL
ImageNet323.014.00
ImageNet642.903.61
", + "type": "table", + "image_path": "d38232654bdbbfd11a456af93a0e48b5ee651904fc5bcf891b6a3afaa8a205e5.jpg" + } + ] + } + ], + "index": 17, + "virtual_lines": [ + { + "bbox": [ + 223, + 401, + 387, + 416.0 + ], + "spans": [], + "index": 16 + }, + { + "bbox": [ + 223, + 416.0, + 387, + 431.0 + ], + "spans": [], + "index": 17 + }, + { + "bbox": [ + 223, + 431.0, + 387, + 446.0 + ], + "spans": [], + "index": 18 + } + ] + } + ], + "index": 15.75 + }, + { + "type": "text", + "bbox": [ + 106, + 456, + 505, + 534 + ], + "lines": [ + { + "bbox": [ + 105, + 455, + 506, + 470 + ], + "spans": [ + { + "bbox": [ + 105, + 455, + 213, + 470 + ], + "score": 1.0, + "content": "Super resolution samples", + "type": "text" + }, + { + "bbox": [ + 213, + 456, + 289, + 469 + ], + "score": 0.92, + "content": "x _ { h r } \\sim p ( x _ { h r } | x _ { l r } )", + "type": "inline_equation" + }, + { + "bbox": [ + 290, + 455, + 506, + 470 + ], + "score": 1.0, + "content": "from the Imagenet64 test data are shown in Figure", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 466, + 505, + 480 + ], + "spans": [ + { + "bbox": [ + 105, + 466, + 505, + 480 + ], + "score": 1.0, + "content": "2. The distribution mode of the factorized baseline is displayed in Figure 2 panel c). We show", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 478, + 505, + 491 + ], + "spans": [ + { + "bbox": [ + 105, + 478, + 425, + 491 + ], + "score": 1.0, + "content": "that the baseline is able to learn a relationship between conditioning variable", + "type": "text" + }, + { + "bbox": [ + 425, + 480, + 434, + 489 + ], + "score": 0.5, + "content": "\\mathbf { x }", + "type": "inline_equation" + }, + { + "bbox": [ + 434, + 478, + 453, + 491 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 453, + 480, + 461, + 490 + ], + "score": 0.47, + "content": "\\mathbf { y }", + "type": "inline_equation" + }, + { + "bbox": [ + 461, + 478, + 505, + 491 + ], + "score": 1.0, + "content": ", but lacks", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 106, + 489, + 505, + 502 + ], + "spans": [ + { + "bbox": [ + 106, + 489, + 505, + 502 + ], + "score": 1.0, + "content": "crisp details. The super-resolution images from the CNF are shown in panel b). Notice there are", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 500, + 505, + 513 + ], + "spans": [ + { + "bbox": [ + 105, + 500, + 505, + 513 + ], + "score": 1.0, + "content": "more high-frequency components modelled, for instance in grass and in hairs. Following Kingma &", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 106, + 511, + 505, + 524 + ], + "spans": [ + { + "bbox": [ + 106, + 511, + 412, + 524 + ], + "score": 1.0, + "content": "Dhariwal (2018), we sample from the base distributions with a temperature", + "type": "text" + }, + { + "bbox": [ + 412, + 513, + 419, + 521 + ], + "score": 0.76, + "content": "\\tau", + "type": "inline_equation" + }, + { + "bbox": [ + 420, + 511, + 505, + 524 + ], + "score": 1.0, + "content": "of 0.8 to achieve the", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 106, + 523, + 358, + 535 + ], + "spans": [ + { + "bbox": [ + 106, + 523, + 358, + 535 + ], + "score": 1.0, + "content": "best perceptual quality for the distribution learned by the CNF.", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 22, + "bbox_fs": [ + 105, + 455, + 506, + 535 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 539, + 505, + 671 + ], + "lines": [ + { + "bbox": [ + 105, + 538, + 506, + 553 + ], + "spans": [ + { + "bbox": [ + 105, + 538, + 506, + 553 + ], + "score": 1.0, + "content": "As there are no standard metric for measuring perceptual quality, we measure performance results on", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 104, + 549, + 506, + 564 + ], + "spans": [ + { + "bbox": [ + 104, + 549, + 506, + 564 + ], + "score": 1.0, + "content": "PSNR and SSIM between our predicted image and the ground truth image in Table 2. We compare", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 560, + 504, + 574 + ], + "spans": [ + { + "bbox": [ + 105, + 560, + 492, + 574 + ], + "score": 1.0, + "content": "CNFs to other state-of-the-art per-pixel loss based methods and the factorized baseline for a", + "type": "text" + }, + { + "bbox": [ + 492, + 562, + 504, + 572 + ], + "score": 0.7, + "content": "2 \\mathbf { x }", + "type": "inline_equation" + } + ], + "index": 28 + }, + { + "bbox": [ + 104, + 570, + 504, + 587 + ], + "spans": [ + { + "bbox": [ + 104, + 570, + 482, + 587 + ], + "score": 1.0, + "content": "upsampling task on standard super-resolution benchmarks. If available, we report negative", + "type": "text" + }, + { + "bbox": [ + 482, + 573, + 504, + 583 + ], + "score": 0.44, + "content": "\\log _ { 2 ^ { - } }", + "type": "inline_equation" + } + ], + "index": 29 + }, + { + "bbox": [ + 106, + 583, + 505, + 595 + ], + "spans": [ + { + "bbox": [ + 106, + 583, + 398, + 595 + ], + "score": 1.0, + "content": "likelihood (bpd) (computed as an average over 1000 randomly cropped", + "type": "text" + }, + { + "bbox": [ + 398, + 583, + 441, + 594 + ], + "score": 0.78, + "content": "1 2 8 \\mathrm { ~ x ~ } 1 2 8", + "type": "inline_equation" + }, + { + "bbox": [ + 441, + 583, + 505, + 595 + ], + "score": 1.0, + "content": "patches). Note", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 594, + 506, + 608 + ], + "spans": [ + { + "bbox": [ + 105, + 594, + 506, + 608 + ], + "score": 1.0, + "content": "that without any hyperparameter tuning or compositional loss weighting, as is typical in SISR, the", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 604, + 505, + 618 + ], + "spans": [ + { + "bbox": [ + 105, + 604, + 505, + 618 + ], + "score": 1.0, + "content": "CNF performs competitively with state-of-the-art super-resolution methods by simply optimizing", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 615, + 505, + 628 + ], + "spans": [ + { + "bbox": [ + 105, + 615, + 505, + 628 + ], + "score": 1.0, + "content": "the likelihood. The SSIM scores for the baseline perform on par or better than the adversarial", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 627, + 505, + 639 + ], + "spans": [ + { + "bbox": [ + 105, + 627, + 505, + 639 + ], + "score": 1.0, + "content": "methods and the CNF on all benchmarks. On PSNR scores however, the CNF beats the factorized", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 106, + 638, + 505, + 650 + ], + "spans": [ + { + "bbox": [ + 106, + 638, + 505, + 650 + ], + "score": 1.0, + "content": "discrete baseline. Samples shown in Figure 3 show that the CNF predictions have more fine grained", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 649, + 506, + 662 + ], + "spans": [ + { + "bbox": [ + 105, + 649, + 506, + 662 + ], + "score": 1.0, + "content": "texture details. Comparing this finding with the baseline that outperforms every method on SSIM,", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 659, + 255, + 673 + ], + "spans": [ + { + "bbox": [ + 105, + 659, + 255, + 673 + ], + "score": 1.0, + "content": "show that metrics can be misleading.", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 31.5, + "bbox_fs": [ + 104, + 538, + 506, + 673 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 677, + 504, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 676, + 506, + 690 + ], + "spans": [ + { + "bbox": [ + 105, + 676, + 506, + 690 + ], + "score": 1.0, + "content": "Notice how samples from a independent factorized likelihood model have a lot of color noise,", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 686, + 505, + 700 + ], + "spans": [ + { + "bbox": [ + 105, + 686, + 505, + 700 + ], + "score": 1.0, + "content": "whereas samples from the CNF do not have such problems. Increasing temperature increases high-", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 698, + 505, + 711 + ], + "spans": [ + { + "bbox": [ + 105, + 698, + 232, + 711 + ], + "score": 1.0, + "content": "level detail, where we find that", + "type": "text" + }, + { + "bbox": [ + 232, + 699, + 266, + 709 + ], + "score": 0.88, + "content": "\\tau = 0 . 5", + "type": "inline_equation" + }, + { + "bbox": [ + 266, + 698, + 505, + 711 + ], + "score": 1.0, + "content": "strikes a balance between noise smoothing and detail. This", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 709, + 506, + 723 + ], + "spans": [ + { + "bbox": [ + 105, + 709, + 506, + 723 + ], + "score": 1.0, + "content": "can be attributed to the property of flows to model pixel correlations among output dimensions for", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 720, + 262, + 734 + ], + "spans": [ + { + "bbox": [ + 105, + 720, + 262, + 734 + ], + "score": 1.0, + "content": "high-dimensional data such as images.", + "type": "text" + } + ], + "index": 42 + } + ], + "index": 40, + "bbox_fs": [ + 105, + 676, + 506, + 734 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "image", + "bbox": [ + 107, + 78, + 504, + 194 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 107, + 78, + 504, + 194 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 107, + 78, + 504, + 194 + ], + "spans": [ + { + "bbox": [ + 107, + 78, + 504, + 194 + ], + "score": 0.96, + "type": "image", + "image_path": "5602ea26bc9f0019bce5ce039c4e3071ca127744d2404a6971011ac9cc775f23.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 107, + 78, + 504, + 116.66666666666666 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 107, + 116.66666666666666, + 504, + 155.33333333333331 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 107, + 155.33333333333331, + 504, + 193.99999999999997 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 205, + 505, + 239 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 204, + 505, + 218 + ], + "spans": [ + { + "bbox": [ + 106, + 204, + 419, + 218 + ], + "score": 1.0, + "content": "Figure 3: Conditional samples from the CNF (ours) for sampling temperatures", + "type": "text" + }, + { + "bbox": [ + 420, + 205, + 473, + 217 + ], + "score": 0.88, + "content": "\\{ 0 . , 0 . 5 , 1 . 0 \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 473, + 204, + 505, + 218 + ], + "score": 1.0, + "content": "and the", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 216, + 505, + 228 + ], + "spans": [ + { + "bbox": [ + 105, + 216, + 233, + 228 + ], + "score": 1.0, + "content": "factorized discrete baseline for", + "type": "text" + }, + { + "bbox": [ + 233, + 217, + 245, + 226 + ], + "score": 0.39, + "content": "2 \\mathbf { x }", + "type": "inline_equation" + }, + { + "bbox": [ + 245, + 216, + 505, + 228 + ], + "score": 1.0, + "content": "upscaling. Conditioning image is a baboon from Set14 test set.", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 226, + 386, + 240 + ], + "spans": [ + { + "bbox": [ + 105, + 226, + 386, + 240 + ], + "score": 1.0, + "content": "Both models were trained on ImageNet64. Best viewed electronically.", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 4 + } + ], + "index": 2.5 + }, + { + "type": "table", + "bbox": [ + 106, + 310, + 503, + 423 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 106, + 266, + 505, + 309 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 264, + 505, + 279 + ], + "spans": [ + { + "bbox": [ + 105, + 264, + 505, + 279 + ], + "score": 1.0, + "content": "Table 2: CNF compared to factorized discrete baseline and adversarial, pixel-wise methods (Dong", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 277, + 505, + 289 + ], + "spans": [ + { + "bbox": [ + 105, + 277, + 441, + 289 + ], + "score": 1.0, + "content": "et al., 2015; Sajjadi et al., 2017a; Prez-Pellitero et al., 2016) based on negative", + "type": "text" + }, + { + "bbox": [ + 441, + 277, + 460, + 289 + ], + "score": 0.87, + "content": "\\log _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 460, + 277, + 505, + 289 + ], + "score": 1.0, + "content": "-likelihood", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 288, + 506, + 301 + ], + "spans": [ + { + "bbox": [ + 105, + 288, + 318, + 301 + ], + "score": 1.0, + "content": "(bits per dimension or bpd), PSNR, SSIM and for", + "type": "text" + }, + { + "bbox": [ + 319, + 288, + 331, + 298 + ], + "score": 0.29, + "content": "2 \\mathbf { x }", + "type": "inline_equation" + }, + { + "bbox": [ + 331, + 288, + 506, + 301 + ], + "score": 1.0, + "content": "upscaling. Our methods were trained on", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 299, + 161, + 311 + ], + "spans": [ + { + "bbox": [ + 105, + 299, + 161, + 311 + ], + "score": 1.0, + "content": "ImageNet64.", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 7.5 + }, + { + "type": "table_body", + "bbox": [ + 106, + 310, + 503, + 423 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 310, + 503, + 423 + ], + "spans": [ + { + "bbox": [ + 106, + 310, + 503, + 423 + ], + "score": 0.981, + "html": "
Set5Set14BSD100
Model TypebpdPSNRSSIM 1bpdPSNRSSIMbpdPSNRSSIM
Bicubic-33.70.930-30.20.869129.60.843
SRCNN136.70.954132.40.906131.40.888
PSyCO136.90.956-32.60.898131.40.890
ENet137.30.958133.30.915132.00.898
LL Baseline2.3432.50.9583.2331.00.9173.2030.60.900
CNF (ours)2.1136.20.9572.5132.50.9112.3331.40.893
", + "type": "table", + "image_path": "c532409d5f9005d84432d217c4ef6396c06f517490bbb717dae5d8d8fa4a2431.jpg" + } + ] + } + ], + "index": 11, + "virtual_lines": [ + { + "bbox": [ + 106, + 310, + 503, + 347.6666666666667 + ], + "spans": [], + "index": 10 + }, + { + "bbox": [ + 106, + 347.6666666666667, + 503, + 385.33333333333337 + ], + "spans": [], + "index": 11 + }, + { + "bbox": [ + 106, + 385.33333333333337, + 503, + 423.00000000000006 + ], + "spans": [], + "index": 12 + } + ] + } + ], + "index": 9.25 + }, + { + "type": "title", + "bbox": [ + 107, + 451, + 235, + 462 + ], + "lines": [ + { + "bbox": [ + 106, + 451, + 236, + 463 + ], + "spans": [ + { + "bbox": [ + 106, + 451, + 236, + 463 + ], + "score": 1.0, + "content": "5.2 VESSEL SEGMENTATION", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 13 + }, + { + "type": "text", + "bbox": [ + 106, + 475, + 506, + 509 + ], + "lines": [ + { + "bbox": [ + 106, + 475, + 506, + 488 + ], + "spans": [ + { + "bbox": [ + 106, + 475, + 506, + 488 + ], + "score": 1.0, + "content": "Vessel segmentation is an important, long-standing, medical imaging problem, where we seek to", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 486, + 505, + 498 + ], + "spans": [ + { + "bbox": [ + 105, + 486, + 505, + 498 + ], + "score": 1.0, + "content": "segment blood vessels from pictures of the retina (the back of the eye). This is a difficult task,", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 106, + 498, + 505, + 510 + ], + "spans": [ + { + "bbox": [ + 106, + 498, + 505, + 510 + ], + "score": 1.0, + "content": "because the vessels are thin and of varying thickness. A likelihood function used in segmentation is", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 15 + }, + { + "type": "image", + "bbox": [ + 107, + 533, + 505, + 676 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 107, + 533, + 505, + 676 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 107, + 533, + 505, + 676 + ], + "spans": [ + { + "bbox": [ + 107, + 533, + 505, + 676 + ], + "score": 0.944, + "type": "image", + "image_path": "64404a415db694e85d9227c5b4fd54d66608ebbee408c1463360b6822919ce1f.jpg" + } + ] + } + ], + "index": 18, + "virtual_lines": [ + { + "bbox": [ + 107, + 533, + 505, + 580.6666666666666 + ], + "spans": [], + "index": 17 + }, + { + "bbox": [ + 107, + 580.6666666666666, + 505, + 628.3333333333333 + ], + "spans": [], + "index": 18 + }, + { + "bbox": [ + 107, + 628.3333333333333, + 505, + 675.9999999999999 + ], + "spans": [], + "index": 19 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 687, + 505, + 731 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 105, + 687, + 506, + 699 + ], + "spans": [ + { + "bbox": [ + 105, + 687, + 506, + 699 + ], + "score": 1.0, + "content": "Figure 4: Example of retinal segmentations using DRIU, our likelihood baseline trained with the", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 698, + 505, + 712 + ], + "spans": [ + { + "bbox": [ + 105, + 698, + 505, + 712 + ], + "score": 1.0, + "content": "same loss, and our CNF. For the CNF, the mean of 100 samples is visualized. Notice that our seg-", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 710, + 506, + 721 + ], + "spans": [ + { + "bbox": [ + 105, + 710, + 506, + 721 + ], + "score": 1.0, + "content": "mentations more accurately capture the vessel width, which is overdilated in the DRIU and factored", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 721, + 141, + 732 + ], + "spans": [ + { + "bbox": [ + 105, + 721, + 141, + 732 + ], + "score": 1.0, + "content": "models.", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 21.5 + } + ], + "index": 19.75 + } + ], + "page_idx": 6, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 27, + 308, + 37 + ], + "lines": [ + { + "bbox": [ + 107, + 25, + 308, + 38 + ], + "spans": [ + { + "bbox": [ + 107, + 25, + 308, + 38 + ], + "score": 1.0, + "content": "Under review as a conference paper at ICLR 2020", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 302, + 751, + 309, + 759 + ], + "lines": [ + { + "bbox": [ + 302, + 750, + 309, + 762 + ], + "spans": [ + { + "bbox": [ + 302, + 750, + 309, + 762 + ], + "score": 1.0, + "content": "7", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "image", + "bbox": [ + 107, + 78, + 504, + 194 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 107, + 78, + 504, + 194 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 107, + 78, + 504, + 194 + ], + "spans": [ + { + "bbox": [ + 107, + 78, + 504, + 194 + ], + "score": 0.96, + "type": "image", + "image_path": "5602ea26bc9f0019bce5ce039c4e3071ca127744d2404a6971011ac9cc775f23.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 107, + 78, + 504, + 116.66666666666666 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 107, + 116.66666666666666, + 504, + 155.33333333333331 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 107, + 155.33333333333331, + 504, + 193.99999999999997 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 205, + 505, + 239 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 204, + 505, + 218 + ], + "spans": [ + { + "bbox": [ + 106, + 204, + 419, + 218 + ], + "score": 1.0, + "content": "Figure 3: Conditional samples from the CNF (ours) for sampling temperatures", + "type": "text" + }, + { + "bbox": [ + 420, + 205, + 473, + 217 + ], + "score": 0.88, + "content": "\\{ 0 . , 0 . 5 , 1 . 0 \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 473, + 204, + 505, + 218 + ], + "score": 1.0, + "content": "and the", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 216, + 505, + 228 + ], + "spans": [ + { + "bbox": [ + 105, + 216, + 233, + 228 + ], + "score": 1.0, + "content": "factorized discrete baseline for", + "type": "text" + }, + { + "bbox": [ + 233, + 217, + 245, + 226 + ], + "score": 0.39, + "content": "2 \\mathbf { x }", + "type": "inline_equation" + }, + { + "bbox": [ + 245, + 216, + 505, + 228 + ], + "score": 1.0, + "content": "upscaling. Conditioning image is a baboon from Set14 test set.", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 226, + 386, + 240 + ], + "spans": [ + { + "bbox": [ + 105, + 226, + 386, + 240 + ], + "score": 1.0, + "content": "Both models were trained on ImageNet64. Best viewed electronically.", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 4 + } + ], + "index": 2.5 + }, + { + "type": "table", + "bbox": [ + 106, + 310, + 503, + 423 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 106, + 266, + 505, + 309 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 264, + 505, + 279 + ], + "spans": [ + { + "bbox": [ + 105, + 264, + 505, + 279 + ], + "score": 1.0, + "content": "Table 2: CNF compared to factorized discrete baseline and adversarial, pixel-wise methods (Dong", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 277, + 505, + 289 + ], + "spans": [ + { + "bbox": [ + 105, + 277, + 441, + 289 + ], + "score": 1.0, + "content": "et al., 2015; Sajjadi et al., 2017a; Prez-Pellitero et al., 2016) based on negative", + "type": "text" + }, + { + "bbox": [ + 441, + 277, + 460, + 289 + ], + "score": 0.87, + "content": "\\log _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 460, + 277, + 505, + 289 + ], + "score": 1.0, + "content": "-likelihood", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 288, + 506, + 301 + ], + "spans": [ + { + "bbox": [ + 105, + 288, + 318, + 301 + ], + "score": 1.0, + "content": "(bits per dimension or bpd), PSNR, SSIM and for", + "type": "text" + }, + { + "bbox": [ + 319, + 288, + 331, + 298 + ], + "score": 0.29, + "content": "2 \\mathbf { x }", + "type": "inline_equation" + }, + { + "bbox": [ + 331, + 288, + 506, + 301 + ], + "score": 1.0, + "content": "upscaling. Our methods were trained on", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 299, + 161, + 311 + ], + "spans": [ + { + "bbox": [ + 105, + 299, + 161, + 311 + ], + "score": 1.0, + "content": "ImageNet64.", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 7.5 + }, + { + "type": "table_body", + "bbox": [ + 106, + 310, + 503, + 423 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 310, + 503, + 423 + ], + "spans": [ + { + "bbox": [ + 106, + 310, + 503, + 423 + ], + "score": 0.981, + "html": "
Set5Set14BSD100
Model TypebpdPSNRSSIM 1bpdPSNRSSIMbpdPSNRSSIM
Bicubic-33.70.930-30.20.869129.60.843
SRCNN136.70.954132.40.906131.40.888
PSyCO136.90.956-32.60.898131.40.890
ENet137.30.958133.30.915132.00.898
LL Baseline2.3432.50.9583.2331.00.9173.2030.60.900
CNF (ours)2.1136.20.9572.5132.50.9112.3331.40.893
", + "type": "table", + "image_path": "c532409d5f9005d84432d217c4ef6396c06f517490bbb717dae5d8d8fa4a2431.jpg" + } + ] + } + ], + "index": 11, + "virtual_lines": [ + { + "bbox": [ + 106, + 310, + 503, + 347.6666666666667 + ], + "spans": [], + "index": 10 + }, + { + "bbox": [ + 106, + 347.6666666666667, + 503, + 385.33333333333337 + ], + "spans": [], + "index": 11 + }, + { + "bbox": [ + 106, + 385.33333333333337, + 503, + 423.00000000000006 + ], + "spans": [], + "index": 12 + } + ] + } + ], + "index": 9.25 + }, + { + "type": "title", + "bbox": [ + 107, + 451, + 235, + 462 + ], + "lines": [ + { + "bbox": [ + 106, + 451, + 236, + 463 + ], + "spans": [ + { + "bbox": [ + 106, + 451, + 236, + 463 + ], + "score": 1.0, + "content": "5.2 VESSEL SEGMENTATION", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 13 + }, + { + "type": "text", + "bbox": [ + 106, + 475, + 506, + 509 + ], + "lines": [ + { + "bbox": [ + 106, + 475, + 506, + 488 + ], + "spans": [ + { + "bbox": [ + 106, + 475, + 506, + 488 + ], + "score": 1.0, + "content": "Vessel segmentation is an important, long-standing, medical imaging problem, where we seek to", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 486, + 505, + 498 + ], + "spans": [ + { + "bbox": [ + 105, + 486, + 505, + 498 + ], + "score": 1.0, + "content": "segment blood vessels from pictures of the retina (the back of the eye). This is a difficult task,", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 106, + 498, + 505, + 510 + ], + "spans": [ + { + "bbox": [ + 106, + 498, + 505, + 510 + ], + "score": 1.0, + "content": "because the vessels are thin and of varying thickness. A likelihood function used in segmentation is", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 15, + "bbox_fs": [ + 105, + 475, + 506, + 510 + ] + }, + { + "type": "image", + "bbox": [ + 107, + 533, + 505, + 676 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 107, + 533, + 505, + 676 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 107, + 533, + 505, + 676 + ], + "spans": [ + { + "bbox": [ + 107, + 533, + 505, + 676 + ], + "score": 0.944, + "type": "image", + "image_path": "64404a415db694e85d9227c5b4fd54d66608ebbee408c1463360b6822919ce1f.jpg" + } + ] + } + ], + "index": 18, + "virtual_lines": [ + { + "bbox": [ + 107, + 533, + 505, + 580.6666666666666 + ], + "spans": [], + "index": 17 + }, + { + "bbox": [ + 107, + 580.6666666666666, + 505, + 628.3333333333333 + ], + "spans": [], + "index": 18 + }, + { + "bbox": [ + 107, + 628.3333333333333, + 505, + 675.9999999999999 + ], + "spans": [], + "index": 19 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 687, + 505, + 731 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 105, + 687, + 506, + 699 + ], + "spans": [ + { + "bbox": [ + 105, + 687, + 506, + 699 + ], + "score": 1.0, + "content": "Figure 4: Example of retinal segmentations using DRIU, our likelihood baseline trained with the", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 698, + 505, + 712 + ], + "spans": [ + { + "bbox": [ + 105, + 698, + 505, + 712 + ], + "score": 1.0, + "content": "same loss, and our CNF. For the CNF, the mean of 100 samples is visualized. Notice that our seg-", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 710, + 506, + 721 + ], + "spans": [ + { + "bbox": [ + 105, + 710, + 506, + 721 + ], + "score": 1.0, + "content": "mentations more accurately capture the vessel width, which is overdilated in the DRIU and factored", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 721, + 141, + 732 + ], + "spans": [ + { + "bbox": [ + 105, + 721, + 141, + 732 + ], + "score": 1.0, + "content": "models.", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 21.5 + } + ], + "index": 19.75 + } + ] + }, + { + "preproc_blocks": [ + { + "type": "table", + "bbox": [ + 108, + 155, + 504, + 185 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 106, + 88, + 505, + 155 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 90, + 504, + 101 + ], + "spans": [ + { + "bbox": [ + 106, + 90, + 504, + 101 + ], + "score": 1.0, + "content": "Table 3: Numerical results on the DRIVE dataset. We see that the CNF is in the range of the SOTA", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 100, + 505, + 113 + ], + "spans": [ + { + "bbox": [ + 105, + 100, + 505, + 113 + ], + "score": 1.0, + "content": "model DRIU. SE: Structured Forests (Dollar & Zitnick, 2013), LD: Line Detector (Ricci & Perfetti, ´", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 104, + 110, + 506, + 125 + ], + "spans": [ + { + "bbox": [ + 104, + 110, + 506, + 125 + ], + "score": 1.0, + "content": "2007), Wavelets (Soares et al., 2006), Human (Staal et al., 2004), HED: Holistic Edge Detector", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 104, + 120, + 506, + 137 + ], + "spans": [ + { + "bbox": [ + 104, + 120, + 349, + 137 + ], + "score": 1.0, + "content": "(Xie & Tu, 2015), KB: Kernel Boost Becker et al. (2013),", + "type": "text" + }, + { + "bbox": [ + 349, + 122, + 364, + 132 + ], + "score": 0.85, + "content": "N ^ { 4 }", + "type": "inline_equation" + }, + { + "bbox": [ + 364, + 120, + 370, + 137 + ], + "score": 1.0, + "content": ":", + "type": "text" + }, + { + "bbox": [ + 370, + 122, + 385, + 132 + ], + "score": 0.85, + "content": "N ^ { 4 }", + "type": "inline_equation" + }, + { + "bbox": [ + 386, + 120, + 506, + 137 + ], + "score": 1.0, + "content": "Fields (Ganin & Lempitsky,", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 132, + 505, + 146 + ], + "spans": [ + { + "bbox": [ + 105, + 132, + 505, + 146 + ], + "score": 1.0, + "content": "2014), DRIU: Deep Retinal Image Understanding (Maninis et al., 2016). Our answers are shown in", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 144, + 335, + 156 + ], + "spans": [ + { + "bbox": [ + 105, + 144, + 335, + 156 + ], + "score": 1.0, + "content": "mean ± 1std form, where statistics are taken over 5 runs.", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 2.5 + }, + { + "type": "table_body", + "bbox": [ + 108, + 155, + 504, + 185 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 108, + 155, + 504, + 185 + ], + "spans": [ + { + "bbox": [ + 108, + 155, + 504, + 185 + ], + "score": 0.962, + "html": "
SELDWaveletsHumanHEDKBN4DRIUFactored (ours)CNF Uniform (Ours)CNF (ours)
bpd==0.0647 ± 0.00150.3366 ± 0.02900.0254± 0.0008
F-Score0.6580.6920.7620.7910.7940.8000.8050.8210.815 ± 0.0010.762 ± 0.0020.819 ± 0.001
", + "type": "table", + "image_path": "6c6811f6732fcf8e7af3849b9391a8999fe2366d17bdfc5608fbbb332a3d7eb5.jpg" + } + ] + } + ], + "index": 7, + "virtual_lines": [ + { + "bbox": [ + 108, + 155, + 504, + 165.0 + ], + "spans": [], + "index": 6 + }, + { + "bbox": [ + 108, + 165.0, + 504, + 175.0 + ], + "spans": [], + "index": 7 + }, + { + "bbox": [ + 108, + 175.0, + 504, + 185.0 + ], + "spans": [], + "index": 8 + } + ] + } + ], + "index": 4.75 + }, + { + "type": "text", + "bbox": [ + 106, + 206, + 241, + 217 + ], + "lines": [ + { + "bbox": [ + 105, + 205, + 241, + 218 + ], + "spans": [ + { + "bbox": [ + 105, + 205, + 241, + 218 + ], + "score": 1.0, + "content": "a weighted Bernoulli distribution", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 9 + }, + { + "type": "interline_equation", + "bbox": [ + 234, + 222, + 377, + 258 + ], + "lines": [ + { + "bbox": [ + 234, + 222, + 377, + 258 + ], + "spans": [ + { + "bbox": [ + 234, + 222, + 377, + 258 + ], + "score": 0.94, + "content": "\\mathcal { L } = \\prod _ { j } \\frac { p _ { j } ^ { \\beta \\cdot y _ { j } } ( 1 - p _ { j } ) ^ { ( 1 - \\beta ) \\cdot ( 1 - y _ { j } ) } } { p _ { j } ^ { \\beta } + ( 1 - p _ { j } ) ^ { 1 - \\beta } }", + "type": "interline_equation", + "image_path": "f2941e0fa60e747be02afea1233001f45cb5791567c8dc5a821ed218a2ff3028.jpg" + } + ] + } + ], + "index": 10.5, + "virtual_lines": [ + { + "bbox": [ + 234, + 222, + 377, + 240.0 + ], + "spans": [], + "index": 10 + }, + { + "bbox": [ + 234, + 240.0, + 377, + 258.0 + ], + "spans": [], + "index": 11 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 264, + 505, + 331 + ], + "lines": [ + { + "bbox": [ + 105, + 264, + 506, + 278 + ], + "spans": [ + { + "bbox": [ + 105, + 264, + 133, + 278 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 133, + 264, + 206, + 277 + ], + "score": 0.92, + "content": "p _ { j } = p ( y _ { j } = 1 | \\mathbf { x } )", + "type": "inline_equation" + }, + { + "bbox": [ + 206, + 264, + 360, + 278 + ], + "score": 1.0, + "content": "is the prediction probability that pixel", + "type": "text" + }, + { + "bbox": [ + 360, + 266, + 371, + 277 + ], + "score": 0.85, + "content": "y _ { j }", + "type": "inline_equation" + }, + { + "bbox": [ + 371, + 264, + 487, + 278 + ], + "score": 1.0, + "content": "is positive (vessel class) and", + "type": "text" + }, + { + "bbox": [ + 487, + 265, + 495, + 276 + ], + "score": 0.85, + "content": "\\beta", + "type": "inline_equation" + }, + { + "bbox": [ + 495, + 264, + 506, + 278 + ], + "score": 1.0, + "content": "is", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 275, + 505, + 287 + ], + "spans": [ + { + "bbox": [ + 105, + 275, + 237, + 287 + ], + "score": 1.0, + "content": "a class balancing constant set to", + "type": "text" + }, + { + "bbox": [ + 237, + 275, + 268, + 286 + ], + "score": 0.9, + "content": "\\sim 1 0 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 269, + 275, + 505, + 287 + ], + "score": 1.0, + "content": "for us. This loss function is preferred, because it accounts", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 287, + 505, + 298 + ], + "spans": [ + { + "bbox": [ + 105, + 287, + 505, + 298 + ], + "score": 1.0, + "content": "for the apparent class imbalance in the ratio of vessels to background. In practice, the numerator of", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 297, + 505, + 310 + ], + "spans": [ + { + "bbox": [ + 105, + 297, + 505, + 310 + ], + "score": 1.0, + "content": "this likelihood is used as a loss function and the normalizer is ignored. The resulting loss is called", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 309, + 505, + 321 + ], + "spans": [ + { + "bbox": [ + 105, + 309, + 505, + 321 + ], + "score": 1.0, + "content": "a weighted cross-entropy. In our experiments we train using the weighted cross-entropy (as in the", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 319, + 500, + 332 + ], + "spans": [ + { + "bbox": [ + 105, + 319, + 500, + 332 + ], + "score": 1.0, + "content": "literature), but we report likelihood values including the normalizer, for a meaningful comparison.", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 14.5 + }, + { + "type": "text", + "bbox": [ + 107, + 343, + 505, + 464 + ], + "lines": [ + { + "bbox": [ + 105, + 343, + 505, + 356 + ], + "spans": [ + { + "bbox": [ + 105, + 343, + 478, + 356 + ], + "score": 1.0, + "content": "Dataset and comparisons We test on the DRIVE database Staal et al. (2004) consisting of", + "type": "text" + }, + { + "bbox": [ + 478, + 344, + 505, + 354 + ], + "score": 0.85, + "content": "5 8 4 \\times", + "type": "inline_equation" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 354, + 505, + 367 + ], + "spans": [ + { + "bbox": [ + 105, + 354, + 505, + 367 + ], + "score": 1.0, + "content": "565, 8-bit RGB images, split into 20 train, and 20 test images. To compare against other methods,", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 366, + 505, + 378 + ], + "spans": [ + { + "bbox": [ + 105, + 366, + 505, + 378 + ], + "score": 1.0, + "content": "we plot precision-recall curves, report the maximum F-score along each curve (shown as a dot in", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 376, + 506, + 389 + ], + "spans": [ + { + "bbox": [ + 105, + 376, + 506, + 389 + ], + "score": 1.0, + "content": "the graph), report the bits per dimension, and plot distributions in PR-space. The main CNN-based", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 387, + 505, + 401 + ], + "spans": [ + { + "bbox": [ + 105, + 387, + 505, + 401 + ], + "score": 1.0, + "content": "contenders are Deep Retinal Image Understanding (DRIU) (Maninis et al., 2016) and Holistically-", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 398, + 506, + 412 + ], + "spans": [ + { + "bbox": [ + 105, + 398, + 506, + 412 + ], + "score": 1.0, + "content": "Nested Edge Detection (HED) (Xie & Tu, 2015), both of which are instances of Deeply-Supervised", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 408, + 505, + 421 + ], + "spans": [ + { + "bbox": [ + 105, + 408, + 505, + 421 + ], + "score": 1.0, + "content": "Nets (Lee et al., 2015). The main difference between DRIU and HED is that DRIU is pretrained on", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 420, + 506, + 433 + ], + "spans": [ + { + "bbox": [ + 105, + 420, + 506, + 433 + ], + "score": 1.0, + "content": "ImageNet Krizhevsky et al. (2012); whereas, HED is not. Other competing methods are reported", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 106, + 432, + 505, + 443 + ], + "spans": [ + { + "bbox": [ + 106, + 432, + 505, + 443 + ], + "score": 1.0, + "content": "with results cited from (Maninis et al., 2016). For fairness, we also train a model which we call the", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 442, + 506, + 455 + ], + "spans": [ + { + "bbox": [ + 105, + 442, + 506, + 455 + ], + "score": 1.0, + "content": "likelihood baseline, which uses the exact same architecture as the flow but run a feedforward model", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 453, + 289, + 466 + ], + "spans": [ + { + "bbox": [ + 105, + 453, + 289, + 466 + ], + "score": 1.0, + "content": "and trained with the weighted Bernoulli loss.", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 23 + }, + { + "type": "text", + "bbox": [ + 107, + 478, + 375, + 653 + ], + "lines": [ + { + "bbox": [ + 106, + 477, + 376, + 489 + ], + "spans": [ + { + "bbox": [ + 106, + 477, + 376, + 489 + ], + "score": 1.0, + "content": "Implementation The flow is identical to the flow used in the", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 488, + 376, + 500 + ], + "spans": [ + { + "bbox": [ + 105, + 488, + 376, + 500 + ], + "score": 1.0, + "content": "previous section, with some key differences. i) instead of activa-", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 106, + 500, + 376, + 511 + ], + "spans": [ + { + "bbox": [ + 106, + 500, + 376, + 511 + ], + "score": 1.0, + "content": "tion normalization, we use instance normalization (Ulyanov et al.,", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 509, + 377, + 523 + ], + "spans": [ + { + "bbox": [ + 105, + 509, + 377, + 523 + ], + "score": 1.0, + "content": "2016), ii) the conditional affine coupling layers do not contain a", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 106, + 521, + 376, + 533 + ], + "spans": [ + { + "bbox": [ + 106, + 521, + 188, + 533 + ], + "score": 1.0, + "content": "scaling component", + "type": "text" + }, + { + "bbox": [ + 188, + 521, + 204, + 533 + ], + "score": 0.89, + "content": "s ( \\cdot )", + "type": "inline_equation" + }, + { + "bbox": [ + 205, + 521, + 307, + 533 + ], + "score": 1.0, + "content": "but just the translation", + "type": "text" + }, + { + "bbox": [ + 307, + 521, + 322, + 533 + ], + "score": 0.87, + "content": "t ( \\cdot )", + "type": "inline_equation" + }, + { + "bbox": [ + 323, + 521, + 376, + 533 + ], + "score": 1.0, + "content": ", hence it is", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 106, + 532, + 377, + 544 + ], + "spans": [ + { + "bbox": [ + 106, + 532, + 377, + 544 + ], + "score": 1.0, + "content": "volume preserving, and iii) we train using variational dequanti-", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 543, + 376, + 554 + ], + "spans": [ + { + "bbox": [ + 105, + 543, + 376, + 554 + ], + "score": 1.0, + "content": "zation. Since the data is binary-valued, we dequantize accord-", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 554, + 376, + 566 + ], + "spans": [ + { + "bbox": [ + 105, + 554, + 171, + 566 + ], + "score": 1.0, + "content": "ing to the Flow", + "type": "text" + }, + { + "bbox": [ + 171, + 555, + 184, + 564 + ], + "score": 0.31, + "content": "^ { + + }", + "type": "inline_equation" + }, + { + "bbox": [ + 185, + 554, + 376, + 566 + ], + "score": 1.0, + "content": "scheme of Ho et al., modified to binary vari-", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 564, + 376, + 577 + ], + "spans": [ + { + "bbox": [ + 105, + 564, + 376, + 577 + ], + "score": 1.0, + "content": "ables (see Section 3.2), using a CNF at just a single scale for the", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 576, + 376, + 588 + ], + "spans": [ + { + "bbox": [ + 105, + 576, + 376, + 588 + ], + "score": 1.0, + "content": "dequantizer. The CNF is conditioned on resolution-matched fea-", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 587, + 376, + 599 + ], + "spans": [ + { + "bbox": [ + 105, + 587, + 376, + 599 + ], + "score": 1.0, + "content": "tures extracted from a VGG-like network Simonyan & Zisserman", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 106, + 598, + 376, + 609 + ], + "spans": [ + { + "bbox": [ + 106, + 598, + 364, + 609 + ], + "score": 1.0, + "content": "(2015). This model is composed of blocks of the form block", + "type": "text" + }, + { + "bbox": [ + 364, + 599, + 376, + 608 + ], + "score": 0.75, + "content": "=", + "type": "inline_equation" + } + ], + "index": 40 + }, + { + "bbox": [ + 106, + 609, + 376, + 621 + ], + "spans": [ + { + "bbox": [ + 106, + 609, + 247, + 621 + ], + "score": 1.0, + "content": "[InstanceNorm, ReLU, conv], and", + "type": "text" + }, + { + "bbox": [ + 248, + 609, + 264, + 619 + ], + "score": 0.47, + "content": "2 \\mathbf { x } 2", + "type": "inline_equation" + }, + { + "bbox": [ + 265, + 609, + 376, + 621 + ], + "score": 1.0, + "content": "max-pooling layer, shown", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 619, + 376, + 631 + ], + "spans": [ + { + "bbox": [ + 105, + 619, + 227, + 631 + ], + "score": 1.0, + "content": "in Table 4. All filter sizes are", + "type": "text" + }, + { + "bbox": [ + 228, + 620, + 244, + 630 + ], + "score": 0.45, + "content": "3 { \\tt X } 3", + "type": "inline_equation" + }, + { + "bbox": [ + 244, + 619, + 376, + 631 + ], + "score": 1.0, + "content": ". The outputs are at layers 4 and", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 106, + 630, + 377, + 642 + ], + "spans": [ + { + "bbox": [ + 106, + 630, + 377, + 642 + ], + "score": 1.0, + "content": "7. These are used to condition the resolution 512 and 256 levels of", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 641, + 197, + 655 + ], + "spans": [ + { + "bbox": [ + 105, + 641, + 197, + 655 + ], + "score": 1.0, + "content": "the CNF, respectively.", + "type": "text" + } + ], + "index": 44 + } + ], + "index": 36.5 + }, + { + "type": "table", + "bbox": [ + 383, + 532, + 509, + 639 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 383, + 477, + 505, + 532 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 383, + 476, + 505, + 489 + ], + "spans": [ + { + "bbox": [ + 383, + 476, + 505, + 489 + ], + "score": 1.0, + "content": "Table 4: Feature extractor ar-", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 384, + 488, + 505, + 499 + ], + "spans": [ + { + "bbox": [ + 384, + 488, + 505, + 499 + ], + "score": 1.0, + "content": "chitecture for retinal vessel", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 383, + 500, + 505, + 510 + ], + "spans": [ + { + "bbox": [ + 383, + 500, + 505, + 510 + ], + "score": 1.0, + "content": "segmentation. RES. abbrevi-", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 383, + 509, + 505, + 522 + ], + "spans": [ + { + "bbox": [ + 383, + 509, + 505, + 522 + ], + "score": 1.0, + "content": "ates resolution. Outputs are at", + "type": "text" + } + ], + "index": 48 + }, + { + "bbox": [ + 382, + 520, + 441, + 533 + ], + "spans": [ + { + "bbox": [ + 382, + 520, + 441, + 533 + ], + "score": 1.0, + "content": "layer 4 and 7.", + "type": "text" + } + ], + "index": 49 + } + ], + "index": 47 + }, + { + "type": "table_body", + "bbox": [ + 383, + 532, + 509, + 639 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 383, + 532, + 509, + 639 + ], + "spans": [ + { + "bbox": [ + 383, + 532, + 509, + 639 + ], + "score": 0.966, + "html": "
LAYERTYPERES.
01inputblock10241024
234max-poolblockblock512512512
567max-poolblockblock256
256
256
", + "type": "table", + "image_path": "1589cc26343e700cb779ff78a621169e5778c08b02c0e4960128025060235400.jpg" + } + ] + } + ], + "index": 50.5, + "virtual_lines": [ + { + "bbox": [ + 383, + 532, + 509, + 585.5 + ], + "spans": [], + "index": 50 + }, + { + "bbox": [ + 383, + 585.5, + 509, + 639.0 + ], + "spans": [], + "index": 51 + } + ] + } + ], + "index": 48.75 + }, + { + "type": "text", + "bbox": [ + 107, + 666, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 665, + 505, + 678 + ], + "spans": [ + { + "bbox": [ + 106, + 665, + 505, + 678 + ], + "score": 1.0, + "content": "Training/test settings We train using the Adam optimizer at learning rate 0.001, and a minibatch", + "type": "text" + } + ], + "index": 52 + }, + { + "bbox": [ + 106, + 677, + 505, + 689 + ], + "spans": [ + { + "bbox": [ + 106, + 677, + 318, + 689 + ], + "score": 1.0, + "content": "size of 2 for 2000 epochs. All images are padded to", + "type": "text" + }, + { + "bbox": [ + 318, + 677, + 364, + 687 + ], + "score": 0.76, + "content": "1 0 2 4 \\mathrm { x } 1 0 2 4", + "type": "inline_equation" + }, + { + "bbox": [ + 365, + 677, + 505, + 689 + ], + "score": 1.0, + "content": "pixels, so that they are compatible", + "type": "text" + } + ], + "index": 53 + }, + { + "bbox": [ + 105, + 687, + 505, + 700 + ], + "spans": [ + { + "bbox": [ + 105, + 687, + 224, + 700 + ], + "score": 1.0, + "content": "with squeeze layers. We use", + "type": "text" + }, + { + "bbox": [ + 225, + 688, + 245, + 698 + ], + "score": 0.87, + "content": "3 6 0 ^ { \\circ }", + "type": "inline_equation" + }, + { + "bbox": [ + 246, + 687, + 505, + 700 + ], + "score": 1.0, + "content": "rotation augmentation, isotropic scalings in the range [0.8, 1.2],", + "type": "text" + } + ], + "index": 54 + }, + { + "bbox": [ + 106, + 699, + 505, + 711 + ], + "spans": [ + { + "bbox": [ + 106, + 699, + 392, + 711 + ], + "score": 1.0, + "content": "and shears drawn from a normal distribution with standard deviation", + "type": "text" + }, + { + "bbox": [ + 392, + 699, + 407, + 709 + ], + "score": 0.86, + "content": "1 0 ^ { \\circ }", + "type": "inline_equation" + }, + { + "bbox": [ + 408, + 699, + 505, + 711 + ], + "score": 1.0, + "content": ". At test time we draw", + "type": "text" + } + ], + "index": 55 + }, + { + "bbox": [ + 105, + 709, + 506, + 722 + ], + "spans": [ + { + "bbox": [ + 105, + 709, + 506, + 722 + ], + "score": 1.0, + "content": "samples from our model and compare those against the groundtruth labels. This contrasts with other", + "type": "text" + } + ], + "index": 56 + }, + { + "bbox": [ + 105, + 720, + 506, + 733 + ], + "spans": [ + { + "bbox": [ + 105, + 720, + 506, + 733 + ], + "score": 1.0, + "content": "methods, that measure labels against thresholded versions of a factorized predictive distribution. To", + "type": "text" + } + ], + "index": 57 + } + ], + "index": 54.5 + } + ], + "page_idx": 7, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 27, + 308, + 37 + ], + "lines": [ + { + "bbox": [ + 107, + 26, + 308, + 38 + ], + "spans": [ + { + "bbox": [ + 107, + 26, + 308, + 38 + ], + "score": 1.0, + "content": "Under review as a conference paper at ICLR 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": [ + 108, + 155, + 504, + 185 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 106, + 88, + 505, + 155 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 90, + 504, + 101 + ], + "spans": [ + { + "bbox": [ + 106, + 90, + 504, + 101 + ], + "score": 1.0, + "content": "Table 3: Numerical results on the DRIVE dataset. We see that the CNF is in the range of the SOTA", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 100, + 505, + 113 + ], + "spans": [ + { + "bbox": [ + 105, + 100, + 505, + 113 + ], + "score": 1.0, + "content": "model DRIU. SE: Structured Forests (Dollar & Zitnick, 2013), LD: Line Detector (Ricci & Perfetti, ´", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 104, + 110, + 506, + 125 + ], + "spans": [ + { + "bbox": [ + 104, + 110, + 506, + 125 + ], + "score": 1.0, + "content": "2007), Wavelets (Soares et al., 2006), Human (Staal et al., 2004), HED: Holistic Edge Detector", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 104, + 120, + 506, + 137 + ], + "spans": [ + { + "bbox": [ + 104, + 120, + 349, + 137 + ], + "score": 1.0, + "content": "(Xie & Tu, 2015), KB: Kernel Boost Becker et al. (2013),", + "type": "text" + }, + { + "bbox": [ + 349, + 122, + 364, + 132 + ], + "score": 0.85, + "content": "N ^ { 4 }", + "type": "inline_equation" + }, + { + "bbox": [ + 364, + 120, + 370, + 137 + ], + "score": 1.0, + "content": ":", + "type": "text" + }, + { + "bbox": [ + 370, + 122, + 385, + 132 + ], + "score": 0.85, + "content": "N ^ { 4 }", + "type": "inline_equation" + }, + { + "bbox": [ + 386, + 120, + 506, + 137 + ], + "score": 1.0, + "content": "Fields (Ganin & Lempitsky,", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 132, + 505, + 146 + ], + "spans": [ + { + "bbox": [ + 105, + 132, + 505, + 146 + ], + "score": 1.0, + "content": "2014), DRIU: Deep Retinal Image Understanding (Maninis et al., 2016). Our answers are shown in", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 144, + 335, + 156 + ], + "spans": [ + { + "bbox": [ + 105, + 144, + 335, + 156 + ], + "score": 1.0, + "content": "mean ± 1std form, where statistics are taken over 5 runs.", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 2.5 + }, + { + "type": "table_body", + "bbox": [ + 108, + 155, + 504, + 185 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 108, + 155, + 504, + 185 + ], + "spans": [ + { + "bbox": [ + 108, + 155, + 504, + 185 + ], + "score": 0.962, + "html": "
SELDWaveletsHumanHEDKBN4DRIUFactored (ours)CNF Uniform (Ours)CNF (ours)
bpd==0.0647 ± 0.00150.3366 ± 0.02900.0254± 0.0008
F-Score0.6580.6920.7620.7910.7940.8000.8050.8210.815 ± 0.0010.762 ± 0.0020.819 ± 0.001
", + "type": "table", + "image_path": "6c6811f6732fcf8e7af3849b9391a8999fe2366d17bdfc5608fbbb332a3d7eb5.jpg" + } + ] + } + ], + "index": 7, + "virtual_lines": [ + { + "bbox": [ + 108, + 155, + 504, + 165.0 + ], + "spans": [], + "index": 6 + }, + { + "bbox": [ + 108, + 165.0, + 504, + 175.0 + ], + "spans": [], + "index": 7 + }, + { + "bbox": [ + 108, + 175.0, + 504, + 185.0 + ], + "spans": [], + "index": 8 + } + ] + } + ], + "index": 4.75 + }, + { + "type": "text", + "bbox": [ + 106, + 206, + 241, + 217 + ], + "lines": [ + { + "bbox": [ + 105, + 205, + 241, + 218 + ], + "spans": [ + { + "bbox": [ + 105, + 205, + 241, + 218 + ], + "score": 1.0, + "content": "a weighted Bernoulli distribution", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 9, + "bbox_fs": [ + 105, + 205, + 241, + 218 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 234, + 222, + 377, + 258 + ], + "lines": [ + { + "bbox": [ + 234, + 222, + 377, + 258 + ], + "spans": [ + { + "bbox": [ + 234, + 222, + 377, + 258 + ], + "score": 0.94, + "content": "\\mathcal { L } = \\prod _ { j } \\frac { p _ { j } ^ { \\beta \\cdot y _ { j } } ( 1 - p _ { j } ) ^ { ( 1 - \\beta ) \\cdot ( 1 - y _ { j } ) } } { p _ { j } ^ { \\beta } + ( 1 - p _ { j } ) ^ { 1 - \\beta } }", + "type": "interline_equation", + "image_path": "f2941e0fa60e747be02afea1233001f45cb5791567c8dc5a821ed218a2ff3028.jpg" + } + ] + } + ], + "index": 10.5, + "virtual_lines": [ + { + "bbox": [ + 234, + 222, + 377, + 240.0 + ], + "spans": [], + "index": 10 + }, + { + "bbox": [ + 234, + 240.0, + 377, + 258.0 + ], + "spans": [], + "index": 11 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 264, + 505, + 331 + ], + "lines": [ + { + "bbox": [ + 105, + 264, + 506, + 278 + ], + "spans": [ + { + "bbox": [ + 105, + 264, + 133, + 278 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 133, + 264, + 206, + 277 + ], + "score": 0.92, + "content": "p _ { j } = p ( y _ { j } = 1 | \\mathbf { x } )", + "type": "inline_equation" + }, + { + "bbox": [ + 206, + 264, + 360, + 278 + ], + "score": 1.0, + "content": "is the prediction probability that pixel", + "type": "text" + }, + { + "bbox": [ + 360, + 266, + 371, + 277 + ], + "score": 0.85, + "content": "y _ { j }", + "type": "inline_equation" + }, + { + "bbox": [ + 371, + 264, + 487, + 278 + ], + "score": 1.0, + "content": "is positive (vessel class) and", + "type": "text" + }, + { + "bbox": [ + 487, + 265, + 495, + 276 + ], + "score": 0.85, + "content": "\\beta", + "type": "inline_equation" + }, + { + "bbox": [ + 495, + 264, + 506, + 278 + ], + "score": 1.0, + "content": "is", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 275, + 505, + 287 + ], + "spans": [ + { + "bbox": [ + 105, + 275, + 237, + 287 + ], + "score": 1.0, + "content": "a class balancing constant set to", + "type": "text" + }, + { + "bbox": [ + 237, + 275, + 268, + 286 + ], + "score": 0.9, + "content": "\\sim 1 0 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 269, + 275, + 505, + 287 + ], + "score": 1.0, + "content": "for us. This loss function is preferred, because it accounts", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 287, + 505, + 298 + ], + "spans": [ + { + "bbox": [ + 105, + 287, + 505, + 298 + ], + "score": 1.0, + "content": "for the apparent class imbalance in the ratio of vessels to background. In practice, the numerator of", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 297, + 505, + 310 + ], + "spans": [ + { + "bbox": [ + 105, + 297, + 505, + 310 + ], + "score": 1.0, + "content": "this likelihood is used as a loss function and the normalizer is ignored. The resulting loss is called", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 309, + 505, + 321 + ], + "spans": [ + { + "bbox": [ + 105, + 309, + 505, + 321 + ], + "score": 1.0, + "content": "a weighted cross-entropy. In our experiments we train using the weighted cross-entropy (as in the", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 319, + 500, + 332 + ], + "spans": [ + { + "bbox": [ + 105, + 319, + 500, + 332 + ], + "score": 1.0, + "content": "literature), but we report likelihood values including the normalizer, for a meaningful comparison.", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 14.5, + "bbox_fs": [ + 105, + 264, + 506, + 332 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 343, + 505, + 464 + ], + "lines": [ + { + "bbox": [ + 105, + 343, + 505, + 356 + ], + "spans": [ + { + "bbox": [ + 105, + 343, + 478, + 356 + ], + "score": 1.0, + "content": "Dataset and comparisons We test on the DRIVE database Staal et al. (2004) consisting of", + "type": "text" + }, + { + "bbox": [ + 478, + 344, + 505, + 354 + ], + "score": 0.85, + "content": "5 8 4 \\times", + "type": "inline_equation" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 354, + 505, + 367 + ], + "spans": [ + { + "bbox": [ + 105, + 354, + 505, + 367 + ], + "score": 1.0, + "content": "565, 8-bit RGB images, split into 20 train, and 20 test images. To compare against other methods,", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 366, + 505, + 378 + ], + "spans": [ + { + "bbox": [ + 105, + 366, + 505, + 378 + ], + "score": 1.0, + "content": "we plot precision-recall curves, report the maximum F-score along each curve (shown as a dot in", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 376, + 506, + 389 + ], + "spans": [ + { + "bbox": [ + 105, + 376, + 506, + 389 + ], + "score": 1.0, + "content": "the graph), report the bits per dimension, and plot distributions in PR-space. The main CNN-based", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 387, + 505, + 401 + ], + "spans": [ + { + "bbox": [ + 105, + 387, + 505, + 401 + ], + "score": 1.0, + "content": "contenders are Deep Retinal Image Understanding (DRIU) (Maninis et al., 2016) and Holistically-", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 398, + 506, + 412 + ], + "spans": [ + { + "bbox": [ + 105, + 398, + 506, + 412 + ], + "score": 1.0, + "content": "Nested Edge Detection (HED) (Xie & Tu, 2015), both of which are instances of Deeply-Supervised", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 408, + 505, + 421 + ], + "spans": [ + { + "bbox": [ + 105, + 408, + 505, + 421 + ], + "score": 1.0, + "content": "Nets (Lee et al., 2015). The main difference between DRIU and HED is that DRIU is pretrained on", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 420, + 506, + 433 + ], + "spans": [ + { + "bbox": [ + 105, + 420, + 506, + 433 + ], + "score": 1.0, + "content": "ImageNet Krizhevsky et al. (2012); whereas, HED is not. Other competing methods are reported", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 106, + 432, + 505, + 443 + ], + "spans": [ + { + "bbox": [ + 106, + 432, + 505, + 443 + ], + "score": 1.0, + "content": "with results cited from (Maninis et al., 2016). For fairness, we also train a model which we call the", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 442, + 506, + 455 + ], + "spans": [ + { + "bbox": [ + 105, + 442, + 506, + 455 + ], + "score": 1.0, + "content": "likelihood baseline, which uses the exact same architecture as the flow but run a feedforward model", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 453, + 289, + 466 + ], + "spans": [ + { + "bbox": [ + 105, + 453, + 289, + 466 + ], + "score": 1.0, + "content": "and trained with the weighted Bernoulli loss.", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 23, + "bbox_fs": [ + 105, + 343, + 506, + 466 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 478, + 375, + 653 + ], + "lines": [ + { + "bbox": [ + 106, + 477, + 376, + 489 + ], + "spans": [ + { + "bbox": [ + 106, + 477, + 376, + 489 + ], + "score": 1.0, + "content": "Implementation The flow is identical to the flow used in the", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 488, + 376, + 500 + ], + "spans": [ + { + "bbox": [ + 105, + 488, + 376, + 500 + ], + "score": 1.0, + "content": "previous section, with some key differences. i) instead of activa-", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 106, + 500, + 376, + 511 + ], + "spans": [ + { + "bbox": [ + 106, + 500, + 376, + 511 + ], + "score": 1.0, + "content": "tion normalization, we use instance normalization (Ulyanov et al.,", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 509, + 377, + 523 + ], + "spans": [ + { + "bbox": [ + 105, + 509, + 377, + 523 + ], + "score": 1.0, + "content": "2016), ii) the conditional affine coupling layers do not contain a", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 106, + 521, + 376, + 533 + ], + "spans": [ + { + "bbox": [ + 106, + 521, + 188, + 533 + ], + "score": 1.0, + "content": "scaling component", + "type": "text" + }, + { + "bbox": [ + 188, + 521, + 204, + 533 + ], + "score": 0.89, + "content": "s ( \\cdot )", + "type": "inline_equation" + }, + { + "bbox": [ + 205, + 521, + 307, + 533 + ], + "score": 1.0, + "content": "but just the translation", + "type": "text" + }, + { + "bbox": [ + 307, + 521, + 322, + 533 + ], + "score": 0.87, + "content": "t ( \\cdot )", + "type": "inline_equation" + }, + { + "bbox": [ + 323, + 521, + 376, + 533 + ], + "score": 1.0, + "content": ", hence it is", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 106, + 532, + 377, + 544 + ], + "spans": [ + { + "bbox": [ + 106, + 532, + 377, + 544 + ], + "score": 1.0, + "content": "volume preserving, and iii) we train using variational dequanti-", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 543, + 376, + 554 + ], + "spans": [ + { + "bbox": [ + 105, + 543, + 376, + 554 + ], + "score": 1.0, + "content": "zation. Since the data is binary-valued, we dequantize accord-", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 554, + 376, + 566 + ], + "spans": [ + { + "bbox": [ + 105, + 554, + 171, + 566 + ], + "score": 1.0, + "content": "ing to the Flow", + "type": "text" + }, + { + "bbox": [ + 171, + 555, + 184, + 564 + ], + "score": 0.31, + "content": "^ { + + }", + "type": "inline_equation" + }, + { + "bbox": [ + 185, + 554, + 376, + 566 + ], + "score": 1.0, + "content": "scheme of Ho et al., modified to binary vari-", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 564, + 376, + 577 + ], + "spans": [ + { + "bbox": [ + 105, + 564, + 376, + 577 + ], + "score": 1.0, + "content": "ables (see Section 3.2), using a CNF at just a single scale for the", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 576, + 376, + 588 + ], + "spans": [ + { + "bbox": [ + 105, + 576, + 376, + 588 + ], + "score": 1.0, + "content": "dequantizer. The CNF is conditioned on resolution-matched fea-", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 587, + 376, + 599 + ], + "spans": [ + { + "bbox": [ + 105, + 587, + 376, + 599 + ], + "score": 1.0, + "content": "tures extracted from a VGG-like network Simonyan & Zisserman", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 106, + 598, + 376, + 609 + ], + "spans": [ + { + "bbox": [ + 106, + 598, + 364, + 609 + ], + "score": 1.0, + "content": "(2015). This model is composed of blocks of the form block", + "type": "text" + }, + { + "bbox": [ + 364, + 599, + 376, + 608 + ], + "score": 0.75, + "content": "=", + "type": "inline_equation" + } + ], + "index": 40 + }, + { + "bbox": [ + 106, + 609, + 376, + 621 + ], + "spans": [ + { + "bbox": [ + 106, + 609, + 247, + 621 + ], + "score": 1.0, + "content": "[InstanceNorm, ReLU, conv], and", + "type": "text" + }, + { + "bbox": [ + 248, + 609, + 264, + 619 + ], + "score": 0.47, + "content": "2 \\mathbf { x } 2", + "type": "inline_equation" + }, + { + "bbox": [ + 265, + 609, + 376, + 621 + ], + "score": 1.0, + "content": "max-pooling layer, shown", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 619, + 376, + 631 + ], + "spans": [ + { + "bbox": [ + 105, + 619, + 227, + 631 + ], + "score": 1.0, + "content": "in Table 4. All filter sizes are", + "type": "text" + }, + { + "bbox": [ + 228, + 620, + 244, + 630 + ], + "score": 0.45, + "content": "3 { \\tt X } 3", + "type": "inline_equation" + }, + { + "bbox": [ + 244, + 619, + 376, + 631 + ], + "score": 1.0, + "content": ". The outputs are at layers 4 and", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 106, + 630, + 377, + 642 + ], + "spans": [ + { + "bbox": [ + 106, + 630, + 377, + 642 + ], + "score": 1.0, + "content": "7. These are used to condition the resolution 512 and 256 levels of", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 641, + 197, + 655 + ], + "spans": [ + { + "bbox": [ + 105, + 641, + 197, + 655 + ], + "score": 1.0, + "content": "the CNF, respectively.", + "type": "text" + } + ], + "index": 44 + } + ], + "index": 36.5, + "bbox_fs": [ + 105, + 477, + 377, + 655 + ] + }, + { + "type": "table", + "bbox": [ + 383, + 532, + 509, + 639 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 383, + 477, + 505, + 532 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 383, + 476, + 505, + 489 + ], + "spans": [ + { + "bbox": [ + 383, + 476, + 505, + 489 + ], + "score": 1.0, + "content": "Table 4: Feature extractor ar-", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 384, + 488, + 505, + 499 + ], + "spans": [ + { + "bbox": [ + 384, + 488, + 505, + 499 + ], + "score": 1.0, + "content": "chitecture for retinal vessel", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 383, + 500, + 505, + 510 + ], + "spans": [ + { + "bbox": [ + 383, + 500, + 505, + 510 + ], + "score": 1.0, + "content": "segmentation. RES. abbrevi-", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 383, + 509, + 505, + 522 + ], + "spans": [ + { + "bbox": [ + 383, + 509, + 505, + 522 + ], + "score": 1.0, + "content": "ates resolution. Outputs are at", + "type": "text" + } + ], + "index": 48 + }, + { + "bbox": [ + 382, + 520, + 441, + 533 + ], + "spans": [ + { + "bbox": [ + 382, + 520, + 441, + 533 + ], + "score": 1.0, + "content": "layer 4 and 7.", + "type": "text" + } + ], + "index": 49 + } + ], + "index": 47 + }, + { + "type": "table_body", + "bbox": [ + 383, + 532, + 509, + 639 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 383, + 532, + 509, + 639 + ], + "spans": [ + { + "bbox": [ + 383, + 532, + 509, + 639 + ], + "score": 0.966, + "html": "
LAYERTYPERES.
01inputblock10241024
234max-poolblockblock512512512
567max-poolblockblock256
256
256
", + "type": "table", + "image_path": "1589cc26343e700cb779ff78a621169e5778c08b02c0e4960128025060235400.jpg" + } + ] + } + ], + "index": 50.5, + "virtual_lines": [ + { + "bbox": [ + 383, + 532, + 509, + 585.5 + ], + "spans": [], + "index": 50 + }, + { + "bbox": [ + 383, + 585.5, + 509, + 639.0 + ], + "spans": [], + "index": 51 + } + ] + } + ], + "index": 48.75 + }, + { + "type": "text", + "bbox": [ + 107, + 666, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 665, + 505, + 678 + ], + "spans": [ + { + "bbox": [ + 106, + 665, + 505, + 678 + ], + "score": 1.0, + "content": "Training/test settings We train using the Adam optimizer at learning rate 0.001, and a minibatch", + "type": "text" + } + ], + "index": 52 + }, + { + "bbox": [ + 106, + 677, + 505, + 689 + ], + "spans": [ + { + "bbox": [ + 106, + 677, + 318, + 689 + ], + "score": 1.0, + "content": "size of 2 for 2000 epochs. All images are padded to", + "type": "text" + }, + { + "bbox": [ + 318, + 677, + 364, + 687 + ], + "score": 0.76, + "content": "1 0 2 4 \\mathrm { x } 1 0 2 4", + "type": "inline_equation" + }, + { + "bbox": [ + 365, + 677, + 505, + 689 + ], + "score": 1.0, + "content": "pixels, so that they are compatible", + "type": "text" + } + ], + "index": 53 + }, + { + "bbox": [ + 105, + 687, + 505, + 700 + ], + "spans": [ + { + "bbox": [ + 105, + 687, + 224, + 700 + ], + "score": 1.0, + "content": "with squeeze layers. We use", + "type": "text" + }, + { + "bbox": [ + 225, + 688, + 245, + 698 + ], + "score": 0.87, + "content": "3 6 0 ^ { \\circ }", + "type": "inline_equation" + }, + { + "bbox": [ + 246, + 687, + 505, + 700 + ], + "score": 1.0, + "content": "rotation augmentation, isotropic scalings in the range [0.8, 1.2],", + "type": "text" + } + ], + "index": 54 + }, + { + "bbox": [ + 106, + 699, + 505, + 711 + ], + "spans": [ + { + "bbox": [ + 106, + 699, + 392, + 711 + ], + "score": 1.0, + "content": "and shears drawn from a normal distribution with standard deviation", + "type": "text" + }, + { + "bbox": [ + 392, + 699, + 407, + 709 + ], + "score": 0.86, + "content": "1 0 ^ { \\circ }", + "type": "inline_equation" + }, + { + "bbox": [ + 408, + 699, + 505, + 711 + ], + "score": 1.0, + "content": ". At test time we draw", + "type": "text" + } + ], + "index": 55 + }, + { + "bbox": [ + 105, + 709, + 506, + 722 + ], + "spans": [ + { + "bbox": [ + 105, + 709, + 506, + 722 + ], + "score": 1.0, + "content": "samples from our model and compare those against the groundtruth labels. This contrasts with other", + "type": "text" + } + ], + "index": 56 + }, + { + "bbox": [ + 105, + 720, + 506, + 733 + ], + "spans": [ + { + "bbox": [ + 105, + 720, + 506, + 733 + ], + "score": 1.0, + "content": "methods, that measure labels against thresholded versions of a factorized predictive distribution. To", + "type": "text" + } + ], + "index": 57 + }, + { + "bbox": [ + 105, + 81, + 506, + 97 + ], + "spans": [ + { + "bbox": [ + 105, + 81, + 506, + 97 + ], + "score": 1.0, + "content": "create the PR curve in Figure 5 we take the average of 100 samples and threshold the resulting map", + "type": "text", + "cross_page": true + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 93, + 505, + 106 + ], + "spans": [ + { + "bbox": [ + 105, + 93, + 505, + 106 + ], + "score": 1.0, + "content": "(example shown in Figure 4). While crude, this mean image is useful in defining a PR-curve, since", + "type": "text", + "cross_page": true + } + ], + "index": 1 + }, + { + "bbox": [ + 106, + 105, + 317, + 117 + ], + "spans": [ + { + "bbox": [ + 106, + 105, + 317, + 117 + ], + "score": 1.0, + "content": "there is not great topology change between samples.", + "type": "text", + "cross_page": true + } + ], + "index": 2 + } + ], + "index": 54.5, + "bbox_fs": [ + 105, + 665, + 506, + 733 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 107, + 82, + 505, + 116 + ], + "lines": [ + { + "bbox": [ + 105, + 81, + 506, + 97 + ], + "spans": [ + { + "bbox": [ + 105, + 81, + 506, + 97 + ], + "score": 1.0, + "content": "create the PR curve in Figure 5 we take the average of 100 samples and threshold the resulting map", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 93, + 505, + 106 + ], + "spans": [ + { + "bbox": [ + 105, + 93, + 505, + 106 + ], + "score": 1.0, + "content": "(example shown in Figure 4). While crude, this mean image is useful in defining a PR-curve, since", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 106, + 105, + 317, + 117 + ], + "spans": [ + { + "bbox": [ + 106, + 105, + 317, + 117 + ], + "score": 1.0, + "content": "there is not great topology change between samples.", + "type": "text" + } + ], + "index": 2 + } + ], + "index": 1 + }, + { + "type": "text", + "bbox": [ + 106, + 136, + 505, + 357 + ], + "lines": [ + { + "bbox": [ + 106, + 136, + 505, + 149 + ], + "spans": [ + { + "bbox": [ + 106, + 136, + 505, + 149 + ], + "score": 1.0, + "content": "Evaluation The results of our experiments are shown in Table 3 and Figure 5, with a visualization", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 106, + 147, + 505, + 160 + ], + "spans": [ + { + "bbox": [ + 106, + 147, + 505, + 160 + ], + "score": 1.0, + "content": "in Figure 4. We see in the table that the CNF trained with our binary dequantization achieves the best", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 106, + 159, + 504, + 170 + ], + "spans": [ + { + "bbox": [ + 106, + 159, + 504, + 170 + ], + "score": 1.0, + "content": "bits per dimension, with comparable F-score to the state of the art model (DRIU), but our model does", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 106, + 170, + 505, + 182 + ], + "spans": [ + { + "bbox": [ + 106, + 170, + 505, + 182 + ], + "score": 1.0, + "content": "not require pretraining on ImageNet. Interestingly, we found training a flow with uniform dequan-", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 106, + 181, + 505, + 193 + ], + "spans": [ + { + "bbox": [ + 106, + 181, + 505, + 193 + ], + "score": 1.0, + "content": "tization slightly unstable and the results were far from satisfactory. In the PR-curve Figure 5, we", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 106, + 192, + 505, + 204 + ], + "spans": [ + { + "bbox": [ + 106, + 192, + 505, + 204 + ], + "score": 1.0, + "content": "show a comparable curve for our binary dequantized CNF to the DRIU model. These results, how-", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 106, + 203, + 505, + 215 + ], + "spans": [ + { + "bbox": [ + 106, + 203, + 505, + 215 + ], + "score": 1.0, + "content": "ever, say nothing about the calibration of the probability outputs, but just that the various probability", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 106, + 214, + 506, + 226 + ], + "spans": [ + { + "bbox": [ + 106, + 214, + 506, + 226 + ], + "score": 1.0, + "content": "predictions are well ranked. To gain an insight into the calibration of the probabilities, we measure", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 223, + 506, + 237 + ], + "spans": [ + { + "bbox": [ + 105, + 223, + 506, + 237 + ], + "score": 1.0, + "content": "the distribution of precision and recall values for point samples drawn from all models, including", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 104, + 235, + 505, + 248 + ], + "spans": [ + { + "bbox": [ + 104, + 235, + 505, + 248 + ], + "score": 1.0, + "content": "a second human grader, present in the original DRIVE dataset. We synthesized samples from fac-", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 106, + 246, + 505, + 259 + ], + "spans": [ + { + "bbox": [ + 106, + 246, + 505, + 259 + ], + "score": 1.0, + "content": "tored distributions (all except ours and ‘human’), by sampling images from a factored Bernoulli with", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 257, + 505, + 269 + ], + "spans": [ + { + "bbox": [ + 105, + 257, + 505, + 269 + ], + "score": 1.0, + "content": "mean as the soft image. We see the results in the right hand plot of Figure 5, which shows that while", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 267, + 506, + 281 + ], + "spans": [ + { + "bbox": [ + 105, + 267, + 506, + 281 + ], + "score": 1.0, + "content": "the other CNN-based methods such as DRIU or HED have good precision, they suffer in term of", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 279, + 506, + 291 + ], + "spans": [ + { + "bbox": [ + 105, + 279, + 506, + 291 + ], + "score": 1.0, + "content": "recall. On the other hand, the CNF drops in precision a little bit, but makes up for this in terms of", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 289, + 506, + 303 + ], + "spans": [ + { + "bbox": [ + 105, + 289, + 506, + 303 + ], + "score": 1.0, + "content": "high recall, with a PR distribution overlapping the human grader. This indicates that the CNF has", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 106, + 302, + 505, + 313 + ], + "spans": [ + { + "bbox": [ + 106, + 302, + 505, + 313 + ], + "score": 1.0, + "content": "learned a well-calibrated distribution, compared to the baseline methods. Further evidence of this is", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 311, + 505, + 325 + ], + "spans": [ + { + "bbox": [ + 105, + 311, + 505, + 325 + ], + "score": 1.0, + "content": "seen in the visualization in Figure 4, which shows details from the predicted means (soft images).", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 322, + 505, + 335 + ], + "spans": [ + { + "bbox": [ + 105, + 322, + 505, + 335 + ], + "score": 1.0, + "content": "This shows that the DRIU and likelihood baseline overdilate segmentations and the CNF does not.", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 106, + 334, + 505, + 345 + ], + "spans": [ + { + "bbox": [ + 106, + 334, + 505, + 345 + ], + "score": 1.0, + "content": "This can be explained from the fact that in the weighted Bernoulli it is cheaper to overdilate than to", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 344, + 494, + 358 + ], + "spans": [ + { + "bbox": [ + 105, + 344, + 494, + 358 + ], + "score": 1.0, + "content": "underdilate. Since the CNF contains no handcrafted loss function, we circumvent this pathology.", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 12.5 + }, + { + "type": "image", + "bbox": [ + 108, + 380, + 496, + 587 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 108, + 380, + 496, + 587 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 108, + 380, + 496, + 587 + ], + "spans": [ + { + "bbox": [ + 108, + 380, + 496, + 587 + ], + "score": 0.973, + "type": "image", + "image_path": "258f0bc2d5bbcbd0d20d8a912778473082ec933769f1dc7b2d5eb4d68b02c020.jpg" + } + ] + } + ], + "index": 24, + "virtual_lines": [ + { + "bbox": [ + 108, + 380, + 496, + 449.0 + ], + "spans": [], + "index": 23 + }, + { + "bbox": [ + 108, + 449.0, + 496, + 518.0 + ], + "spans": [], + "index": 24 + }, + { + "bbox": [ + 108, + 518.0, + 496, + 587.0 + ], + "spans": [], + "index": 25 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 595, + 505, + 716 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 595, + 505, + 608 + ], + "spans": [ + { + "bbox": [ + 106, + 595, + 505, + 608 + ], + "score": 1.0, + "content": "Figure 5: Here we show two visualizations of the same data. LEFT: We show the PR-curves gen-", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 606, + 505, + 618 + ], + "spans": [ + { + "bbox": [ + 105, + 606, + 505, + 618 + ], + "score": 1.0, + "content": "erated from a sweeping threshold on soft images output by each listed method. Maximal F-scores", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 104, + 615, + 506, + 630 + ], + "spans": [ + { + "bbox": [ + 104, + 615, + 506, + 630 + ], + "score": 1.0, + "content": "for each curve are shown as circles with the green lines indicating constant F-score. We see that our", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 628, + 505, + 641 + ], + "spans": [ + { + "bbox": [ + 105, + 628, + 505, + 641 + ], + "score": 1.0, + "content": "method beats all traditional methods and is on par with DRIU, which unlike us was pretrained on", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 106, + 639, + 505, + 651 + ], + "spans": [ + { + "bbox": [ + 106, + 639, + 505, + 651 + ], + "score": 1.0, + "content": "Imagenet. RIGHT: We show a scatter plot in PR-space of samples drawn from each model. To draw", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 106, + 651, + 505, + 662 + ], + "spans": [ + { + "bbox": [ + 106, + 651, + 505, + 662 + ], + "score": 1.0, + "content": "samples from the all factored models, we sample images from a factored Bernoulli with a mean as", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 660, + 505, + 674 + ], + "spans": [ + { + "bbox": [ + 105, + 660, + 505, + 674 + ], + "score": 1.0, + "content": "the soft image. We see that the DRIU and HED models, while having good precision, have poor", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 104, + 671, + 505, + 686 + ], + "spans": [ + { + "bbox": [ + 104, + 671, + 505, + 686 + ], + "score": 1.0, + "content": "recall in this regime. This indicates that while the output of their networks produce a good ranking", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 106, + 683, + 505, + 695 + ], + "spans": [ + { + "bbox": [ + 106, + 683, + 505, + 695 + ], + "score": 1.0, + "content": "of probabilities, the values of the probabilities are poorly calibrated. For us, we drop in precision", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 106, + 694, + 506, + 707 + ], + "spans": [ + { + "bbox": [ + 106, + 694, + 506, + 707 + ], + "score": 1.0, + "content": "slightly, but gain greatly in terms of recall, indicating that our samples are drawn from a better", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 106, + 705, + 418, + 718 + ], + "spans": [ + { + "bbox": [ + 106, + 705, + 418, + 718 + ], + "score": 1.0, + "content": "calibrated distribution, overlapping significantly with the Human distribution.", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 31 + } + ], + "index": 27.5 + } + ], + "page_idx": 8, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 27, + 308, + 37 + ], + "lines": [ + { + "bbox": [ + 107, + 26, + 308, + 38 + ], + "spans": [ + { + "bbox": [ + 107, + 26, + 308, + 38 + ], + "score": 1.0, + "content": "Under review as a conference paper at ICLR 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": "text", + "bbox": [ + 107, + 82, + 505, + 116 + ], + "lines": [], + "index": 1, + "bbox_fs": [ + 105, + 81, + 506, + 117 + ], + "lines_deleted": true + }, + { + "type": "text", + "bbox": [ + 106, + 136, + 505, + 357 + ], + "lines": [ + { + "bbox": [ + 106, + 136, + 505, + 149 + ], + "spans": [ + { + "bbox": [ + 106, + 136, + 505, + 149 + ], + "score": 1.0, + "content": "Evaluation The results of our experiments are shown in Table 3 and Figure 5, with a visualization", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 106, + 147, + 505, + 160 + ], + "spans": [ + { + "bbox": [ + 106, + 147, + 505, + 160 + ], + "score": 1.0, + "content": "in Figure 4. We see in the table that the CNF trained with our binary dequantization achieves the best", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 106, + 159, + 504, + 170 + ], + "spans": [ + { + "bbox": [ + 106, + 159, + 504, + 170 + ], + "score": 1.0, + "content": "bits per dimension, with comparable F-score to the state of the art model (DRIU), but our model does", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 106, + 170, + 505, + 182 + ], + "spans": [ + { + "bbox": [ + 106, + 170, + 505, + 182 + ], + "score": 1.0, + "content": "not require pretraining on ImageNet. Interestingly, we found training a flow with uniform dequan-", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 106, + 181, + 505, + 193 + ], + "spans": [ + { + "bbox": [ + 106, + 181, + 505, + 193 + ], + "score": 1.0, + "content": "tization slightly unstable and the results were far from satisfactory. In the PR-curve Figure 5, we", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 106, + 192, + 505, + 204 + ], + "spans": [ + { + "bbox": [ + 106, + 192, + 505, + 204 + ], + "score": 1.0, + "content": "show a comparable curve for our binary dequantized CNF to the DRIU model. These results, how-", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 106, + 203, + 505, + 215 + ], + "spans": [ + { + "bbox": [ + 106, + 203, + 505, + 215 + ], + "score": 1.0, + "content": "ever, say nothing about the calibration of the probability outputs, but just that the various probability", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 106, + 214, + 506, + 226 + ], + "spans": [ + { + "bbox": [ + 106, + 214, + 506, + 226 + ], + "score": 1.0, + "content": "predictions are well ranked. To gain an insight into the calibration of the probabilities, we measure", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 223, + 506, + 237 + ], + "spans": [ + { + "bbox": [ + 105, + 223, + 506, + 237 + ], + "score": 1.0, + "content": "the distribution of precision and recall values for point samples drawn from all models, including", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 104, + 235, + 505, + 248 + ], + "spans": [ + { + "bbox": [ + 104, + 235, + 505, + 248 + ], + "score": 1.0, + "content": "a second human grader, present in the original DRIVE dataset. We synthesized samples from fac-", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 106, + 246, + 505, + 259 + ], + "spans": [ + { + "bbox": [ + 106, + 246, + 505, + 259 + ], + "score": 1.0, + "content": "tored distributions (all except ours and ‘human’), by sampling images from a factored Bernoulli with", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 257, + 505, + 269 + ], + "spans": [ + { + "bbox": [ + 105, + 257, + 505, + 269 + ], + "score": 1.0, + "content": "mean as the soft image. We see the results in the right hand plot of Figure 5, which shows that while", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 267, + 506, + 281 + ], + "spans": [ + { + "bbox": [ + 105, + 267, + 506, + 281 + ], + "score": 1.0, + "content": "the other CNN-based methods such as DRIU or HED have good precision, they suffer in term of", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 279, + 506, + 291 + ], + "spans": [ + { + "bbox": [ + 105, + 279, + 506, + 291 + ], + "score": 1.0, + "content": "recall. On the other hand, the CNF drops in precision a little bit, but makes up for this in terms of", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 289, + 506, + 303 + ], + "spans": [ + { + "bbox": [ + 105, + 289, + 506, + 303 + ], + "score": 1.0, + "content": "high recall, with a PR distribution overlapping the human grader. This indicates that the CNF has", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 106, + 302, + 505, + 313 + ], + "spans": [ + { + "bbox": [ + 106, + 302, + 505, + 313 + ], + "score": 1.0, + "content": "learned a well-calibrated distribution, compared to the baseline methods. Further evidence of this is", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 311, + 505, + 325 + ], + "spans": [ + { + "bbox": [ + 105, + 311, + 505, + 325 + ], + "score": 1.0, + "content": "seen in the visualization in Figure 4, which shows details from the predicted means (soft images).", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 322, + 505, + 335 + ], + "spans": [ + { + "bbox": [ + 105, + 322, + 505, + 335 + ], + "score": 1.0, + "content": "This shows that the DRIU and likelihood baseline overdilate segmentations and the CNF does not.", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 106, + 334, + 505, + 345 + ], + "spans": [ + { + "bbox": [ + 106, + 334, + 505, + 345 + ], + "score": 1.0, + "content": "This can be explained from the fact that in the weighted Bernoulli it is cheaper to overdilate than to", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 344, + 494, + 358 + ], + "spans": [ + { + "bbox": [ + 105, + 344, + 494, + 358 + ], + "score": 1.0, + "content": "underdilate. Since the CNF contains no handcrafted loss function, we circumvent this pathology.", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 12.5, + "bbox_fs": [ + 104, + 136, + 506, + 358 + ] + }, + { + "type": "image", + "bbox": [ + 108, + 380, + 496, + 587 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 108, + 380, + 496, + 587 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 108, + 380, + 496, + 587 + ], + "spans": [ + { + "bbox": [ + 108, + 380, + 496, + 587 + ], + "score": 0.973, + "type": "image", + "image_path": "258f0bc2d5bbcbd0d20d8a912778473082ec933769f1dc7b2d5eb4d68b02c020.jpg" + } + ] + } + ], + "index": 24, + "virtual_lines": [ + { + "bbox": [ + 108, + 380, + 496, + 449.0 + ], + "spans": [], + "index": 23 + }, + { + "bbox": [ + 108, + 449.0, + 496, + 518.0 + ], + "spans": [], + "index": 24 + }, + { + "bbox": [ + 108, + 518.0, + 496, + 587.0 + ], + "spans": [], + "index": 25 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 595, + 505, + 716 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 595, + 505, + 608 + ], + "spans": [ + { + "bbox": [ + 106, + 595, + 505, + 608 + ], + "score": 1.0, + "content": "Figure 5: Here we show two visualizations of the same data. LEFT: We show the PR-curves gen-", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 606, + 505, + 618 + ], + "spans": [ + { + "bbox": [ + 105, + 606, + 505, + 618 + ], + "score": 1.0, + "content": "erated from a sweeping threshold on soft images output by each listed method. Maximal F-scores", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 104, + 615, + 506, + 630 + ], + "spans": [ + { + "bbox": [ + 104, + 615, + 506, + 630 + ], + "score": 1.0, + "content": "for each curve are shown as circles with the green lines indicating constant F-score. We see that our", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 628, + 505, + 641 + ], + "spans": [ + { + "bbox": [ + 105, + 628, + 505, + 641 + ], + "score": 1.0, + "content": "method beats all traditional methods and is on par with DRIU, which unlike us was pretrained on", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 106, + 639, + 505, + 651 + ], + "spans": [ + { + "bbox": [ + 106, + 639, + 505, + 651 + ], + "score": 1.0, + "content": "Imagenet. RIGHT: We show a scatter plot in PR-space of samples drawn from each model. To draw", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 106, + 651, + 505, + 662 + ], + "spans": [ + { + "bbox": [ + 106, + 651, + 505, + 662 + ], + "score": 1.0, + "content": "samples from the all factored models, we sample images from a factored Bernoulli with a mean as", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 660, + 505, + 674 + ], + "spans": [ + { + "bbox": [ + 105, + 660, + 505, + 674 + ], + "score": 1.0, + "content": "the soft image. We see that the DRIU and HED models, while having good precision, have poor", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 104, + 671, + 505, + 686 + ], + "spans": [ + { + "bbox": [ + 104, + 671, + 505, + 686 + ], + "score": 1.0, + "content": "recall in this regime. This indicates that while the output of their networks produce a good ranking", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 106, + 683, + 505, + 695 + ], + "spans": [ + { + "bbox": [ + 106, + 683, + 505, + 695 + ], + "score": 1.0, + "content": "of probabilities, the values of the probabilities are poorly calibrated. For us, we drop in precision", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 106, + 694, + 506, + 707 + ], + "spans": [ + { + "bbox": [ + 106, + 694, + 506, + 707 + ], + "score": 1.0, + "content": "slightly, but gain greatly in terms of recall, indicating that our samples are drawn from a better", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 106, + 705, + 418, + 718 + ], + "spans": [ + { + "bbox": [ + 106, + 705, + 418, + 718 + ], + "score": 1.0, + "content": "calibrated distribution, overlapping significantly with the Human distribution.", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 31 + } + ], + "index": 27.5 + } + ] + }, + { + "preproc_blocks": [ + { + "type": "title", + "bbox": [ + 107, + 81, + 195, + 94 + ], + "lines": [ + { + "bbox": [ + 105, + 78, + 198, + 97 + ], + "spans": [ + { + "bbox": [ + 105, + 78, + 198, + 97 + ], + "score": 1.0, + "content": "6 CONCLUSION", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "text", + "bbox": [ + 107, + 106, + 505, + 162 + ], + "lines": [ + { + "bbox": [ + 105, + 106, + 504, + 119 + ], + "spans": [ + { + "bbox": [ + 105, + 106, + 504, + 119 + ], + "score": 1.0, + "content": "In this paper we propose to learn likelihoods of conditional distributions using conditional normal-", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 117, + 505, + 130 + ], + "spans": [ + { + "bbox": [ + 105, + 117, + 505, + 130 + ], + "score": 1.0, + "content": "izing flows. In this setting, supervised prediction tasks can be framed probabilistically. In addition,", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 128, + 506, + 142 + ], + "spans": [ + { + "bbox": [ + 105, + 128, + 506, + 142 + ], + "score": 1.0, + "content": "we propose a generalization of variational dequantization for binary random variables, which is", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 139, + 505, + 153 + ], + "spans": [ + { + "bbox": [ + 105, + 139, + 505, + 153 + ], + "score": 1.0, + "content": "useful for binary segmentation problems. Experimentally we show competitive performance with", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 150, + 452, + 163 + ], + "spans": [ + { + "bbox": [ + 105, + 150, + 452, + 163 + ], + "score": 1.0, + "content": "competing methods in the domain of super-resolution and binary image segmentation.", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 3 + }, + { + "type": "title", + "bbox": [ + 107, + 178, + 175, + 191 + ], + "lines": [ + { + "bbox": [ + 106, + 180, + 176, + 191 + ], + "spans": [ + { + "bbox": [ + 106, + 180, + 176, + 191 + ], + "score": 1.0, + "content": "REFERENCES", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 6 + }, + { + "type": "text", + "bbox": [ + 107, + 198, + 504, + 220 + ], + "lines": [ + { + "bbox": [ + 105, + 196, + 505, + 211 + ], + "spans": [ + { + "bbox": [ + 105, + 196, + 505, + 211 + ], + "score": 1.0, + "content": "Siddharth Agrawal and Ambedkar Dukkipati. Deep variational inference without pixel-wise recon-", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 116, + 209, + 279, + 219 + ], + "spans": [ + { + "bbox": [ + 116, + 209, + 279, + 219 + ], + "score": 1.0, + "content": "struction. CoRR, abs/1611.05209, 2016.", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 7.5 + }, + { + "type": "text", + "bbox": [ + 106, + 228, + 503, + 262 + ], + "lines": [ + { + "bbox": [ + 105, + 228, + 505, + 240 + ], + "spans": [ + { + "bbox": [ + 105, + 228, + 505, + 240 + ], + "score": 1.0, + "content": "Lynton Ardizzone, Carsten Luth, Jakob Kruse, Carsten Rother, and Ullrich K ¨ othe. Guided im- ¨", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 115, + 240, + 505, + 251 + ], + "spans": [ + { + "bbox": [ + 115, + 240, + 505, + 251 + ], + "score": 1.0, + "content": "age generation with conditional invertible neural networks. CoRR, abs/1907.02392, 2019. URL", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 116, + 250, + 307, + 263 + ], + "spans": [ + { + "bbox": [ + 116, + 250, + 307, + 263 + ], + "score": 1.0, + "content": "http://arxiv.org/abs/1907.02392.", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 10 + }, + { + "type": "text", + "bbox": [ + 105, + 269, + 504, + 293 + ], + "lines": [ + { + "bbox": [ + 106, + 269, + 504, + 282 + ], + "spans": [ + { + "bbox": [ + 106, + 269, + 504, + 282 + ], + "score": 1.0, + "content": "Andrei Atanov, Alexandra Volokhova, Arsenii Ashukha, Ivan Sosnovik, and Dmitry Vetrov. Semi-", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 116, + 281, + 396, + 294 + ], + "spans": [ + { + "bbox": [ + 116, + 281, + 396, + 294 + ], + "score": 1.0, + "content": "conditional normalizing flows for semi-supervised learning. 05 2019.", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 12.5 + }, + { + "type": "text", + "bbox": [ + 106, + 300, + 506, + 357 + ], + "lines": [ + { + "bbox": [ + 106, + 301, + 505, + 313 + ], + "spans": [ + { + "bbox": [ + 106, + 301, + 505, + 313 + ], + "score": 1.0, + "content": "Carlos J. Becker, Roberto Rigamonti, Vincent Lepetit, and Pascal Fua. Supervised feature learn-", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 117, + 312, + 505, + 324 + ], + "spans": [ + { + "bbox": [ + 117, + 312, + 505, + 324 + ], + "score": 1.0, + "content": "ing for curvilinear structure segmentation. In Medical Image Computing and Computer-Assisted", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 116, + 323, + 505, + 336 + ], + "spans": [ + { + "bbox": [ + 116, + 323, + 505, + 336 + ], + "score": 1.0, + "content": "Intervention - MICCAI 2013 - 16th International Conference, Nagoya, Japan, September 22-26,", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 116, + 334, + 505, + 346 + ], + "spans": [ + { + "bbox": [ + 116, + 334, + 505, + 346 + ], + "score": 1.0, + "content": "2013, Proceedings, Part I, pp. 526–533, 2013. doi: 10.1007/978-3-642-40811-3\\ 66. URL", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 116, + 345, + 387, + 357 + ], + "spans": [ + { + "bbox": [ + 116, + 345, + 387, + 357 + ], + "score": 1.0, + "content": "https://doi.org/10.1007/978-3-642-40811-3_66.", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 16 + }, + { + "type": "text", + "bbox": [ + 107, + 364, + 505, + 398 + ], + "lines": [ + { + "bbox": [ + 106, + 365, + 504, + 377 + ], + "spans": [ + { + "bbox": [ + 106, + 365, + 504, + 377 + ], + "score": 1.0, + "content": "Marco Bevilacqua, Aline Roumy, Christine Guillemot, and Marie-Line Alberi-Morel. Low-", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 115, + 375, + 505, + 389 + ], + "spans": [ + { + "bbox": [ + 115, + 375, + 505, + 389 + ], + "score": 1.0, + "content": "complexity single-image super-resolution based on nonnegative neighbor embedding. In BMVC,", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 114, + 385, + 142, + 399 + ], + "spans": [ + { + "bbox": [ + 114, + 385, + 142, + 399 + ], + "score": 1.0, + "content": "2012.", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 20 + }, + { + "type": "text", + "bbox": [ + 107, + 406, + 506, + 440 + ], + "lines": [ + { + "bbox": [ + 105, + 405, + 506, + 419 + ], + "spans": [ + { + "bbox": [ + 105, + 405, + 506, + 419 + ], + "score": 1.0, + "content": "Nicola De Cao, Wilker Aziz, and Ivan Titov. Block neural autoregressive flow. In Proceedings of", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 115, + 417, + 504, + 429 + ], + "spans": [ + { + "bbox": [ + 115, + 417, + 504, + 429 + ], + "score": 1.0, + "content": "the Thirty-Fifth Conference on Uncertainty in Artificial Intelligence, UAI 2019, Tel Aviv, Israel,", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 115, + 428, + 249, + 441 + ], + "spans": [ + { + "bbox": [ + 115, + 428, + 249, + 441 + ], + "score": 1.0, + "content": "July 22-25, 2019, pp. 511, 2019.", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 23 + }, + { + "type": "text", + "bbox": [ + 106, + 447, + 505, + 492 + ], + "lines": [ + { + "bbox": [ + 105, + 448, + 505, + 460 + ], + "spans": [ + { + "bbox": [ + 105, + 448, + 505, + 460 + ], + "score": 1.0, + "content": "Liang-Chieh Chen, George Papandreou, Iasonas Kokkinos, Kevin Murphy, and Alan L. Yuille.", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 114, + 458, + 506, + 471 + ], + "spans": [ + { + "bbox": [ + 114, + 458, + 506, + 471 + ], + "score": 1.0, + "content": "Deeplab: Semantic image segmentation with deep convolutional nets, atrous convolution, and", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 114, + 469, + 505, + 483 + ], + "spans": [ + { + "bbox": [ + 114, + 469, + 505, + 483 + ], + "score": 1.0, + "content": "fully connected crfs. CoRR, abs/1606.00915, 2016. URL http://arxiv.org/abs/1606.", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 116, + 481, + 151, + 492 + ], + "spans": [ + { + "bbox": [ + 116, + 481, + 151, + 492 + ], + "score": 1.0, + "content": "00915.", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 26.5 + }, + { + "type": "text", + "bbox": [ + 106, + 500, + 504, + 524 + ], + "lines": [ + { + "bbox": [ + 106, + 500, + 505, + 513 + ], + "spans": [ + { + "bbox": [ + 106, + 500, + 505, + 513 + ], + "score": 1.0, + "content": "Ricky T. Q. Chen, Jens Behrmann, David Duvenaud, and Jorn-Henrik Jacobsen. Residual flows for ¨", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 115, + 511, + 366, + 524 + ], + "spans": [ + { + "bbox": [ + 115, + 511, + 366, + 524 + ], + "score": 1.0, + "content": "invertible generative modeling. CoRR, abs/1906.02735, 2019.", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 29.5 + }, + { + "type": "text", + "bbox": [ + 106, + 531, + 506, + 565 + ], + "lines": [ + { + "bbox": [ + 105, + 531, + 505, + 544 + ], + "spans": [ + { + "bbox": [ + 105, + 531, + 505, + 544 + ], + "score": 1.0, + "content": "Patryk Chrabaszcz, Ilya Loshchilov, and Frank Hutter. A downsampled variant of imagenet as an", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 116, + 541, + 504, + 555 + ], + "spans": [ + { + "bbox": [ + 116, + 541, + 504, + 555 + ], + "score": 1.0, + "content": "alternative to the CIFAR datasets. CoRR, abs/1707.08819, 2017. URL http://arxiv.org/", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 116, + 554, + 206, + 564 + ], + "spans": [ + { + "bbox": [ + 116, + 554, + 206, + 564 + ], + "score": 1.0, + "content": "abs/1707.08819.", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 32 + }, + { + "type": "text", + "bbox": [ + 105, + 573, + 504, + 596 + ], + "lines": [ + { + "bbox": [ + 105, + 573, + 505, + 586 + ], + "spans": [ + { + "bbox": [ + 105, + 573, + 505, + 586 + ], + "score": 1.0, + "content": "Laurent Dinh, Jascha Sohl-Dickstein, and Samy Bengio. Density estimation using real NVP. CoRR,", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 116, + 583, + 424, + 596 + ], + "spans": [ + { + "bbox": [ + 116, + 583, + 424, + 596 + ], + "score": 1.0, + "content": "abs/1605.08803, 2016. URL http://arxiv.org/abs/1605.08803.", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 34.5 + }, + { + "type": "text", + "bbox": [ + 106, + 604, + 505, + 648 + ], + "lines": [ + { + "bbox": [ + 106, + 604, + 505, + 616 + ], + "spans": [ + { + "bbox": [ + 106, + 604, + 505, + 616 + ], + "score": 1.0, + "content": "Piotr Dollar and C. Lawrence Zitnick. Structured forests for fast edge detection. In ´ IEEE Inter-", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 116, + 615, + 505, + 627 + ], + "spans": [ + { + "bbox": [ + 116, + 615, + 505, + 627 + ], + "score": 1.0, + "content": "national Conference on Computer Vision, ICCV 2013, Sydney, Australia, December 1-8, 2013,", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 115, + 626, + 505, + 639 + ], + "spans": [ + { + "bbox": [ + 115, + 626, + 505, + 639 + ], + "score": 1.0, + "content": "pp. 1841–1848, 2013. doi: 10.1109/ICCV.2013.231. URL https://doi.org/10.1109/", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 117, + 638, + 199, + 648 + ], + "spans": [ + { + "bbox": [ + 117, + 638, + 199, + 648 + ], + "score": 1.0, + "content": "ICCV.2013.231.", + "type": "text" + } + ], + "index": 39 + } + ], + "index": 37.5 + }, + { + "type": "text", + "bbox": [ + 106, + 657, + 505, + 690 + ], + "lines": [ + { + "bbox": [ + 105, + 655, + 505, + 670 + ], + "spans": [ + { + "bbox": [ + 105, + 655, + 505, + 670 + ], + "score": 1.0, + "content": "Chao Dong, Chen Change Loy, Kaiming He, and Xiaoou Tang. Image super-resolution using deep", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 115, + 667, + 504, + 681 + ], + "spans": [ + { + "bbox": [ + 115, + 667, + 504, + 681 + ], + "score": 1.0, + "content": "convolutional networks. CoRR, abs/1501.00092, 2015. URL http://arxiv.org/abs/", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 116, + 679, + 182, + 690 + ], + "spans": [ + { + "bbox": [ + 116, + 679, + 182, + 690 + ], + "score": 1.0, + "content": "1501.00092.", + "type": "text" + } + ], + "index": 42 + } + ], + "index": 41 + }, + { + "type": "text", + "bbox": [ + 108, + 697, + 504, + 731 + ], + "lines": [ + { + "bbox": [ + 105, + 696, + 506, + 712 + ], + "spans": [ + { + "bbox": [ + 105, + 696, + 281, + 712 + ], + "score": 1.0, + "content": "Yaroslav Ganin and Victor S. Lempitsky.", + "type": "text" + }, + { + "bbox": [ + 282, + 696, + 296, + 709 + ], + "score": 0.87, + "content": "\\mathrm { N } ^ { 4 }", + "type": "inline_equation" + }, + { + "bbox": [ + 296, + 696, + 506, + 712 + ], + "score": 1.0, + "content": "-fields: Neural network nearest neighbor fields for", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 115, + 709, + 504, + 722 + ], + "spans": [ + { + "bbox": [ + 115, + 709, + 504, + 722 + ], + "score": 1.0, + "content": "image transforms. CoRR, abs/1406.6558, 2014. URL http://arxiv.org/abs/1406.", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 115, + 719, + 146, + 732 + ], + "spans": [ + { + "bbox": [ + 115, + 719, + 146, + 732 + ], + "score": 1.0, + "content": "6558.", + "type": "text" + } + ], + "index": 45 + } + ], + "index": 44 + } + ], + "page_idx": 9, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 27, + 308, + 37 + ], + "lines": [ + { + "bbox": [ + 107, + 26, + 308, + 38 + ], + "spans": [ + { + "bbox": [ + 107, + 26, + 308, + 38 + ], + "score": 1.0, + "content": "Under review as a conference paper at ICLR 2020", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 300, + 751, + 311, + 760 + ], + "lines": [ + { + "bbox": [ + 299, + 750, + 313, + 764 + ], + "spans": [ + { + "bbox": [ + 299, + 750, + 313, + 764 + ], + "score": 1.0, + "content": "10", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "title", + "bbox": [ + 107, + 81, + 195, + 94 + ], + "lines": [ + { + "bbox": [ + 105, + 78, + 198, + 97 + ], + "spans": [ + { + "bbox": [ + 105, + 78, + 198, + 97 + ], + "score": 1.0, + "content": "6 CONCLUSION", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "text", + "bbox": [ + 107, + 106, + 505, + 162 + ], + "lines": [ + { + "bbox": [ + 105, + 106, + 504, + 119 + ], + "spans": [ + { + "bbox": [ + 105, + 106, + 504, + 119 + ], + "score": 1.0, + "content": "In this paper we propose to learn likelihoods of conditional distributions using conditional normal-", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 117, + 505, + 130 + ], + "spans": [ + { + "bbox": [ + 105, + 117, + 505, + 130 + ], + "score": 1.0, + "content": "izing flows. In this setting, supervised prediction tasks can be framed probabilistically. In addition,", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 128, + 506, + 142 + ], + "spans": [ + { + "bbox": [ + 105, + 128, + 506, + 142 + ], + "score": 1.0, + "content": "we propose a generalization of variational dequantization for binary random variables, which is", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 139, + 505, + 153 + ], + "spans": [ + { + "bbox": [ + 105, + 139, + 505, + 153 + ], + "score": 1.0, + "content": "useful for binary segmentation problems. Experimentally we show competitive performance with", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 150, + 452, + 163 + ], + "spans": [ + { + "bbox": [ + 105, + 150, + 452, + 163 + ], + "score": 1.0, + "content": "competing methods in the domain of super-resolution and binary image segmentation.", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 3, + "bbox_fs": [ + 105, + 106, + 506, + 163 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 178, + 175, + 191 + ], + "lines": [ + { + "bbox": [ + 106, + 180, + 176, + 191 + ], + "spans": [ + { + "bbox": [ + 106, + 180, + 176, + 191 + ], + "score": 1.0, + "content": "REFERENCES", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 6 + }, + { + "type": "text", + "bbox": [ + 107, + 198, + 504, + 220 + ], + "lines": [ + { + "bbox": [ + 105, + 196, + 505, + 211 + ], + "spans": [ + { + "bbox": [ + 105, + 196, + 505, + 211 + ], + "score": 1.0, + "content": "Siddharth Agrawal and Ambedkar Dukkipati. Deep variational inference without pixel-wise recon-", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 116, + 209, + 279, + 219 + ], + "spans": [ + { + "bbox": [ + 116, + 209, + 279, + 219 + ], + "score": 1.0, + "content": "struction. CoRR, abs/1611.05209, 2016.", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 7.5, + "bbox_fs": [ + 105, + 196, + 505, + 219 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 228, + 503, + 262 + ], + "lines": [ + { + "bbox": [ + 105, + 228, + 505, + 240 + ], + "spans": [ + { + "bbox": [ + 105, + 228, + 505, + 240 + ], + "score": 1.0, + "content": "Lynton Ardizzone, Carsten Luth, Jakob Kruse, Carsten Rother, and Ullrich K ¨ othe. Guided im- ¨", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 115, + 240, + 505, + 251 + ], + "spans": [ + { + "bbox": [ + 115, + 240, + 505, + 251 + ], + "score": 1.0, + "content": "age generation with conditional invertible neural networks. CoRR, abs/1907.02392, 2019. URL", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 116, + 250, + 307, + 263 + ], + "spans": [ + { + "bbox": [ + 116, + 250, + 307, + 263 + ], + "score": 1.0, + "content": "http://arxiv.org/abs/1907.02392.", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 10, + "bbox_fs": [ + 105, + 228, + 505, + 263 + ] + }, + { + "type": "text", + "bbox": [ + 105, + 269, + 504, + 293 + ], + "lines": [ + { + "bbox": [ + 106, + 269, + 504, + 282 + ], + "spans": [ + { + "bbox": [ + 106, + 269, + 504, + 282 + ], + "score": 1.0, + "content": "Andrei Atanov, Alexandra Volokhova, Arsenii Ashukha, Ivan Sosnovik, and Dmitry Vetrov. Semi-", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 116, + 281, + 396, + 294 + ], + "spans": [ + { + "bbox": [ + 116, + 281, + 396, + 294 + ], + "score": 1.0, + "content": "conditional normalizing flows for semi-supervised learning. 05 2019.", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 12.5, + "bbox_fs": [ + 106, + 269, + 504, + 294 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 300, + 506, + 357 + ], + "lines": [ + { + "bbox": [ + 106, + 301, + 505, + 313 + ], + "spans": [ + { + "bbox": [ + 106, + 301, + 505, + 313 + ], + "score": 1.0, + "content": "Carlos J. Becker, Roberto Rigamonti, Vincent Lepetit, and Pascal Fua. Supervised feature learn-", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 117, + 312, + 505, + 324 + ], + "spans": [ + { + "bbox": [ + 117, + 312, + 505, + 324 + ], + "score": 1.0, + "content": "ing for curvilinear structure segmentation. In Medical Image Computing and Computer-Assisted", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 116, + 323, + 505, + 336 + ], + "spans": [ + { + "bbox": [ + 116, + 323, + 505, + 336 + ], + "score": 1.0, + "content": "Intervention - MICCAI 2013 - 16th International Conference, Nagoya, Japan, September 22-26,", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 116, + 334, + 505, + 346 + ], + "spans": [ + { + "bbox": [ + 116, + 334, + 505, + 346 + ], + "score": 1.0, + "content": "2013, Proceedings, Part I, pp. 526–533, 2013. doi: 10.1007/978-3-642-40811-3\\ 66. URL", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 116, + 345, + 387, + 357 + ], + "spans": [ + { + "bbox": [ + 116, + 345, + 387, + 357 + ], + "score": 1.0, + "content": "https://doi.org/10.1007/978-3-642-40811-3_66.", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 16, + "bbox_fs": [ + 106, + 301, + 505, + 357 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 364, + 505, + 398 + ], + "lines": [ + { + "bbox": [ + 106, + 365, + 504, + 377 + ], + "spans": [ + { + "bbox": [ + 106, + 365, + 504, + 377 + ], + "score": 1.0, + "content": "Marco Bevilacqua, Aline Roumy, Christine Guillemot, and Marie-Line Alberi-Morel. Low-", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 115, + 375, + 505, + 389 + ], + "spans": [ + { + "bbox": [ + 115, + 375, + 505, + 389 + ], + "score": 1.0, + "content": "complexity single-image super-resolution based on nonnegative neighbor embedding. In BMVC,", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 114, + 385, + 142, + 399 + ], + "spans": [ + { + "bbox": [ + 114, + 385, + 142, + 399 + ], + "score": 1.0, + "content": "2012.", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 20, + "bbox_fs": [ + 106, + 365, + 505, + 399 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 406, + 506, + 440 + ], + "lines": [ + { + "bbox": [ + 105, + 405, + 506, + 419 + ], + "spans": [ + { + "bbox": [ + 105, + 405, + 506, + 419 + ], + "score": 1.0, + "content": "Nicola De Cao, Wilker Aziz, and Ivan Titov. Block neural autoregressive flow. In Proceedings of", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 115, + 417, + 504, + 429 + ], + "spans": [ + { + "bbox": [ + 115, + 417, + 504, + 429 + ], + "score": 1.0, + "content": "the Thirty-Fifth Conference on Uncertainty in Artificial Intelligence, UAI 2019, Tel Aviv, Israel,", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 115, + 428, + 249, + 441 + ], + "spans": [ + { + "bbox": [ + 115, + 428, + 249, + 441 + ], + "score": 1.0, + "content": "July 22-25, 2019, pp. 511, 2019.", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 23, + "bbox_fs": [ + 105, + 405, + 506, + 441 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 447, + 505, + 492 + ], + "lines": [ + { + "bbox": [ + 105, + 448, + 505, + 460 + ], + "spans": [ + { + "bbox": [ + 105, + 448, + 505, + 460 + ], + "score": 1.0, + "content": "Liang-Chieh Chen, George Papandreou, Iasonas Kokkinos, Kevin Murphy, and Alan L. Yuille.", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 114, + 458, + 506, + 471 + ], + "spans": [ + { + "bbox": [ + 114, + 458, + 506, + 471 + ], + "score": 1.0, + "content": "Deeplab: Semantic image segmentation with deep convolutional nets, atrous convolution, and", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 114, + 469, + 505, + 483 + ], + "spans": [ + { + "bbox": [ + 114, + 469, + 505, + 483 + ], + "score": 1.0, + "content": "fully connected crfs. CoRR, abs/1606.00915, 2016. URL http://arxiv.org/abs/1606.", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 116, + 481, + 151, + 492 + ], + "spans": [ + { + "bbox": [ + 116, + 481, + 151, + 492 + ], + "score": 1.0, + "content": "00915.", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 26.5, + "bbox_fs": [ + 105, + 448, + 506, + 492 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 500, + 504, + 524 + ], + "lines": [ + { + "bbox": [ + 106, + 500, + 505, + 513 + ], + "spans": [ + { + "bbox": [ + 106, + 500, + 505, + 513 + ], + "score": 1.0, + "content": "Ricky T. Q. Chen, Jens Behrmann, David Duvenaud, and Jorn-Henrik Jacobsen. Residual flows for ¨", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 115, + 511, + 366, + 524 + ], + "spans": [ + { + "bbox": [ + 115, + 511, + 366, + 524 + ], + "score": 1.0, + "content": "invertible generative modeling. CoRR, abs/1906.02735, 2019.", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 29.5, + "bbox_fs": [ + 106, + 500, + 505, + 524 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 531, + 506, + 565 + ], + "lines": [ + { + "bbox": [ + 105, + 531, + 505, + 544 + ], + "spans": [ + { + "bbox": [ + 105, + 531, + 505, + 544 + ], + "score": 1.0, + "content": "Patryk Chrabaszcz, Ilya Loshchilov, and Frank Hutter. A downsampled variant of imagenet as an", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 116, + 541, + 504, + 555 + ], + "spans": [ + { + "bbox": [ + 116, + 541, + 504, + 555 + ], + "score": 1.0, + "content": "alternative to the CIFAR datasets. CoRR, abs/1707.08819, 2017. URL http://arxiv.org/", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 116, + 554, + 206, + 564 + ], + "spans": [ + { + "bbox": [ + 116, + 554, + 206, + 564 + ], + "score": 1.0, + "content": "abs/1707.08819.", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 32, + "bbox_fs": [ + 105, + 531, + 505, + 564 + ] + }, + { + "type": "text", + "bbox": [ + 105, + 573, + 504, + 596 + ], + "lines": [ + { + "bbox": [ + 105, + 573, + 505, + 586 + ], + "spans": [ + { + "bbox": [ + 105, + 573, + 505, + 586 + ], + "score": 1.0, + "content": "Laurent Dinh, Jascha Sohl-Dickstein, and Samy Bengio. Density estimation using real NVP. CoRR,", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 116, + 583, + 424, + 596 + ], + "spans": [ + { + "bbox": [ + 116, + 583, + 424, + 596 + ], + "score": 1.0, + "content": "abs/1605.08803, 2016. URL http://arxiv.org/abs/1605.08803.", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 34.5, + "bbox_fs": [ + 105, + 573, + 505, + 596 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 604, + 505, + 648 + ], + "lines": [ + { + "bbox": [ + 106, + 604, + 505, + 616 + ], + "spans": [ + { + "bbox": [ + 106, + 604, + 505, + 616 + ], + "score": 1.0, + "content": "Piotr Dollar and C. Lawrence Zitnick. Structured forests for fast edge detection. In ´ IEEE Inter-", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 116, + 615, + 505, + 627 + ], + "spans": [ + { + "bbox": [ + 116, + 615, + 505, + 627 + ], + "score": 1.0, + "content": "national Conference on Computer Vision, ICCV 2013, Sydney, Australia, December 1-8, 2013,", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 115, + 626, + 505, + 639 + ], + "spans": [ + { + "bbox": [ + 115, + 626, + 505, + 639 + ], + "score": 1.0, + "content": "pp. 1841–1848, 2013. doi: 10.1109/ICCV.2013.231. URL https://doi.org/10.1109/", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 117, + 638, + 199, + 648 + ], + "spans": [ + { + "bbox": [ + 117, + 638, + 199, + 648 + ], + "score": 1.0, + "content": "ICCV.2013.231.", + "type": "text" + } + ], + "index": 39 + } + ], + "index": 37.5, + "bbox_fs": [ + 106, + 604, + 505, + 648 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 657, + 505, + 690 + ], + "lines": [ + { + "bbox": [ + 105, + 655, + 505, + 670 + ], + "spans": [ + { + "bbox": [ + 105, + 655, + 505, + 670 + ], + "score": 1.0, + "content": "Chao Dong, Chen Change Loy, Kaiming He, and Xiaoou Tang. Image super-resolution using deep", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 115, + 667, + 504, + 681 + ], + "spans": [ + { + "bbox": [ + 115, + 667, + 504, + 681 + ], + "score": 1.0, + "content": "convolutional networks. CoRR, abs/1501.00092, 2015. URL http://arxiv.org/abs/", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 116, + 679, + 182, + 690 + ], + "spans": [ + { + "bbox": [ + 116, + 679, + 182, + 690 + ], + "score": 1.0, + "content": "1501.00092.", + "type": "text" + } + ], + "index": 42 + } + ], + "index": 41, + "bbox_fs": [ + 105, + 655, + 505, + 690 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 697, + 504, + 731 + ], + "lines": [ + { + "bbox": [ + 105, + 696, + 506, + 712 + ], + "spans": [ + { + "bbox": [ + 105, + 696, + 281, + 712 + ], + "score": 1.0, + "content": "Yaroslav Ganin and Victor S. Lempitsky.", + "type": "text" + }, + { + "bbox": [ + 282, + 696, + 296, + 709 + ], + "score": 0.87, + "content": "\\mathrm { N } ^ { 4 }", + "type": "inline_equation" + }, + { + "bbox": [ + 296, + 696, + 506, + 712 + ], + "score": 1.0, + "content": "-fields: Neural network nearest neighbor fields for", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 115, + 709, + 504, + 722 + ], + "spans": [ + { + "bbox": [ + 115, + 709, + 504, + 722 + ], + "score": 1.0, + "content": "image transforms. CoRR, abs/1406.6558, 2014. URL http://arxiv.org/abs/1406.", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 115, + 719, + 146, + 732 + ], + "spans": [ + { + "bbox": [ + 115, + 719, + 146, + 732 + ], + "score": 1.0, + "content": "6558.", + "type": "text" + } + ], + "index": 45 + } + ], + "index": 44, + "bbox_fs": [ + 105, + 696, + 506, + 732 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 106, + 82, + 505, + 138 + ], + "lines": [ + { + "bbox": [ + 105, + 81, + 505, + 96 + ], + "spans": [ + { + "bbox": [ + 105, + 81, + 505, + 96 + ], + "score": 1.0, + "content": "Ian J. Goodfellow, Jean Pouget-Abadie, Mehdi Mirza, Bing Xu, David Warde-Farley, Sherjil Ozair,", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 116, + 93, + 506, + 106 + ], + "spans": [ + { + "bbox": [ + 116, + 93, + 506, + 106 + ], + "score": 1.0, + "content": "Aaron Courville, and Yoshua Bengio. Generative adversarial nets. In Proceedings of the", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 116, + 104, + 506, + 118 + ], + "spans": [ + { + "bbox": [ + 116, + 104, + 506, + 118 + ], + "score": 1.0, + "content": "27th International Conference on Neural Information Processing Systems - Volume 2, NIPS’14,", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 115, + 114, + 505, + 129 + ], + "spans": [ + { + "bbox": [ + 115, + 114, + 505, + 129 + ], + "score": 1.0, + "content": "pp. 2672–2680, Cambridge, MA, USA, 2014. MIT Press. URL http://dl.acm.org/", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 116, + 127, + 307, + 138 + ], + "spans": [ + { + "bbox": [ + 116, + 127, + 307, + 138 + ], + "score": 1.0, + "content": "citation.cfm?id=2969033.2969125.", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 2 + }, + { + "type": "text", + "bbox": [ + 107, + 146, + 505, + 180 + ], + "lines": [ + { + "bbox": [ + 106, + 147, + 504, + 159 + ], + "spans": [ + { + "bbox": [ + 106, + 147, + 504, + 159 + ], + "score": 1.0, + "content": "Will Grathwohl, Ricky T. Q. Chen, Jesse Bettencourt, Ilya Sutskever, and David Duvenaud.", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 115, + 157, + 505, + 170 + ], + "spans": [ + { + "bbox": [ + 115, + 157, + 505, + 170 + ], + "score": 1.0, + "content": "FFJORD: free-form continuous dynamics for scalable reversible generative models. In 7th In-", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 116, + 169, + 405, + 181 + ], + "spans": [ + { + "bbox": [ + 116, + 169, + 405, + 181 + ], + "score": 1.0, + "content": "ternational Conference on Learning Representations, ICLR 2019, 2019.", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 6 + }, + { + "type": "text", + "bbox": [ + 105, + 189, + 505, + 222 + ], + "lines": [ + { + "bbox": [ + 105, + 187, + 505, + 202 + ], + "spans": [ + { + "bbox": [ + 105, + 187, + 419, + 202 + ], + "score": 1.0, + "content": "Jonathan Ho, Xi Chen, Aravind Srinivas, Yan Duan, and Pieter Abbeel. Flow", + "type": "text" + }, + { + "bbox": [ + 420, + 190, + 432, + 199 + ], + "score": 0.71, + "content": "^ { + + }", + "type": "inline_equation" + }, + { + "bbox": [ + 432, + 187, + 505, + 202 + ], + "score": 1.0, + "content": ": Improving flow-", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 115, + 199, + 505, + 214 + ], + "spans": [ + { + "bbox": [ + 115, + 199, + 505, + 214 + ], + "score": 1.0, + "content": "based generative models with variational dequantization and architecture design. In Proceedings", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 117, + 211, + 407, + 223 + ], + "spans": [ + { + "bbox": [ + 117, + 211, + 407, + 223 + ], + "score": 1.0, + "content": "of the 36th International Conference on Machine Learning, ICML 2019.", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 9 + }, + { + "type": "text", + "bbox": [ + 106, + 231, + 505, + 286 + ], + "lines": [ + { + "bbox": [ + 106, + 231, + 504, + 244 + ], + "spans": [ + { + "bbox": [ + 106, + 231, + 419, + 244 + ], + "score": 1.0, + "content": "Jonathan Ho, Xi Chen, Aravind Srinivas, Yan Duan, and Pieter Abbeel. Flow", + "type": "text" + }, + { + "bbox": [ + 420, + 233, + 432, + 242 + ], + "score": 0.59, + "content": "^ { + + }", + "type": "inline_equation" + }, + { + "bbox": [ + 432, + 231, + 504, + 244 + ], + "score": 1.0, + "content": ": Improving flow-", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 115, + 241, + 505, + 256 + ], + "spans": [ + { + "bbox": [ + 115, + 241, + 505, + 256 + ], + "score": 1.0, + "content": "based generative models with variational dequantization and architecture design. In Proceedings", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 115, + 252, + 505, + 268 + ], + "spans": [ + { + "bbox": [ + 115, + 252, + 505, + 268 + ], + "score": 1.0, + "content": "of the 36th International Conference on Machine Learning, ICML 2019, 9-15 June 2019, Long", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 115, + 263, + 504, + 277 + ], + "spans": [ + { + "bbox": [ + 115, + 263, + 504, + 277 + ], + "score": 1.0, + "content": "Beach, California, USA, pp. 2722–2730, 2019. URL http://proceedings.mlr.press/", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 115, + 276, + 205, + 288 + ], + "spans": [ + { + "bbox": [ + 115, + 276, + 205, + 288 + ], + "score": 1.0, + "content": "v97/ho19a.html.", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 13 + }, + { + "type": "text", + "bbox": [ + 106, + 295, + 505, + 329 + ], + "lines": [ + { + "bbox": [ + 105, + 294, + 505, + 308 + ], + "spans": [ + { + "bbox": [ + 105, + 294, + 505, + 308 + ], + "score": 1.0, + "content": "Emiel Hoogeboom, Jorn W. T. Peters, Rianne van den Berg, and Max Welling. Integer discrete flows", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 116, + 306, + 504, + 318 + ], + "spans": [ + { + "bbox": [ + 116, + 306, + 504, + 318 + ], + "score": 1.0, + "content": "and lossless compression. CoRR, abs/1905.07376, 2019a. URL http://arxiv.org/abs/", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 116, + 317, + 182, + 330 + ], + "spans": [ + { + "bbox": [ + 116, + 317, + 182, + 330 + ], + "score": 1.0, + "content": "1905.07376.", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 17 + }, + { + "type": "text", + "bbox": [ + 107, + 338, + 504, + 371 + ], + "lines": [ + { + "bbox": [ + 105, + 338, + 505, + 351 + ], + "spans": [ + { + "bbox": [ + 105, + 338, + 505, + 351 + ], + "score": 1.0, + "content": "Emiel Hoogeboom, Rianne van den Berg, and Max Welling. Emerging convolutions for generative", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 115, + 348, + 505, + 362 + ], + "spans": [ + { + "bbox": [ + 115, + 348, + 505, + 362 + ], + "score": 1.0, + "content": "normalizing flows. In Proceedings of the 36th International Conference on Machine Learning,", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 116, + 360, + 197, + 371 + ], + "spans": [ + { + "bbox": [ + 116, + 360, + 197, + 371 + ], + "score": 1.0, + "content": "ICML 2019, 2019b.", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 20 + }, + { + "type": "text", + "bbox": [ + 108, + 380, + 504, + 414 + ], + "lines": [ + { + "bbox": [ + 106, + 380, + 506, + 393 + ], + "spans": [ + { + "bbox": [ + 106, + 380, + 506, + 393 + ], + "score": 1.0, + "content": "Chin-Wei Huang, David Krueger, Alexandre Lacoste, and Aaron C. Courville. Neural autoregressive", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 116, + 392, + 505, + 404 + ], + "spans": [ + { + "bbox": [ + 116, + 392, + 505, + 404 + ], + "score": 1.0, + "content": "flows. In Proceedings of the 35th International Conference on Machine Learning, ICML 2018,", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 116, + 402, + 440, + 415 + ], + "spans": [ + { + "bbox": [ + 116, + 402, + 440, + 415 + ], + "score": 1.0, + "content": "Stockholmsmassan, Stockholm, Sweden, July 10-15, 2018 ¨ , pp. 2083–2092, 2018.", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 23 + }, + { + "type": "text", + "bbox": [ + 107, + 422, + 505, + 456 + ], + "lines": [ + { + "bbox": [ + 105, + 423, + 504, + 435 + ], + "spans": [ + { + "bbox": [ + 105, + 423, + 504, + 435 + ], + "score": 1.0, + "content": "J. Huang, A. Singh, and N. Ahuja. Single image super-resolution from transformed self-exemplars.", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 115, + 433, + 505, + 446 + ], + "spans": [ + { + "bbox": [ + 115, + 433, + 505, + 446 + ], + "score": 1.0, + "content": "In 2015 IEEE Conference on Computer Vision and Pattern Recognition (CVPR), pp. 5197–5206,", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 116, + 445, + 307, + 456 + ], + "spans": [ + { + "bbox": [ + 116, + 445, + 307, + 456 + ], + "score": 1.0, + "content": "June 2015. doi: 10.1109/CVPR.2015.7299156.", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 26 + }, + { + "type": "text", + "bbox": [ + 107, + 465, + 451, + 477 + ], + "lines": [ + { + "bbox": [ + 105, + 464, + 452, + 478 + ], + "spans": [ + { + "bbox": [ + 105, + 464, + 452, + 478 + ], + "score": 1.0, + "content": "Diederik Kingma and Jimmy Ba. Adam: A method for stochastic optimization. 2015.", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 28 + }, + { + "type": "text", + "bbox": [ + 107, + 484, + 505, + 508 + ], + "lines": [ + { + "bbox": [ + 105, + 485, + 506, + 498 + ], + "spans": [ + { + "bbox": [ + 105, + 485, + 506, + 498 + ], + "score": 1.0, + "content": "Diederik P Kingma and Max Welling. Auto-Encoding Variational Bayes. In Proceedings of the 2nd", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 115, + 496, + 365, + 509 + ], + "spans": [ + { + "bbox": [ + 115, + 496, + 365, + 509 + ], + "score": 1.0, + "content": "International Conference on Learning Representations, 2014.", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 29.5 + }, + { + "type": "text", + "bbox": [ + 106, + 516, + 504, + 550 + ], + "lines": [ + { + "bbox": [ + 106, + 516, + 505, + 530 + ], + "spans": [ + { + "bbox": [ + 106, + 516, + 505, + 530 + ], + "score": 1.0, + "content": "Diederik P. Kingma, Tim Salimans, and Max Welling. Improving variational inference with inverse", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 115, + 528, + 504, + 540 + ], + "spans": [ + { + "bbox": [ + 115, + 528, + 504, + 540 + ], + "score": 1.0, + "content": "autoregressive flow. CoRR, abs/1606.04934, 2016a. URL http://arxiv.org/abs/1606.", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 116, + 538, + 152, + 551 + ], + "spans": [ + { + "bbox": [ + 116, + 538, + 152, + 551 + ], + "score": 1.0, + "content": "04934.", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 32 + }, + { + "type": "text", + "bbox": [ + 108, + 559, + 504, + 592 + ], + "lines": [ + { + "bbox": [ + 105, + 558, + 506, + 572 + ], + "spans": [ + { + "bbox": [ + 105, + 558, + 506, + 572 + ], + "score": 1.0, + "content": "Diederik P. Kingma, Tim Salimans, and Max Welling. Improving variational inference with inverse", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 115, + 570, + 504, + 582 + ], + "spans": [ + { + "bbox": [ + 115, + 570, + 504, + 582 + ], + "score": 1.0, + "content": "autoregressive flow. CoRR, abs/1606.04934, 2016b. URL http://arxiv.org/abs/1606.", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 116, + 581, + 152, + 593 + ], + "spans": [ + { + "bbox": [ + 116, + 581, + 152, + 593 + ], + "score": 1.0, + "content": "04934.", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 35 + }, + { + "type": "text", + "bbox": [ + 106, + 601, + 505, + 657 + ], + "lines": [ + { + "bbox": [ + 106, + 601, + 505, + 613 + ], + "spans": [ + { + "bbox": [ + 106, + 601, + 505, + 613 + ], + "score": 1.0, + "content": "Durk P Kingma and Prafulla Dhariwal. Glow: Generative flow with invertible 1x1 con-", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 117, + 612, + 505, + 624 + ], + "spans": [ + { + "bbox": [ + 117, + 612, + 505, + 624 + ], + "score": 1.0, + "content": "volutions. In S. Bengio, H. Wallach, H. Larochelle, K. Grauman, N. Cesa-Bianchi, and", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 115, + 622, + 505, + 636 + ], + "spans": [ + { + "bbox": [ + 115, + 622, + 505, + 636 + ], + "score": 1.0, + "content": "R. Garnett (eds.), Advances in Neural Information Processing Systems 31, pp. 10236–", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 116, + 633, + 505, + 648 + ], + "spans": [ + { + "bbox": [ + 116, + 634, + 292, + 646 + ], + "score": 1.0, + "content": "10245. Curran Associates, Inc., 2018.", + "type": "text" + }, + { + "bbox": [ + 306, + 633, + 505, + 648 + ], + "score": 1.0, + "content": "URL http://papers.nips.cc/paper/", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 116, + 646, + 496, + 658 + ], + "spans": [ + { + "bbox": [ + 116, + 646, + 496, + 658 + ], + "score": 1.0, + "content": "8224-glow-generative-flow-with-invertible-1x1-convolutions.pdf.", + "type": "text" + } + ], + "index": 41 + } + ], + "index": 39 + }, + { + "type": "text", + "bbox": [ + 107, + 666, + 529, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 665, + 505, + 678 + ], + "spans": [ + { + "bbox": [ + 106, + 665, + 505, + 678 + ], + "score": 1.0, + "content": "Alex Krizhevsky, Ilya Sutskever, and Geoffrey E. Hinton. Imagenet classification with", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 115, + 676, + 505, + 689 + ], + "spans": [ + { + "bbox": [ + 115, + 676, + 282, + 689 + ], + "score": 1.0, + "content": "deep convolutional neural networks.", + "type": "text" + }, + { + "bbox": [ + 296, + 676, + 505, + 689 + ], + "score": 1.0, + "content": "In Advances in Neural Information Process-", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 115, + 686, + 506, + 700 + ], + "spans": [ + { + "bbox": [ + 115, + 686, + 506, + 700 + ], + "score": 1.0, + "content": "ing Systems 25: 26th Annual Conference on Neural Information Processing Sys-", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 115, + 698, + 505, + 711 + ], + "spans": [ + { + "bbox": [ + 115, + 698, + 505, + 711 + ], + "score": 1.0, + "content": "tems 2012. Proceedings of a meeting held December 3-6, 2012, Lake Tahoe, Nevada,", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 115, + 708, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 115, + 708, + 505, + 722 + ], + "score": 1.0, + "content": "United States., pp. 1106–1114, 2012. URL http://papers.nips.cc/paper/", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 115, + 720, + 532, + 733 + ], + "spans": [ + { + "bbox": [ + 115, + 720, + 532, + 733 + ], + "score": 1.0, + "content": "4824-imagenet-classification-with-deep-convolutional-neural-networks.", + "type": "text" + } + ], + "index": 47 + } + ], + "index": 44.5 + } + ], + "page_idx": 10, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 27, + 308, + 37 + ], + "lines": [ + { + "bbox": [ + 107, + 26, + 308, + 38 + ], + "spans": [ + { + "bbox": [ + 107, + 26, + 308, + 38 + ], + "score": 1.0, + "content": "Under review as a conference paper at ICLR 2020", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 300, + 751, + 310, + 760 + ], + "lines": [ + { + "bbox": [ + 299, + 750, + 312, + 765 + ], + "spans": [ + { + "bbox": [ + 299, + 750, + 312, + 765 + ], + "score": 1.0, + "content": "", + "type": "text", + "height": 15, + "width": 13 + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 106, + 82, + 505, + 138 + ], + "lines": [ + { + "bbox": [ + 105, + 81, + 505, + 96 + ], + "spans": [ + { + "bbox": [ + 105, + 81, + 505, + 96 + ], + "score": 1.0, + "content": "Ian J. Goodfellow, Jean Pouget-Abadie, Mehdi Mirza, Bing Xu, David Warde-Farley, Sherjil Ozair,", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 116, + 93, + 506, + 106 + ], + "spans": [ + { + "bbox": [ + 116, + 93, + 506, + 106 + ], + "score": 1.0, + "content": "Aaron Courville, and Yoshua Bengio. Generative adversarial nets. In Proceedings of the", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 116, + 104, + 506, + 118 + ], + "spans": [ + { + "bbox": [ + 116, + 104, + 506, + 118 + ], + "score": 1.0, + "content": "27th International Conference on Neural Information Processing Systems - Volume 2, NIPS’14,", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 115, + 114, + 505, + 129 + ], + "spans": [ + { + "bbox": [ + 115, + 114, + 505, + 129 + ], + "score": 1.0, + "content": "pp. 2672–2680, Cambridge, MA, USA, 2014. MIT Press. URL http://dl.acm.org/", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 116, + 127, + 307, + 138 + ], + "spans": [ + { + "bbox": [ + 116, + 127, + 307, + 138 + ], + "score": 1.0, + "content": "citation.cfm?id=2969033.2969125.", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 2, + "bbox_fs": [ + 105, + 81, + 506, + 138 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 146, + 505, + 180 + ], + "lines": [ + { + "bbox": [ + 106, + 147, + 504, + 159 + ], + "spans": [ + { + "bbox": [ + 106, + 147, + 504, + 159 + ], + "score": 1.0, + "content": "Will Grathwohl, Ricky T. Q. Chen, Jesse Bettencourt, Ilya Sutskever, and David Duvenaud.", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 115, + 157, + 505, + 170 + ], + "spans": [ + { + "bbox": [ + 115, + 157, + 505, + 170 + ], + "score": 1.0, + "content": "FFJORD: free-form continuous dynamics for scalable reversible generative models. In 7th In-", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 116, + 169, + 405, + 181 + ], + "spans": [ + { + "bbox": [ + 116, + 169, + 405, + 181 + ], + "score": 1.0, + "content": "ternational Conference on Learning Representations, ICLR 2019, 2019.", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 6, + "bbox_fs": [ + 106, + 147, + 505, + 181 + ] + }, + { + "type": "text", + "bbox": [ + 105, + 189, + 505, + 222 + ], + "lines": [ + { + "bbox": [ + 105, + 187, + 505, + 202 + ], + "spans": [ + { + "bbox": [ + 105, + 187, + 419, + 202 + ], + "score": 1.0, + "content": "Jonathan Ho, Xi Chen, Aravind Srinivas, Yan Duan, and Pieter Abbeel. Flow", + "type": "text" + }, + { + "bbox": [ + 420, + 190, + 432, + 199 + ], + "score": 0.71, + "content": "^ { + + }", + "type": "inline_equation" + }, + { + "bbox": [ + 432, + 187, + 505, + 202 + ], + "score": 1.0, + "content": ": Improving flow-", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 115, + 199, + 505, + 214 + ], + "spans": [ + { + "bbox": [ + 115, + 199, + 505, + 214 + ], + "score": 1.0, + "content": "based generative models with variational dequantization and architecture design. In Proceedings", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 117, + 211, + 407, + 223 + ], + "spans": [ + { + "bbox": [ + 117, + 211, + 407, + 223 + ], + "score": 1.0, + "content": "of the 36th International Conference on Machine Learning, ICML 2019.", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 9, + "bbox_fs": [ + 105, + 187, + 505, + 223 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 231, + 505, + 286 + ], + "lines": [ + { + "bbox": [ + 106, + 231, + 504, + 244 + ], + "spans": [ + { + "bbox": [ + 106, + 231, + 419, + 244 + ], + "score": 1.0, + "content": "Jonathan Ho, Xi Chen, Aravind Srinivas, Yan Duan, and Pieter Abbeel. Flow", + "type": "text" + }, + { + "bbox": [ + 420, + 233, + 432, + 242 + ], + "score": 0.59, + "content": "^ { + + }", + "type": "inline_equation" + }, + { + "bbox": [ + 432, + 231, + 504, + 244 + ], + "score": 1.0, + "content": ": Improving flow-", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 115, + 241, + 505, + 256 + ], + "spans": [ + { + "bbox": [ + 115, + 241, + 505, + 256 + ], + "score": 1.0, + "content": "based generative models with variational dequantization and architecture design. In Proceedings", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 115, + 252, + 505, + 268 + ], + "spans": [ + { + "bbox": [ + 115, + 252, + 505, + 268 + ], + "score": 1.0, + "content": "of the 36th International Conference on Machine Learning, ICML 2019, 9-15 June 2019, Long", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 115, + 263, + 504, + 277 + ], + "spans": [ + { + "bbox": [ + 115, + 263, + 504, + 277 + ], + "score": 1.0, + "content": "Beach, California, USA, pp. 2722–2730, 2019. URL http://proceedings.mlr.press/", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 115, + 276, + 205, + 288 + ], + "spans": [ + { + "bbox": [ + 115, + 276, + 205, + 288 + ], + "score": 1.0, + "content": "v97/ho19a.html.", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 13, + "bbox_fs": [ + 106, + 231, + 505, + 288 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 295, + 505, + 329 + ], + "lines": [ + { + "bbox": [ + 105, + 294, + 505, + 308 + ], + "spans": [ + { + "bbox": [ + 105, + 294, + 505, + 308 + ], + "score": 1.0, + "content": "Emiel Hoogeboom, Jorn W. T. Peters, Rianne van den Berg, and Max Welling. Integer discrete flows", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 116, + 306, + 504, + 318 + ], + "spans": [ + { + "bbox": [ + 116, + 306, + 504, + 318 + ], + "score": 1.0, + "content": "and lossless compression. CoRR, abs/1905.07376, 2019a. URL http://arxiv.org/abs/", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 116, + 317, + 182, + 330 + ], + "spans": [ + { + "bbox": [ + 116, + 317, + 182, + 330 + ], + "score": 1.0, + "content": "1905.07376.", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 17, + "bbox_fs": [ + 105, + 294, + 505, + 330 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 338, + 504, + 371 + ], + "lines": [ + { + "bbox": [ + 105, + 338, + 505, + 351 + ], + "spans": [ + { + "bbox": [ + 105, + 338, + 505, + 351 + ], + "score": 1.0, + "content": "Emiel Hoogeboom, Rianne van den Berg, and Max Welling. Emerging convolutions for generative", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 115, + 348, + 505, + 362 + ], + "spans": [ + { + "bbox": [ + 115, + 348, + 505, + 362 + ], + "score": 1.0, + "content": "normalizing flows. In Proceedings of the 36th International Conference on Machine Learning,", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 116, + 360, + 197, + 371 + ], + "spans": [ + { + "bbox": [ + 116, + 360, + 197, + 371 + ], + "score": 1.0, + "content": "ICML 2019, 2019b.", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 20, + "bbox_fs": [ + 105, + 338, + 505, + 371 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 380, + 504, + 414 + ], + "lines": [ + { + "bbox": [ + 106, + 380, + 506, + 393 + ], + "spans": [ + { + "bbox": [ + 106, + 380, + 506, + 393 + ], + "score": 1.0, + "content": "Chin-Wei Huang, David Krueger, Alexandre Lacoste, and Aaron C. Courville. Neural autoregressive", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 116, + 392, + 505, + 404 + ], + "spans": [ + { + "bbox": [ + 116, + 392, + 505, + 404 + ], + "score": 1.0, + "content": "flows. In Proceedings of the 35th International Conference on Machine Learning, ICML 2018,", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 116, + 402, + 440, + 415 + ], + "spans": [ + { + "bbox": [ + 116, + 402, + 440, + 415 + ], + "score": 1.0, + "content": "Stockholmsmassan, Stockholm, Sweden, July 10-15, 2018 ¨ , pp. 2083–2092, 2018.", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 23, + "bbox_fs": [ + 106, + 380, + 506, + 415 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 422, + 505, + 456 + ], + "lines": [ + { + "bbox": [ + 105, + 423, + 504, + 435 + ], + "spans": [ + { + "bbox": [ + 105, + 423, + 504, + 435 + ], + "score": 1.0, + "content": "J. Huang, A. Singh, and N. Ahuja. Single image super-resolution from transformed self-exemplars.", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 115, + 433, + 505, + 446 + ], + "spans": [ + { + "bbox": [ + 115, + 433, + 505, + 446 + ], + "score": 1.0, + "content": "In 2015 IEEE Conference on Computer Vision and Pattern Recognition (CVPR), pp. 5197–5206,", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 116, + 445, + 307, + 456 + ], + "spans": [ + { + "bbox": [ + 116, + 445, + 307, + 456 + ], + "score": 1.0, + "content": "June 2015. doi: 10.1109/CVPR.2015.7299156.", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 26, + "bbox_fs": [ + 105, + 423, + 505, + 456 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 465, + 451, + 477 + ], + "lines": [ + { + "bbox": [ + 105, + 464, + 452, + 478 + ], + "spans": [ + { + "bbox": [ + 105, + 464, + 452, + 478 + ], + "score": 1.0, + "content": "Diederik Kingma and Jimmy Ba. Adam: A method for stochastic optimization. 2015.", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 28, + "bbox_fs": [ + 105, + 464, + 452, + 478 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 484, + 505, + 508 + ], + "lines": [ + { + "bbox": [ + 105, + 485, + 506, + 498 + ], + "spans": [ + { + "bbox": [ + 105, + 485, + 506, + 498 + ], + "score": 1.0, + "content": "Diederik P Kingma and Max Welling. Auto-Encoding Variational Bayes. In Proceedings of the 2nd", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 115, + 496, + 365, + 509 + ], + "spans": [ + { + "bbox": [ + 115, + 496, + 365, + 509 + ], + "score": 1.0, + "content": "International Conference on Learning Representations, 2014.", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 29.5, + "bbox_fs": [ + 105, + 485, + 506, + 509 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 516, + 504, + 550 + ], + "lines": [ + { + "bbox": [ + 106, + 516, + 505, + 530 + ], + "spans": [ + { + "bbox": [ + 106, + 516, + 505, + 530 + ], + "score": 1.0, + "content": "Diederik P. Kingma, Tim Salimans, and Max Welling. Improving variational inference with inverse", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 115, + 528, + 504, + 540 + ], + "spans": [ + { + "bbox": [ + 115, + 528, + 504, + 540 + ], + "score": 1.0, + "content": "autoregressive flow. CoRR, abs/1606.04934, 2016a. URL http://arxiv.org/abs/1606.", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 116, + 538, + 152, + 551 + ], + "spans": [ + { + "bbox": [ + 116, + 538, + 152, + 551 + ], + "score": 1.0, + "content": "04934.", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 32, + "bbox_fs": [ + 106, + 516, + 505, + 551 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 559, + 504, + 592 + ], + "lines": [ + { + "bbox": [ + 105, + 558, + 506, + 572 + ], + "spans": [ + { + "bbox": [ + 105, + 558, + 506, + 572 + ], + "score": 1.0, + "content": "Diederik P. Kingma, Tim Salimans, and Max Welling. Improving variational inference with inverse", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 115, + 570, + 504, + 582 + ], + "spans": [ + { + "bbox": [ + 115, + 570, + 504, + 582 + ], + "score": 1.0, + "content": "autoregressive flow. CoRR, abs/1606.04934, 2016b. URL http://arxiv.org/abs/1606.", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 116, + 581, + 152, + 593 + ], + "spans": [ + { + "bbox": [ + 116, + 581, + 152, + 593 + ], + "score": 1.0, + "content": "04934.", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 35, + "bbox_fs": [ + 105, + 558, + 506, + 593 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 601, + 505, + 657 + ], + "lines": [ + { + "bbox": [ + 106, + 601, + 505, + 613 + ], + "spans": [ + { + "bbox": [ + 106, + 601, + 505, + 613 + ], + "score": 1.0, + "content": "Durk P Kingma and Prafulla Dhariwal. Glow: Generative flow with invertible 1x1 con-", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 117, + 612, + 505, + 624 + ], + "spans": [ + { + "bbox": [ + 117, + 612, + 505, + 624 + ], + "score": 1.0, + "content": "volutions. In S. Bengio, H. Wallach, H. Larochelle, K. Grauman, N. Cesa-Bianchi, and", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 115, + 622, + 505, + 636 + ], + "spans": [ + { + "bbox": [ + 115, + 622, + 505, + 636 + ], + "score": 1.0, + "content": "R. Garnett (eds.), Advances in Neural Information Processing Systems 31, pp. 10236–", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 116, + 633, + 505, + 648 + ], + "spans": [ + { + "bbox": [ + 116, + 634, + 292, + 646 + ], + "score": 1.0, + "content": "10245. Curran Associates, Inc., 2018.", + "type": "text" + }, + { + "bbox": [ + 306, + 633, + 505, + 648 + ], + "score": 1.0, + "content": "URL http://papers.nips.cc/paper/", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 116, + 646, + 496, + 658 + ], + "spans": [ + { + "bbox": [ + 116, + 646, + 496, + 658 + ], + "score": 1.0, + "content": "8224-glow-generative-flow-with-invertible-1x1-convolutions.pdf.", + "type": "text" + } + ], + "index": 41 + } + ], + "index": 39, + "bbox_fs": [ + 106, + 601, + 505, + 658 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 666, + 529, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 665, + 505, + 678 + ], + "spans": [ + { + "bbox": [ + 106, + 665, + 505, + 678 + ], + "score": 1.0, + "content": "Alex Krizhevsky, Ilya Sutskever, and Geoffrey E. Hinton. Imagenet classification with", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 115, + 676, + 505, + 689 + ], + "spans": [ + { + "bbox": [ + 115, + 676, + 282, + 689 + ], + "score": 1.0, + "content": "deep convolutional neural networks.", + "type": "text" + }, + { + "bbox": [ + 296, + 676, + 505, + 689 + ], + "score": 1.0, + "content": "In Advances in Neural Information Process-", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 115, + 686, + 506, + 700 + ], + "spans": [ + { + "bbox": [ + 115, + 686, + 506, + 700 + ], + "score": 1.0, + "content": "ing Systems 25: 26th Annual Conference on Neural Information Processing Sys-", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 115, + 698, + 505, + 711 + ], + "spans": [ + { + "bbox": [ + 115, + 698, + 505, + 711 + ], + "score": 1.0, + "content": "tems 2012. Proceedings of a meeting held December 3-6, 2012, Lake Tahoe, Nevada,", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 115, + 708, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 115, + 708, + 505, + 722 + ], + "score": 1.0, + "content": "United States., pp. 1106–1114, 2012. URL http://papers.nips.cc/paper/", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 115, + 720, + 532, + 733 + ], + "spans": [ + { + "bbox": [ + 115, + 720, + 532, + 733 + ], + "score": 1.0, + "content": "4824-imagenet-classification-with-deep-convolutional-neural-networks.", + "type": "text" + } + ], + "index": 47 + } + ], + "index": 44.5, + "bbox_fs": [ + 106, + 665, + 532, + 733 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 107, + 82, + 504, + 127 + ], + "lines": [ + { + "bbox": [ + 105, + 82, + 505, + 96 + ], + "spans": [ + { + "bbox": [ + 105, + 82, + 505, + 96 + ], + "score": 1.0, + "content": "Chen-Yu Lee, Saining Xie, Patrick W. Gallagher, Zhengyou Zhang, and Zhuowen Tu. Deeply-", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 116, + 94, + 505, + 105 + ], + "spans": [ + { + "bbox": [ + 116, + 94, + 505, + 105 + ], + "score": 1.0, + "content": "supervised nets. In Proceedings of the Eighteenth International Conference on Artificial Intelli-", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 115, + 105, + 506, + 117 + ], + "spans": [ + { + "bbox": [ + 115, + 105, + 506, + 117 + ], + "score": 1.0, + "content": "gence and Statistics, AISTATS 2015, San Diego, California, USA, May 9-12, 2015, 2015. URL", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 116, + 116, + 384, + 127 + ], + "spans": [ + { + "bbox": [ + 116, + 116, + 384, + 127 + ], + "score": 1.0, + "content": "http://proceedings.mlr.press/v38/lee15a.html.", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 1.5 + }, + { + "type": "text", + "bbox": [ + 106, + 135, + 505, + 191 + ], + "lines": [ + { + "bbox": [ + 106, + 135, + 504, + 147 + ], + "spans": [ + { + "bbox": [ + 106, + 135, + 504, + 147 + ], + "score": 1.0, + "content": "Kevis-Kokitsi Maninis, Jordi Pont-Tuset, Pablo Andres Arbel´ aez, and Luc Van Gool. Deep reti-´", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 117, + 147, + 505, + 159 + ], + "spans": [ + { + "bbox": [ + 117, + 147, + 505, + 159 + ], + "score": 1.0, + "content": "nal image understanding. In Medical Image Computing and Computer-Assisted Intervention", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 117, + 158, + 504, + 169 + ], + "spans": [ + { + "bbox": [ + 117, + 158, + 504, + 169 + ], + "score": 1.0, + "content": "- MICCAI 2016 - 19th International Conference, Athens, Greece, October 17-21, 2016, Pro-", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 115, + 167, + 505, + 183 + ], + "spans": [ + { + "bbox": [ + 115, + 167, + 505, + 183 + ], + "score": 1.0, + "content": "ceedings, Part II, pp. 140–148, 2016. doi: 10.1007/978-3-319-46723-8\\ 17. URL https:", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 117, + 180, + 351, + 191 + ], + "spans": [ + { + "bbox": [ + 117, + 180, + 351, + 191 + ], + "score": 1.0, + "content": "//doi.org/10.1007/978-3-319-46723-8_17.", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 6 + }, + { + "type": "text", + "bbox": [ + 104, + 199, + 504, + 223 + ], + "lines": [ + { + "bbox": [ + 106, + 199, + 505, + 212 + ], + "spans": [ + { + "bbox": [ + 106, + 199, + 505, + 212 + ], + "score": 1.0, + "content": "Roey Mechrez, Itamar Talmi, Firas Shama, and Lihi Zelnik-Manor. Learning to maintain natural im-", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 115, + 210, + 505, + 223 + ], + "spans": [ + { + "bbox": [ + 115, + 210, + 505, + 223 + ], + "score": 1.0, + "content": "age statistics. CoRR, abs/1803.04626, 2018. URL http://arxiv.org/abs/1803.04626.", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 9.5 + }, + { + "type": "text", + "bbox": [ + 107, + 231, + 505, + 276 + ], + "lines": [ + { + "bbox": [ + 106, + 230, + 505, + 244 + ], + "spans": [ + { + "bbox": [ + 106, + 230, + 505, + 244 + ], + "score": 1.0, + "content": "Shakir Mohamed and Danilo J. Rezende. Variational information maximisation for intrinsically mo-", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 115, + 242, + 505, + 254 + ], + "spans": [ + { + "bbox": [ + 115, + 242, + 505, + 254 + ], + "score": 1.0, + "content": "tivated reinforcement learning. In Proceedings of the 28th International Conference on Neural In-", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 115, + 253, + 505, + 266 + ], + "spans": [ + { + "bbox": [ + 115, + 253, + 505, + 266 + ], + "score": 1.0, + "content": "formation Processing Systems - Volume 2, NIPS’15, pp. 2125–2133, Cambridge, MA, USA, 2015.", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 114, + 263, + 485, + 277 + ], + "spans": [ + { + "bbox": [ + 114, + 263, + 384, + 277 + ], + "score": 1.0, + "content": "MIT Press. URL http://dl.acm.org/citation.cfm?id", + "type": "text" + }, + { + "bbox": [ + 384, + 265, + 391, + 273 + ], + "score": 0.3, + "content": "{ . } = { }", + "type": "inline_equation" + }, + { + "bbox": [ + 391, + 263, + 485, + 277 + ], + "score": 1.0, + "content": "2969442.2969477.", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 12.5 + }, + { + "type": "text", + "bbox": [ + 106, + 284, + 505, + 340 + ], + "lines": [ + { + "bbox": [ + 106, + 283, + 505, + 297 + ], + "spans": [ + { + "bbox": [ + 106, + 283, + 505, + 297 + ], + "score": 1.0, + "content": "George Papamakarios, Theo Pavlakou, and Iain Murray. Masked autoregressive flow for den-", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 117, + 295, + 504, + 307 + ], + "spans": [ + { + "bbox": [ + 117, + 295, + 504, + 307 + ], + "score": 1.0, + "content": "sity estimation. In I. Guyon, U. V. Luxburg, S. Bengio, H. Wallach, R. Fergus, S. Vish-", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 115, + 305, + 505, + 320 + ], + "spans": [ + { + "bbox": [ + 115, + 305, + 505, + 320 + ], + "score": 1.0, + "content": "wanathan, and R. Garnett (eds.), Advances in Neural Information Processing Systems 30, pp.", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 115, + 316, + 505, + 330 + ], + "spans": [ + { + "bbox": [ + 115, + 316, + 505, + 330 + ], + "score": 1.0, + "content": "2338–2347. Curran Associates, Inc., 2017. URL http://papers.nips.cc/paper/", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 117, + 329, + 471, + 340 + ], + "spans": [ + { + "bbox": [ + 117, + 329, + 471, + 340 + ], + "score": 1.0, + "content": "6828-masked-autoregressive-flow-for-density-estimation.pdf.", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 17 + }, + { + "type": "text", + "bbox": [ + 105, + 348, + 504, + 371 + ], + "lines": [ + { + "bbox": [ + 105, + 347, + 505, + 362 + ], + "spans": [ + { + "bbox": [ + 105, + 347, + 505, + 362 + ], + "score": 1.0, + "content": "Simon JD Prince. Computer vision: models, learning, and inference. Cambridge University Press,", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 115, + 358, + 143, + 372 + ], + "spans": [ + { + "bbox": [ + 115, + 358, + 143, + 372 + ], + "score": 1.0, + "content": "2012.", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 20.5 + }, + { + "type": "text", + "bbox": [ + 107, + 379, + 504, + 413 + ], + "lines": [ + { + "bbox": [ + 105, + 379, + 505, + 392 + ], + "spans": [ + { + "bbox": [ + 105, + 379, + 505, + 392 + ], + "score": 1.0, + "content": "Eduardo Prez-Pellitero, Jordi Salvador, Javier Ruiz-Hidalgo, and Bodo Rosenhahn. Manifold span", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 116, + 390, + 504, + 403 + ], + "spans": [ + { + "bbox": [ + 116, + 390, + 504, + 403 + ], + "score": 1.0, + "content": "reduction for super resolution. In IEEE Conference on Computer Vision and Pattern Recognition", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 116, + 401, + 201, + 414 + ], + "spans": [ + { + "bbox": [ + 116, + 401, + 201, + 414 + ], + "score": 1.0, + "content": "(CVPR)., June 2016.", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 23 + }, + { + "type": "text", + "bbox": [ + 107, + 421, + 505, + 466 + ], + "lines": [ + { + "bbox": [ + 105, + 420, + 506, + 435 + ], + "spans": [ + { + "bbox": [ + 105, + 420, + 506, + 435 + ], + "score": 1.0, + "content": "Danilo Jimenez Rezende and Shakir Mohamed. Variational inference with normalizing flows.", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 115, + 433, + 504, + 444 + ], + "spans": [ + { + "bbox": [ + 115, + 433, + 504, + 444 + ], + "score": 1.0, + "content": "In Proceedings of the 32nd International Conference on Machine Learning, ICML 2015, Lille,", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 115, + 444, + 504, + 456 + ], + "spans": [ + { + "bbox": [ + 115, + 444, + 504, + 456 + ], + "score": 1.0, + "content": "France, 6-11 July 2015, pp. 1530–1538, 2015. URL http://proceedings.mlr.press/", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 117, + 455, + 229, + 466 + ], + "spans": [ + { + "bbox": [ + 117, + 455, + 229, + 466 + ], + "score": 1.0, + "content": "v37/rezende15.html.", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 26.5 + }, + { + "type": "text", + "bbox": [ + 106, + 474, + 505, + 508 + ], + "lines": [ + { + "bbox": [ + 106, + 474, + 505, + 488 + ], + "spans": [ + { + "bbox": [ + 106, + 474, + 505, + 488 + ], + "score": 1.0, + "content": "Elisa Ricci and Renzo Perfetti. Retinal blood vessel segmentation using line operators and support", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 116, + 486, + 504, + 498 + ], + "spans": [ + { + "bbox": [ + 116, + 486, + 504, + 498 + ], + "score": 1.0, + "content": "vector classification. IEEE Trans. Med. Imaging, 26(10):1357–1365, 2007. doi: 10.1109/TMI.", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 115, + 496, + 435, + 509 + ], + "spans": [ + { + "bbox": [ + 115, + 496, + 435, + 509 + ], + "score": 1.0, + "content": "2007.898551. URL https://doi.org/10.1109/TMI.2007.898551.", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 30 + }, + { + "type": "text", + "bbox": [ + 106, + 517, + 505, + 573 + ], + "lines": [ + { + "bbox": [ + 106, + 516, + 505, + 529 + ], + "spans": [ + { + "bbox": [ + 106, + 516, + 505, + 529 + ], + "score": 1.0, + "content": "M. S. M. Sajjadi, B. Scholkopf, and M. Hirsch. EnhanceNet: Single image super- ¨", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 115, + 527, + 505, + 541 + ], + "spans": [ + { + "bbox": [ + 115, + 527, + 505, + 541 + ], + "score": 1.0, + "content": "resolution through automated texture synthesis. In Proceedings IEEE International Con-", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 114, + 539, + 505, + 552 + ], + "spans": [ + { + "bbox": [ + 114, + 539, + 505, + 552 + ], + "score": 1.0, + "content": "ference on Computer Vision (ICCV), pp. 4501–4510, Piscataway, NJ, USA, October 2017a.", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 115, + 550, + 505, + 563 + ], + "spans": [ + { + "bbox": [ + 115, + 550, + 505, + 563 + ], + "score": 1.0, + "content": "IEEE. URL http://openaccess.thecvf.com/content_ICCV_2017/papers/", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 116, + 561, + 426, + 573 + ], + "spans": [ + { + "bbox": [ + 116, + 561, + 426, + 573 + ], + "score": 1.0, + "content": "Sajjadi_EnhanceNet_Single_Image_ICCV_2017_paper.pdf.", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 34 + }, + { + "type": "text", + "bbox": [ + 106, + 581, + 505, + 637 + ], + "lines": [ + { + "bbox": [ + 106, + 581, + 505, + 594 + ], + "spans": [ + { + "bbox": [ + 106, + 581, + 336, + 593 + ], + "score": 1.0, + "content": "M. S. M. Sajjadi, B. Scholkopf, and M. Hirsch.¨", + "type": "text" + }, + { + "bbox": [ + 348, + 581, + 505, + 594 + ], + "score": 1.0, + "content": "EnhanceNet: Single image super-", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 116, + 592, + 505, + 605 + ], + "spans": [ + { + "bbox": [ + 116, + 592, + 505, + 605 + ], + "score": 1.0, + "content": "resolution through automated texture synthesis. In Proceedings IEEE International Confer-", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 115, + 603, + 505, + 615 + ], + "spans": [ + { + "bbox": [ + 115, + 603, + 505, + 615 + ], + "score": 1.0, + "content": "ence on Computer Vision (ICCV), pp. 4501–4510, Piscataway, NJ, USA, October 2017b.", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 115, + 613, + 505, + 627 + ], + "spans": [ + { + "bbox": [ + 115, + 613, + 505, + 627 + ], + "score": 1.0, + "content": "IEEE. URL http://openaccess.thecvf.com/content_ICCV_2017/papers/", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 115, + 624, + 426, + 637 + ], + "spans": [ + { + "bbox": [ + 115, + 624, + 426, + 637 + ], + "score": 1.0, + "content": "Sajjadi_EnhanceNet_Single_Image_ICCV_2017_paper.pdf.", + "type": "text" + } + ], + "index": 41 + } + ], + "index": 39 + }, + { + "type": "text", + "bbox": [ + 108, + 645, + 504, + 679 + ], + "lines": [ + { + "bbox": [ + 106, + 645, + 505, + 658 + ], + "spans": [ + { + "bbox": [ + 106, + 645, + 426, + 658 + ], + "score": 1.0, + "content": "Tim Salimans, Andrej Karpathy, Xi Chen, and Diederik P. Kingma. Pixelcnn", + "type": "text" + }, + { + "bbox": [ + 427, + 647, + 439, + 656 + ], + "score": 0.77, + "content": "^ { + + }", + "type": "inline_equation" + }, + { + "bbox": [ + 439, + 645, + 505, + 658 + ], + "score": 1.0, + "content": ": Improving the", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 116, + 657, + 505, + 668 + ], + "spans": [ + { + "bbox": [ + 116, + 657, + 505, + 668 + ], + "score": 1.0, + "content": "pixelcnn with discretized logistic mixture likelihood and other modifications. In 5th International", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 117, + 667, + 359, + 681 + ], + "spans": [ + { + "bbox": [ + 117, + 667, + 359, + 681 + ], + "score": 1.0, + "content": "Conference on Learning Representations, ICLR 2017, 2017.", + "type": "text" + } + ], + "index": 44 + } + ], + "index": 43 + }, + { + "type": "text", + "bbox": [ + 107, + 687, + 504, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 687, + 504, + 699 + ], + "spans": [ + { + "bbox": [ + 106, + 687, + 504, + 699 + ], + "score": 1.0, + "content": "Karen Simonyan and Andrew Zisserman. Very deep convolutional networks for large-scale im-", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 115, + 699, + 505, + 711 + ], + "spans": [ + { + "bbox": [ + 115, + 699, + 505, + 711 + ], + "score": 1.0, + "content": "age recognition. In 3rd International Conference on Learning Representations, ICLR 2015,", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 115, + 709, + 504, + 723 + ], + "spans": [ + { + "bbox": [ + 115, + 709, + 504, + 723 + ], + "score": 1.0, + "content": "San Diego, CA, USA, May 7-9, 2015, Conference Track Proceedings, 2015. URL http:", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 117, + 721, + 272, + 732 + ], + "spans": [ + { + "bbox": [ + 117, + 721, + 272, + 732 + ], + "score": 1.0, + "content": "//arxiv.org/abs/1409.1556.", + "type": "text" + } + ], + "index": 48 + } + ], + "index": 46.5 + } + ], + "page_idx": 11, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 300, + 751, + 311, + 760 + ], + "lines": [ + { + "bbox": [ + 299, + 750, + 313, + 764 + ], + "spans": [ + { + "bbox": [ + 299, + 750, + 313, + 764 + ], + "score": 1.0, + "content": "12", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 107, + 27, + 308, + 37 + ], + "lines": [ + { + "bbox": [ + 107, + 26, + 308, + 38 + ], + "spans": [ + { + "bbox": [ + 107, + 26, + 308, + 38 + ], + "score": 1.0, + "content": "Under review as a conference paper at ICLR 2020", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 107, + 82, + 504, + 127 + ], + "lines": [ + { + "bbox": [ + 105, + 82, + 505, + 96 + ], + "spans": [ + { + "bbox": [ + 105, + 82, + 505, + 96 + ], + "score": 1.0, + "content": "Chen-Yu Lee, Saining Xie, Patrick W. Gallagher, Zhengyou Zhang, and Zhuowen Tu. Deeply-", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 116, + 94, + 505, + 105 + ], + "spans": [ + { + "bbox": [ + 116, + 94, + 505, + 105 + ], + "score": 1.0, + "content": "supervised nets. In Proceedings of the Eighteenth International Conference on Artificial Intelli-", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 115, + 105, + 506, + 117 + ], + "spans": [ + { + "bbox": [ + 115, + 105, + 506, + 117 + ], + "score": 1.0, + "content": "gence and Statistics, AISTATS 2015, San Diego, California, USA, May 9-12, 2015, 2015. URL", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 116, + 116, + 384, + 127 + ], + "spans": [ + { + "bbox": [ + 116, + 116, + 384, + 127 + ], + "score": 1.0, + "content": "http://proceedings.mlr.press/v38/lee15a.html.", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 1.5, + "bbox_fs": [ + 105, + 82, + 506, + 127 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 135, + 505, + 191 + ], + "lines": [ + { + "bbox": [ + 106, + 135, + 504, + 147 + ], + "spans": [ + { + "bbox": [ + 106, + 135, + 504, + 147 + ], + "score": 1.0, + "content": "Kevis-Kokitsi Maninis, Jordi Pont-Tuset, Pablo Andres Arbel´ aez, and Luc Van Gool. Deep reti-´", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 117, + 147, + 505, + 159 + ], + "spans": [ + { + "bbox": [ + 117, + 147, + 505, + 159 + ], + "score": 1.0, + "content": "nal image understanding. In Medical Image Computing and Computer-Assisted Intervention", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 117, + 158, + 504, + 169 + ], + "spans": [ + { + "bbox": [ + 117, + 158, + 504, + 169 + ], + "score": 1.0, + "content": "- MICCAI 2016 - 19th International Conference, Athens, Greece, October 17-21, 2016, Pro-", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 115, + 167, + 505, + 183 + ], + "spans": [ + { + "bbox": [ + 115, + 167, + 505, + 183 + ], + "score": 1.0, + "content": "ceedings, Part II, pp. 140–148, 2016. doi: 10.1007/978-3-319-46723-8\\ 17. URL https:", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 117, + 180, + 351, + 191 + ], + "spans": [ + { + "bbox": [ + 117, + 180, + 351, + 191 + ], + "score": 1.0, + "content": "//doi.org/10.1007/978-3-319-46723-8_17.", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 6, + "bbox_fs": [ + 106, + 135, + 505, + 191 + ] + }, + { + "type": "text", + "bbox": [ + 104, + 199, + 504, + 223 + ], + "lines": [ + { + "bbox": [ + 106, + 199, + 505, + 212 + ], + "spans": [ + { + "bbox": [ + 106, + 199, + 505, + 212 + ], + "score": 1.0, + "content": "Roey Mechrez, Itamar Talmi, Firas Shama, and Lihi Zelnik-Manor. Learning to maintain natural im-", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 115, + 210, + 505, + 223 + ], + "spans": [ + { + "bbox": [ + 115, + 210, + 505, + 223 + ], + "score": 1.0, + "content": "age statistics. CoRR, abs/1803.04626, 2018. URL http://arxiv.org/abs/1803.04626.", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 9.5, + "bbox_fs": [ + 106, + 199, + 505, + 223 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 231, + 505, + 276 + ], + "lines": [ + { + "bbox": [ + 106, + 230, + 505, + 244 + ], + "spans": [ + { + "bbox": [ + 106, + 230, + 505, + 244 + ], + "score": 1.0, + "content": "Shakir Mohamed and Danilo J. Rezende. Variational information maximisation for intrinsically mo-", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 115, + 242, + 505, + 254 + ], + "spans": [ + { + "bbox": [ + 115, + 242, + 505, + 254 + ], + "score": 1.0, + "content": "tivated reinforcement learning. In Proceedings of the 28th International Conference on Neural In-", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 115, + 253, + 505, + 266 + ], + "spans": [ + { + "bbox": [ + 115, + 253, + 505, + 266 + ], + "score": 1.0, + "content": "formation Processing Systems - Volume 2, NIPS’15, pp. 2125–2133, Cambridge, MA, USA, 2015.", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 114, + 263, + 485, + 277 + ], + "spans": [ + { + "bbox": [ + 114, + 263, + 384, + 277 + ], + "score": 1.0, + "content": "MIT Press. URL http://dl.acm.org/citation.cfm?id", + "type": "text" + }, + { + "bbox": [ + 384, + 265, + 391, + 273 + ], + "score": 0.3, + "content": "{ . } = { }", + "type": "inline_equation" + }, + { + "bbox": [ + 391, + 263, + 485, + 277 + ], + "score": 1.0, + "content": "2969442.2969477.", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 12.5, + "bbox_fs": [ + 106, + 230, + 505, + 277 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 284, + 505, + 340 + ], + "lines": [ + { + "bbox": [ + 106, + 283, + 505, + 297 + ], + "spans": [ + { + "bbox": [ + 106, + 283, + 505, + 297 + ], + "score": 1.0, + "content": "George Papamakarios, Theo Pavlakou, and Iain Murray. Masked autoregressive flow for den-", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 117, + 295, + 504, + 307 + ], + "spans": [ + { + "bbox": [ + 117, + 295, + 504, + 307 + ], + "score": 1.0, + "content": "sity estimation. In I. Guyon, U. V. Luxburg, S. Bengio, H. Wallach, R. Fergus, S. Vish-", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 115, + 305, + 505, + 320 + ], + "spans": [ + { + "bbox": [ + 115, + 305, + 505, + 320 + ], + "score": 1.0, + "content": "wanathan, and R. Garnett (eds.), Advances in Neural Information Processing Systems 30, pp.", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 115, + 316, + 505, + 330 + ], + "spans": [ + { + "bbox": [ + 115, + 316, + 505, + 330 + ], + "score": 1.0, + "content": "2338–2347. Curran Associates, Inc., 2017. URL http://papers.nips.cc/paper/", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 117, + 329, + 471, + 340 + ], + "spans": [ + { + "bbox": [ + 117, + 329, + 471, + 340 + ], + "score": 1.0, + "content": "6828-masked-autoregressive-flow-for-density-estimation.pdf.", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 17, + "bbox_fs": [ + 106, + 283, + 505, + 340 + ] + }, + { + "type": "text", + "bbox": [ + 105, + 348, + 504, + 371 + ], + "lines": [ + { + "bbox": [ + 105, + 347, + 505, + 362 + ], + "spans": [ + { + "bbox": [ + 105, + 347, + 505, + 362 + ], + "score": 1.0, + "content": "Simon JD Prince. Computer vision: models, learning, and inference. Cambridge University Press,", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 115, + 358, + 143, + 372 + ], + "spans": [ + { + "bbox": [ + 115, + 358, + 143, + 372 + ], + "score": 1.0, + "content": "2012.", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 20.5, + "bbox_fs": [ + 105, + 347, + 505, + 372 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 379, + 504, + 413 + ], + "lines": [ + { + "bbox": [ + 105, + 379, + 505, + 392 + ], + "spans": [ + { + "bbox": [ + 105, + 379, + 505, + 392 + ], + "score": 1.0, + "content": "Eduardo Prez-Pellitero, Jordi Salvador, Javier Ruiz-Hidalgo, and Bodo Rosenhahn. Manifold span", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 116, + 390, + 504, + 403 + ], + "spans": [ + { + "bbox": [ + 116, + 390, + 504, + 403 + ], + "score": 1.0, + "content": "reduction for super resolution. In IEEE Conference on Computer Vision and Pattern Recognition", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 116, + 401, + 201, + 414 + ], + "spans": [ + { + "bbox": [ + 116, + 401, + 201, + 414 + ], + "score": 1.0, + "content": "(CVPR)., June 2016.", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 23, + "bbox_fs": [ + 105, + 379, + 505, + 414 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 421, + 505, + 466 + ], + "lines": [ + { + "bbox": [ + 105, + 420, + 506, + 435 + ], + "spans": [ + { + "bbox": [ + 105, + 420, + 506, + 435 + ], + "score": 1.0, + "content": "Danilo Jimenez Rezende and Shakir Mohamed. Variational inference with normalizing flows.", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 115, + 433, + 504, + 444 + ], + "spans": [ + { + "bbox": [ + 115, + 433, + 504, + 444 + ], + "score": 1.0, + "content": "In Proceedings of the 32nd International Conference on Machine Learning, ICML 2015, Lille,", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 115, + 444, + 504, + 456 + ], + "spans": [ + { + "bbox": [ + 115, + 444, + 504, + 456 + ], + "score": 1.0, + "content": "France, 6-11 July 2015, pp. 1530–1538, 2015. URL http://proceedings.mlr.press/", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 117, + 455, + 229, + 466 + ], + "spans": [ + { + "bbox": [ + 117, + 455, + 229, + 466 + ], + "score": 1.0, + "content": "v37/rezende15.html.", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 26.5, + "bbox_fs": [ + 105, + 420, + 506, + 466 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 474, + 505, + 508 + ], + "lines": [ + { + "bbox": [ + 106, + 474, + 505, + 488 + ], + "spans": [ + { + "bbox": [ + 106, + 474, + 505, + 488 + ], + "score": 1.0, + "content": "Elisa Ricci and Renzo Perfetti. Retinal blood vessel segmentation using line operators and support", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 116, + 486, + 504, + 498 + ], + "spans": [ + { + "bbox": [ + 116, + 486, + 504, + 498 + ], + "score": 1.0, + "content": "vector classification. IEEE Trans. Med. Imaging, 26(10):1357–1365, 2007. doi: 10.1109/TMI.", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 115, + 496, + 435, + 509 + ], + "spans": [ + { + "bbox": [ + 115, + 496, + 435, + 509 + ], + "score": 1.0, + "content": "2007.898551. URL https://doi.org/10.1109/TMI.2007.898551.", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 30, + "bbox_fs": [ + 106, + 474, + 505, + 509 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 517, + 505, + 573 + ], + "lines": [ + { + "bbox": [ + 106, + 516, + 505, + 529 + ], + "spans": [ + { + "bbox": [ + 106, + 516, + 505, + 529 + ], + "score": 1.0, + "content": "M. S. M. Sajjadi, B. Scholkopf, and M. Hirsch. EnhanceNet: Single image super- ¨", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 115, + 527, + 505, + 541 + ], + "spans": [ + { + "bbox": [ + 115, + 527, + 505, + 541 + ], + "score": 1.0, + "content": "resolution through automated texture synthesis. In Proceedings IEEE International Con-", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 114, + 539, + 505, + 552 + ], + "spans": [ + { + "bbox": [ + 114, + 539, + 505, + 552 + ], + "score": 1.0, + "content": "ference on Computer Vision (ICCV), pp. 4501–4510, Piscataway, NJ, USA, October 2017a.", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 115, + 550, + 505, + 563 + ], + "spans": [ + { + "bbox": [ + 115, + 550, + 505, + 563 + ], + "score": 1.0, + "content": "IEEE. URL http://openaccess.thecvf.com/content_ICCV_2017/papers/", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 116, + 561, + 426, + 573 + ], + "spans": [ + { + "bbox": [ + 116, + 561, + 426, + 573 + ], + "score": 1.0, + "content": "Sajjadi_EnhanceNet_Single_Image_ICCV_2017_paper.pdf.", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 34, + "bbox_fs": [ + 106, + 516, + 505, + 573 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 581, + 505, + 637 + ], + "lines": [ + { + "bbox": [ + 106, + 581, + 505, + 594 + ], + "spans": [ + { + "bbox": [ + 106, + 581, + 336, + 593 + ], + "score": 1.0, + "content": "M. S. M. Sajjadi, B. Scholkopf, and M. Hirsch.¨", + "type": "text" + }, + { + "bbox": [ + 348, + 581, + 505, + 594 + ], + "score": 1.0, + "content": "EnhanceNet: Single image super-", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 116, + 592, + 505, + 605 + ], + "spans": [ + { + "bbox": [ + 116, + 592, + 505, + 605 + ], + "score": 1.0, + "content": "resolution through automated texture synthesis. In Proceedings IEEE International Confer-", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 115, + 603, + 505, + 615 + ], + "spans": [ + { + "bbox": [ + 115, + 603, + 505, + 615 + ], + "score": 1.0, + "content": "ence on Computer Vision (ICCV), pp. 4501–4510, Piscataway, NJ, USA, October 2017b.", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 115, + 613, + 505, + 627 + ], + "spans": [ + { + "bbox": [ + 115, + 613, + 505, + 627 + ], + "score": 1.0, + "content": "IEEE. URL http://openaccess.thecvf.com/content_ICCV_2017/papers/", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 115, + 624, + 426, + 637 + ], + "spans": [ + { + "bbox": [ + 115, + 624, + 426, + 637 + ], + "score": 1.0, + "content": "Sajjadi_EnhanceNet_Single_Image_ICCV_2017_paper.pdf.", + "type": "text" + } + ], + "index": 41 + } + ], + "index": 39, + "bbox_fs": [ + 106, + 581, + 505, + 637 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 645, + 504, + 679 + ], + "lines": [ + { + "bbox": [ + 106, + 645, + 505, + 658 + ], + "spans": [ + { + "bbox": [ + 106, + 645, + 426, + 658 + ], + "score": 1.0, + "content": "Tim Salimans, Andrej Karpathy, Xi Chen, and Diederik P. Kingma. Pixelcnn", + "type": "text" + }, + { + "bbox": [ + 427, + 647, + 439, + 656 + ], + "score": 0.77, + "content": "^ { + + }", + "type": "inline_equation" + }, + { + "bbox": [ + 439, + 645, + 505, + 658 + ], + "score": 1.0, + "content": ": Improving the", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 116, + 657, + 505, + 668 + ], + "spans": [ + { + "bbox": [ + 116, + 657, + 505, + 668 + ], + "score": 1.0, + "content": "pixelcnn with discretized logistic mixture likelihood and other modifications. In 5th International", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 117, + 667, + 359, + 681 + ], + "spans": [ + { + "bbox": [ + 117, + 667, + 359, + 681 + ], + "score": 1.0, + "content": "Conference on Learning Representations, ICLR 2017, 2017.", + "type": "text" + } + ], + "index": 44 + } + ], + "index": 43, + "bbox_fs": [ + 106, + 645, + 505, + 681 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 687, + 504, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 687, + 504, + 699 + ], + "spans": [ + { + "bbox": [ + 106, + 687, + 504, + 699 + ], + "score": 1.0, + "content": "Karen Simonyan and Andrew Zisserman. Very deep convolutional networks for large-scale im-", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 115, + 699, + 505, + 711 + ], + "spans": [ + { + "bbox": [ + 115, + 699, + 505, + 711 + ], + "score": 1.0, + "content": "age recognition. In 3rd International Conference on Learning Representations, ICLR 2015,", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 115, + 709, + 504, + 723 + ], + "spans": [ + { + "bbox": [ + 115, + 709, + 504, + 723 + ], + "score": 1.0, + "content": "San Diego, CA, USA, May 7-9, 2015, Conference Track Proceedings, 2015. URL http:", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 117, + 721, + 272, + 732 + ], + "spans": [ + { + "bbox": [ + 117, + 721, + 272, + 732 + ], + "score": 1.0, + "content": "//arxiv.org/abs/1409.1556.", + "type": "text" + } + ], + "index": 48 + } + ], + "index": 46.5, + "bbox_fs": [ + 106, + 687, + 505, + 732 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 106, + 82, + 505, + 127 + ], + "lines": [ + { + "bbox": [ + 106, + 82, + 504, + 94 + ], + "spans": [ + { + "bbox": [ + 106, + 82, + 504, + 94 + ], + "score": 1.0, + "content": "Joao V. B. Soares, Jorge J. G. Leandro, Roberto M. Cesar, Herbert F. Jelinek, and Michael J. Cree.˜", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 115, + 93, + 505, + 106 + ], + "spans": [ + { + "bbox": [ + 115, + 93, + 505, + 106 + ], + "score": 1.0, + "content": "Retinal vessel segmentation using the 2-d gabor wavelet and supervised classification. IEEE", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 115, + 104, + 505, + 117 + ], + "spans": [ + { + "bbox": [ + 115, + 104, + 505, + 117 + ], + "score": 1.0, + "content": "Trans. Med. Imaging, 25(9):1214–1222, 2006. doi: 10.1109/TMI.2006.879967. URL https:", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 116, + 116, + 319, + 127 + ], + "spans": [ + { + "bbox": [ + 116, + 116, + 319, + 127 + ], + "score": 1.0, + "content": "//doi.org/10.1109/TMI.2006.879967.", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 1.5 + }, + { + "type": "text", + "bbox": [ + 106, + 135, + 505, + 180 + ], + "lines": [ + { + "bbox": [ + 105, + 136, + 505, + 147 + ], + "spans": [ + { + "bbox": [ + 105, + 136, + 505, + 147 + ], + "score": 1.0, + "content": "Joes Staal, Michael D. Abramoff, Meindert Niemeijer, Max A. Viergever, and Bram van Ginneken. `", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 115, + 147, + 505, + 160 + ], + "spans": [ + { + "bbox": [ + 115, + 147, + 505, + 160 + ], + "score": 1.0, + "content": "Ridge-based vessel segmentation in color images of the retina. IEEE Trans. Med. Imaging, 23", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 116, + 158, + 504, + 170 + ], + "spans": [ + { + "bbox": [ + 116, + 158, + 504, + 170 + ], + "score": 1.0, + "content": "(4):501–509, 2004. doi: 10.1109/TMI.2004.825627. URL https://doi.org/10.1109/", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 117, + 170, + 212, + 179 + ], + "spans": [ + { + "bbox": [ + 117, + 170, + 212, + 179 + ], + "score": 1.0, + "content": "TMI.2004.825627.", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 5.5 + }, + { + "type": "text", + "bbox": [ + 106, + 189, + 505, + 233 + ], + "lines": [ + { + "bbox": [ + 106, + 189, + 505, + 201 + ], + "spans": [ + { + "bbox": [ + 106, + 189, + 505, + 201 + ], + "score": 1.0, + "content": "Lucas Theis, Aaron van den Oord, and Matthias Bethge. A note on the evaluation of generative ¨", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 115, + 200, + 505, + 213 + ], + "spans": [ + { + "bbox": [ + 115, + 200, + 505, + 213 + ], + "score": 1.0, + "content": "models. In 4th International Conference on Learning Representations, ICLR 2016, San Juan,", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 115, + 211, + 505, + 224 + ], + "spans": [ + { + "bbox": [ + 115, + 211, + 505, + 224 + ], + "score": 1.0, + "content": "Puerto Rico, May 2-4, 2016, Conference Track Proceedings, 2016. URL http://arxiv.", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 116, + 222, + 230, + 233 + ], + "spans": [ + { + "bbox": [ + 116, + 222, + 230, + 233 + ], + "score": 1.0, + "content": "org/abs/1511.01844.", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 9.5 + }, + { + "type": "text", + "bbox": [ + 106, + 242, + 505, + 287 + ], + "lines": [ + { + "bbox": [ + 105, + 241, + 506, + 255 + ], + "spans": [ + { + "bbox": [ + 105, + 241, + 506, + 255 + ], + "score": 1.0, + "content": "Dustin Tran, Keyon Vafa, Kumar Krishna Agrawal, Laurent Dinh, and Ben Poole. Discrete flows:", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 116, + 254, + 506, + 266 + ], + "spans": [ + { + "bbox": [ + 116, + 254, + 506, + 266 + ], + "score": 1.0, + "content": "Invertible generative models of discrete data. In Deep Generative Models for Highly Structured", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 115, + 264, + 506, + 277 + ], + "spans": [ + { + "bbox": [ + 115, + 264, + 506, + 277 + ], + "score": 1.0, + "content": "Data, ICLR 2019 Workshop, New Orleans, Louisiana, United States, May 6, 2019, 2019. URL", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 116, + 276, + 373, + 288 + ], + "spans": [ + { + "bbox": [ + 116, + 276, + 302, + 288 + ], + "score": 1.0, + "content": "https://openreview.net/forum?id", + "type": "text" + }, + { + "bbox": [ + 302, + 277, + 309, + 285 + ], + "score": 0.43, + "content": "\\underline { { \\underline { { \\mathbf { \\Pi } } } } } =", + "type": "inline_equation" + }, + { + "bbox": [ + 309, + 276, + 373, + 288 + ], + "score": 1.0, + "content": "rJlo4UIt_E.", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 13.5 + }, + { + "type": "text", + "bbox": [ + 106, + 295, + 504, + 319 + ], + "lines": [ + { + "bbox": [ + 105, + 293, + 505, + 310 + ], + "spans": [ + { + "bbox": [ + 105, + 293, + 505, + 310 + ], + "score": 1.0, + "content": "Brian L Trippe and Richard E Turner. Conditional density estimation with bayesian normalising", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 116, + 307, + 389, + 318 + ], + "spans": [ + { + "bbox": [ + 116, + 307, + 389, + 318 + ], + "score": 1.0, + "content": "flows. 2018. URL https://arxiv.org/abs/1802.04908.", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 16.5 + }, + { + "type": "text", + "bbox": [ + 107, + 326, + 505, + 360 + ], + "lines": [ + { + "bbox": [ + 105, + 326, + 505, + 340 + ], + "spans": [ + { + "bbox": [ + 105, + 326, + 505, + 340 + ], + "score": 1.0, + "content": "Dmitry Ulyanov, Andrea Vedaldi, and Victor S. Lempitsky. Instance normalization: The missing", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 115, + 338, + 504, + 351 + ], + "spans": [ + { + "bbox": [ + 115, + 338, + 504, + 351 + ], + "score": 1.0, + "content": "ingredient for fast stylization. CoRR, abs/1607.08022, 2016. URL http://arxiv.org/", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 117, + 349, + 205, + 360 + ], + "spans": [ + { + "bbox": [ + 117, + 349, + 205, + 360 + ], + "score": 1.0, + "content": "abs/1607.08022.", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 19 + }, + { + "type": "text", + "bbox": [ + 107, + 369, + 505, + 414 + ], + "lines": [ + { + "bbox": [ + 105, + 368, + 505, + 382 + ], + "spans": [ + { + "bbox": [ + 105, + 368, + 505, + 382 + ], + "score": 1.0, + "content": "Rianne van den Berg, Leonard Hasenclever, Jakub M. Tomczak, and Max Welling. Sylvester nor-", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 116, + 380, + 505, + 392 + ], + "spans": [ + { + "bbox": [ + 116, + 380, + 505, + 392 + ], + "score": 1.0, + "content": "malizing flows for variational inference. In Proceedings of the Thirty-Fourth Conference on Un-", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 114, + 390, + 506, + 405 + ], + "spans": [ + { + "bbox": [ + 114, + 390, + 506, + 405 + ], + "score": 1.0, + "content": "certainty in Artificial Intelligence, UAI 2018, Monterey, California, USA, August 6-10, 2018, pp.", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 116, + 402, + 181, + 414 + ], + "spans": [ + { + "bbox": [ + 116, + 402, + 181, + 414 + ], + "score": 1.0, + "content": "393–402, 2018.", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 22.5 + }, + { + "type": "text", + "bbox": [ + 107, + 422, + 505, + 467 + ], + "lines": [ + { + "bbox": [ + 106, + 422, + 505, + 435 + ], + "spans": [ + { + "bbox": [ + 106, + 422, + 505, + 435 + ], + "score": 1.0, + "content": "Aaron van den Oord, Nal Kalchbrenner, Lasse Espeholt, Koray Kavukcuoglu, Oriol Vinyals, and ¨", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 115, + 433, + 505, + 446 + ], + "spans": [ + { + "bbox": [ + 115, + 433, + 505, + 446 + ], + "score": 1.0, + "content": "Alex Graves. Conditional image generation with pixelcnn decoders. In Advances in Neural In-", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 115, + 444, + 505, + 457 + ], + "spans": [ + { + "bbox": [ + 115, + 444, + 505, + 457 + ], + "score": 1.0, + "content": "formation Processing Systems 29: Annual Conference on Neural Information Processing Systems", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 115, + 456, + 231, + 468 + ], + "spans": [ + { + "bbox": [ + 115, + 456, + 231, + 468 + ], + "score": 1.0, + "content": "2016, pp. 4790–4798, 2016.", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 26.5 + }, + { + "type": "text", + "bbox": [ + 105, + 475, + 505, + 499 + ], + "lines": [ + { + "bbox": [ + 106, + 475, + 505, + 488 + ], + "spans": [ + { + "bbox": [ + 106, + 475, + 505, + 488 + ], + "score": 1.0, + "content": "Aaron Van Oord, Nal Kalchbrenner, and Koray Kavukcuoglu. Pixel recurrent neural networks. In", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 115, + 487, + 401, + 499 + ], + "spans": [ + { + "bbox": [ + 115, + 487, + 401, + 499 + ], + "score": 1.0, + "content": "International Conference on Machine Learning, pp. 1747–1756, 2016.", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 29.5 + }, + { + "type": "text", + "bbox": [ + 107, + 507, + 504, + 541 + ], + "lines": [ + { + "bbox": [ + 105, + 507, + 506, + 520 + ], + "spans": [ + { + "bbox": [ + 105, + 507, + 506, + 520 + ], + "score": 1.0, + "content": "Thang Vu, Tung Luu, and Chang Yoo. Perception-Enhanced Image Super-Resolution via Relativistic", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 116, + 519, + 506, + 531 + ], + "spans": [ + { + "bbox": [ + 116, + 519, + 506, + 531 + ], + "score": 1.0, + "content": "Generative Adversarial Networks: Munich, Germany, September 8-14, 2018, Proceedings, Part", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 116, + 529, + 474, + 541 + ], + "spans": [ + { + "bbox": [ + 116, + 529, + 474, + 541 + ], + "score": 1.0, + "content": "V, pp. 98–113. 01 2019. ISBN 978-3-030-11020-8. doi: 10.1007/978-3-030-11021-5 7.", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 32 + }, + { + "type": "text", + "bbox": [ + 107, + 549, + 505, + 583 + ], + "lines": [ + { + "bbox": [ + 105, + 548, + 505, + 563 + ], + "spans": [ + { + "bbox": [ + 105, + 548, + 505, + 563 + ], + "score": 1.0, + "content": "Xintao Wang, Ke Yu, Shixiang Wu, Jinjin Gu, Yihao Liu, Chao Dong, Chen Change Loy, Yu Qiao,", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 116, + 560, + 505, + 573 + ], + "spans": [ + { + "bbox": [ + 116, + 560, + 505, + 573 + ], + "score": 1.0, + "content": "and Xiaoou Tang. ESRGAN: enhanced super-resolution generative adversarial networks. CoRR,", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 115, + 571, + 424, + 584 + ], + "spans": [ + { + "bbox": [ + 115, + 571, + 424, + 584 + ], + "score": 1.0, + "content": "abs/1809.00219, 2018. URL http://arxiv.org/abs/1809.00219.", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 35 + }, + { + "type": "text", + "bbox": [ + 106, + 591, + 505, + 625 + ], + "lines": [ + { + "bbox": [ + 105, + 591, + 505, + 605 + ], + "spans": [ + { + "bbox": [ + 105, + 591, + 505, + 605 + ], + "score": 1.0, + "content": "Zhou Wang, Alan Bovik, Hamid Sheikh, and Eero Simoncelli. Image quality assessment: From", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 116, + 603, + 505, + 615 + ], + "spans": [ + { + "bbox": [ + 116, + 603, + 505, + 615 + ], + "score": 1.0, + "content": "error visibility to structural similarity. Image Processing, IEEE Transactions on, 13:600 – 612,", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 116, + 613, + 282, + 625 + ], + "spans": [ + { + "bbox": [ + 116, + 613, + 282, + 625 + ], + "score": 1.0, + "content": "05 2004. doi: 10.1109/TIP.2003.819861.", + "type": "text" + } + ], + "index": 39 + } + ], + "index": 38 + }, + { + "type": "text", + "bbox": [ + 106, + 634, + 505, + 678 + ], + "lines": [ + { + "bbox": [ + 105, + 634, + 505, + 647 + ], + "spans": [ + { + "bbox": [ + 105, + 634, + 505, + 647 + ], + "score": 1.0, + "content": "Saining Xie and Zhuowen Tu. Holistically-nested edge detection. In 2015 IEEE International Con-", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 114, + 646, + 505, + 658 + ], + "spans": [ + { + "bbox": [ + 114, + 646, + 505, + 658 + ], + "score": 1.0, + "content": "ference on Computer Vision, ICCV 2015, Santiago, Chile, December 7-13, 2015, pp. 1395–1403,", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 115, + 656, + 504, + 668 + ], + "spans": [ + { + "bbox": [ + 115, + 656, + 504, + 668 + ], + "score": 1.0, + "content": "2015. doi: 10.1109/ICCV.2015.164. URL https://doi.org/10.1109/ICCV.2015.", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 115, + 668, + 142, + 679 + ], + "spans": [ + { + "bbox": [ + 115, + 668, + 142, + 679 + ], + "score": 1.0, + "content": "164.", + "type": "text" + } + ], + "index": 43 + } + ], + "index": 41.5 + }, + { + "type": "text", + "bbox": [ + 107, + 687, + 505, + 731 + ], + "lines": [ + { + "bbox": [ + 106, + 687, + 506, + 700 + ], + "spans": [ + { + "bbox": [ + 106, + 687, + 506, + 700 + ], + "score": 1.0, + "content": "Yuan Yuan, Siyuan Liu, Jiawei Zhang, Yongbing Zhang, Chao Dong, and Liang Lin. Unsupervised", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 115, + 698, + 506, + 711 + ], + "spans": [ + { + "bbox": [ + 115, + 698, + 506, + 711 + ], + "score": 1.0, + "content": "image super-resolution using cycle-in-cycle generative adversarial networks. 2018 IEEE/CVF", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 115, + 709, + 505, + 723 + ], + "spans": [ + { + "bbox": [ + 115, + 709, + 505, + 723 + ], + "score": 1.0, + "content": "Conference on Computer Vision and Pattern Recognition Workshops (CVPRW), pp. 814–81409,", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 115, + 720, + 142, + 732 + ], + "spans": [ + { + "bbox": [ + 115, + 720, + 142, + 732 + ], + "score": 1.0, + "content": "2018.", + "type": "text" + } + ], + "index": 47 + } + ], + "index": 45.5 + } + ], + "page_idx": 12, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 27, + 308, + 37 + ], + "lines": [ + { + "bbox": [ + 107, + 26, + 308, + 38 + ], + "spans": [ + { + "bbox": [ + 107, + 26, + 308, + 38 + ], + "score": 1.0, + "content": "Under review as a conference paper at ICLR 2020", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 300, + 751, + 311, + 760 + ], + "lines": [ + { + "bbox": [ + 299, + 750, + 312, + 764 + ], + "spans": [ + { + "bbox": [ + 299, + 750, + 312, + 764 + ], + "score": 1.0, + "content": "13", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 106, + 82, + 505, + 127 + ], + "lines": [ + { + "bbox": [ + 106, + 82, + 504, + 94 + ], + "spans": [ + { + "bbox": [ + 106, + 82, + 504, + 94 + ], + "score": 1.0, + "content": "Joao V. B. Soares, Jorge J. G. Leandro, Roberto M. Cesar, Herbert F. Jelinek, and Michael J. Cree.˜", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 115, + 93, + 505, + 106 + ], + "spans": [ + { + "bbox": [ + 115, + 93, + 505, + 106 + ], + "score": 1.0, + "content": "Retinal vessel segmentation using the 2-d gabor wavelet and supervised classification. IEEE", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 115, + 104, + 505, + 117 + ], + "spans": [ + { + "bbox": [ + 115, + 104, + 505, + 117 + ], + "score": 1.0, + "content": "Trans. Med. Imaging, 25(9):1214–1222, 2006. doi: 10.1109/TMI.2006.879967. URL https:", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 116, + 116, + 319, + 127 + ], + "spans": [ + { + "bbox": [ + 116, + 116, + 319, + 127 + ], + "score": 1.0, + "content": "//doi.org/10.1109/TMI.2006.879967.", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 1.5, + "bbox_fs": [ + 106, + 82, + 505, + 127 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 135, + 505, + 180 + ], + "lines": [ + { + "bbox": [ + 105, + 136, + 505, + 147 + ], + "spans": [ + { + "bbox": [ + 105, + 136, + 505, + 147 + ], + "score": 1.0, + "content": "Joes Staal, Michael D. Abramoff, Meindert Niemeijer, Max A. Viergever, and Bram van Ginneken. `", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 115, + 147, + 505, + 160 + ], + "spans": [ + { + "bbox": [ + 115, + 147, + 505, + 160 + ], + "score": 1.0, + "content": "Ridge-based vessel segmentation in color images of the retina. IEEE Trans. Med. Imaging, 23", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 116, + 158, + 504, + 170 + ], + "spans": [ + { + "bbox": [ + 116, + 158, + 504, + 170 + ], + "score": 1.0, + "content": "(4):501–509, 2004. doi: 10.1109/TMI.2004.825627. URL https://doi.org/10.1109/", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 117, + 170, + 212, + 179 + ], + "spans": [ + { + "bbox": [ + 117, + 170, + 212, + 179 + ], + "score": 1.0, + "content": "TMI.2004.825627.", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 5.5, + "bbox_fs": [ + 105, + 136, + 505, + 179 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 189, + 505, + 233 + ], + "lines": [ + { + "bbox": [ + 106, + 189, + 505, + 201 + ], + "spans": [ + { + "bbox": [ + 106, + 189, + 505, + 201 + ], + "score": 1.0, + "content": "Lucas Theis, Aaron van den Oord, and Matthias Bethge. A note on the evaluation of generative ¨", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 115, + 200, + 505, + 213 + ], + "spans": [ + { + "bbox": [ + 115, + 200, + 505, + 213 + ], + "score": 1.0, + "content": "models. In 4th International Conference on Learning Representations, ICLR 2016, San Juan,", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 115, + 211, + 505, + 224 + ], + "spans": [ + { + "bbox": [ + 115, + 211, + 505, + 224 + ], + "score": 1.0, + "content": "Puerto Rico, May 2-4, 2016, Conference Track Proceedings, 2016. URL http://arxiv.", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 116, + 222, + 230, + 233 + ], + "spans": [ + { + "bbox": [ + 116, + 222, + 230, + 233 + ], + "score": 1.0, + "content": "org/abs/1511.01844.", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 9.5, + "bbox_fs": [ + 106, + 189, + 505, + 233 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 242, + 505, + 287 + ], + "lines": [ + { + "bbox": [ + 105, + 241, + 506, + 255 + ], + "spans": [ + { + "bbox": [ + 105, + 241, + 506, + 255 + ], + "score": 1.0, + "content": "Dustin Tran, Keyon Vafa, Kumar Krishna Agrawal, Laurent Dinh, and Ben Poole. Discrete flows:", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 116, + 254, + 506, + 266 + ], + "spans": [ + { + "bbox": [ + 116, + 254, + 506, + 266 + ], + "score": 1.0, + "content": "Invertible generative models of discrete data. In Deep Generative Models for Highly Structured", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 115, + 264, + 506, + 277 + ], + "spans": [ + { + "bbox": [ + 115, + 264, + 506, + 277 + ], + "score": 1.0, + "content": "Data, ICLR 2019 Workshop, New Orleans, Louisiana, United States, May 6, 2019, 2019. URL", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 116, + 276, + 373, + 288 + ], + "spans": [ + { + "bbox": [ + 116, + 276, + 302, + 288 + ], + "score": 1.0, + "content": "https://openreview.net/forum?id", + "type": "text" + }, + { + "bbox": [ + 302, + 277, + 309, + 285 + ], + "score": 0.43, + "content": "\\underline { { \\underline { { \\mathbf { \\Pi } } } } } =", + "type": "inline_equation" + }, + { + "bbox": [ + 309, + 276, + 373, + 288 + ], + "score": 1.0, + "content": "rJlo4UIt_E.", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 13.5, + "bbox_fs": [ + 105, + 241, + 506, + 288 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 295, + 504, + 319 + ], + "lines": [ + { + "bbox": [ + 105, + 293, + 505, + 310 + ], + "spans": [ + { + "bbox": [ + 105, + 293, + 505, + 310 + ], + "score": 1.0, + "content": "Brian L Trippe and Richard E Turner. Conditional density estimation with bayesian normalising", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 116, + 307, + 389, + 318 + ], + "spans": [ + { + "bbox": [ + 116, + 307, + 389, + 318 + ], + "score": 1.0, + "content": "flows. 2018. URL https://arxiv.org/abs/1802.04908.", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 16.5, + "bbox_fs": [ + 105, + 293, + 505, + 318 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 326, + 505, + 360 + ], + "lines": [ + { + "bbox": [ + 105, + 326, + 505, + 340 + ], + "spans": [ + { + "bbox": [ + 105, + 326, + 505, + 340 + ], + "score": 1.0, + "content": "Dmitry Ulyanov, Andrea Vedaldi, and Victor S. Lempitsky. Instance normalization: The missing", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 115, + 338, + 504, + 351 + ], + "spans": [ + { + "bbox": [ + 115, + 338, + 504, + 351 + ], + "score": 1.0, + "content": "ingredient for fast stylization. CoRR, abs/1607.08022, 2016. URL http://arxiv.org/", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 117, + 349, + 205, + 360 + ], + "spans": [ + { + "bbox": [ + 117, + 349, + 205, + 360 + ], + "score": 1.0, + "content": "abs/1607.08022.", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 19, + "bbox_fs": [ + 105, + 326, + 505, + 360 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 369, + 505, + 414 + ], + "lines": [ + { + "bbox": [ + 105, + 368, + 505, + 382 + ], + "spans": [ + { + "bbox": [ + 105, + 368, + 505, + 382 + ], + "score": 1.0, + "content": "Rianne van den Berg, Leonard Hasenclever, Jakub M. Tomczak, and Max Welling. Sylvester nor-", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 116, + 380, + 505, + 392 + ], + "spans": [ + { + "bbox": [ + 116, + 380, + 505, + 392 + ], + "score": 1.0, + "content": "malizing flows for variational inference. In Proceedings of the Thirty-Fourth Conference on Un-", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 114, + 390, + 506, + 405 + ], + "spans": [ + { + "bbox": [ + 114, + 390, + 506, + 405 + ], + "score": 1.0, + "content": "certainty in Artificial Intelligence, UAI 2018, Monterey, California, USA, August 6-10, 2018, pp.", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 116, + 402, + 181, + 414 + ], + "spans": [ + { + "bbox": [ + 116, + 402, + 181, + 414 + ], + "score": 1.0, + "content": "393–402, 2018.", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 22.5, + "bbox_fs": [ + 105, + 368, + 506, + 414 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 422, + 505, + 467 + ], + "lines": [ + { + "bbox": [ + 106, + 422, + 505, + 435 + ], + "spans": [ + { + "bbox": [ + 106, + 422, + 505, + 435 + ], + "score": 1.0, + "content": "Aaron van den Oord, Nal Kalchbrenner, Lasse Espeholt, Koray Kavukcuoglu, Oriol Vinyals, and ¨", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 115, + 433, + 505, + 446 + ], + "spans": [ + { + "bbox": [ + 115, + 433, + 505, + 446 + ], + "score": 1.0, + "content": "Alex Graves. Conditional image generation with pixelcnn decoders. In Advances in Neural In-", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 115, + 444, + 505, + 457 + ], + "spans": [ + { + "bbox": [ + 115, + 444, + 505, + 457 + ], + "score": 1.0, + "content": "formation Processing Systems 29: Annual Conference on Neural Information Processing Systems", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 115, + 456, + 231, + 468 + ], + "spans": [ + { + "bbox": [ + 115, + 456, + 231, + 468 + ], + "score": 1.0, + "content": "2016, pp. 4790–4798, 2016.", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 26.5, + "bbox_fs": [ + 106, + 422, + 505, + 468 + ] + }, + { + "type": "text", + "bbox": [ + 105, + 475, + 505, + 499 + ], + "lines": [ + { + "bbox": [ + 106, + 475, + 505, + 488 + ], + "spans": [ + { + "bbox": [ + 106, + 475, + 505, + 488 + ], + "score": 1.0, + "content": "Aaron Van Oord, Nal Kalchbrenner, and Koray Kavukcuoglu. Pixel recurrent neural networks. In", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 115, + 487, + 401, + 499 + ], + "spans": [ + { + "bbox": [ + 115, + 487, + 401, + 499 + ], + "score": 1.0, + "content": "International Conference on Machine Learning, pp. 1747–1756, 2016.", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 29.5, + "bbox_fs": [ + 106, + 475, + 505, + 499 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 507, + 504, + 541 + ], + "lines": [ + { + "bbox": [ + 105, + 507, + 506, + 520 + ], + "spans": [ + { + "bbox": [ + 105, + 507, + 506, + 520 + ], + "score": 1.0, + "content": "Thang Vu, Tung Luu, and Chang Yoo. Perception-Enhanced Image Super-Resolution via Relativistic", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 116, + 519, + 506, + 531 + ], + "spans": [ + { + "bbox": [ + 116, + 519, + 506, + 531 + ], + "score": 1.0, + "content": "Generative Adversarial Networks: Munich, Germany, September 8-14, 2018, Proceedings, Part", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 116, + 529, + 474, + 541 + ], + "spans": [ + { + "bbox": [ + 116, + 529, + 474, + 541 + ], + "score": 1.0, + "content": "V, pp. 98–113. 01 2019. ISBN 978-3-030-11020-8. doi: 10.1007/978-3-030-11021-5 7.", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 32, + "bbox_fs": [ + 105, + 507, + 506, + 541 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 549, + 505, + 583 + ], + "lines": [ + { + "bbox": [ + 105, + 548, + 505, + 563 + ], + "spans": [ + { + "bbox": [ + 105, + 548, + 505, + 563 + ], + "score": 1.0, + "content": "Xintao Wang, Ke Yu, Shixiang Wu, Jinjin Gu, Yihao Liu, Chao Dong, Chen Change Loy, Yu Qiao,", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 116, + 560, + 505, + 573 + ], + "spans": [ + { + "bbox": [ + 116, + 560, + 505, + 573 + ], + "score": 1.0, + "content": "and Xiaoou Tang. ESRGAN: enhanced super-resolution generative adversarial networks. CoRR,", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 115, + 571, + 424, + 584 + ], + "spans": [ + { + "bbox": [ + 115, + 571, + 424, + 584 + ], + "score": 1.0, + "content": "abs/1809.00219, 2018. URL http://arxiv.org/abs/1809.00219.", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 35, + "bbox_fs": [ + 105, + 548, + 505, + 584 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 591, + 505, + 625 + ], + "lines": [ + { + "bbox": [ + 105, + 591, + 505, + 605 + ], + "spans": [ + { + "bbox": [ + 105, + 591, + 505, + 605 + ], + "score": 1.0, + "content": "Zhou Wang, Alan Bovik, Hamid Sheikh, and Eero Simoncelli. Image quality assessment: From", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 116, + 603, + 505, + 615 + ], + "spans": [ + { + "bbox": [ + 116, + 603, + 505, + 615 + ], + "score": 1.0, + "content": "error visibility to structural similarity. Image Processing, IEEE Transactions on, 13:600 – 612,", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 116, + 613, + 282, + 625 + ], + "spans": [ + { + "bbox": [ + 116, + 613, + 282, + 625 + ], + "score": 1.0, + "content": "05 2004. doi: 10.1109/TIP.2003.819861.", + "type": "text" + } + ], + "index": 39 + } + ], + "index": 38, + "bbox_fs": [ + 105, + 591, + 505, + 625 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 634, + 505, + 678 + ], + "lines": [ + { + "bbox": [ + 105, + 634, + 505, + 647 + ], + "spans": [ + { + "bbox": [ + 105, + 634, + 505, + 647 + ], + "score": 1.0, + "content": "Saining Xie and Zhuowen Tu. Holistically-nested edge detection. In 2015 IEEE International Con-", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 114, + 646, + 505, + 658 + ], + "spans": [ + { + "bbox": [ + 114, + 646, + 505, + 658 + ], + "score": 1.0, + "content": "ference on Computer Vision, ICCV 2015, Santiago, Chile, December 7-13, 2015, pp. 1395–1403,", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 115, + 656, + 504, + 668 + ], + "spans": [ + { + "bbox": [ + 115, + 656, + 504, + 668 + ], + "score": 1.0, + "content": "2015. doi: 10.1109/ICCV.2015.164. URL https://doi.org/10.1109/ICCV.2015.", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 115, + 668, + 142, + 679 + ], + "spans": [ + { + "bbox": [ + 115, + 668, + 142, + 679 + ], + "score": 1.0, + "content": "164.", + "type": "text" + } + ], + "index": 43 + } + ], + "index": 41.5, + "bbox_fs": [ + 105, + 634, + 505, + 679 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 687, + 505, + 731 + ], + "lines": [ + { + "bbox": [ + 106, + 687, + 506, + 700 + ], + "spans": [ + { + "bbox": [ + 106, + 687, + 506, + 700 + ], + "score": 1.0, + "content": "Yuan Yuan, Siyuan Liu, Jiawei Zhang, Yongbing Zhang, Chao Dong, and Liang Lin. Unsupervised", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 115, + 698, + 506, + 711 + ], + "spans": [ + { + "bbox": [ + 115, + 698, + 506, + 711 + ], + "score": 1.0, + "content": "image super-resolution using cycle-in-cycle generative adversarial networks. 2018 IEEE/CVF", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 115, + 709, + 505, + 723 + ], + "spans": [ + { + "bbox": [ + 115, + 709, + 505, + 723 + ], + "score": 1.0, + "content": "Conference on Computer Vision and Pattern Recognition Workshops (CVPRW), pp. 814–81409,", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 115, + 720, + 142, + 732 + ], + "spans": [ + { + "bbox": [ + 115, + 720, + 142, + 732 + ], + "score": 1.0, + "content": "2018.", + "type": "text" + } + ], + "index": 47 + } + ], + "index": 45.5, + "bbox_fs": [ + 106, + 687, + 506, + 732 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 107, + 82, + 505, + 137 + ], + "lines": [ + { + "bbox": [ + 105, + 82, + 505, + 96 + ], + "spans": [ + { + "bbox": [ + 105, + 82, + 505, + 96 + ], + "score": 1.0, + "content": "Roman Zeyde, Michael Elad, and Matan Protter. On single image scale-up using sparse-", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 115, + 93, + 506, + 107 + ], + "spans": [ + { + "bbox": [ + 115, + 93, + 506, + 107 + ], + "score": 1.0, + "content": "representations. In Proceedings of the 7th International Conference on Curves and Surfaces, pp.", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 116, + 104, + 505, + 116 + ], + "spans": [ + { + "bbox": [ + 116, + 104, + 505, + 116 + ], + "score": 1.0, + "content": "711–730, Berlin, Heidelberg, 2012. Springer-Verlag. ISBN 978-3-642-27412-1. doi: 10.1007/", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 114, + 113, + 506, + 129 + ], + "spans": [ + { + "bbox": [ + 114, + 113, + 506, + 129 + ], + "score": 1.0, + "content": "978-3-642-27413-8 47. URL https://doi.org/10.1007/978-3-642-27413-8_", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 115, + 126, + 135, + 139 + ], + "spans": [ + { + "bbox": [ + 115, + 126, + 135, + 139 + ], + "score": 1.0, + "content": "47.", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 2 + } + ], + "page_idx": 13, + "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, + 308, + 37 + ], + "lines": [ + { + "bbox": [ + 107, + 26, + 308, + 38 + ], + "spans": [ + { + "bbox": [ + 107, + 26, + 308, + 38 + ], + "score": 1.0, + "content": "Under review as a conference paper at ICLR 2020", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 107, + 82, + 505, + 137 + ], + "lines": [ + { + "bbox": [ + 105, + 82, + 505, + 96 + ], + "spans": [ + { + "bbox": [ + 105, + 82, + 505, + 96 + ], + "score": 1.0, + "content": "Roman Zeyde, Michael Elad, and Matan Protter. On single image scale-up using sparse-", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 115, + 93, + 506, + 107 + ], + "spans": [ + { + "bbox": [ + 115, + 93, + 506, + 107 + ], + "score": 1.0, + "content": "representations. In Proceedings of the 7th International Conference on Curves and Surfaces, pp.", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 116, + 104, + 505, + 116 + ], + "spans": [ + { + "bbox": [ + 116, + 104, + 505, + 116 + ], + "score": 1.0, + "content": "711–730, Berlin, Heidelberg, 2012. Springer-Verlag. ISBN 978-3-642-27412-1. doi: 10.1007/", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 114, + 113, + 506, + 129 + ], + "spans": [ + { + "bbox": [ + 114, + 113, + 506, + 129 + ], + "score": 1.0, + "content": "978-3-642-27413-8 47. URL https://doi.org/10.1007/978-3-642-27413-8_", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 115, + 126, + 135, + 139 + ], + "spans": [ + { + "bbox": [ + 115, + 126, + 135, + 139 + ], + "score": 1.0, + "content": "47.", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 2, + "bbox_fs": [ + 105, + 82, + 506, + 139 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "title", + "bbox": [ + 108, + 81, + 217, + 94 + ], + "lines": [ + { + "bbox": [ + 106, + 80, + 218, + 96 + ], + "spans": [ + { + "bbox": [ + 106, + 80, + 218, + 96 + ], + "score": 1.0, + "content": "A ARCHITECTURES", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "text", + "bbox": [ + 107, + 106, + 505, + 140 + ], + "lines": [ + { + "bbox": [ + 105, + 106, + 505, + 118 + ], + "spans": [ + { + "bbox": [ + 105, + 106, + 505, + 118 + ], + "score": 1.0, + "content": "This section describes architecture and optimization details of the conditional normalizing flow net-", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 106, + 117, + 505, + 129 + ], + "spans": [ + { + "bbox": [ + 106, + 117, + 505, + 129 + ], + "score": 1.0, + "content": "work, low-resolution image feature extractor, and shallow convolutional neural network in the con-", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 106, + 127, + 206, + 141 + ], + "spans": [ + { + "bbox": [ + 106, + 127, + 206, + 141 + ], + "score": 1.0, + "content": "ditional coupling layers.", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 2 + }, + { + "type": "text", + "bbox": [ + 107, + 145, + 505, + 179 + ], + "lines": [ + { + "bbox": [ + 106, + 145, + 505, + 158 + ], + "spans": [ + { + "bbox": [ + 106, + 145, + 505, + 158 + ], + "score": 1.0, + "content": "The conditional coupling layer is shown schematically in Figure 6. This shows that conditioned", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 106, + 157, + 505, + 168 + ], + "spans": [ + { + "bbox": [ + 106, + 157, + 155, + 168 + ], + "score": 1.0, + "content": "on an input", + "type": "text" + }, + { + "bbox": [ + 155, + 158, + 163, + 166 + ], + "score": 0.34, + "content": "\\mathbf { x }", + "type": "inline_equation" + }, + { + "bbox": [ + 163, + 157, + 505, + 168 + ], + "score": 1.0, + "content": ", we are able to build a relatively straight-forward invertible mapping between latent", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 167, + 450, + 180 + ], + "spans": [ + { + "bbox": [ + 105, + 167, + 169, + 180 + ], + "score": 1.0, + "content": "representations", + "type": "text" + }, + { + "bbox": [ + 169, + 169, + 176, + 177 + ], + "score": 0.64, + "content": "\\mathbf { z }", + "type": "inline_equation" + }, + { + "bbox": [ + 176, + 167, + 194, + 180 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 194, + 169, + 201, + 178 + ], + "score": 0.42, + "content": "\\mathbf { y }", + "type": "inline_equation" + }, + { + "bbox": [ + 201, + 167, + 450, + 180 + ], + "score": 1.0, + "content": ", which have been partitioned into vectors of equal dimension.", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 5 + }, + { + "type": "image", + "bbox": [ + 154, + 187, + 457, + 249 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 154, + 187, + 457, + 249 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 154, + 187, + 457, + 249 + ], + "spans": [ + { + "bbox": [ + 154, + 187, + 457, + 249 + ], + "score": 0.941, + "type": "image", + "image_path": "2906cf05b4049b80ff2c97e08543a9486c4b9062c854a0d47dfca1e5c23e7b3a.jpg" + } + ] + } + ], + "index": 8, + "virtual_lines": [ + { + "bbox": [ + 154, + 187, + 457, + 207.66666666666666 + ], + "spans": [], + "index": 7 + }, + { + "bbox": [ + 154, + 207.66666666666666, + 457, + 228.33333333333331 + ], + "spans": [], + "index": 8 + }, + { + "bbox": [ + 154, + 228.33333333333331, + 457, + 248.99999999999997 + ], + "spans": [], + "index": 9 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 256, + 505, + 301 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 256, + 505, + 269 + ], + "spans": [ + { + "bbox": [ + 105, + 256, + 505, + 269 + ], + "score": 1.0, + "content": "Figure 6: The forward and reverse paths of the conditional coupling layer. In our experiments", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 268, + 505, + 281 + ], + "spans": [ + { + "bbox": [ + 105, + 268, + 338, + 281 + ], + "score": 1.0, + "content": "we concatenate an embedding of the conditioning input", + "type": "text" + }, + { + "bbox": [ + 338, + 270, + 347, + 278 + ], + "score": 0.61, + "content": "\\mathbf { x }", + "type": "inline_equation" + }, + { + "bbox": [ + 347, + 268, + 400, + 281 + ], + "score": 1.0, + "content": "to the latent", + "type": "text" + }, + { + "bbox": [ + 401, + 270, + 412, + 279 + ], + "score": 0.86, + "content": "\\mathbf { z } _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 412, + 268, + 505, + 281 + ], + "score": 1.0, + "content": ", which is fed through", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 106, + 279, + 505, + 291 + ], + "spans": [ + { + "bbox": [ + 106, + 279, + 429, + 291 + ], + "score": 1.0, + "content": "another neural network to output the affine transformation parameters applied to", + "type": "text" + }, + { + "bbox": [ + 429, + 280, + 440, + 290 + ], + "score": 0.85, + "content": "\\mathbf { z } _ { 0 }", + "type": "inline_equation" + }, + { + "bbox": [ + 440, + 279, + 505, + 291 + ], + "score": 1.0, + "content": ". This operation", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 289, + 253, + 302 + ], + "spans": [ + { + "bbox": [ + 105, + 289, + 165, + 302 + ], + "score": 1.0, + "content": "is invertible in", + "type": "text" + }, + { + "bbox": [ + 166, + 291, + 173, + 299 + ], + "score": 0.44, + "content": "\\mathbf { z }", + "type": "inline_equation" + }, + { + "bbox": [ + 173, + 289, + 190, + 302 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 190, + 291, + 198, + 301 + ], + "score": 0.37, + "content": "\\mathbf { y }", + "type": "inline_equation" + }, + { + "bbox": [ + 198, + 289, + 241, + 302 + ], + "score": 1.0, + "content": ", but not in", + "type": "text" + }, + { + "bbox": [ + 242, + 291, + 249, + 299 + ], + "score": 0.29, + "content": "\\mathbf { x }", + "type": "inline_equation" + }, + { + "bbox": [ + 250, + 289, + 253, + 302 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 11.5 + } + ], + "index": 9.75 + }, + { + "type": "text", + "bbox": [ + 107, + 312, + 505, + 357 + ], + "lines": [ + { + "bbox": [ + 105, + 312, + 505, + 324 + ], + "spans": [ + { + "bbox": [ + 105, + 312, + 505, + 324 + ], + "score": 1.0, + "content": "Details for the CNFs are given in Table 5 and the details of the individual coupling layers in Table", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 324, + 505, + 335 + ], + "spans": [ + { + "bbox": [ + 105, + 324, + 505, + 335 + ], + "score": 1.0, + "content": "6 and 7. The architecture of the feature extractor is given in Table 8. The architecture has levels", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 106, + 335, + 505, + 346 + ], + "spans": [ + { + "bbox": [ + 106, + 335, + 505, + 346 + ], + "score": 1.0, + "content": "and subflows, following (Dinh et al., 2016; Kingma & Dhariwal, 2018). All networks are optimized", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 106, + 345, + 336, + 357 + ], + "spans": [ + { + "bbox": [ + 106, + 345, + 336, + 357 + ], + "score": 1.0, + "content": "using Adam (Kingma & Ba, 2015) for 200000 iterations.", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 15.5 + }, + { + "type": "table", + "bbox": [ + 136, + 389, + 474, + 443 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 148, + 376, + 456, + 387 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 150, + 375, + 457, + 389 + ], + "spans": [ + { + "bbox": [ + 150, + 375, + 457, + 389 + ], + "score": 1.0, + "content": "Table 5: Configuration of the CNF architecture for the super-resolution task.", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 18 + }, + { + "type": "table_body", + "bbox": [ + 136, + 389, + 474, + 443 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 136, + 389, + 474, + 443 + ], + "spans": [ + { + "bbox": [ + 136, + 389, + 474, + 443 + ], + "score": 0.979, + "html": "
DATASETMINIBATCH SIZELEVELSSUB-FLOWSLEARNING RATE
ImageNet3264280.0001
ImageNet6464280.0001
DRIVE2220.001
", + "type": "table", + "image_path": "bf99a8501d282fbd1540158999e38e2cbf793fb01f9b611d6047db5e941bbd34.jpg" + } + ] + } + ], + "index": 20, + "virtual_lines": [ + { + "bbox": [ + 136, + 389, + 474, + 407.0 + ], + "spans": [], + "index": 19 + }, + { + "bbox": [ + 136, + 407.0, + 474, + 425.0 + ], + "spans": [], + "index": 20 + }, + { + "bbox": [ + 136, + 425.0, + 474, + 443.0 + ], + "spans": [], + "index": 21 + } + ] + } + ], + "index": 19.0 + } + ], + "page_idx": 14, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 106, + 26, + 308, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 25, + 308, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 25, + 308, + 38 + ], + "score": 1.0, + "content": "Under review as a conference paper at ICLR 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": "title", + "bbox": [ + 108, + 81, + 217, + 94 + ], + "lines": [ + { + "bbox": [ + 106, + 80, + 218, + 96 + ], + "spans": [ + { + "bbox": [ + 106, + 80, + 218, + 96 + ], + "score": 1.0, + "content": "A ARCHITECTURES", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "text", + "bbox": [ + 107, + 106, + 505, + 140 + ], + "lines": [ + { + "bbox": [ + 105, + 106, + 505, + 118 + ], + "spans": [ + { + "bbox": [ + 105, + 106, + 505, + 118 + ], + "score": 1.0, + "content": "This section describes architecture and optimization details of the conditional normalizing flow net-", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 106, + 117, + 505, + 129 + ], + "spans": [ + { + "bbox": [ + 106, + 117, + 505, + 129 + ], + "score": 1.0, + "content": "work, low-resolution image feature extractor, and shallow convolutional neural network in the con-", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 106, + 127, + 206, + 141 + ], + "spans": [ + { + "bbox": [ + 106, + 127, + 206, + 141 + ], + "score": 1.0, + "content": "ditional coupling layers.", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 2, + "bbox_fs": [ + 105, + 106, + 505, + 141 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 145, + 505, + 179 + ], + "lines": [ + { + "bbox": [ + 106, + 145, + 505, + 158 + ], + "spans": [ + { + "bbox": [ + 106, + 145, + 505, + 158 + ], + "score": 1.0, + "content": "The conditional coupling layer is shown schematically in Figure 6. This shows that conditioned", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 106, + 157, + 505, + 168 + ], + "spans": [ + { + "bbox": [ + 106, + 157, + 155, + 168 + ], + "score": 1.0, + "content": "on an input", + "type": "text" + }, + { + "bbox": [ + 155, + 158, + 163, + 166 + ], + "score": 0.34, + "content": "\\mathbf { x }", + "type": "inline_equation" + }, + { + "bbox": [ + 163, + 157, + 505, + 168 + ], + "score": 1.0, + "content": ", we are able to build a relatively straight-forward invertible mapping between latent", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 167, + 450, + 180 + ], + "spans": [ + { + "bbox": [ + 105, + 167, + 169, + 180 + ], + "score": 1.0, + "content": "representations", + "type": "text" + }, + { + "bbox": [ + 169, + 169, + 176, + 177 + ], + "score": 0.64, + "content": "\\mathbf { z }", + "type": "inline_equation" + }, + { + "bbox": [ + 176, + 167, + 194, + 180 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 194, + 169, + 201, + 178 + ], + "score": 0.42, + "content": "\\mathbf { y }", + "type": "inline_equation" + }, + { + "bbox": [ + 201, + 167, + 450, + 180 + ], + "score": 1.0, + "content": ", which have been partitioned into vectors of equal dimension.", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 5, + "bbox_fs": [ + 105, + 145, + 505, + 180 + ] + }, + { + "type": "image", + "bbox": [ + 154, + 187, + 457, + 249 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 154, + 187, + 457, + 249 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 154, + 187, + 457, + 249 + ], + "spans": [ + { + "bbox": [ + 154, + 187, + 457, + 249 + ], + "score": 0.941, + "type": "image", + "image_path": "2906cf05b4049b80ff2c97e08543a9486c4b9062c854a0d47dfca1e5c23e7b3a.jpg" + } + ] + } + ], + "index": 8, + "virtual_lines": [ + { + "bbox": [ + 154, + 187, + 457, + 207.66666666666666 + ], + "spans": [], + "index": 7 + }, + { + "bbox": [ + 154, + 207.66666666666666, + 457, + 228.33333333333331 + ], + "spans": [], + "index": 8 + }, + { + "bbox": [ + 154, + 228.33333333333331, + 457, + 248.99999999999997 + ], + "spans": [], + "index": 9 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 256, + 505, + 301 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 256, + 505, + 269 + ], + "spans": [ + { + "bbox": [ + 105, + 256, + 505, + 269 + ], + "score": 1.0, + "content": "Figure 6: The forward and reverse paths of the conditional coupling layer. In our experiments", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 268, + 505, + 281 + ], + "spans": [ + { + "bbox": [ + 105, + 268, + 338, + 281 + ], + "score": 1.0, + "content": "we concatenate an embedding of the conditioning input", + "type": "text" + }, + { + "bbox": [ + 338, + 270, + 347, + 278 + ], + "score": 0.61, + "content": "\\mathbf { x }", + "type": "inline_equation" + }, + { + "bbox": [ + 347, + 268, + 400, + 281 + ], + "score": 1.0, + "content": "to the latent", + "type": "text" + }, + { + "bbox": [ + 401, + 270, + 412, + 279 + ], + "score": 0.86, + "content": "\\mathbf { z } _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 412, + 268, + 505, + 281 + ], + "score": 1.0, + "content": ", which is fed through", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 106, + 279, + 505, + 291 + ], + "spans": [ + { + "bbox": [ + 106, + 279, + 429, + 291 + ], + "score": 1.0, + "content": "another neural network to output the affine transformation parameters applied to", + "type": "text" + }, + { + "bbox": [ + 429, + 280, + 440, + 290 + ], + "score": 0.85, + "content": "\\mathbf { z } _ { 0 }", + "type": "inline_equation" + }, + { + "bbox": [ + 440, + 279, + 505, + 291 + ], + "score": 1.0, + "content": ". This operation", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 289, + 253, + 302 + ], + "spans": [ + { + "bbox": [ + 105, + 289, + 165, + 302 + ], + "score": 1.0, + "content": "is invertible in", + "type": "text" + }, + { + "bbox": [ + 166, + 291, + 173, + 299 + ], + "score": 0.44, + "content": "\\mathbf { z }", + "type": "inline_equation" + }, + { + "bbox": [ + 173, + 289, + 190, + 302 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 190, + 291, + 198, + 301 + ], + "score": 0.37, + "content": "\\mathbf { y }", + "type": "inline_equation" + }, + { + "bbox": [ + 198, + 289, + 241, + 302 + ], + "score": 1.0, + "content": ", but not in", + "type": "text" + }, + { + "bbox": [ + 242, + 291, + 249, + 299 + ], + "score": 0.29, + "content": "\\mathbf { x }", + "type": "inline_equation" + }, + { + "bbox": [ + 250, + 289, + 253, + 302 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 11.5 + } + ], + "index": 9.75 + }, + { + "type": "text", + "bbox": [ + 107, + 312, + 505, + 357 + ], + "lines": [ + { + "bbox": [ + 105, + 312, + 505, + 324 + ], + "spans": [ + { + "bbox": [ + 105, + 312, + 505, + 324 + ], + "score": 1.0, + "content": "Details for the CNFs are given in Table 5 and the details of the individual coupling layers in Table", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 324, + 505, + 335 + ], + "spans": [ + { + "bbox": [ + 105, + 324, + 505, + 335 + ], + "score": 1.0, + "content": "6 and 7. The architecture of the feature extractor is given in Table 8. The architecture has levels", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 106, + 335, + 505, + 346 + ], + "spans": [ + { + "bbox": [ + 106, + 335, + 505, + 346 + ], + "score": 1.0, + "content": "and subflows, following (Dinh et al., 2016; Kingma & Dhariwal, 2018). All networks are optimized", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 106, + 345, + 336, + 357 + ], + "spans": [ + { + "bbox": [ + 106, + 345, + 336, + 357 + ], + "score": 1.0, + "content": "using Adam (Kingma & Ba, 2015) for 200000 iterations.", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 15.5, + "bbox_fs": [ + 105, + 312, + 505, + 357 + ] + }, + { + "type": "table", + "bbox": [ + 136, + 389, + 474, + 443 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 148, + 376, + 456, + 387 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 150, + 375, + 457, + 389 + ], + "spans": [ + { + "bbox": [ + 150, + 375, + 457, + 389 + ], + "score": 1.0, + "content": "Table 5: Configuration of the CNF architecture for the super-resolution task.", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 18 + }, + { + "type": "table_body", + "bbox": [ + 136, + 389, + 474, + 443 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 136, + 389, + 474, + 443 + ], + "spans": [ + { + "bbox": [ + 136, + 389, + 474, + 443 + ], + "score": 0.979, + "html": "
DATASETMINIBATCH SIZELEVELSSUB-FLOWSLEARNING RATE
ImageNet3264280.0001
ImageNet6464280.0001
DRIVE2220.001
", + "type": "table", + "image_path": "bf99a8501d282fbd1540158999e38e2cbf793fb01f9b611d6047db5e941bbd34.jpg" + } + ] + } + ], + "index": 20, + "virtual_lines": [ + { + "bbox": [ + 136, + 389, + 474, + 407.0 + ], + "spans": [], + "index": 19 + }, + { + "bbox": [ + 136, + 407.0, + 474, + 425.0 + ], + "spans": [], + "index": 20 + }, + { + "bbox": [ + 136, + 425.0, + 474, + 443.0 + ], + "spans": [], + "index": 21 + } + ] + } + ], + "index": 19.0 + } + ] + }, + { + "preproc_blocks": [ + { + "type": "table", + "bbox": [ + 183, + 121, + 427, + 177 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 108, + 89, + 504, + 120 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 88, + 505, + 101 + ], + "spans": [ + { + "bbox": [ + 105, + 88, + 505, + 101 + ], + "score": 1.0, + "content": "Table 6: Architecture details for a single coupling layer in the super resolution task. The variable", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 106, + 100, + 506, + 114 + ], + "spans": [ + { + "bbox": [ + 106, + 101, + 124, + 111 + ], + "score": 0.85, + "content": "c _ { \\mathrm { o u t } }", + "type": "inline_equation" + }, + { + "bbox": [ + 124, + 100, + 506, + 114 + ], + "score": 1.0, + "content": "denotes the number of output channels. The first two convolutional layers are followed by a", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 110, + 177, + 123 + ], + "spans": [ + { + "bbox": [ + 105, + 110, + 177, + 123 + ], + "score": 1.0, + "content": "ReLU activation.", + "type": "text" + } + ], + "index": 2 + } + ], + "index": 1 + }, + { + "type": "table_body", + "bbox": [ + 183, + 121, + 427, + 177 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 183, + 121, + 427, + 177 + ], + "spans": [ + { + "bbox": [ + 183, + 121, + 427, + 177 + ], + "score": 0.971, + "html": "
LAYERINTERMEDIATE CHANNELSKERNEL SIZE
Conv2d5123×3
Conv2d5121×1
Conv2dCout3×3
", + "type": "table", + "image_path": "04d534c32137a63aeae64bd988806712a39468cfccb699e0d8547138059a74a1.jpg" + } + ] + } + ], + "index": 4.5, + "virtual_lines": [ + { + "bbox": [ + 183, + 121, + 427, + 135.0 + ], + "spans": [], + "index": 3 + }, + { + "bbox": [ + 183, + 135.0, + 427, + 149.0 + ], + "spans": [], + "index": 4 + }, + { + "bbox": [ + 183, + 149.0, + 427, + 163.0 + ], + "spans": [], + "index": 5 + }, + { + "bbox": [ + 183, + 163.0, + 427, + 177.0 + ], + "spans": [], + "index": 6 + } + ] + } + ], + "index": 2.75 + }, + { + "type": "table", + "bbox": [ + 165, + 235, + 446, + 303 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 107, + 201, + 504, + 235 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 105, + 201, + 505, + 214 + ], + "spans": [ + { + "bbox": [ + 105, + 201, + 505, + 214 + ], + "score": 1.0, + "content": "Table 7: Architecture details for a single coupling layer in the DRIVE segmentation task. The", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 106, + 213, + 505, + 225 + ], + "spans": [ + { + "bbox": [ + 106, + 213, + 140, + 225 + ], + "score": 1.0, + "content": "variable", + "type": "text" + }, + { + "bbox": [ + 141, + 214, + 159, + 224 + ], + "score": 0.88, + "content": "c _ { \\mathrm { o u t } }", + "type": "inline_equation" + }, + { + "bbox": [ + 159, + 213, + 505, + 225 + ], + "score": 1.0, + "content": "denotes the number of output channels for the . The first two convolutional layers are", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 106, + 224, + 234, + 236 + ], + "spans": [ + { + "bbox": [ + 106, + 224, + 234, + 236 + ], + "score": 1.0, + "content": "followed by a ReLU activation.", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 8 + }, + { + "type": "table_body", + "bbox": [ + 165, + 235, + 446, + 303 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 165, + 235, + 446, + 303 + ], + "spans": [ + { + "bbox": [ + 165, + 235, + 446, + 303 + ], + "score": 0.977, + "html": "
LAYERINTERMEDIATECHANNELSKERNEL SIZE
Conv2d323×3
InstanceNorm2d32-
ReLU-1
Conv2dCout3×3
", + "type": "table", + "image_path": "999132a82e222546bf3a135fec88309ef6e000a401bdaeb0a8e8b3b3d8e593e7.jpg" + } + ] + } + ], + "index": 11, + "virtual_lines": [ + { + "bbox": [ + 165, + 235, + 446, + 257.6666666666667 + ], + "spans": [], + "index": 10 + }, + { + "bbox": [ + 165, + 257.6666666666667, + 446, + 280.33333333333337 + ], + "spans": [], + "index": 11 + }, + { + "bbox": [ + 165, + 280.33333333333337, + 446, + 303.00000000000006 + ], + "spans": [], + "index": 12 + } + ] + } + ], + "index": 9.5 + }, + { + "type": "table", + "bbox": [ + 131, + 362, + 480, + 406 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 108, + 327, + 504, + 361 + ], + "group_id": 2, + "lines": [ + { + "bbox": [ + 105, + 327, + 505, + 340 + ], + "spans": [ + { + "bbox": [ + 105, + 327, + 505, + 340 + ], + "score": 1.0, + "content": "Table 8: Architecture details for the conditioning network in the super-resolution task. Residual-", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 106, + 339, + 505, + 351 + ], + "spans": [ + { + "bbox": [ + 106, + 339, + 505, + 351 + ], + "score": 1.0, + "content": "in-residual denseblocks Wang et al. (2018) are utilized. The channel growth is adjusted so that the", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 106, + 349, + 386, + 362 + ], + "spans": [ + { + "bbox": [ + 106, + 349, + 386, + 362 + ], + "score": 1.0, + "content": "CNF and the factorized baseline have an equal number of parameters.", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 14 + }, + { + "type": "table_body", + "bbox": [ + 131, + 362, + 480, + 406 + ], + "group_id": 2, + "lines": [ + { + "bbox": [ + 131, + 362, + 480, + 406 + ], + "spans": [ + { + "bbox": [ + 131, + 362, + 480, + 406 + ], + "score": 0.976, + "html": "
MODEL TYPERRDB BLOCKSCHANNEL GROWTH|CONTEXT CHANNELS
CNF1632128
Factorized LL1655128
", + "type": "table", + "image_path": "07e7fb84eddb5f5af9fa3c750f8428430a0dbea1e936aad457a39ea09268ea26.jpg" + } + ] + } + ], + "index": 17, + "virtual_lines": [ + { + "bbox": [ + 131, + 362, + 480, + 376.6666666666667 + ], + "spans": [], + "index": 16 + }, + { + "bbox": [ + 131, + 376.6666666666667, + 480, + 391.33333333333337 + ], + "spans": [], + "index": 17 + }, + { + "bbox": [ + 131, + 391.33333333333337, + 480, + 406.00000000000006 + ], + "spans": [], + "index": 18 + } + ] + } + ], + "index": 15.5 + } + ], + "page_idx": 15, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 106, + 26, + 309, + 38 + ], + "lines": [ + { + "bbox": [ + 106, + 25, + 308, + 39 + ], + "spans": [ + { + "bbox": [ + 106, + 25, + 308, + 39 + ], + "score": 1.0, + "content": "Under review as a conference paper at ICLR 2020", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 300, + 751, + 311, + 760 + ], + "lines": [ + { + "bbox": [ + 299, + 750, + 313, + 764 + ], + "spans": [ + { + "bbox": [ + 299, + 750, + 313, + 764 + ], + "score": 1.0, + "content": "16", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "table", + "bbox": [ + 183, + 121, + 427, + 177 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 108, + 89, + 504, + 120 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 88, + 505, + 101 + ], + "spans": [ + { + "bbox": [ + 105, + 88, + 505, + 101 + ], + "score": 1.0, + "content": "Table 6: Architecture details for a single coupling layer in the super resolution task. The variable", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 106, + 100, + 506, + 114 + ], + "spans": [ + { + "bbox": [ + 106, + 101, + 124, + 111 + ], + "score": 0.85, + "content": "c _ { \\mathrm { o u t } }", + "type": "inline_equation" + }, + { + "bbox": [ + 124, + 100, + 506, + 114 + ], + "score": 1.0, + "content": "denotes the number of output channels. The first two convolutional layers are followed by a", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 110, + 177, + 123 + ], + "spans": [ + { + "bbox": [ + 105, + 110, + 177, + 123 + ], + "score": 1.0, + "content": "ReLU activation.", + "type": "text" + } + ], + "index": 2 + } + ], + "index": 1 + }, + { + "type": "table_body", + "bbox": [ + 183, + 121, + 427, + 177 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 183, + 121, + 427, + 177 + ], + "spans": [ + { + "bbox": [ + 183, + 121, + 427, + 177 + ], + "score": 0.971, + "html": "
LAYERINTERMEDIATE CHANNELSKERNEL SIZE
Conv2d5123×3
Conv2d5121×1
Conv2dCout3×3
", + "type": "table", + "image_path": "04d534c32137a63aeae64bd988806712a39468cfccb699e0d8547138059a74a1.jpg" + } + ] + } + ], + "index": 4.5, + "virtual_lines": [ + { + "bbox": [ + 183, + 121, + 427, + 135.0 + ], + "spans": [], + "index": 3 + }, + { + "bbox": [ + 183, + 135.0, + 427, + 149.0 + ], + "spans": [], + "index": 4 + }, + { + "bbox": [ + 183, + 149.0, + 427, + 163.0 + ], + "spans": [], + "index": 5 + }, + { + "bbox": [ + 183, + 163.0, + 427, + 177.0 + ], + "spans": [], + "index": 6 + } + ] + } + ], + "index": 2.75 + }, + { + "type": "table", + "bbox": [ + 165, + 235, + 446, + 303 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 107, + 201, + 504, + 235 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 105, + 201, + 505, + 214 + ], + "spans": [ + { + "bbox": [ + 105, + 201, + 505, + 214 + ], + "score": 1.0, + "content": "Table 7: Architecture details for a single coupling layer in the DRIVE segmentation task. The", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 106, + 213, + 505, + 225 + ], + "spans": [ + { + "bbox": [ + 106, + 213, + 140, + 225 + ], + "score": 1.0, + "content": "variable", + "type": "text" + }, + { + "bbox": [ + 141, + 214, + 159, + 224 + ], + "score": 0.88, + "content": "c _ { \\mathrm { o u t } }", + "type": "inline_equation" + }, + { + "bbox": [ + 159, + 213, + 505, + 225 + ], + "score": 1.0, + "content": "denotes the number of output channels for the . The first two convolutional layers are", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 106, + 224, + 234, + 236 + ], + "spans": [ + { + "bbox": [ + 106, + 224, + 234, + 236 + ], + "score": 1.0, + "content": "followed by a ReLU activation.", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 8 + }, + { + "type": "table_body", + "bbox": [ + 165, + 235, + 446, + 303 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 165, + 235, + 446, + 303 + ], + "spans": [ + { + "bbox": [ + 165, + 235, + 446, + 303 + ], + "score": 0.977, + "html": "
LAYERINTERMEDIATECHANNELSKERNEL SIZE
Conv2d323×3
InstanceNorm2d32-
ReLU-1
Conv2dCout3×3
", + "type": "table", + "image_path": "999132a82e222546bf3a135fec88309ef6e000a401bdaeb0a8e8b3b3d8e593e7.jpg" + } + ] + } + ], + "index": 11, + "virtual_lines": [ + { + "bbox": [ + 165, + 235, + 446, + 257.6666666666667 + ], + "spans": [], + "index": 10 + }, + { + "bbox": [ + 165, + 257.6666666666667, + 446, + 280.33333333333337 + ], + "spans": [], + "index": 11 + }, + { + "bbox": [ + 165, + 280.33333333333337, + 446, + 303.00000000000006 + ], + "spans": [], + "index": 12 + } + ] + } + ], + "index": 9.5 + }, + { + "type": "table", + "bbox": [ + 131, + 362, + 480, + 406 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 108, + 327, + 504, + 361 + ], + "group_id": 2, + "lines": [ + { + "bbox": [ + 105, + 327, + 505, + 340 + ], + "spans": [ + { + "bbox": [ + 105, + 327, + 505, + 340 + ], + "score": 1.0, + "content": "Table 8: Architecture details for the conditioning network in the super-resolution task. Residual-", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 106, + 339, + 505, + 351 + ], + "spans": [ + { + "bbox": [ + 106, + 339, + 505, + 351 + ], + "score": 1.0, + "content": "in-residual denseblocks Wang et al. (2018) are utilized. The channel growth is adjusted so that the", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 106, + 349, + 386, + 362 + ], + "spans": [ + { + "bbox": [ + 106, + 349, + 386, + 362 + ], + "score": 1.0, + "content": "CNF and the factorized baseline have an equal number of parameters.", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 14 + }, + { + "type": "table_body", + "bbox": [ + 131, + 362, + 480, + 406 + ], + "group_id": 2, + "lines": [ + { + "bbox": [ + 131, + 362, + 480, + 406 + ], + "spans": [ + { + "bbox": [ + 131, + 362, + 480, + 406 + ], + "score": 0.976, + "html": "
MODEL TYPERRDB BLOCKSCHANNEL GROWTH|CONTEXT CHANNELS
CNF1632128
Factorized LL1655128
", + "type": "table", + "image_path": "07e7fb84eddb5f5af9fa3c750f8428430a0dbea1e936aad457a39ea09268ea26.jpg" + } + ] + } + ], + "index": 17, + "virtual_lines": [ + { + "bbox": [ + 131, + 362, + 480, + 376.6666666666667 + ], + "spans": [], + "index": 16 + }, + { + "bbox": [ + 131, + 376.6666666666667, + 480, + 391.33333333333337 + ], + "spans": [], + "index": 17 + }, + { + "bbox": [ + 131, + 391.33333333333337, + 480, + 406.00000000000006 + ], + "spans": [], + "index": 18 + } + ] + } + ], + "index": 15.5 + } + ] + }, + { + "preproc_blocks": [ + { + "type": "title", + "bbox": [ + 107, + 81, + 311, + 94 + ], + "lines": [ + { + "bbox": [ + 104, + 79, + 312, + 96 + ], + "spans": [ + { + "bbox": [ + 104, + 79, + 312, + 96 + ], + "score": 1.0, + "content": "B CONDITIONAL IMAGE GENERATION", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "text", + "bbox": [ + 107, + 106, + 504, + 128 + ], + "lines": [ + { + "bbox": [ + 105, + 105, + 504, + 119 + ], + "spans": [ + { + "bbox": [ + 105, + 105, + 504, + 119 + ], + "score": 1.0, + "content": "In this section, larger versions of the ImageNet64 samples are provided, sampled at different tem-", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 118, + 156, + 129 + ], + "spans": [ + { + "bbox": [ + 105, + 118, + 145, + 129 + ], + "score": 1.0, + "content": "peratures", + "type": "text" + }, + { + "bbox": [ + 146, + 119, + 152, + 127 + ], + "score": 0.71, + "content": "\\tau", + "type": "inline_equation" + }, + { + "bbox": [ + 153, + 118, + 156, + 129 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 2 + } + ], + "index": 1.5 + }, + { + "type": "image", + "bbox": [ + 166, + 140, + 444, + 418 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 166, + 140, + 444, + 418 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 166, + 140, + 444, + 418 + ], + "spans": [ + { + "bbox": [ + 166, + 140, + 444, + 418 + ], + "score": 0.975, + "type": "image", + "image_path": "0a1b755d79f462b7cefbe91d4b81893d50e8c7073b998c76ea0071da28ab93dc.jpg" + } + ] + } + ], + "index": 11.5, + "virtual_lines": [ + { + "bbox": [ + 166, + 140, + 444, + 155.44444444444446 + ], + "spans": [], + "index": 3 + }, + { + "bbox": [ + 166, + 155.44444444444446, + 444, + 170.8888888888889 + ], + "spans": [], + "index": 4 + }, + { + "bbox": [ + 166, + 170.8888888888889, + 444, + 186.33333333333337 + ], + "spans": [], + "index": 5 + }, + { + "bbox": [ + 166, + 186.33333333333337, + 444, + 201.77777777777783 + ], + "spans": [], + "index": 6 + }, + { + "bbox": [ + 166, + 201.77777777777783, + 444, + 217.22222222222229 + ], + "spans": [], + "index": 7 + }, + { + "bbox": [ + 166, + 217.22222222222229, + 444, + 232.66666666666674 + ], + "spans": [], + "index": 8 + }, + { + "bbox": [ + 166, + 232.66666666666674, + 444, + 248.1111111111112 + ], + "spans": [], + "index": 9 + }, + { + "bbox": [ + 166, + 248.1111111111112, + 444, + 263.55555555555566 + ], + "spans": [], + "index": 10 + }, + { + "bbox": [ + 166, + 263.55555555555566, + 444, + 279.0000000000001 + ], + "spans": [], + "index": 11 + }, + { + "bbox": [ + 166, + 279.0000000000001, + 444, + 294.44444444444457 + ], + "spans": [], + "index": 12 + }, + { + "bbox": [ + 166, + 294.44444444444457, + 444, + 309.888888888889 + ], + "spans": [], + "index": 13 + }, + { + "bbox": [ + 166, + 309.888888888889, + 444, + 325.3333333333335 + ], + "spans": [], + "index": 14 + }, + { + "bbox": [ + 166, + 325.3333333333335, + 444, + 340.77777777777794 + ], + "spans": [], + "index": 15 + }, + { + "bbox": [ + 166, + 340.77777777777794, + 444, + 356.2222222222224 + ], + "spans": [], + "index": 16 + }, + { + "bbox": [ + 166, + 356.2222222222224, + 444, + 371.66666666666686 + ], + "spans": [], + "index": 17 + }, + { + "bbox": [ + 166, + 371.66666666666686, + 444, + 387.1111111111113 + ], + "spans": [], + "index": 18 + }, + { + "bbox": [ + 166, + 387.1111111111113, + 444, + 402.55555555555577 + ], + "spans": [], + "index": 19 + }, + { + "bbox": [ + 166, + 402.55555555555577, + 444, + 418.0000000000002 + ], + "spans": [], + "index": 20 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 117, + 429, + 492, + 442 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 117, + 428, + 489, + 444 + ], + "spans": [ + { + "bbox": [ + 117, + 428, + 464, + 444 + ], + "score": 1.0, + "content": "Figure 7: Super resolution results CNF trained on Imagenet64 sampled at temperature", + "type": "text" + }, + { + "bbox": [ + 464, + 430, + 489, + 440 + ], + "score": 0.89, + "content": "\\tau = 0", + "type": "inline_equation" + } + ], + "index": 21 + } + ], + "index": 21 + } + ], + "index": 16.25 + } + ], + "page_idx": 16, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 27, + 308, + 37 + ], + "lines": [ + { + "bbox": [ + 107, + 26, + 308, + 38 + ], + "spans": [ + { + "bbox": [ + 107, + 26, + 308, + 38 + ], + "score": 1.0, + "content": "Under review as a conference paper at ICLR 2020", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 300, + 751, + 311, + 760 + ], + "lines": [ + { + "bbox": [ + 299, + 750, + 312, + 764 + ], + "spans": [ + { + "bbox": [ + 299, + 750, + 312, + 764 + ], + "score": 1.0, + "content": "17", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "title", + "bbox": [ + 107, + 81, + 311, + 94 + ], + "lines": [ + { + "bbox": [ + 104, + 79, + 312, + 96 + ], + "spans": [ + { + "bbox": [ + 104, + 79, + 312, + 96 + ], + "score": 1.0, + "content": "B CONDITIONAL IMAGE GENERATION", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "text", + "bbox": [ + 107, + 106, + 504, + 128 + ], + "lines": [ + { + "bbox": [ + 105, + 105, + 504, + 119 + ], + "spans": [ + { + "bbox": [ + 105, + 105, + 504, + 119 + ], + "score": 1.0, + "content": "In this section, larger versions of the ImageNet64 samples are provided, sampled at different tem-", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 118, + 156, + 129 + ], + "spans": [ + { + "bbox": [ + 105, + 118, + 145, + 129 + ], + "score": 1.0, + "content": "peratures", + "type": "text" + }, + { + "bbox": [ + 146, + 119, + 152, + 127 + ], + "score": 0.71, + "content": "\\tau", + "type": "inline_equation" + }, + { + "bbox": [ + 153, + 118, + 156, + 129 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 2 + } + ], + "index": 1.5, + "bbox_fs": [ + 105, + 105, + 504, + 129 + ] + }, + { + "type": "image", + "bbox": [ + 166, + 140, + 444, + 418 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 166, + 140, + 444, + 418 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 166, + 140, + 444, + 418 + ], + "spans": [ + { + "bbox": [ + 166, + 140, + 444, + 418 + ], + "score": 0.975, + "type": "image", + "image_path": "0a1b755d79f462b7cefbe91d4b81893d50e8c7073b998c76ea0071da28ab93dc.jpg" + } + ] + } + ], + "index": 11.5, + "virtual_lines": [ + { + "bbox": [ + 166, + 140, + 444, + 155.44444444444446 + ], + "spans": [], + "index": 3 + }, + { + "bbox": [ + 166, + 155.44444444444446, + 444, + 170.8888888888889 + ], + "spans": [], + "index": 4 + }, + { + "bbox": [ + 166, + 170.8888888888889, + 444, + 186.33333333333337 + ], + "spans": [], + "index": 5 + }, + { + "bbox": [ + 166, + 186.33333333333337, + 444, + 201.77777777777783 + ], + "spans": [], + "index": 6 + }, + { + "bbox": [ + 166, + 201.77777777777783, + 444, + 217.22222222222229 + ], + "spans": [], + "index": 7 + }, + { + "bbox": [ + 166, + 217.22222222222229, + 444, + 232.66666666666674 + ], + "spans": [], + "index": 8 + }, + { + "bbox": [ + 166, + 232.66666666666674, + 444, + 248.1111111111112 + ], + "spans": [], + "index": 9 + }, + { + "bbox": [ + 166, + 248.1111111111112, + 444, + 263.55555555555566 + ], + "spans": [], + "index": 10 + }, + { + "bbox": [ + 166, + 263.55555555555566, + 444, + 279.0000000000001 + ], + "spans": [], + "index": 11 + }, + { + "bbox": [ + 166, + 279.0000000000001, + 444, + 294.44444444444457 + ], + "spans": [], + "index": 12 + }, + { + "bbox": [ + 166, + 294.44444444444457, + 444, + 309.888888888889 + ], + "spans": [], + "index": 13 + }, + { + "bbox": [ + 166, + 309.888888888889, + 444, + 325.3333333333335 + ], + "spans": [], + "index": 14 + }, + { + "bbox": [ + 166, + 325.3333333333335, + 444, + 340.77777777777794 + ], + "spans": [], + "index": 15 + }, + { + "bbox": [ + 166, + 340.77777777777794, + 444, + 356.2222222222224 + ], + "spans": [], + "index": 16 + }, + { + "bbox": [ + 166, + 356.2222222222224, + 444, + 371.66666666666686 + ], + "spans": [], + "index": 17 + }, + { + "bbox": [ + 166, + 371.66666666666686, + 444, + 387.1111111111113 + ], + "spans": [], + "index": 18 + }, + { + "bbox": [ + 166, + 387.1111111111113, + 444, + 402.55555555555577 + ], + "spans": [], + "index": 19 + }, + { + "bbox": [ + 166, + 402.55555555555577, + 444, + 418.0000000000002 + ], + "spans": [], + "index": 20 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 117, + 429, + 492, + 442 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 117, + 428, + 489, + 444 + ], + "spans": [ + { + "bbox": [ + 117, + 428, + 464, + 444 + ], + "score": 1.0, + "content": "Figure 7: Super resolution results CNF trained on Imagenet64 sampled at temperature", + "type": "text" + }, + { + "bbox": [ + 464, + 430, + 489, + 440 + ], + "score": 0.89, + "content": "\\tau = 0", + "type": "inline_equation" + } + ], + "index": 21 + } + ], + "index": 21 + } + ], + "index": 16.25 + } + ] + }, + { + "preproc_blocks": [ + { + "type": "image", + "bbox": [ + 166, + 92, + 444, + 368 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 166, + 92, + 444, + 368 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 166, + 92, + 444, + 368 + ], + "spans": [ + { + "bbox": [ + 166, + 92, + 444, + 368 + ], + "score": 0.975, + "type": "image", + "image_path": "3257972e069822bca22a6c7f5cbca32b0cdb3c594c59cdf3b43540caa1ed417e.jpg" + } + ] + } + ], + "index": 8, + "virtual_lines": [ + { + "bbox": [ + 166, + 92, + 444, + 108.23529411764706 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 166, + 108.23529411764706, + 444, + 124.47058823529412 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 166, + 124.47058823529412, + 444, + 140.70588235294116 + ], + "spans": [], + "index": 2 + }, + { + "bbox": [ + 166, + 140.70588235294116, + 444, + 156.94117647058823 + ], + "spans": [], + "index": 3 + }, + { + "bbox": [ + 166, + 156.94117647058823, + 444, + 173.1764705882353 + ], + "spans": [], + "index": 4 + }, + { + "bbox": [ + 166, + 173.1764705882353, + 444, + 189.41176470588238 + ], + "spans": [], + "index": 5 + }, + { + "bbox": [ + 166, + 189.41176470588238, + 444, + 205.64705882352945 + ], + "spans": [], + "index": 6 + }, + { + "bbox": [ + 166, + 205.64705882352945, + 444, + 221.88235294117652 + ], + "spans": [], + "index": 7 + }, + { + "bbox": [ + 166, + 221.88235294117652, + 444, + 238.1176470588236 + ], + "spans": [], + "index": 8 + }, + { + "bbox": [ + 166, + 238.1176470588236, + 444, + 254.35294117647067 + ], + "spans": [], + "index": 9 + }, + { + "bbox": [ + 166, + 254.35294117647067, + 444, + 270.58823529411774 + ], + "spans": [], + "index": 10 + }, + { + "bbox": [ + 166, + 270.58823529411774, + 444, + 286.8235294117648 + ], + "spans": [], + "index": 11 + }, + { + "bbox": [ + 166, + 286.8235294117648, + 444, + 303.0588235294119 + ], + "spans": [], + "index": 12 + }, + { + "bbox": [ + 166, + 303.0588235294119, + 444, + 319.29411764705895 + ], + "spans": [], + "index": 13 + }, + { + "bbox": [ + 166, + 319.29411764705895, + 444, + 335.529411764706 + ], + "spans": [], + "index": 14 + }, + { + "bbox": [ + 166, + 335.529411764706, + 444, + 351.7647058823531 + ], + "spans": [], + "index": 15 + }, + { + "bbox": [ + 166, + 351.7647058823531, + 444, + 368.00000000000017 + ], + "spans": [], + "index": 16 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 125, + 380, + 484, + 393 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 124, + 379, + 484, + 395 + ], + "spans": [ + { + "bbox": [ + 124, + 379, + 451, + 395 + ], + "score": 1.0, + "content": "Figure 8: Super resolution results for the CNF trained on Imagenet64 sampled at", + "type": "text" + }, + { + "bbox": [ + 451, + 381, + 484, + 391 + ], + "score": 0.86, + "content": "\\tau = 0 . 5", + "type": "inline_equation" + } + ], + "index": 17 + } + ], + "index": 17 + } + ], + "index": 12.5 + }, + { + "type": "image", + "bbox": [ + 166, + 419, + 444, + 697 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 166, + 419, + 444, + 697 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 166, + 419, + 444, + 697 + ], + "spans": [ + { + "bbox": [ + 166, + 419, + 444, + 697 + ], + "score": 0.976, + "type": "image", + "image_path": "fd08e3c4f413073f337e8705bf075013fd0c3aff5e295b95f859bf009f1238ad.jpg" + } + ] + } + ], + "index": 26, + "virtual_lines": [ + { + "bbox": [ + 166, + 419, + 444, + 435.3529411764706 + ], + "spans": [], + "index": 18 + }, + { + "bbox": [ + 166, + 435.3529411764706, + 444, + 451.7058823529412 + ], + "spans": [], + "index": 19 + }, + { + "bbox": [ + 166, + 451.7058823529412, + 444, + 468.0588235294118 + ], + "spans": [], + "index": 20 + }, + { + "bbox": [ + 166, + 468.0588235294118, + 444, + 484.41176470588243 + ], + "spans": [], + "index": 21 + }, + { + "bbox": [ + 166, + 484.41176470588243, + 444, + 500.76470588235304 + ], + "spans": [], + "index": 22 + }, + { + "bbox": [ + 166, + 500.76470588235304, + 444, + 517.1176470588236 + ], + "spans": [], + "index": 23 + }, + { + "bbox": [ + 166, + 517.1176470588236, + 444, + 533.4705882352943 + ], + "spans": [], + "index": 24 + }, + { + "bbox": [ + 166, + 533.4705882352943, + 444, + 549.8235294117649 + ], + "spans": [], + "index": 25 + }, + { + "bbox": [ + 166, + 549.8235294117649, + 444, + 566.1764705882355 + ], + "spans": [], + "index": 26 + }, + { + "bbox": [ + 166, + 566.1764705882355, + 444, + 582.5294117647061 + ], + "spans": [], + "index": 27 + }, + { + "bbox": [ + 166, + 582.5294117647061, + 444, + 598.8823529411767 + ], + "spans": [], + "index": 28 + }, + { + "bbox": [ + 166, + 598.8823529411767, + 444, + 615.2352941176473 + ], + "spans": [], + "index": 29 + }, + { + "bbox": [ + 166, + 615.2352941176473, + 444, + 631.5882352941179 + ], + "spans": [], + "index": 30 + }, + { + "bbox": [ + 166, + 631.5882352941179, + 444, + 647.9411764705885 + ], + "spans": [], + "index": 31 + }, + { + "bbox": [ + 166, + 647.9411764705885, + 444, + 664.2941176470591 + ], + "spans": [], + "index": 32 + }, + { + "bbox": [ + 166, + 664.2941176470591, + 444, + 680.6470588235297 + ], + "spans": [], + "index": 33 + }, + { + "bbox": [ + 166, + 680.6470588235297, + 444, + 697.0000000000003 + ], + "spans": [], + "index": 34 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 127, + 708, + 484, + 721 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 124, + 707, + 484, + 723 + ], + "spans": [ + { + "bbox": [ + 124, + 707, + 451, + 723 + ], + "score": 1.0, + "content": "Figure 9: Super resolution results for the CNF trained on Imagenet64 sampled at", + "type": "text" + }, + { + "bbox": [ + 451, + 709, + 484, + 719 + ], + "score": 0.81, + "content": "\\tau = 0 . 8", + "type": "inline_equation" + } + ], + "index": 35 + } + ], + "index": 35 + } + ], + "index": 30.5 + } + ], + "page_idx": 17, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 106, + 27, + 308, + 37 + ], + "lines": [ + { + "bbox": [ + 107, + 25, + 308, + 38 + ], + "spans": [ + { + "bbox": [ + 107, + 25, + 308, + 38 + ], + "score": 1.0, + "content": "Under review as a conference paper at ICLR 2020", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 300, + 751, + 311, + 760 + ], + "lines": [ + { + "bbox": [ + 299, + 750, + 313, + 763 + ], + "spans": [ + { + "bbox": [ + 299, + 750, + 313, + 763 + ], + "score": 1.0, + "content": "18", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "image", + "bbox": [ + 166, + 92, + 444, + 368 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 166, + 92, + 444, + 368 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 166, + 92, + 444, + 368 + ], + "spans": [ + { + "bbox": [ + 166, + 92, + 444, + 368 + ], + "score": 0.975, + "type": "image", + "image_path": "3257972e069822bca22a6c7f5cbca32b0cdb3c594c59cdf3b43540caa1ed417e.jpg" + } + ] + } + ], + "index": 8, + "virtual_lines": [ + { + "bbox": [ + 166, + 92, + 444, + 108.23529411764706 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 166, + 108.23529411764706, + 444, + 124.47058823529412 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 166, + 124.47058823529412, + 444, + 140.70588235294116 + ], + "spans": [], + "index": 2 + }, + { + "bbox": [ + 166, + 140.70588235294116, + 444, + 156.94117647058823 + ], + "spans": [], + "index": 3 + }, + { + "bbox": [ + 166, + 156.94117647058823, + 444, + 173.1764705882353 + ], + "spans": [], + "index": 4 + }, + { + "bbox": [ + 166, + 173.1764705882353, + 444, + 189.41176470588238 + ], + "spans": [], + "index": 5 + }, + { + "bbox": [ + 166, + 189.41176470588238, + 444, + 205.64705882352945 + ], + "spans": [], + "index": 6 + }, + { + "bbox": [ + 166, + 205.64705882352945, + 444, + 221.88235294117652 + ], + "spans": [], + "index": 7 + }, + { + "bbox": [ + 166, + 221.88235294117652, + 444, + 238.1176470588236 + ], + "spans": [], + "index": 8 + }, + { + "bbox": [ + 166, + 238.1176470588236, + 444, + 254.35294117647067 + ], + "spans": [], + "index": 9 + }, + { + "bbox": [ + 166, + 254.35294117647067, + 444, + 270.58823529411774 + ], + "spans": [], + "index": 10 + }, + { + "bbox": [ + 166, + 270.58823529411774, + 444, + 286.8235294117648 + ], + "spans": [], + "index": 11 + }, + { + "bbox": [ + 166, + 286.8235294117648, + 444, + 303.0588235294119 + ], + "spans": [], + "index": 12 + }, + { + "bbox": [ + 166, + 303.0588235294119, + 444, + 319.29411764705895 + ], + "spans": [], + "index": 13 + }, + { + "bbox": [ + 166, + 319.29411764705895, + 444, + 335.529411764706 + ], + "spans": [], + "index": 14 + }, + { + "bbox": [ + 166, + 335.529411764706, + 444, + 351.7647058823531 + ], + "spans": [], + "index": 15 + }, + { + "bbox": [ + 166, + 351.7647058823531, + 444, + 368.00000000000017 + ], + "spans": [], + "index": 16 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 125, + 380, + 484, + 393 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 124, + 379, + 484, + 395 + ], + "spans": [ + { + "bbox": [ + 124, + 379, + 451, + 395 + ], + "score": 1.0, + "content": "Figure 8: Super resolution results for the CNF trained on Imagenet64 sampled at", + "type": "text" + }, + { + "bbox": [ + 451, + 381, + 484, + 391 + ], + "score": 0.86, + "content": "\\tau = 0 . 5", + "type": "inline_equation" + } + ], + "index": 17 + } + ], + "index": 17 + } + ], + "index": 12.5 + }, + { + "type": "image", + "bbox": [ + 166, + 419, + 444, + 697 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 166, + 419, + 444, + 697 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 166, + 419, + 444, + 697 + ], + "spans": [ + { + "bbox": [ + 166, + 419, + 444, + 697 + ], + "score": 0.976, + "type": "image", + "image_path": "fd08e3c4f413073f337e8705bf075013fd0c3aff5e295b95f859bf009f1238ad.jpg" + } + ] + } + ], + "index": 26, + "virtual_lines": [ + { + "bbox": [ + 166, + 419, + 444, + 435.3529411764706 + ], + "spans": [], + "index": 18 + }, + { + "bbox": [ + 166, + 435.3529411764706, + 444, + 451.7058823529412 + ], + "spans": [], + "index": 19 + }, + { + "bbox": [ + 166, + 451.7058823529412, + 444, + 468.0588235294118 + ], + "spans": [], + "index": 20 + }, + { + "bbox": [ + 166, + 468.0588235294118, + 444, + 484.41176470588243 + ], + "spans": [], + "index": 21 + }, + { + "bbox": [ + 166, + 484.41176470588243, + 444, + 500.76470588235304 + ], + "spans": [], + "index": 22 + }, + { + "bbox": [ + 166, + 500.76470588235304, + 444, + 517.1176470588236 + ], + "spans": [], + "index": 23 + }, + { + "bbox": [ + 166, + 517.1176470588236, + 444, + 533.4705882352943 + ], + "spans": [], + "index": 24 + }, + { + "bbox": [ + 166, + 533.4705882352943, + 444, + 549.8235294117649 + ], + "spans": [], + "index": 25 + }, + { + "bbox": [ + 166, + 549.8235294117649, + 444, + 566.1764705882355 + ], + "spans": [], + "index": 26 + }, + { + "bbox": [ + 166, + 566.1764705882355, + 444, + 582.5294117647061 + ], + "spans": [], + "index": 27 + }, + { + "bbox": [ + 166, + 582.5294117647061, + 444, + 598.8823529411767 + ], + "spans": [], + "index": 28 + }, + { + "bbox": [ + 166, + 598.8823529411767, + 444, + 615.2352941176473 + ], + "spans": [], + "index": 29 + }, + { + "bbox": [ + 166, + 615.2352941176473, + 444, + 631.5882352941179 + ], + "spans": [], + "index": 30 + }, + { + "bbox": [ + 166, + 631.5882352941179, + 444, + 647.9411764705885 + ], + "spans": [], + "index": 31 + }, + { + "bbox": [ + 166, + 647.9411764705885, + 444, + 664.2941176470591 + ], + "spans": [], + "index": 32 + }, + { + "bbox": [ + 166, + 664.2941176470591, + 444, + 680.6470588235297 + ], + "spans": [], + "index": 33 + }, + { + "bbox": [ + 166, + 680.6470588235297, + 444, + 697.0000000000003 + ], + "spans": [], + "index": 34 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 127, + 708, + 484, + 721 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 124, + 707, + 484, + 723 + ], + "spans": [ + { + "bbox": [ + 124, + 707, + 451, + 723 + ], + "score": 1.0, + "content": "Figure 9: Super resolution results for the CNF trained on Imagenet64 sampled at", + "type": "text" + }, + { + "bbox": [ + 451, + 709, + 484, + 719 + ], + "score": 0.81, + "content": "\\tau = 0 . 8", + "type": "inline_equation" + } + ], + "index": 35 + } + ], + "index": 35 + } + ], + "index": 30.5 + } + ] + } + ], + "_backend": "pipeline", + "_version_name": "2.2.2" +} \ No newline at end of file diff --git a/parse/train/rJg3zxBYwH/rJg3zxBYwH_model.json b/parse/train/rJg3zxBYwH/rJg3zxBYwH_model.json new file mode 100644 index 0000000000000000000000000000000000000000..36f2f6fe88ef3577c8d280e1d88688a60d0084d0 --- /dev/null +++ b/parse/train/rJg3zxBYwH/rJg3zxBYwH_model.json @@ -0,0 +1,20204 @@ +[ + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 298, + 1174, + 1403, + 1174, + 1403, + 1419, + 298, + 1419 + ], + "score": 0.984 + }, + { + "category_id": 1, + "poly": [ + 398, + 589, + 1302, + 589, + 1302, + 1045, + 398, + 1045 + ], + "score": 0.983 + }, + { + "category_id": 1, + "poly": [ + 298, + 1435, + 1403, + 1435, + 1403, + 1619, + 298, + 1619 + ], + "score": 0.978 + }, + { + "category_id": 1, + "poly": [ + 299, + 1634, + 1402, + 1634, + 1402, + 1787, + 299, + 1787 + ], + "score": 0.976 + }, + { + "category_id": 1, + "poly": [ + 299, + 1803, + 1401, + 1803, + 1401, + 1957, + 299, + 1957 + ], + "score": 0.974 + }, + { + "category_id": 0, + "poly": [ + 300, + 219, + 1398, + 219, + 1398, + 323, + 300, + 323 + ], + "score": 0.961 + }, + { + "category_id": 1, + "poly": [ + 299, + 1972, + 1398, + 1972, + 1398, + 2033, + 299, + 2033 + ], + "score": 0.938 + }, + { + "category_id": 1, + "poly": [ + 313, + 378, + 680, + 378, + 680, + 438, + 313, + 438 + ], + "score": 0.921 + }, + { + "category_id": 0, + "poly": [ + 302, + 1106, + 573, + 1106, + 573, + 1140, + 302, + 1140 + ], + "score": 0.901 + }, + { + "category_id": 2, + "poly": [ + 298, + 75, + 858, + 75, + 858, + 105, + 298, + 105 + ], + "score": 0.898 + }, + { + "category_id": 0, + "poly": [ + 773, + 520, + 926, + 520, + 926, + 553, + 773, + 553 + ], + "score": 0.878 + }, + { + "category_id": 2, + "poly": [ + 842, + 2089, + 856, + 2089, + 856, + 2111, + 842, + 2111 + ], + "score": 0.602 + }, + { + "category_id": 13, + "poly": [ + 689, + 1175, + 814, + 1175, + 814, + 1210, + 689, + 1210 + ], + "score": 0.95, + "latex": "p _ { Y | X } ( \\mathbf { y } | \\mathbf { x } )" + }, + { + "category_id": 13, + "poly": [ + 1172, + 589, + 1244, + 589, + 1244, + 623, + 1172, + 623 + ], + "score": 0.92, + "latex": "p _ { Y } ( y )" + }, + { + "category_id": 13, + "poly": [ + 1275, + 2003, + 1400, + 2003, + 1400, + 2038, + 1275, + 2038 + ], + "score": 0.92, + "latex": "p _ { Y | X } ( \\mathbf { y } | \\mathbf { x } )" + }, + { + "category_id": 13, + "poly": [ + 621, + 650, + 691, + 650, + 691, + 683, + 621, + 683 + ], + "score": 0.92, + "latex": "p _ { Z } ( z )" + }, + { + "category_id": 13, + "poly": [ + 396, + 833, + 518, + 833, + 518, + 868, + 396, + 868 + ], + "score": 0.92, + "latex": "p _ { Y \\mid X } ( y | x )" + }, + { + "category_id": 13, + "poly": [ + 976, + 1497, + 1047, + 1497, + 1047, + 1529, + 976, + 1529 + ], + "score": 0.92, + "latex": "p _ { Z } ( \\mathbf { z } )" + }, + { + "category_id": 13, + "poly": [ + 297, + 1497, + 372, + 1497, + 372, + 1530, + 297, + 1530 + ], + "score": 0.89, + "latex": "p _ { Y } ( \\mathbf { y } )" + }, + { + "category_id": 13, + "poly": [ + 403, + 1528, + 434, + 1528, + 434, + 1562, + 403, + 1562 + ], + "score": 0.89, + "latex": "f _ { \\phi }" + }, + { + "category_id": 13, + "poly": [ + 969, + 1699, + 983, + 1699, + 983, + 1725, + 969, + 1725 + ], + "score": 0.44, + "latex": "i _ { , }" + }, + { + "category_id": 13, + "poly": [ + 925, + 808, + 944, + 808, + 944, + 831, + 925, + 831 + ], + "score": 0.4, + "latex": "\\mathbf { X }" + }, + { + "category_id": 13, + "poly": [ + 488, + 1210, + 509, + 1210, + 509, + 1237, + 488, + 1237 + ], + "score": 0.4, + "latex": "\\mathbf { y }" + }, + { + "category_id": 13, + "poly": [ + 861, + 1729, + 881, + 1729, + 881, + 1755, + 861, + 1755 + ], + "score": 0.36, + "latex": "i i" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 217.0, + 1404.0, + 217.0, + 1404.0, + 274.0, + 294.0, + 274.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 276.0, + 670.0, + 276.0, + 670.0, + 326.0, + 292.0, + 326.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1102.0, + 579.0, + 1102.0, + 579.0, + 1148.0, + 294.0, + 1148.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 298.0, + 73.0, + 858.0, + 73.0, + 858.0, + 108.0, + 298.0, + 108.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": [ + 840.0, + 2088.0, + 861.0, + 2088.0, + 861.0, + 2117.0, + 840.0, + 2117.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1173.0, + 688.0, + 1173.0, + 688.0, + 1214.0, + 292.0, + 1214.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 815.0, + 1173.0, + 1407.0, + 1173.0, + 1407.0, + 1214.0, + 815.0, + 1214.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1205.0, + 487.0, + 1205.0, + 487.0, + 1239.0, + 294.0, + 1239.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 510.0, + 1205.0, + 1405.0, + 1205.0, + 1405.0, + 1239.0, + 510.0, + 1239.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1237.0, + 1405.0, + 1237.0, + 1405.0, + 1270.0, + 294.0, + 1270.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1267.0, + 1405.0, + 1267.0, + 1405.0, + 1300.0, + 294.0, + 1300.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1298.0, + 1405.0, + 1298.0, + 1405.0, + 1331.0, + 294.0, + 1331.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1328.0, + 1405.0, + 1328.0, + 1405.0, + 1361.0, + 294.0, + 1361.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1359.0, + 1407.0, + 1359.0, + 1407.0, + 1392.0, + 294.0, + 1392.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1386.0, + 458.0, + 1386.0, + 458.0, + 1420.0, + 295.0, + 1420.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 588.0, + 1171.0, + 588.0, + 1171.0, + 626.0, + 393.0, + 626.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1245.0, + 588.0, + 1304.0, + 588.0, + 1304.0, + 626.0, + 1245.0, + 626.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 392.0, + 619.0, + 1308.0, + 619.0, + 1308.0, + 657.0, + 392.0, + 657.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 392.0, + 647.0, + 620.0, + 647.0, + 620.0, + 688.0, + 392.0, + 688.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 692.0, + 647.0, + 1307.0, + 647.0, + 1307.0, + 688.0, + 692.0, + 688.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 679.0, + 1304.0, + 679.0, + 1304.0, + 715.0, + 394.0, + 715.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 710.0, + 1304.0, + 710.0, + 1304.0, + 748.0, + 393.0, + 748.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 395.0, + 743.0, + 1305.0, + 743.0, + 1305.0, + 775.0, + 395.0, + 775.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 395.0, + 773.0, + 1305.0, + 773.0, + 1305.0, + 805.0, + 395.0, + 805.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 805.0, + 924.0, + 805.0, + 924.0, + 834.0, + 393.0, + 834.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 945.0, + 805.0, + 1305.0, + 805.0, + 1305.0, + 834.0, + 945.0, + 834.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 391.0, + 831.0, + 395.0, + 831.0, + 395.0, + 866.0, + 391.0, + 866.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 519.0, + 831.0, + 1308.0, + 831.0, + 1308.0, + 866.0, + 519.0, + 866.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 392.0, + 863.0, + 1306.0, + 863.0, + 1306.0, + 898.0, + 392.0, + 898.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 892.0, + 1305.0, + 892.0, + 1305.0, + 927.0, + 394.0, + 927.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 924.0, + 1306.0, + 924.0, + 1306.0, + 959.0, + 394.0, + 959.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 955.0, + 1306.0, + 955.0, + 1306.0, + 990.0, + 393.0, + 990.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 986.0, + 1305.0, + 986.0, + 1305.0, + 1017.0, + 394.0, + 1017.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 395.0, + 1019.0, + 491.0, + 1019.0, + 491.0, + 1046.0, + 395.0, + 1046.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1434.0, + 1405.0, + 1434.0, + 1405.0, + 1470.0, + 293.0, + 1470.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1466.0, + 1405.0, + 1466.0, + 1405.0, + 1502.0, + 294.0, + 1502.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1495.0, + 296.0, + 1495.0, + 296.0, + 1532.0, + 291.0, + 1532.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 373.0, + 1495.0, + 975.0, + 1495.0, + 975.0, + 1532.0, + 373.0, + 1532.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1048.0, + 1495.0, + 1406.0, + 1495.0, + 1406.0, + 1532.0, + 1048.0, + 1532.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1527.0, + 402.0, + 1527.0, + 402.0, + 1563.0, + 294.0, + 1563.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 435.0, + 1527.0, + 1405.0, + 1527.0, + 1405.0, + 1563.0, + 435.0, + 1563.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1556.0, + 1407.0, + 1556.0, + 1407.0, + 1593.0, + 293.0, + 1593.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1584.0, + 975.0, + 1584.0, + 975.0, + 1623.0, + 293.0, + 1623.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1634.0, + 1404.0, + 1634.0, + 1404.0, + 1671.0, + 294.0, + 1671.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1663.0, + 1406.0, + 1663.0, + 1406.0, + 1701.0, + 293.0, + 1701.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1693.0, + 968.0, + 1693.0, + 968.0, + 1730.0, + 294.0, + 1730.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 984.0, + 1693.0, + 1404.0, + 1693.0, + 1404.0, + 1730.0, + 984.0, + 1730.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1726.0, + 860.0, + 1726.0, + 860.0, + 1763.0, + 295.0, + 1763.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 882.0, + 1726.0, + 1406.0, + 1726.0, + 1406.0, + 1763.0, + 882.0, + 1763.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1757.0, + 1037.0, + 1757.0, + 1037.0, + 1794.0, + 294.0, + 1794.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1803.0, + 1403.0, + 1803.0, + 1403.0, + 1836.0, + 297.0, + 1836.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1835.0, + 1403.0, + 1835.0, + 1403.0, + 1868.0, + 295.0, + 1868.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1863.0, + 1405.0, + 1863.0, + 1405.0, + 1899.0, + 293.0, + 1899.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1891.0, + 1405.0, + 1891.0, + 1405.0, + 1932.0, + 293.0, + 1932.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1921.0, + 375.0, + 1921.0, + 375.0, + 1964.0, + 291.0, + 1964.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1969.0, + 1404.0, + 1969.0, + 1404.0, + 2009.0, + 294.0, + 2009.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1997.0, + 1274.0, + 1997.0, + 1274.0, + 2040.0, + 293.0, + 2040.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 315.0, + 379.0, + 560.0, + 379.0, + 560.0, + 411.0, + 315.0, + 411.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 312.0, + 407.0, + 681.0, + 407.0, + 681.0, + 442.0, + 312.0, + 442.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 0, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 298, + 228, + 1403, + 228, + 1403, + 354, + 298, + 354 + ], + "score": 0.978 + }, + { + "category_id": 1, + "poly": [ + 297, + 1634, + 1403, + 1634, + 1403, + 1790, + 297, + 1790 + ], + "score": 0.977 + }, + { + "category_id": 1, + "poly": [ + 297, + 649, + 1404, + 649, + 1404, + 774, + 297, + 774 + ], + "score": 0.976 + }, + { + "category_id": 1, + "poly": [ + 298, + 463, + 1404, + 463, + 1404, + 557, + 298, + 557 + ], + "score": 0.975 + }, + { + "category_id": 1, + "poly": [ + 298, + 1291, + 1404, + 1291, + 1404, + 1384, + 298, + 1384 + ], + "score": 0.974 + }, + { + "category_id": 1, + "poly": [ + 298, + 1415, + 1403, + 1415, + 1403, + 1509, + 298, + 1509 + ], + "score": 0.974 + }, + { + "category_id": 1, + "poly": [ + 297, + 1820, + 1405, + 1820, + 1405, + 1913, + 297, + 1913 + ], + "score": 0.974 + }, + { + "category_id": 1, + "poly": [ + 300, + 1107, + 1404, + 1107, + 1404, + 1203, + 300, + 1203 + ], + "score": 0.963 + }, + { + "category_id": 8, + "poly": [ + 667, + 781, + 1028, + 781, + 1028, + 855, + 667, + 855 + ], + "score": 0.956 + }, + { + "category_id": 1, + "poly": [ + 297, + 1540, + 1400, + 1540, + 1400, + 1604, + 297, + 1604 + ], + "score": 0.955 + }, + { + "category_id": 1, + "poly": [ + 297, + 861, + 1403, + 861, + 1403, + 1077, + 297, + 1077 + ], + "score": 0.954 + }, + { + "category_id": 8, + "poly": [ + 571, + 1917, + 1126, + 1917, + 1126, + 1987, + 571, + 1987 + ], + "score": 0.946 + }, + { + "category_id": 2, + "poly": [ + 334, + 2004, + 702, + 2004, + 702, + 2035, + 334, + 2035 + ], + "score": 0.92 + }, + { + "category_id": 0, + "poly": [ + 299, + 396, + 558, + 396, + 558, + 432, + 299, + 432 + ], + "score": 0.92 + }, + { + "category_id": 0, + "poly": [ + 299, + 592, + 634, + 592, + 634, + 625, + 299, + 625 + ], + "score": 0.919 + }, + { + "category_id": 2, + "poly": [ + 298, + 75, + 858, + 75, + 858, + 105, + 298, + 105 + ], + "score": 0.916 + }, + { + "category_id": 9, + "poly": [ + 1366, + 804, + 1400, + 804, + 1400, + 833, + 1366, + 833 + ], + "score": 0.887 + }, + { + "category_id": 9, + "poly": [ + 1366, + 1936, + 1400, + 1936, + 1400, + 1965, + 1366, + 1965 + ], + "score": 0.879 + }, + { + "category_id": 8, + "poly": [ + 460, + 1209, + 733, + 1209, + 733, + 1283, + 460, + 1283 + ], + "score": 0.842 + }, + { + "category_id": 8, + "poly": [ + 945, + 1209, + 1236, + 1209, + 1236, + 1283, + 945, + 1283 + ], + "score": 0.804 + }, + { + "category_id": 2, + "poly": [ + 840, + 2088, + 859, + 2088, + 859, + 2112, + 840, + 2112 + ], + "score": 0.733 + }, + { + "category_id": 8, + "poly": [ + 454, + 1208, + 1256, + 1208, + 1256, + 1283, + 454, + 1283 + ], + "score": 0.501 + }, + { + "category_id": 2, + "poly": [ + 840, + 2088, + 860, + 2088, + 860, + 2112, + 840, + 2112 + ], + "score": 0.193 + }, + { + "category_id": 8, + "poly": [ + 947, + 1210, + 1235, + 1210, + 1235, + 1247, + 947, + 1247 + ], + "score": 0.104 + }, + { + "category_id": 13, + "poly": [ + 1054, + 1170, + 1198, + 1170, + 1198, + 1204, + 1054, + 1204 + ], + "score": 0.95, + "latex": "\\mathbf { y } = [ \\mathbf { y } _ { 0 } , \\mathbf { y } _ { 1 } ]" + }, + { + "category_id": 14, + "poly": [ + 668, + 780, + 1032, + 780, + 1032, + 856, + 668, + 856 + ], + "score": 0.94, + "latex": "p _ { Y } ( \\mathbf { y } ) = p _ { Z } ( f _ { \\phi } ( \\mathbf { y } ) ) \\left. \\frac { \\partial f _ { \\phi } ( \\mathbf { y } ) } { \\partial \\mathbf { y } } \\right. ." + }, + { + "category_id": 13, + "poly": [ + 869, + 1171, + 1004, + 1171, + 1004, + 1204, + 869, + 1204 + ], + "score": 0.93, + "latex": "{ \\bf z } = [ { \\bf z } _ { 0 } , { \\bf z } _ { 1 } ]" + }, + { + "category_id": 14, + "poly": [ + 571, + 1913, + 1129, + 1913, + 1129, + 1988, + 571, + 1988 + ], + "score": 0.93, + "latex": "P _ { \\mathrm { m o d e l } } ( \\mathbf { y } ) = \\int _ { \\mathcal { V } } P ( \\mathbf { y } | \\mathbf { v } ) p ( \\mathbf { v } ) \\mathrm { d } \\mathbf { v } = \\int _ { \\mathcal { V } } p ( \\mathbf { y } , \\mathbf { v } ) \\mathrm { d } \\mathbf { v }" + }, + { + "category_id": 13, + "poly": [ + 992, + 711, + 1062, + 711, + 1062, + 745, + 992, + 745 + ], + "score": 0.92, + "latex": "p _ { Z } ( \\mathbf { z } )" + }, + { + "category_id": 13, + "poly": [ + 298, + 1696, + 542, + 1696, + 542, + 1730, + 298, + 1730 + ], + "score": 0.92, + "latex": "\\mathbf { \\bar { \\mathcal { N } } } ( \\mathbf { z } _ { 1 } ; \\mu ( \\mathbf { z } _ { 0 } ) , \\sigma ^ { 2 } ( \\mathbf { z } _ { 0 } ) )" + }, + { + "category_id": 13, + "poly": [ + 405, + 862, + 553, + 862, + 553, + 896, + 405, + 896 + ], + "score": 0.92, + "latex": "| \\partial f _ { \\phi } ( \\mathbf { y } ) / \\partial \\mathbf { y } |" + }, + { + "category_id": 13, + "poly": [ + 433, + 742, + 507, + 742, + 507, + 775, + 433, + 775 + ], + "score": 0.91, + "latex": "p _ { Y } ( \\mathbf { y } )" + }, + { + "category_id": 13, + "poly": [ + 1264, + 1666, + 1402, + 1666, + 1402, + 1700, + 1264, + 1700 + ], + "score": 0.91, + "latex": "p ( \\mathbf { z } _ { 1 } | \\mathbf { z } _ { 0 } ) =" + }, + { + "category_id": 13, + "poly": [ + 733, + 1696, + 794, + 1696, + 794, + 1730, + 733, + 1730 + ], + "score": 0.91, + "latex": "\\sigma ^ { 2 } ( \\cdot )" + }, + { + "category_id": 13, + "poly": [ + 482, + 1291, + 527, + 1291, + 527, + 1325, + 482, + 1325 + ], + "score": 0.91, + "latex": "s ( \\cdot )" + }, + { + "category_id": 13, + "poly": [ + 1290, + 681, + 1404, + 681, + 1404, + 716, + 1290, + 716 + ], + "score": 0.9, + "latex": "f _ { \\phi } : \\mathcal { V } " + }, + { + "category_id": 13, + "poly": [ + 703, + 1291, + 745, + 1291, + 745, + 1325, + 703, + 1325 + ], + "score": 0.9, + "latex": "t ( \\cdot )" + }, + { + "category_id": 13, + "poly": [ + 630, + 1696, + 679, + 1696, + 679, + 1730, + 630, + 1730 + ], + "score": 0.9, + "latex": "\\mu ( \\cdot )" + }, + { + "category_id": 13, + "poly": [ + 1332, + 1448, + 1400, + 1448, + 1400, + 1476, + 1332, + 1476 + ], + "score": 0.89, + "latex": "1 \\times 1" + }, + { + "category_id": 13, + "poly": [ + 901, + 863, + 931, + 863, + 931, + 896, + 901, + 896 + ], + "score": 0.89, + "latex": "f _ { \\phi }" + }, + { + "category_id": 13, + "poly": [ + 1270, + 1417, + 1342, + 1417, + 1342, + 1446, + 1270, + 1446 + ], + "score": 0.89, + "latex": "1 \\times 1" + }, + { + "category_id": 13, + "poly": [ + 802, + 895, + 833, + 895, + 833, + 927, + 802, + 927 + ], + "score": 0.89, + "latex": "f _ { \\phi }" + }, + { + "category_id": 13, + "poly": [ + 529, + 896, + 559, + 896, + 559, + 928, + 529, + 928 + ], + "score": 0.88, + "latex": "f _ { \\phi }" + }, + { + "category_id": 13, + "poly": [ + 1233, + 924, + 1263, + 924, + 1263, + 957, + 1233, + 957 + ], + "score": 0.88, + "latex": "f _ { \\phi }" + }, + { + "category_id": 13, + "poly": [ + 426, + 1175, + 456, + 1175, + 456, + 1201, + 426, + 1201 + ], + "score": 0.87, + "latex": "\\mathbf { z } _ { 1 }" + }, + { + "category_id": 13, + "poly": [ + 1222, + 1702, + 1253, + 1702, + 1253, + 1728, + 1222, + 1728 + ], + "score": 0.86, + "latex": "\\mathbf { z } _ { 0 }" + }, + { + "category_id": 13, + "poly": [ + 951, + 1144, + 981, + 1144, + 981, + 1171, + 951, + 1171 + ], + "score": 0.86, + "latex": "\\mathbf { z } _ { 1 }" + }, + { + "category_id": 13, + "poly": [ + 688, + 713, + 707, + 713, + 707, + 744, + 688, + 744 + ], + "score": 0.86, + "latex": "f" + }, + { + "category_id": 13, + "poly": [ + 897, + 1762, + 927, + 1762, + 927, + 1788, + 897, + 1788 + ], + "score": 0.85, + "latex": "\\mathbf { z } _ { 0 }" + }, + { + "category_id": 13, + "poly": [ + 868, + 1145, + 898, + 1145, + 898, + 1171, + 868, + 1171 + ], + "score": 0.85, + "latex": "\\mathbf { z } _ { 0 }" + }, + { + "category_id": 13, + "poly": [ + 667, + 682, + 691, + 682, + 691, + 711, + 667, + 711 + ], + "score": 0.85, + "latex": "\\mathcal { V }" + }, + { + "category_id": 13, + "poly": [ + 763, + 1672, + 793, + 1672, + 793, + 1696, + 763, + 1696 + ], + "score": 0.84, + "latex": "\\mathbf { z } _ { 1 }" + }, + { + "category_id": 14, + "poly": [ + 456, + 1207, + 1240, + 1207, + 1240, + 1287, + 456, + 1287 + ], + "score": 0.84, + "latex": "\\begin{array} { r l r l } & { \\mathbf { y } _ { 0 } = s ( \\mathbf { z } _ { 1 } ) \\cdot \\mathbf { z } _ { 0 } + t ( \\mathbf { z } _ { 1 } ) \\qquad } & & { \\mathbf { z } _ { 0 } = ( \\mathbf { z } _ { 0 } - t ( \\mathbf { y } _ { 1 } ) ) / s ( \\mathbf { y } _ { 1 } ) } \\\\ & { \\mathbf { y } _ { 1 } = \\mathbf { z } _ { 1 } \\qquad } & & { \\mathbf { z } _ { 1 } = \\mathbf { y } _ { 1 } } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 1319, + 1146, + 1348, + 1146, + 1348, + 1171, + 1319, + 1171 + ], + "score": 0.84, + "latex": "\\mathbf { z } _ { 0 }" + }, + { + "category_id": 13, + "poly": [ + 412, + 713, + 432, + 713, + 432, + 743, + 412, + 743 + ], + "score": 0.84, + "latex": "\\phi" + }, + { + "category_id": 13, + "poly": [ + 840, + 1672, + 871, + 1672, + 871, + 1698, + 840, + 1698 + ], + "score": 0.84, + "latex": "\\mathbf { z } _ { 0 }" + }, + { + "category_id": 13, + "poly": [ + 484, + 1670, + 514, + 1670, + 514, + 1696, + 484, + 1696 + ], + "score": 0.83, + "latex": "\\mathbf { z } _ { 1 }" + }, + { + "category_id": 13, + "poly": [ + 394, + 1672, + 425, + 1672, + 425, + 1696, + 394, + 1696 + ], + "score": 0.82, + "latex": "\\mathbf { z } _ { 0 }" + }, + { + "category_id": 13, + "poly": [ + 593, + 682, + 618, + 682, + 618, + 708, + 593, + 708 + ], + "score": 0.81, + "latex": "\\mathcal { Z }" + }, + { + "category_id": 13, + "poly": [ + 1357, + 898, + 1393, + 898, + 1393, + 925, + 1357, + 925 + ], + "score": 0.79, + "latex": "p _ { Y }" + }, + { + "category_id": 14, + "poly": [ + 944, + 1209, + 1238, + 1209, + 1238, + 1287, + 944, + 1287 + ], + "score": 0.78, + "latex": "\\begin{array} { r l } & { \\mathbf { z } _ { 0 } = ( \\mathbf { z } _ { 0 } - t ( \\mathbf { y } _ { 1 } ) ) / s ( \\mathbf { y } _ { 1 } ) } \\\\ & { \\mathbf { z } _ { 1 } = \\mathbf { y } _ { 1 } } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 298, + 713, + 322, + 713, + 322, + 740, + 298, + 740 + ], + "score": 0.77, + "latex": "\\mathcal { Z }" + }, + { + "category_id": 14, + "poly": [ + 458, + 1208, + 734, + 1208, + 734, + 1287, + 458, + 1287 + ], + "score": 0.76, + "latex": "\\begin{array} { r } { \\mathbf { y } _ { 0 } = s ( \\mathbf { z } _ { 1 } ) \\cdot \\mathbf { z } _ { 0 } + t ( \\mathbf { z } _ { 1 } ) } \\\\ { \\mathbf { y } _ { 1 } = \\mathbf { z } _ { 1 } } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 1251, + 1858, + 1273, + 1858, + 1273, + 1884, + 1251, + 1884 + ], + "score": 0.69, + "latex": "\\mathbf { y }" + }, + { + "category_id": 13, + "poly": [ + 1216, + 1643, + 1235, + 1643, + 1235, + 1664, + 1216, + 1664 + ], + "score": 0.59, + "latex": "\\mathbf { z }" + }, + { + "category_id": 13, + "poly": [ + 510, + 987, + 535, + 987, + 535, + 1014, + 510, + 1014 + ], + "score": 0.54, + "latex": "i \\nu _ { . }" + }, + { + "category_id": 13, + "poly": [ + 603, + 1146, + 622, + 1146, + 622, + 1168, + 603, + 1168 + ], + "score": 0.54, + "latex": "\\mathbf { z }" + }, + { + "category_id": 13, + "poly": [ + 422, + 1416, + 489, + 1416, + 489, + 1446, + 422, + 1446 + ], + "score": 0.49, + "latex": "\\textbf { 1 x 1 }" + }, + { + "category_id": 13, + "poly": [ + 432, + 957, + 452, + 957, + 452, + 983, + 432, + 983 + ], + "score": 0.4, + "latex": "i i _ { . }" + }, + { + "category_id": 13, + "poly": [ + 297, + 957, + 313, + 957, + 313, + 985, + 297, + 985 + ], + "score": 0.37, + "latex": "i ," + }, + { + "category_id": 13, + "poly": [ + 1079, + 868, + 1101, + 868, + 1101, + 895, + 1079, + 895 + ], + "score": 0.34, + "latex": "\\mathbf { y }" + }, + { + "category_id": 14, + "poly": [ + 946, + 1254, + 1047, + 1254, + 1047, + 1286, + 946, + 1286 + ], + "score": 0.26, + "latex": "\\mathbf z _ { 1 } = \\mathbf y _ { 1 }" + }, + { + "category_id": 15, + "poly": [ + 332.0, + 1998.0, + 702.0, + 1998.0, + 702.0, + 2041.0, + 332.0, + 2041.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 390.0, + 562.0, + 390.0, + 562.0, + 441.0, + 290.0, + 441.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 590.0, + 637.0, + 590.0, + 637.0, + 629.0, + 294.0, + 629.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 298.0, + 73.0, + 858.0, + 73.0, + 858.0, + 108.0, + 298.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 838.0, + 2085.0, + 863.0, + 2085.0, + 863.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": [ + 294.0, + 230.0, + 1404.0, + 230.0, + 1404.0, + 266.0, + 294.0, + 266.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 260.0, + 1407.0, + 260.0, + 1407.0, + 296.0, + 292.0, + 296.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 291.0, + 1405.0, + 291.0, + 1405.0, + 326.0, + 293.0, + 326.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 322.0, + 1267.0, + 322.0, + 1267.0, + 358.0, + 293.0, + 358.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1633.0, + 1215.0, + 1633.0, + 1215.0, + 1671.0, + 295.0, + 1671.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1236.0, + 1633.0, + 1404.0, + 1633.0, + 1404.0, + 1671.0, + 1236.0, + 1671.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1665.0, + 393.0, + 1665.0, + 393.0, + 1703.0, + 293.0, + 1703.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 426.0, + 1665.0, + 483.0, + 1665.0, + 483.0, + 1703.0, + 426.0, + 1703.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 515.0, + 1665.0, + 762.0, + 1665.0, + 762.0, + 1703.0, + 515.0, + 1703.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 794.0, + 1665.0, + 839.0, + 1665.0, + 839.0, + 1703.0, + 794.0, + 1703.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 872.0, + 1665.0, + 1263.0, + 1665.0, + 1263.0, + 1703.0, + 872.0, + 1703.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1695.0, + 297.0, + 1695.0, + 297.0, + 1732.0, + 293.0, + 1732.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 543.0, + 1695.0, + 629.0, + 1695.0, + 629.0, + 1732.0, + 543.0, + 1732.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 680.0, + 1695.0, + 732.0, + 1695.0, + 732.0, + 1732.0, + 680.0, + 1732.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 795.0, + 1695.0, + 1221.0, + 1695.0, + 1221.0, + 1732.0, + 795.0, + 1732.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1254.0, + 1695.0, + 1405.0, + 1695.0, + 1405.0, + 1732.0, + 1254.0, + 1732.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1725.0, + 1407.0, + 1725.0, + 1407.0, + 1763.0, + 293.0, + 1763.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1756.0, + 896.0, + 1756.0, + 896.0, + 1792.0, + 295.0, + 1792.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 928.0, + 1756.0, + 1134.0, + 1756.0, + 1134.0, + 1792.0, + 928.0, + 1792.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 649.0, + 1405.0, + 649.0, + 1405.0, + 686.0, + 294.0, + 686.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 680.0, + 592.0, + 680.0, + 592.0, + 716.0, + 294.0, + 716.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 619.0, + 680.0, + 666.0, + 680.0, + 666.0, + 716.0, + 619.0, + 716.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 692.0, + 680.0, + 1289.0, + 680.0, + 1289.0, + 716.0, + 692.0, + 716.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 710.0, + 411.0, + 710.0, + 411.0, + 747.0, + 323.0, + 747.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 433.0, + 710.0, + 687.0, + 710.0, + 687.0, + 747.0, + 433.0, + 747.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 708.0, + 710.0, + 991.0, + 710.0, + 991.0, + 747.0, + 708.0, + 747.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1063.0, + 710.0, + 1407.0, + 710.0, + 1407.0, + 747.0, + 1063.0, + 747.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 738.0, + 432.0, + 738.0, + 432.0, + 778.0, + 293.0, + 778.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 508.0, + 738.0, + 545.0, + 738.0, + 545.0, + 778.0, + 508.0, + 778.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 463.0, + 1405.0, + 463.0, + 1405.0, + 499.0, + 292.0, + 499.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 494.0, + 1405.0, + 494.0, + 1405.0, + 529.0, + 292.0, + 529.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 525.0, + 936.0, + 525.0, + 936.0, + 562.0, + 294.0, + 562.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1289.0, + 481.0, + 1289.0, + 481.0, + 1327.0, + 296.0, + 1327.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 528.0, + 1289.0, + 702.0, + 1289.0, + 702.0, + 1327.0, + 528.0, + 1327.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 746.0, + 1289.0, + 1404.0, + 1289.0, + 1404.0, + 1327.0, + 746.0, + 1327.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1321.0, + 1405.0, + 1321.0, + 1405.0, + 1358.0, + 293.0, + 1358.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1353.0, + 813.0, + 1353.0, + 813.0, + 1387.0, + 296.0, + 1387.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1416.0, + 421.0, + 1416.0, + 421.0, + 1450.0, + 296.0, + 1450.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 490.0, + 1416.0, + 1269.0, + 1416.0, + 1269.0, + 1450.0, + 490.0, + 1450.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1343.0, + 1416.0, + 1403.0, + 1416.0, + 1403.0, + 1450.0, + 1343.0, + 1450.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1449.0, + 1331.0, + 1449.0, + 1331.0, + 1479.0, + 297.0, + 1479.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1477.0, + 1145.0, + 1477.0, + 1145.0, + 1509.0, + 293.0, + 1509.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1819.0, + 1403.0, + 1819.0, + 1403.0, + 1856.0, + 296.0, + 1856.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1853.0, + 1250.0, + 1853.0, + 1250.0, + 1887.0, + 295.0, + 1887.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1274.0, + 1853.0, + 1405.0, + 1853.0, + 1405.0, + 1887.0, + 1274.0, + 1887.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1884.0, + 468.0, + 1884.0, + 468.0, + 1913.0, + 295.0, + 1913.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1105.0, + 1404.0, + 1105.0, + 1404.0, + 1146.0, + 295.0, + 1146.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1139.0, + 602.0, + 1139.0, + 602.0, + 1176.0, + 295.0, + 1176.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 623.0, + 1139.0, + 867.0, + 1139.0, + 867.0, + 1176.0, + 623.0, + 1176.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 899.0, + 1139.0, + 950.0, + 1139.0, + 950.0, + 1176.0, + 899.0, + 1176.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 982.0, + 1139.0, + 1318.0, + 1139.0, + 1318.0, + 1176.0, + 982.0, + 1176.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1349.0, + 1139.0, + 1406.0, + 1139.0, + 1406.0, + 1176.0, + 1349.0, + 1176.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1167.0, + 425.0, + 1167.0, + 425.0, + 1208.0, + 294.0, + 1208.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 457.0, + 1167.0, + 868.0, + 1167.0, + 868.0, + 1208.0, + 457.0, + 1208.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1005.0, + 1167.0, + 1053.0, + 1167.0, + 1053.0, + 1208.0, + 1005.0, + 1208.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1199.0, + 1167.0, + 1277.0, + 1167.0, + 1277.0, + 1208.0, + 1199.0, + 1208.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1540.0, + 1405.0, + 1540.0, + 1405.0, + 1576.0, + 296.0, + 1576.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1573.0, + 1404.0, + 1573.0, + 1404.0, + 1605.0, + 296.0, + 1605.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 860.0, + 404.0, + 860.0, + 404.0, + 899.0, + 295.0, + 899.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 554.0, + 860.0, + 900.0, + 860.0, + 900.0, + 899.0, + 554.0, + 899.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 932.0, + 860.0, + 1078.0, + 860.0, + 1078.0, + 899.0, + 932.0, + 899.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1102.0, + 860.0, + 1407.0, + 860.0, + 1407.0, + 899.0, + 1102.0, + 899.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 890.0, + 528.0, + 890.0, + 528.0, + 931.0, + 292.0, + 931.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 560.0, + 890.0, + 801.0, + 890.0, + 801.0, + 931.0, + 560.0, + 931.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 834.0, + 890.0, + 1356.0, + 890.0, + 1356.0, + 931.0, + 834.0, + 931.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1394.0, + 890.0, + 1404.0, + 890.0, + 1404.0, + 931.0, + 1394.0, + 931.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 920.0, + 1232.0, + 920.0, + 1232.0, + 959.0, + 292.0, + 959.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1264.0, + 920.0, + 1407.0, + 920.0, + 1407.0, + 959.0, + 1264.0, + 959.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 954.0, + 296.0, + 954.0, + 296.0, + 989.0, + 293.0, + 989.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 314.0, + 954.0, + 431.0, + 954.0, + 431.0, + 989.0, + 314.0, + 989.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 453.0, + 954.0, + 1405.0, + 954.0, + 1405.0, + 989.0, + 453.0, + 989.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 983.0, + 509.0, + 983.0, + 509.0, + 1020.0, + 294.0, + 1020.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 536.0, + 983.0, + 1405.0, + 983.0, + 1405.0, + 1020.0, + 536.0, + 1020.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1012.0, + 1405.0, + 1012.0, + 1405.0, + 1049.0, + 294.0, + 1049.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1046.0, + 381.0, + 1046.0, + 381.0, + 1083.0, + 292.0, + 1083.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 1, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 297, + 1311, + 1403, + 1311, + 1403, + 1468, + 297, + 1468 + ], + "score": 0.98 + }, + { + "category_id": 1, + "poly": [ + 296, + 227, + 1405, + 227, + 1405, + 447, + 296, + 447 + ], + "score": 0.98 + }, + { + "category_id": 1, + "poly": [ + 297, + 1739, + 1405, + 1739, + 1405, + 1866, + 297, + 1866 + ], + "score": 0.979 + }, + { + "category_id": 1, + "poly": [ + 297, + 1143, + 1403, + 1143, + 1403, + 1298, + 297, + 1298 + ], + "score": 0.978 + }, + { + "category_id": 1, + "poly": [ + 302, + 623, + 1400, + 623, + 1400, + 748, + 302, + 748 + ], + "score": 0.977 + }, + { + "category_id": 1, + "poly": [ + 299, + 925, + 1402, + 925, + 1402, + 1018, + 299, + 1018 + ], + "score": 0.976 + }, + { + "category_id": 8, + "poly": [ + 719, + 1038, + 978, + 1038, + 978, + 1130, + 719, + 1130 + ], + "score": 0.96 + }, + { + "category_id": 1, + "poly": [ + 296, + 1582, + 1403, + 1582, + 1403, + 1645, + 296, + 1645 + ], + "score": 0.956 + }, + { + "category_id": 1, + "poly": [ + 298, + 1971, + 1400, + 1971, + 1400, + 2035, + 298, + 2035 + ], + "score": 0.955 + }, + { + "category_id": 8, + "poly": [ + 476, + 1882, + 1218, + 1882, + 1218, + 1959, + 476, + 1959 + ], + "score": 0.954 + }, + { + "category_id": 8, + "poly": [ + 516, + 763, + 1178, + 763, + 1178, + 833, + 516, + 833 + ], + "score": 0.95 + }, + { + "category_id": 8, + "poly": [ + 486, + 535, + 1310, + 535, + 1310, + 608, + 486, + 608 + ], + "score": 0.927 + }, + { + "category_id": 0, + "poly": [ + 299, + 867, + 680, + 867, + 680, + 900, + 299, + 900 + ], + "score": 0.92 + }, + { + "category_id": 2, + "poly": [ + 298, + 75, + 858, + 75, + 858, + 105, + 298, + 105 + ], + "score": 0.918 + }, + { + "category_id": 0, + "poly": [ + 299, + 1512, + 481, + 1512, + 481, + 1547, + 299, + 1547 + ], + "score": 0.913 + }, + { + "category_id": 0, + "poly": [ + 299, + 1683, + 813, + 1683, + 813, + 1716, + 299, + 1716 + ], + "score": 0.91 + }, + { + "category_id": 9, + "poly": [ + 1366, + 1068, + 1400, + 1068, + 1400, + 1097, + 1366, + 1097 + ], + "score": 0.89 + }, + { + "category_id": 9, + "poly": [ + 1365, + 781, + 1400, + 781, + 1400, + 812, + 1365, + 812 + ], + "score": 0.883 + }, + { + "category_id": 9, + "poly": [ + 1366, + 1905, + 1400, + 1905, + 1400, + 1935, + 1366, + 1935 + ], + "score": 0.877 + }, + { + "category_id": 9, + "poly": [ + 1366, + 480, + 1400, + 480, + 1400, + 511, + 1366, + 511 + ], + "score": 0.874 + }, + { + "category_id": 9, + "poly": [ + 1366, + 556, + 1400, + 556, + 1400, + 585, + 1366, + 585 + ], + "score": 0.852 + }, + { + "category_id": 2, + "poly": [ + 841, + 2088, + 859, + 2088, + 859, + 2112, + 841, + 2112 + ], + "score": 0.692 + }, + { + "category_id": 8, + "poly": [ + 390, + 464, + 965, + 464, + 965, + 529, + 390, + 529 + ], + "score": 0.665 + }, + { + "category_id": 2, + "poly": [ + 841, + 2088, + 859, + 2088, + 859, + 2112, + 841, + 2112 + ], + "score": 0.373 + }, + { + "category_id": 14, + "poly": [ + 720, + 1033, + 978, + 1033, + 978, + 1130, + 720, + 1130 + ], + "score": 0.95, + "latex": "p ( \\mathbf { y } | \\mathbf { x } ) = \\prod _ { d = 1 } ^ { D } p ( y _ { d } | \\mathbf { x } ) ," + }, + { + "category_id": 14, + "poly": [ + 390, + 459, + 1308, + 459, + 1308, + 612, + 390, + 612 + ], + "score": 0.95, + "latex": "\\begin{array} { r l } & { \\mathbb { E } _ { P _ { \\mathrm { d a t a } } ( \\mathbf { y } ) } \\log P _ { \\mathrm { m o d e l } } ( \\mathbf { y } ) = \\mathbb { E } _ { P _ { \\mathrm { d a t a } } ( \\mathbf { y } ) } \\log \\displaystyle \\int p ( \\mathbf { y } , \\mathbf { v } ) \\mathrm { d } \\mathbf { v } } \\\\ & { \\qquad = \\mathbb { E } _ { P _ { \\mathrm { d a t a } } ( \\mathbf { y } ) } \\log \\displaystyle \\int \\frac { q ( \\mathbf { v } | \\mathbf { y } ) } { q ( \\mathbf { v } | \\mathbf { y } ) } p ( \\mathbf { y } , \\mathbf { v } ) \\mathrm { d } \\mathbf { v } \\geq \\mathbb { E } _ { P _ { \\mathrm { d a t a } } ( \\mathbf { y } ) } \\int q ( \\mathbf { v } | \\mathbf { y } ) \\log \\displaystyle \\frac { p ( \\mathbf { y } , \\mathbf { v } ) } { q ( \\mathbf { v } | \\mathbf { y } ) } \\mathrm { d } \\mathbf { v } } \\end{array}" + }, + { + "category_id": 14, + "poly": [ + 479, + 1882, + 1220, + 1882, + 1220, + 1958, + 479, + 1958 + ], + "score": 0.94, + "latex": "p _ { Y | X } ( \\mathbf { y } | \\mathbf { x } ) = p _ { Z | X } ( \\mathbf { z } | \\mathbf { x } ) \\left| \\frac { \\partial \\mathbf { z } } { \\partial \\mathbf { y } } \\right| = p _ { Z | X } ( f _ { \\phi } ( \\mathbf { y } , \\mathbf { x } ) | \\mathbf { x } ) \\left| \\frac { \\partial f _ { \\phi } ( \\mathbf { y } , \\mathbf { x } ) } { \\partial \\mathbf { y } } \\right| ." + }, + { + "category_id": 14, + "poly": [ + 517, + 759, + 1183, + 759, + 1183, + 834, + 517, + 834 + ], + "score": 0.93, + "latex": "\\mathbb { E } _ { P _ { \\mathrm { d a t a } } ( \\mathbf { y } ) } \\log P _ { \\mathrm { m o d e l } } ( \\mathbf { y } ) \\geq \\mathbb { E } _ { P _ { \\mathrm { d a t a } } ( \\mathbf { y } ) } \\int q ( \\mathbf { v } | \\mathbf { y } ) \\log \\frac { p ( \\mathbf { v } ) } { q ( \\mathbf { v } | \\mathbf { y } ) } \\mathrm { d } \\mathbf { v } ." + }, + { + "category_id": 13, + "poly": [ + 996, + 657, + 1136, + 657, + 1136, + 691, + 996, + 691 + ], + "score": 0.93, + "latex": "p ( \\mathbf { y } , \\mathbf { v } ) = 0" + }, + { + "category_id": 13, + "poly": [ + 852, + 957, + 943, + 957, + 943, + 990, + 852, + 990 + ], + "score": 0.92, + "latex": "p ^ { * } ( \\mathbf { y } \\vert \\mathbf { x } )" + }, + { + "category_id": 13, + "poly": [ + 1211, + 1802, + 1332, + 1802, + 1332, + 1837, + 1211, + 1837 + ], + "score": 0.92, + "latex": "p _ { Z | X } ( \\mathbf { z } | \\mathbf { x } )" + }, + { + "category_id": 13, + "poly": [ + 1072, + 382, + 1152, + 382, + 1152, + 416, + 1072, + 416 + ], + "score": 0.92, + "latex": "\\bar { \\bf q } ( { \\bf v } | { \\bf y } )" + }, + { + "category_id": 13, + "poly": [ + 798, + 1803, + 924, + 1803, + 924, + 1837, + 798, + 1837 + ], + "score": 0.92, + "latex": "p _ { Y | X } ( \\mathbf { y } | \\mathbf { x } )" + }, + { + "category_id": 13, + "poly": [ + 297, + 320, + 439, + 320, + 439, + 355, + 297, + 355 + ], + "score": 0.92, + "latex": "\\mathbf { y } + [ 0 , 1 ) ^ { D } ]" + }, + { + "category_id": 13, + "poly": [ + 402, + 1834, + 599, + 1834, + 599, + 1868, + 402, + 1868 + ], + "score": 0.92, + "latex": "f _ { \\phi } : \\mathcal { V } \\times \\mathcal { X } \\to \\mathcal { Z }" + }, + { + "category_id": 13, + "poly": [ + 551, + 688, + 629, + 688, + 629, + 721, + 551, + 721 + ], + "score": 0.92, + "latex": "q ( \\mathbf { v } | \\mathbf { y } )" + }, + { + "category_id": 13, + "poly": [ + 537, + 624, + 939, + 624, + 939, + 659, + 537, + 659 + ], + "score": 0.91, + "latex": "p ( \\mathbf { y } , \\mathbf { v } ) = \\mathbb { I } [ \\mathbf { v } \\in \\mathbf { y } + [ 0 , 1 ) ^ { D } ] p ( \\mathbf { v } )" + }, + { + "category_id": 13, + "poly": [ + 298, + 657, + 376, + 657, + 376, + 691, + 298, + 691 + ], + "score": 0.91, + "latex": "q ( \\mathbf { v } | \\mathbf { y } )" + }, + { + "category_id": 13, + "poly": [ + 430, + 293, + 518, + 293, + 518, + 324, + 430, + 324 + ], + "score": 0.91, + "latex": "P ( \\mathbf { y } | \\mathbf { v } )" + }, + { + "category_id": 13, + "poly": [ + 677, + 658, + 866, + 658, + 866, + 691, + 677, + 691 + ], + "score": 0.9, + "latex": "\\mathbf { v } \\in \\mathbf { y } + [ 0 , 1 ) ^ { D }" + }, + { + "category_id": 13, + "poly": [ + 1050, + 1774, + 1136, + 1774, + 1136, + 1801, + 1050, + 1801 + ], + "score": 0.9, + "latex": "\\mathbf { x } \\in \\mathcal { X }" + }, + { + "category_id": 13, + "poly": [ + 1214, + 291, + 1404, + 291, + 1404, + 324, + 1214, + 324 + ], + "score": 0.9, + "latex": "P ( \\mathbf { y } | \\mathbf { v } ) = \\mathbb { I } [ \\mathbf { v } \\in" + }, + { + "category_id": 13, + "poly": [ + 593, + 231, + 675, + 231, + 675, + 260, + 593, + 260 + ], + "score": 0.9, + "latex": "\\textbf { v } \\in { \\mathcal { V } }" + }, + { + "category_id": 13, + "poly": [ + 1105, + 957, + 1182, + 957, + 1182, + 986, + 1105, + 986 + ], + "score": 0.9, + "latex": "\\mathbf { x } \\in \\mathcal { X }" + }, + { + "category_id": 13, + "poly": [ + 1318, + 957, + 1393, + 957, + 1393, + 988, + 1318, + 988 + ], + "score": 0.89, + "latex": "\\mathbf { y } \\in \\mathcal { V }" + }, + { + "category_id": 13, + "poly": [ + 1291, + 324, + 1400, + 324, + 1400, + 355, + 1291, + 355 + ], + "score": 0.89, + "latex": "P _ { \\mathrm { m o d e l } } ( \\mathbf { y } )" + }, + { + "category_id": 13, + "poly": [ + 297, + 1803, + 376, + 1803, + 376, + 1835, + 297, + 1835 + ], + "score": 0.89, + "latex": "\\mathbf { y } \\in \\mathcal { V }" + }, + { + "category_id": 13, + "poly": [ + 442, + 261, + 497, + 261, + 497, + 293, + 442, + 293 + ], + "score": 0.89, + "latex": "p ( \\mathbf { v } )" + }, + { + "category_id": 13, + "poly": [ + 372, + 1150, + 403, + 1150, + 403, + 1177, + 372, + 1177 + ], + "score": 0.85, + "latex": "y _ { d }" + }, + { + "category_id": 13, + "poly": [ + 840, + 1837, + 864, + 1837, + 864, + 1864, + 840, + 1864 + ], + "score": 0.84, + "latex": "\\mathcal { V }" + }, + { + "category_id": 13, + "poly": [ + 705, + 2015, + 723, + 2015, + 723, + 2029, + 705, + 2029 + ], + "score": 0.83, + "latex": "\\mathbf { x }" + }, + { + "category_id": 13, + "poly": [ + 915, + 1836, + 939, + 1836, + 939, + 1861, + 915, + 1861 + ], + "score": 0.81, + "latex": "\\mathcal { Z }" + }, + { + "category_id": 13, + "poly": [ + 297, + 1616, + 317, + 1616, + 317, + 1642, + 297, + 1642 + ], + "score": 0.36, + "latex": "i i" + }, + { + "category_id": 13, + "poly": [ + 831, + 322, + 903, + 322, + 903, + 351, + 831, + 351 + ], + "score": 0.34, + "latex": "2 0 1 9 \\mathrm { a }" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 867.0, + 684.0, + 867.0, + 684.0, + 903.0, + 294.0, + 903.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 298.0, + 73.0, + 858.0, + 73.0, + 858.0, + 108.0, + 298.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 1506.0, + 487.0, + 1506.0, + 487.0, + 1556.0, + 290.0, + 1556.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1681.0, + 816.0, + 1681.0, + 816.0, + 1720.0, + 293.0, + 1720.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, + 1313.0, + 1401.0, + 1313.0, + 1401.0, + 1347.0, + 296.0, + 1347.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1343.0, + 1404.0, + 1343.0, + 1404.0, + 1379.0, + 295.0, + 1379.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1371.0, + 1407.0, + 1371.0, + 1407.0, + 1411.0, + 292.0, + 1411.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1404.0, + 1405.0, + 1404.0, + 1405.0, + 1442.0, + 293.0, + 1442.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1435.0, + 1178.0, + 1435.0, + 1178.0, + 1471.0, + 292.0, + 1471.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 228.0, + 592.0, + 228.0, + 592.0, + 265.0, + 295.0, + 265.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 676.0, + 228.0, + 1405.0, + 228.0, + 1405.0, + 265.0, + 676.0, + 265.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 261.0, + 441.0, + 261.0, + 441.0, + 296.0, + 294.0, + 296.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 498.0, + 261.0, + 1406.0, + 261.0, + 1406.0, + 296.0, + 498.0, + 296.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 291.0, + 429.0, + 291.0, + 429.0, + 326.0, + 294.0, + 326.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 519.0, + 291.0, + 1213.0, + 291.0, + 1213.0, + 326.0, + 519.0, + 326.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 289.0, + 316.0, + 296.0, + 316.0, + 296.0, + 362.0, + 289.0, + 362.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 440.0, + 316.0, + 830.0, + 316.0, + 830.0, + 362.0, + 440.0, + 362.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 904.0, + 316.0, + 1290.0, + 316.0, + 1290.0, + 362.0, + 904.0, + 362.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1401.0, + 316.0, + 1407.0, + 316.0, + 1407.0, + 362.0, + 1401.0, + 362.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 352.0, + 1407.0, + 352.0, + 1407.0, + 387.0, + 294.0, + 387.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 382.0, + 1071.0, + 382.0, + 1071.0, + 417.0, + 294.0, + 417.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1153.0, + 382.0, + 1403.0, + 382.0, + 1403.0, + 417.0, + 1153.0, + 417.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 413.0, + 1267.0, + 413.0, + 1267.0, + 448.0, + 294.0, + 448.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1741.0, + 1403.0, + 1741.0, + 1403.0, + 1774.0, + 296.0, + 1774.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1771.0, + 1049.0, + 1771.0, + 1049.0, + 1808.0, + 292.0, + 1808.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1137.0, + 1771.0, + 1406.0, + 1771.0, + 1406.0, + 1808.0, + 1137.0, + 1808.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1803.0, + 296.0, + 1803.0, + 296.0, + 1839.0, + 292.0, + 1839.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 377.0, + 1803.0, + 797.0, + 1803.0, + 797.0, + 1839.0, + 377.0, + 1839.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 925.0, + 1803.0, + 1210.0, + 1803.0, + 1210.0, + 1839.0, + 925.0, + 1839.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1333.0, + 1803.0, + 1407.0, + 1803.0, + 1407.0, + 1839.0, + 1333.0, + 1839.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1833.0, + 401.0, + 1833.0, + 401.0, + 1866.0, + 292.0, + 1866.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 600.0, + 1833.0, + 839.0, + 1833.0, + 839.0, + 1866.0, + 600.0, + 1866.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 865.0, + 1833.0, + 914.0, + 1833.0, + 914.0, + 1866.0, + 865.0, + 1866.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 940.0, + 1833.0, + 1308.0, + 1833.0, + 1308.0, + 1866.0, + 940.0, + 1866.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1145.0, + 371.0, + 1145.0, + 371.0, + 1178.0, + 296.0, + 1178.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 404.0, + 1145.0, + 1403.0, + 1145.0, + 1403.0, + 1178.0, + 404.0, + 1178.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1173.0, + 1405.0, + 1173.0, + 1405.0, + 1211.0, + 292.0, + 1211.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1203.0, + 1405.0, + 1203.0, + 1405.0, + 1242.0, + 294.0, + 1242.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1235.0, + 1404.0, + 1235.0, + 1404.0, + 1272.0, + 293.0, + 1272.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1263.0, + 448.0, + 1263.0, + 448.0, + 1300.0, + 294.0, + 1300.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 623.0, + 536.0, + 623.0, + 536.0, + 663.0, + 294.0, + 663.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 940.0, + 623.0, + 1406.0, + 623.0, + 1406.0, + 663.0, + 940.0, + 663.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 655.0, + 297.0, + 655.0, + 297.0, + 695.0, + 294.0, + 695.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 377.0, + 655.0, + 676.0, + 655.0, + 676.0, + 695.0, + 377.0, + 695.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 867.0, + 655.0, + 995.0, + 655.0, + 995.0, + 695.0, + 867.0, + 695.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1137.0, + 655.0, + 1406.0, + 655.0, + 1406.0, + 695.0, + 1137.0, + 695.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 687.0, + 550.0, + 687.0, + 550.0, + 723.0, + 294.0, + 723.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 630.0, + 687.0, + 1405.0, + 687.0, + 1405.0, + 723.0, + 630.0, + 723.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 718.0, + 448.0, + 718.0, + 448.0, + 749.0, + 297.0, + 749.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 924.0, + 1406.0, + 924.0, + 1406.0, + 962.0, + 294.0, + 962.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 956.0, + 851.0, + 956.0, + 851.0, + 993.0, + 294.0, + 993.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 944.0, + 956.0, + 1104.0, + 956.0, + 1104.0, + 993.0, + 944.0, + 993.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1183.0, + 956.0, + 1317.0, + 956.0, + 1317.0, + 993.0, + 1183.0, + 993.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1394.0, + 956.0, + 1406.0, + 956.0, + 1406.0, + 993.0, + 1394.0, + 993.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 987.0, + 1404.0, + 987.0, + 1404.0, + 1020.0, + 294.0, + 1020.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1580.0, + 1404.0, + 1580.0, + 1404.0, + 1616.0, + 294.0, + 1616.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1614.0, + 296.0, + 1614.0, + 296.0, + 1648.0, + 292.0, + 1648.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 318.0, + 1614.0, + 1091.0, + 1614.0, + 1091.0, + 1648.0, + 318.0, + 1648.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1972.0, + 1404.0, + 1972.0, + 1404.0, + 2004.0, + 296.0, + 2004.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 2003.0, + 704.0, + 2003.0, + 704.0, + 2035.0, + 296.0, + 2035.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 724.0, + 2003.0, + 733.0, + 2003.0, + 733.0, + 2035.0, + 724.0, + 2035.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 2, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 297, + 1378, + 1405, + 1378, + 1405, + 1625, + 297, + 1625 + ], + "score": 0.982 + }, + { + "category_id": 1, + "poly": [ + 299, + 378, + 935, + 378, + 935, + 867, + 299, + 867 + ], + "score": 0.982 + }, + { + "category_id": 1, + "poly": [ + 297, + 1849, + 1405, + 1849, + 1405, + 2035, + 297, + 2035 + ], + "score": 0.98 + }, + { + "category_id": 1, + "poly": [ + 300, + 898, + 1405, + 898, + 1405, + 1022, + 300, + 1022 + ], + "score": 0.977 + }, + { + "category_id": 1, + "poly": [ + 298, + 228, + 1403, + 228, + 1403, + 364, + 298, + 364 + ], + "score": 0.976 + }, + { + "category_id": 1, + "poly": [ + 300, + 1164, + 1404, + 1164, + 1404, + 1289, + 300, + 1289 + ], + "score": 0.974 + }, + { + "category_id": 4, + "poly": [ + 957, + 601, + 1403, + 601, + 1403, + 818, + 957, + 818 + ], + "score": 0.964 + }, + { + "category_id": 1, + "poly": [ + 295, + 1677, + 1410, + 1677, + 1410, + 1740, + 295, + 1740 + ], + "score": 0.942 + }, + { + "category_id": 3, + "poly": [ + 957, + 412, + 1401, + 412, + 1401, + 574, + 957, + 574 + ], + "score": 0.94 + }, + { + "category_id": 8, + "poly": [ + 577, + 1633, + 1121, + 1633, + 1121, + 1670, + 577, + 1670 + ], + "score": 0.93 + }, + { + "category_id": 0, + "poly": [ + 300, + 1782, + 588, + 1782, + 588, + 1818, + 300, + 1818 + ], + "score": 0.915 + }, + { + "category_id": 2, + "poly": [ + 298, + 75, + 858, + 75, + 858, + 105, + 298, + 105 + ], + "score": 0.913 + }, + { + "category_id": 0, + "poly": [ + 300, + 1322, + 1172, + 1322, + 1172, + 1355, + 300, + 1355 + ], + "score": 0.901 + }, + { + "category_id": 8, + "poly": [ + 458, + 1043, + 1234, + 1043, + 1234, + 1145, + 458, + 1145 + ], + "score": 0.877 + }, + { + "category_id": 9, + "poly": [ + 1366, + 1637, + 1399, + 1637, + 1399, + 1666, + 1366, + 1666 + ], + "score": 0.869 + }, + { + "category_id": 2, + "poly": [ + 841, + 2089, + 858, + 2089, + 858, + 2111, + 841, + 2111 + ], + "score": 0.768 + }, + { + "category_id": 13, + "poly": [ + 1049, + 960, + 1177, + 960, + 1177, + 994, + 1049, + 994 + ], + "score": 0.94, + "latex": "p ( \\mathbf { z } _ { 1 } | \\mathbf { z } _ { 0 } , \\mathbf { x } )" + }, + { + "category_id": 13, + "poly": [ + 424, + 622, + 551, + 622, + 551, + 658, + 424, + 658 + ], + "score": 0.93, + "latex": "p _ { Y | X } ( \\mathbf { y } | \\mathbf { x } )" + }, + { + "category_id": 13, + "poly": [ + 1101, + 295, + 1214, + 295, + 1214, + 337, + 1101, + 337 + ], + "score": 0.93, + "latex": "f _ { \\phi } ^ { - 1 } ( \\mathbf { z } ; \\mathbf { x } )" + }, + { + "category_id": 13, + "poly": [ + 918, + 1255, + 1177, + 1255, + 1177, + 1289, + 918, + 1289 + ], + "score": 0.93, + "latex": "t ( \\mathbf { z } _ { 1 } , \\mathbf { x } ) = \\mathbf { N N } ( [ \\mathbf { z } _ { 1 } , \\mathbf { h } ] )" + }, + { + "category_id": 13, + "poly": [ + 1196, + 1378, + 1344, + 1378, + 1344, + 1413, + 1196, + 1413 + ], + "score": 0.93, + "latex": "\\mathbf { y } \\in \\{ 0 , 1 \\} ^ { D }" + }, + { + "category_id": 13, + "poly": [ + 1152, + 786, + 1237, + 786, + 1237, + 818, + 1152, + 818 + ], + "score": 0.93, + "latex": "f ( \\mathbf { y } , \\mathbf { x } )" + }, + { + "category_id": 13, + "poly": [ + 604, + 1472, + 683, + 1472, + 683, + 1505, + 604, + 1505 + ], + "score": 0.92, + "latex": "q ( \\mathbf { v } | \\mathbf { y } )" + }, + { + "category_id": 13, + "poly": [ + 297, + 261, + 418, + 261, + 418, + 297, + 297, + 297 + ], + "score": 0.92, + "latex": "p _ { Z | X } ( \\mathbf { z } | \\mathbf { x } )" + }, + { + "category_id": 13, + "poly": [ + 1320, + 1502, + 1375, + 1502, + 1375, + 1535, + 1320, + 1535 + ], + "score": 0.92, + "latex": "p ( \\mathbf { v } )" + }, + { + "category_id": 13, + "poly": [ + 869, + 1472, + 925, + 1472, + 925, + 1505, + 869, + 1505 + ], + "score": 0.92, + "latex": "p ( \\mathbf { v } )" + }, + { + "category_id": 13, + "poly": [ + 1298, + 1442, + 1353, + 1442, + 1353, + 1474, + 1298, + 1474 + ], + "score": 0.92, + "latex": "p ( \\mathbf { v } )" + }, + { + "category_id": 13, + "poly": [ + 748, + 1409, + 841, + 1409, + 841, + 1439, + 748, + 1439 + ], + "score": 0.92, + "latex": "\\mathbf { v } \\in \\mathbb { R } ^ { D }" + }, + { + "category_id": 13, + "poly": [ + 1194, + 754, + 1271, + 754, + 1271, + 787, + 1194, + 787 + ], + "score": 0.92, + "latex": "p ( \\mathbf { z } | \\mathbf { x } )" + }, + { + "category_id": 13, + "poly": [ + 768, + 440, + 925, + 440, + 925, + 473, + 768, + 473 + ], + "score": 0.92, + "latex": "\\mathbf { z } = f _ { \\phi } ( \\mathbf { y } ; \\mathbf { x } )" + }, + { + "category_id": 13, + "poly": [ + 779, + 1195, + 894, + 1195, + 894, + 1227, + 779, + 1227 + ], + "score": 0.91, + "latex": "\\mathbf { h } = g ( \\mathbf { x } )" + }, + { + "category_id": 13, + "poly": [ + 732, + 1561, + 774, + 1561, + 774, + 1591, + 732, + 1591 + ], + "score": 0.9, + "latex": "\\mathbb { R } ^ { D }" + }, + { + "category_id": 13, + "poly": [ + 841, + 1227, + 905, + 1227, + 905, + 1257, + 841, + 1257 + ], + "score": 0.89, + "latex": "[ \\cdot , \\cdot ]" + }, + { + "category_id": 13, + "poly": [ + 635, + 440, + 667, + 440, + 667, + 473, + 635, + 473 + ], + "score": 0.88, + "latex": "f _ { \\phi }" + }, + { + "category_id": 13, + "poly": [ + 371, + 1592, + 413, + 1592, + 413, + 1622, + 371, + 1622 + ], + "score": 0.88, + "latex": "\\mathbb { R } ^ { D }" + }, + { + "category_id": 14, + "poly": [ + 573, + 1633, + 1120, + 1633, + 1120, + 1670, + 573, + 1670 + ], + "score": 0.88, + "latex": "\\mathbf { v } | \\mathbf { y } , \\mathbf { z } = 0 . 5 + \\mathrm { s i g n } ( \\mathbf { y } - 0 . 5 ) \\cdot \\mathrm { s o f t p l u s } ( \\mathrm { N N } ( \\mathbf { z } ) ) ." + }, + { + "category_id": 14, + "poly": [ + 456, + 1040, + 1242, + 1040, + 1242, + 1148, + 456, + 1148 + ], + "score": 0.86, + "latex": "\\begin{array} { r l } & { \\mathrm { C o n d i t i o n a l ~ P r i o r } \\qquad p ( \\mathbf { z } | \\mathbf { x } ) = \\mathcal { N } ( \\mathbf { z } ; \\mu ( \\mathbf { x } ) , \\sigma ^ { 2 } ( \\mathbf { x } ) ) } \\\\ & { \\mathrm { C o n d i t i o n a l ~ S p l i t ~ P r i o r } \\quad p ( \\mathbf { z } _ { 1 } | \\mathbf { z } _ { 0 } , \\mathbf { x } ) = \\mathcal { N } ( \\mathbf { z } _ { 1 } ; \\mu ( \\mathbf { z } _ { 0 } , \\mathbf { x } ) , \\sigma ^ { 2 } ( \\mathbf { z } _ { 0 } , \\mathbf { x } ) ) } \\\\ & { \\mathrm { C o n d i t i o n a l ~ C o u p l i n g } \\quad \\mathbf { y } _ { 0 } = s ( \\mathbf { z } _ { 1 } , \\mathbf { x } ) \\cdot \\mathbf { z } _ { 0 } + t ( \\mathbf { z } _ { 1 } , \\mathbf { x } ) ; \\qquad \\mathbf { y } _ { 1 } = \\mathbf { z } _ { 1 } } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 916, + 1712, + 937, + 1712, + 937, + 1740, + 916, + 1740 + ], + "score": 0.78, + "latex": "\\mathbf { y }" + }, + { + "category_id": 13, + "poly": [ + 357, + 1708, + 511, + 1708, + 511, + 1741, + 357, + 1741 + ], + "score": 0.78, + "latex": "\\mathrm { s i g n } ( \\mathbf { y } - 0 . 5 )" + }, + { + "category_id": 13, + "poly": [ + 1348, + 235, + 1403, + 235, + 1403, + 261, + 1348, + 261 + ], + "score": 0.78, + "latex": "\\mathbf { z } \\sim" + }, + { + "category_id": 13, + "poly": [ + 1150, + 1200, + 1167, + 1200, + 1167, + 1227, + 1150, + 1227 + ], + "score": 0.75, + "latex": "g" + }, + { + "category_id": 13, + "poly": [ + 1223, + 1230, + 1240, + 1230, + 1240, + 1252, + 1223, + 1252 + ], + "score": 0.66, + "latex": "\\mathbf { z }" + }, + { + "category_id": 13, + "poly": [ + 1284, + 936, + 1304, + 936, + 1304, + 958, + 1284, + 958 + ], + "score": 0.63, + "latex": "\\mathbf { x }" + }, + { + "category_id": 13, + "poly": [ + 1281, + 1683, + 1303, + 1683, + 1303, + 1709, + 1281, + 1709 + ], + "score": 0.59, + "latex": "\\mathbf { y }" + }, + { + "category_id": 13, + "poly": [ + 938, + 1226, + 960, + 1226, + 960, + 1252, + 938, + 1252 + ], + "score": 0.57, + "latex": "\\mathbf { h }" + }, + { + "category_id": 13, + "poly": [ + 1109, + 265, + 1131, + 265, + 1131, + 290, + 1109, + 290 + ], + "score": 0.52, + "latex": "\\mathbf { x }" + }, + { + "category_id": 13, + "poly": [ + 543, + 414, + 567, + 414, + 567, + 441, + 543, + 441 + ], + "score": 0.5, + "latex": "\\mathbf { y }" + }, + { + "category_id": 13, + "poly": [ + 574, + 996, + 596, + 996, + 596, + 1018, + 574, + 1018 + ], + "score": 0.47, + "latex": "\\mathbf { x }" + }, + { + "category_id": 13, + "poly": [ + 297, + 1200, + 319, + 1200, + 319, + 1222, + 297, + 1222 + ], + "score": 0.46, + "latex": "\\mathbf { x }" + }, + { + "category_id": 13, + "poly": [ + 846, + 414, + 867, + 414, + 867, + 437, + 846, + 437 + ], + "score": 0.43, + "latex": "\\mathbf { x }" + }, + { + "category_id": 13, + "poly": [ + 297, + 689, + 315, + 689, + 315, + 712, + 297, + 712 + ], + "score": 0.36, + "latex": "\\mathbf { z }" + }, + { + "category_id": 13, + "poly": [ + 686, + 236, + 708, + 236, + 708, + 263, + 686, + 263 + ], + "score": 0.32, + "latex": "\\mathbf { y }" + }, + { + "category_id": 13, + "poly": [ + 511, + 965, + 534, + 965, + 534, + 989, + 511, + 989 + ], + "score": 0.31, + "latex": "\\mathbf { x }" + }, + { + "category_id": 13, + "poly": [ + 799, + 505, + 818, + 505, + 818, + 528, + 799, + 528 + ], + "score": 0.29, + "latex": "\\mathbf { z }" + }, + { + "category_id": 15, + "poly": [ + 956.0, + 602.0, + 1404.0, + 602.0, + 1404.0, + 636.0, + 956.0, + 636.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 955.0, + 632.0, + 1406.0, + 632.0, + 1406.0, + 666.0, + 955.0, + 666.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 954.0, + 663.0, + 1407.0, + 663.0, + 1407.0, + 697.0, + 954.0, + 697.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 955.0, + 693.0, + 1406.0, + 693.0, + 1406.0, + 726.0, + 955.0, + 726.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 955.0, + 725.0, + 1404.0, + 725.0, + 1404.0, + 756.0, + 955.0, + 756.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 954.0, + 753.0, + 1193.0, + 753.0, + 1193.0, + 788.0, + 954.0, + 788.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1272.0, + 753.0, + 1405.0, + 753.0, + 1405.0, + 788.0, + 1272.0, + 788.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 953.0, + 784.0, + 1151.0, + 784.0, + 1151.0, + 821.0, + 953.0, + 821.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1238.0, + 784.0, + 1249.0, + 784.0, + 1249.0, + 821.0, + 1238.0, + 821.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1057.0, + 413.0, + 1128.0, + 413.0, + 1128.0, + 444.0, + 1057.0, + 444.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1266.0, + 409.0, + 1348.0, + 409.0, + 1348.0, + 443.0, + 1266.0, + 443.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 991.0, + 445.0, + 1016.0, + 445.0, + 1016.0, + 470.0, + 991.0, + 470.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1033.0, + 452.0, + 1043.0, + 452.0, + 1043.0, + 461.0, + 1033.0, + 461.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1155.0, + 444.0, + 1185.0, + 444.0, + 1185.0, + 476.0, + 1155.0, + 476.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1210.0, + 444.0, + 1237.0, + 444.0, + 1237.0, + 469.0, + 1210.0, + 469.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1292.0, + 451.0, + 1338.0, + 451.0, + 1338.0, + 496.0, + 1292.0, + 496.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1356.0, + 450.0, + 1365.0, + 450.0, + 1365.0, + 460.0, + 1356.0, + 460.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1376.0, + 441.0, + 1404.0, + 441.0, + 1404.0, + 475.0, + 1376.0, + 475.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1072.0, + 456.0, + 1111.0, + 456.0, + 1111.0, + 495.0, + 1072.0, + 495.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1329.0, + 459.0, + 1337.0, + 459.0, + 1337.0, + 467.0, + 1329.0, + 467.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1071.0, + 491.0, + 1103.0, + 491.0, + 1103.0, + 527.0, + 1071.0, + 527.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1294.0, + 486.0, + 1326.0, + 486.0, + 1326.0, + 529.0, + 1294.0, + 529.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 951.0, + 528.0, + 1107.0, + 528.0, + 1107.0, + 572.0, + 951.0, + 572.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1171.0, + 526.0, + 1328.0, + 526.0, + 1328.0, + 571.0, + 1171.0, + 571.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1779.0, + 593.0, + 1779.0, + 593.0, + 1822.0, + 292.0, + 1822.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 298.0, + 73.0, + 858.0, + 73.0, + 858.0, + 108.0, + 298.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1321.0, + 1176.0, + 1321.0, + 1176.0, + 1359.0, + 293.0, + 1359.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 838.0, + 2086.0, + 862.0, + 2086.0, + 862.0, + 2118.0, + 838.0, + 2118.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1376.0, + 1195.0, + 1376.0, + 1195.0, + 1416.0, + 292.0, + 1416.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1345.0, + 1376.0, + 1410.0, + 1376.0, + 1410.0, + 1416.0, + 1345.0, + 1416.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1408.0, + 747.0, + 1408.0, + 747.0, + 1445.0, + 292.0, + 1445.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 842.0, + 1408.0, + 1406.0, + 1408.0, + 1406.0, + 1445.0, + 842.0, + 1445.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1440.0, + 1297.0, + 1440.0, + 1297.0, + 1476.0, + 294.0, + 1476.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1354.0, + 1440.0, + 1405.0, + 1440.0, + 1405.0, + 1476.0, + 1354.0, + 1476.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1470.0, + 603.0, + 1470.0, + 603.0, + 1506.0, + 294.0, + 1506.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 684.0, + 1470.0, + 868.0, + 1470.0, + 868.0, + 1506.0, + 684.0, + 1506.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 926.0, + 1470.0, + 1407.0, + 1470.0, + 1407.0, + 1506.0, + 926.0, + 1506.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1502.0, + 1319.0, + 1502.0, + 1319.0, + 1539.0, + 294.0, + 1539.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1376.0, + 1502.0, + 1406.0, + 1502.0, + 1406.0, + 1539.0, + 1376.0, + 1539.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1533.0, + 1405.0, + 1533.0, + 1405.0, + 1567.0, + 295.0, + 1567.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1561.0, + 731.0, + 1561.0, + 731.0, + 1598.0, + 294.0, + 1598.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 775.0, + 1561.0, + 1407.0, + 1561.0, + 1407.0, + 1598.0, + 775.0, + 1598.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1589.0, + 370.0, + 1589.0, + 370.0, + 1629.0, + 292.0, + 1629.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 414.0, + 1589.0, + 1129.0, + 1589.0, + 1129.0, + 1629.0, + 414.0, + 1629.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 377.0, + 936.0, + 377.0, + 936.0, + 411.0, + 295.0, + 411.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 407.0, + 542.0, + 407.0, + 542.0, + 444.0, + 295.0, + 444.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 568.0, + 407.0, + 845.0, + 407.0, + 845.0, + 444.0, + 568.0, + 444.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 868.0, + 407.0, + 937.0, + 407.0, + 937.0, + 444.0, + 868.0, + 444.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 435.0, + 634.0, + 435.0, + 634.0, + 475.0, + 295.0, + 475.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 668.0, + 435.0, + 767.0, + 435.0, + 767.0, + 475.0, + 668.0, + 475.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 926.0, + 435.0, + 937.0, + 435.0, + 937.0, + 475.0, + 926.0, + 475.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 469.0, + 936.0, + 469.0, + 936.0, + 503.0, + 296.0, + 503.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 501.0, + 798.0, + 501.0, + 798.0, + 533.0, + 294.0, + 533.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 819.0, + 501.0, + 936.0, + 501.0, + 936.0, + 533.0, + 819.0, + 533.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 530.0, + 937.0, + 530.0, + 937.0, + 565.0, + 295.0, + 565.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 562.0, + 937.0, + 562.0, + 937.0, + 593.0, + 295.0, + 593.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 592.0, + 936.0, + 592.0, + 936.0, + 624.0, + 296.0, + 624.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 621.0, + 423.0, + 621.0, + 423.0, + 656.0, + 295.0, + 656.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 552.0, + 621.0, + 937.0, + 621.0, + 937.0, + 656.0, + 552.0, + 656.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 652.0, + 937.0, + 652.0, + 937.0, + 687.0, + 294.0, + 687.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 316.0, + 686.0, + 937.0, + 686.0, + 937.0, + 718.0, + 316.0, + 718.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 715.0, + 936.0, + 715.0, + 936.0, + 746.0, + 295.0, + 746.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 743.0, + 935.0, + 743.0, + 935.0, + 777.0, + 294.0, + 777.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 774.0, + 937.0, + 774.0, + 937.0, + 809.0, + 294.0, + 809.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 805.0, + 937.0, + 805.0, + 937.0, + 836.0, + 295.0, + 836.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 833.0, + 608.0, + 833.0, + 608.0, + 872.0, + 294.0, + 872.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1848.0, + 1405.0, + 1848.0, + 1405.0, + 1885.0, + 292.0, + 1885.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1879.0, + 1406.0, + 1879.0, + 1406.0, + 1918.0, + 291.0, + 1918.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1910.0, + 1405.0, + 1910.0, + 1405.0, + 1947.0, + 294.0, + 1947.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1939.0, + 1405.0, + 1939.0, + 1405.0, + 1976.0, + 294.0, + 1976.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1971.0, + 1406.0, + 1971.0, + 1406.0, + 2007.0, + 294.0, + 2007.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1999.0, + 1403.0, + 1999.0, + 1403.0, + 2039.0, + 294.0, + 2039.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 899.0, + 1405.0, + 899.0, + 1405.0, + 932.0, + 296.0, + 932.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 931.0, + 1283.0, + 931.0, + 1283.0, + 964.0, + 295.0, + 964.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1305.0, + 931.0, + 1405.0, + 931.0, + 1405.0, + 964.0, + 1305.0, + 964.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 961.0, + 510.0, + 961.0, + 510.0, + 994.0, + 295.0, + 994.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 535.0, + 961.0, + 1048.0, + 961.0, + 1048.0, + 994.0, + 535.0, + 994.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1178.0, + 961.0, + 1404.0, + 961.0, + 1404.0, + 994.0, + 1178.0, + 994.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 992.0, + 573.0, + 992.0, + 573.0, + 1022.0, + 295.0, + 1022.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 597.0, + 992.0, + 1091.0, + 992.0, + 1091.0, + 1022.0, + 597.0, + 1022.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 228.0, + 685.0, + 228.0, + 685.0, + 266.0, + 294.0, + 266.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 709.0, + 228.0, + 1347.0, + 228.0, + 1347.0, + 266.0, + 709.0, + 266.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 260.0, + 296.0, + 260.0, + 296.0, + 296.0, + 292.0, + 296.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 419.0, + 260.0, + 1108.0, + 260.0, + 1108.0, + 296.0, + 419.0, + 296.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1132.0, + 260.0, + 1406.0, + 260.0, + 1406.0, + 296.0, + 1132.0, + 296.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 296.0, + 1100.0, + 296.0, + 1100.0, + 334.0, + 294.0, + 334.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1215.0, + 296.0, + 1404.0, + 296.0, + 1404.0, + 334.0, + 1215.0, + 334.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 329.0, + 1228.0, + 329.0, + 1228.0, + 369.0, + 294.0, + 369.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1163.0, + 1404.0, + 1163.0, + 1404.0, + 1200.0, + 294.0, + 1200.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1194.0, + 296.0, + 1194.0, + 296.0, + 1229.0, + 293.0, + 1229.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 1194.0, + 778.0, + 1194.0, + 778.0, + 1229.0, + 320.0, + 1229.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 895.0, + 1194.0, + 1149.0, + 1194.0, + 1149.0, + 1229.0, + 895.0, + 1229.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1168.0, + 1194.0, + 1404.0, + 1194.0, + 1404.0, + 1229.0, + 1168.0, + 1229.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1225.0, + 840.0, + 1225.0, + 840.0, + 1258.0, + 295.0, + 1258.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 906.0, + 1225.0, + 937.0, + 1225.0, + 937.0, + 1258.0, + 906.0, + 1258.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 961.0, + 1225.0, + 1222.0, + 1225.0, + 1222.0, + 1258.0, + 961.0, + 1258.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1241.0, + 1225.0, + 1403.0, + 1225.0, + 1403.0, + 1258.0, + 1241.0, + 1258.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1255.0, + 917.0, + 1255.0, + 917.0, + 1290.0, + 294.0, + 1290.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1178.0, + 1255.0, + 1188.0, + 1255.0, + 1188.0, + 1290.0, + 1178.0, + 1290.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1677.0, + 1280.0, + 1677.0, + 1280.0, + 1712.0, + 296.0, + 1712.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1304.0, + 1677.0, + 1404.0, + 1677.0, + 1404.0, + 1712.0, + 1304.0, + 1712.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1707.0, + 356.0, + 1707.0, + 356.0, + 1740.0, + 293.0, + 1740.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 512.0, + 1707.0, + 915.0, + 1707.0, + 915.0, + 1740.0, + 512.0, + 1740.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 938.0, + 1707.0, + 1307.0, + 1707.0, + 1307.0, + 1740.0, + 938.0, + 1740.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 3, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 298, + 1628, + 1404, + 1628, + 1404, + 1935, + 298, + 1935 + ], + "score": 0.982 + }, + { + "category_id": 1, + "poly": [ + 298, + 230, + 1403, + 230, + 1403, + 535, + 298, + 535 + ], + "score": 0.981 + }, + { + "category_id": 1, + "poly": [ + 298, + 985, + 1404, + 985, + 1404, + 1230, + 298, + 1230 + ], + "score": 0.98 + }, + { + "category_id": 1, + "poly": [ + 299, + 551, + 1403, + 551, + 1403, + 705, + 299, + 705 + ], + "score": 0.979 + }, + { + "category_id": 1, + "poly": [ + 298, + 1269, + 1403, + 1269, + 1403, + 1453, + 298, + 1453 + ], + "score": 0.978 + }, + { + "category_id": 1, + "poly": [ + 298, + 1468, + 1403, + 1468, + 1403, + 1589, + 298, + 1589 + ], + "score": 0.972 + }, + { + "category_id": 1, + "poly": [ + 300, + 825, + 1402, + 825, + 1402, + 886, + 300, + 886 + ], + "score": 0.952 + }, + { + "category_id": 1, + "poly": [ + 298, + 1972, + 1400, + 1972, + 1400, + 2034, + 298, + 2034 + ], + "score": 0.944 + }, + { + "category_id": 0, + "poly": [ + 300, + 753, + 557, + 753, + 557, + 788, + 300, + 788 + ], + "score": 0.895 + }, + { + "category_id": 2, + "poly": [ + 298, + 76, + 857, + 76, + 857, + 104, + 298, + 104 + ], + "score": 0.885 + }, + { + "category_id": 0, + "poly": [ + 300, + 928, + 793, + 928, + 793, + 959, + 300, + 959 + ], + "score": 0.855 + }, + { + "category_id": 2, + "poly": [ + 841, + 2088, + 858, + 2088, + 858, + 2112, + 841, + 2112 + ], + "score": 0.686 + }, + { + "category_id": 2, + "poly": [ + 841, + 2088, + 859, + 2088, + 859, + 2112, + 841, + 2112 + ], + "score": 0.103 + }, + { + "category_id": 13, + "poly": [ + 731, + 1048, + 853, + 1048, + 853, + 1081, + 731, + 1081 + ], + "score": 0.93, + "latex": "p ( x _ { h r } | x _ { l r } )" + }, + { + "category_id": 13, + "poly": [ + 735, + 1331, + 799, + 1331, + 799, + 1360, + 735, + 1360 + ], + "score": 0.89, + "latex": "1 \\times 1" + }, + { + "category_id": 13, + "poly": [ + 1265, + 991, + 1310, + 991, + 1310, + 1019, + 1265, + 1019 + ], + "score": 0.87, + "latex": "x _ { h r }" + }, + { + "category_id": 13, + "poly": [ + 597, + 1473, + 636, + 1473, + 636, + 1499, + 597, + 1499 + ], + "score": 0.86, + "latex": "x _ { l r }" + }, + { + "category_id": 13, + "poly": [ + 791, + 1022, + 828, + 1022, + 828, + 1048, + 791, + 1048 + ], + "score": 0.85, + "latex": "x _ { l r }" + }, + { + "category_id": 13, + "poly": [ + 821, + 1141, + 872, + 1141, + 872, + 1171, + 821, + 1171 + ], + "score": 0.84, + "latex": "\\log _ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 946, + 1302, + 971, + 1302, + 971, + 1327, + 946, + 1327 + ], + "score": 0.74, + "latex": "K" + }, + { + "category_id": 13, + "poly": [ + 1135, + 1302, + 1157, + 1302, + 1157, + 1327, + 1135, + 1327 + ], + "score": 0.62, + "latex": "L" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 750.0, + 561.0, + 750.0, + 561.0, + 794.0, + 292.0, + 794.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 298.0, + 73.0, + 858.0, + 73.0, + 858.0, + 108.0, + 298.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 925.0, + 798.0, + 925.0, + 798.0, + 964.0, + 294.0, + 964.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": [ + 838.0, + 2085.0, + 862.0, + 2085.0, + 862.0, + 2119.0, + 838.0, + 2119.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1628.0, + 1406.0, + 1628.0, + 1406.0, + 1665.0, + 292.0, + 1665.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1658.0, + 1406.0, + 1658.0, + 1406.0, + 1694.0, + 293.0, + 1694.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1689.0, + 1406.0, + 1689.0, + 1406.0, + 1726.0, + 293.0, + 1726.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1719.0, + 1404.0, + 1719.0, + 1404.0, + 1754.0, + 292.0, + 1754.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1752.0, + 1405.0, + 1752.0, + 1405.0, + 1784.0, + 297.0, + 1784.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1782.0, + 1405.0, + 1782.0, + 1405.0, + 1817.0, + 296.0, + 1817.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1812.0, + 1404.0, + 1812.0, + 1404.0, + 1848.0, + 294.0, + 1848.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1841.0, + 1404.0, + 1841.0, + 1404.0, + 1876.0, + 293.0, + 1876.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1873.0, + 1406.0, + 1873.0, + 1406.0, + 1909.0, + 294.0, + 1909.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1902.0, + 939.0, + 1902.0, + 939.0, + 1938.0, + 293.0, + 1938.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": [ + 293.0, + 257.0, + 1405.0, + 257.0, + 1405.0, + 299.0, + 293.0, + 299.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 293.0, + 1403.0, + 293.0, + 1403.0, + 324.0, + 296.0, + 324.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 322.0, + 1405.0, + 322.0, + 1405.0, + 357.0, + 294.0, + 357.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 351.0, + 1404.0, + 351.0, + 1404.0, + 386.0, + 294.0, + 386.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 384.0, + 1405.0, + 384.0, + 1405.0, + 417.0, + 293.0, + 417.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 412.0, + 1405.0, + 412.0, + 1405.0, + 448.0, + 293.0, + 448.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": [ + 293.0, + 472.0, + 1407.0, + 472.0, + 1407.0, + 510.0, + 293.0, + 510.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 505.0, + 646.0, + 505.0, + 646.0, + 539.0, + 293.0, + 539.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 983.0, + 1264.0, + 983.0, + 1264.0, + 1024.0, + 293.0, + 1024.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1311.0, + 983.0, + 1409.0, + 983.0, + 1409.0, + 1024.0, + 1311.0, + 1024.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1018.0, + 790.0, + 1018.0, + 790.0, + 1051.0, + 294.0, + 1051.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 829.0, + 1018.0, + 1405.0, + 1018.0, + 1405.0, + 1051.0, + 829.0, + 1051.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1046.0, + 730.0, + 1046.0, + 730.0, + 1082.0, + 293.0, + 1082.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 854.0, + 1046.0, + 1404.0, + 1046.0, + 1404.0, + 1082.0, + 854.0, + 1082.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1079.0, + 1405.0, + 1079.0, + 1405.0, + 1112.0, + 294.0, + 1112.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1105.0, + 1405.0, + 1105.0, + 1405.0, + 1145.0, + 292.0, + 1145.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1137.0, + 820.0, + 1137.0, + 820.0, + 1173.0, + 293.0, + 1173.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 873.0, + 1137.0, + 1404.0, + 1137.0, + 1404.0, + 1173.0, + 873.0, + 1173.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1169.0, + 1404.0, + 1169.0, + 1404.0, + 1203.0, + 293.0, + 1203.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1200.0, + 586.0, + 1200.0, + 586.0, + 1233.0, + 295.0, + 1233.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 549.0, + 1405.0, + 549.0, + 1405.0, + 587.0, + 294.0, + 587.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 579.0, + 1405.0, + 579.0, + 1405.0, + 617.0, + 294.0, + 617.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 609.0, + 1405.0, + 609.0, + 1405.0, + 649.0, + 293.0, + 649.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 640.0, + 1405.0, + 640.0, + 1405.0, + 678.0, + 293.0, + 678.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 670.0, + 982.0, + 670.0, + 982.0, + 711.0, + 293.0, + 711.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1267.0, + 1405.0, + 1267.0, + 1405.0, + 1304.0, + 293.0, + 1304.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1299.0, + 945.0, + 1299.0, + 945.0, + 1331.0, + 296.0, + 1331.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 972.0, + 1299.0, + 1134.0, + 1299.0, + 1134.0, + 1331.0, + 972.0, + 1331.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1158.0, + 1299.0, + 1403.0, + 1299.0, + 1403.0, + 1331.0, + 1158.0, + 1331.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1332.0, + 734.0, + 1332.0, + 734.0, + 1364.0, + 296.0, + 1364.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 800.0, + 1332.0, + 1405.0, + 1332.0, + 1405.0, + 1364.0, + 800.0, + 1364.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1360.0, + 1405.0, + 1360.0, + 1405.0, + 1395.0, + 294.0, + 1395.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1391.0, + 1407.0, + 1391.0, + 1407.0, + 1424.0, + 292.0, + 1424.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1422.0, + 508.0, + 1422.0, + 508.0, + 1454.0, + 294.0, + 1454.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1467.0, + 596.0, + 1467.0, + 596.0, + 1503.0, + 294.0, + 1503.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 637.0, + 1467.0, + 1404.0, + 1467.0, + 1404.0, + 1503.0, + 637.0, + 1503.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1500.0, + 1404.0, + 1500.0, + 1404.0, + 1532.0, + 294.0, + 1532.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1527.0, + 1407.0, + 1527.0, + 1407.0, + 1564.0, + 292.0, + 1564.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1560.0, + 475.0, + 1560.0, + 475.0, + 1590.0, + 296.0, + 1590.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 823.0, + 1407.0, + 823.0, + 1407.0, + 862.0, + 295.0, + 862.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 856.0, + 791.0, + 856.0, + 791.0, + 889.0, + 295.0, + 889.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1971.0, + 1404.0, + 1971.0, + 1404.0, + 2007.0, + 297.0, + 2007.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 2000.0, + 1404.0, + 2000.0, + 1404.0, + 2037.0, + 293.0, + 2037.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 4, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 297, + 1499, + 1404, + 1499, + 1404, + 1866, + 297, + 1866 + ], + "score": 0.984 + }, + { + "category_id": 1, + "poly": [ + 299, + 1881, + 1402, + 1881, + 1402, + 2035, + 299, + 2035 + ], + "score": 0.976 + }, + { + "category_id": 1, + "poly": [ + 297, + 1268, + 1403, + 1268, + 1403, + 1485, + 297, + 1485 + ], + "score": 0.975 + }, + { + "category_id": 1, + "poly": [ + 298, + 845, + 1403, + 845, + 1403, + 1001, + 298, + 1001 + ], + "score": 0.975 + }, + { + "category_id": 3, + "poly": [ + 298, + 222, + 1402, + 222, + 1402, + 530, + 298, + 530 + ], + "score": 0.974 + }, + { + "category_id": 1, + "poly": [ + 299, + 697, + 1401, + 697, + 1401, + 760, + 299, + 760 + ], + "score": 0.953 + }, + { + "category_id": 4, + "poly": [ + 296, + 552, + 1405, + 552, + 1405, + 645, + 296, + 645 + ], + "score": 0.949 + }, + { + "category_id": 6, + "poly": [ + 293, + 1051, + 1396, + 1051, + 1396, + 1113, + 293, + 1113 + ], + "score": 0.935 + }, + { + "category_id": 2, + "poly": [ + 297, + 75, + 858, + 75, + 858, + 105, + 297, + 105 + ], + "score": 0.902 + }, + { + "category_id": 0, + "poly": [ + 299, + 793, + 546, + 793, + 546, + 824, + 299, + 824 + ], + "score": 0.894 + }, + { + "category_id": 2, + "poly": [ + 840, + 2089, + 858, + 2089, + 858, + 2112, + 840, + 2112 + ], + "score": 0.777 + }, + { + "category_id": 13, + "poly": [ + 593, + 1269, + 805, + 1269, + 805, + 1303, + 593, + 1303 + ], + "score": 0.92, + "latex": "x _ { h r } \\sim p ( x _ { h r } | x _ { l r } )" + }, + { + "category_id": 13, + "poly": [ + 298, + 583, + 502, + 583, + 502, + 616, + 298, + 616 + ], + "score": 0.91, + "latex": "x _ { h r } \\sim p ( x _ { h r } | x _ { l r } )" + }, + { + "category_id": 13, + "poly": [ + 829, + 730, + 908, + 730, + 908, + 756, + 829, + 756 + ], + "score": 0.9, + "latex": "K = 8" + }, + { + "category_id": 13, + "poly": [ + 635, + 730, + 708, + 730, + 708, + 756, + 635, + 756 + ], + "score": 0.9, + "latex": "L = 2" + }, + { + "category_id": 13, + "poly": [ + 994, + 699, + 1091, + 699, + 1091, + 728, + 994, + 728 + ], + "score": 0.89, + "latex": "6 4 \\times 6 4" + }, + { + "category_id": 13, + "poly": [ + 862, + 699, + 958, + 699, + 958, + 728, + 862, + 728 + ], + "score": 0.89, + "latex": "3 2 \\times 3 2" + }, + { + "category_id": 13, + "poly": [ + 647, + 1943, + 739, + 1943, + 739, + 1972, + 647, + 1972 + ], + "score": 0.88, + "latex": "\\tau = 0 . 5" + }, + { + "category_id": 13, + "poly": [ + 997, + 879, + 1048, + 879, + 1048, + 909, + 997, + 909 + ], + "score": 0.87, + "latex": "\\log _ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 603, + 704, + 647, + 704, + 647, + 729, + 603, + 729 + ], + "score": 0.86, + "latex": "x _ { h r }" + }, + { + "category_id": 13, + "poly": [ + 1108, + 1621, + 1226, + 1621, + 1226, + 1650, + 1108, + 1650 + ], + "score": 0.78, + "latex": "1 2 8 \\mathrm { ~ x ~ } 1 2 8" + }, + { + "category_id": 13, + "poly": [ + 1146, + 1427, + 1166, + 1427, + 1166, + 1449, + 1146, + 1449 + ], + "score": 0.76, + "latex": "\\tau" + }, + { + "category_id": 13, + "poly": [ + 1369, + 1562, + 1402, + 1562, + 1402, + 1589, + 1369, + 1589 + ], + "score": 0.7, + "latex": "2 \\mathbf { x }" + }, + { + "category_id": 13, + "poly": [ + 1183, + 1335, + 1207, + 1335, + 1207, + 1359, + 1183, + 1359 + ], + "score": 0.5, + "latex": "\\mathbf { x }" + }, + { + "category_id": 13, + "poly": [ + 1260, + 1335, + 1282, + 1335, + 1282, + 1362, + 1260, + 1362 + ], + "score": 0.47, + "latex": "\\mathbf { y }" + }, + { + "category_id": 13, + "poly": [ + 1340, + 1593, + 1400, + 1593, + 1400, + 1622, + 1340, + 1622 + ], + "score": 0.44, + "latex": "\\log _ { 2 ^ { - } }" + }, + { + "category_id": 5, + "poly": [ + 621, + 1114, + 1076, + 1114, + 1076, + 1241, + 621, + 1241 + ], + "score": 0.939, + "html": "
DatasetCNFfactorized LL
ImageNet323.014.00
ImageNet642.903.61
" + }, + { + "category_id": 15, + "poly": [ + 325.0, + 492.0, + 540.0, + 492.0, + 540.0, + 533.0, + 325.0, + 533.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 609.0, + 491.0, + 811.0, + 491.0, + 811.0, + 533.0, + 609.0, + 533.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 894.0, + 491.0, + 1086.0, + 491.0, + 1086.0, + 535.0, + 894.0, + 535.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1161.0, + 492.0, + 1373.0, + 492.0, + 1373.0, + 533.0, + 1161.0, + 533.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 551.0, + 1405.0, + 551.0, + 1405.0, + 585.0, + 295.0, + 585.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 582.0, + 297.0, + 582.0, + 297.0, + 615.0, + 291.0, + 615.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 503.0, + 582.0, + 1405.0, + 582.0, + 1405.0, + 615.0, + 503.0, + 615.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 613.0, + 415.0, + 613.0, + 415.0, + 649.0, + 294.0, + 649.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1050.0, + 1400.0, + 1050.0, + 1400.0, + 1086.0, + 294.0, + 1086.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1081.0, + 960.0, + 1081.0, + 960.0, + 1119.0, + 292.0, + 1119.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 73.0, + 858.0, + 73.0, + 858.0, + 108.0, + 297.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 789.0, + 550.0, + 789.0, + 550.0, + 830.0, + 294.0, + 830.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 840.0, + 2087.0, + 861.0, + 2087.0, + 861.0, + 2118.0, + 840.0, + 2118.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1496.0, + 1406.0, + 1496.0, + 1406.0, + 1537.0, + 292.0, + 1537.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1526.0, + 1406.0, + 1526.0, + 1406.0, + 1567.0, + 291.0, + 1567.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1558.0, + 1368.0, + 1558.0, + 1368.0, + 1595.0, + 294.0, + 1595.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1586.0, + 1339.0, + 1586.0, + 1339.0, + 1631.0, + 291.0, + 1631.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1401.0, + 1586.0, + 1406.0, + 1586.0, + 1406.0, + 1631.0, + 1401.0, + 1631.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1620.0, + 1107.0, + 1620.0, + 1107.0, + 1655.0, + 295.0, + 1655.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1227.0, + 1620.0, + 1404.0, + 1620.0, + 1404.0, + 1655.0, + 1227.0, + 1655.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1651.0, + 1406.0, + 1651.0, + 1406.0, + 1689.0, + 292.0, + 1689.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1680.0, + 1404.0, + 1680.0, + 1404.0, + 1718.0, + 294.0, + 1718.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1710.0, + 1404.0, + 1710.0, + 1404.0, + 1746.0, + 292.0, + 1746.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1742.0, + 1404.0, + 1742.0, + 1404.0, + 1776.0, + 294.0, + 1776.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1774.0, + 1405.0, + 1774.0, + 1405.0, + 1808.0, + 295.0, + 1808.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1803.0, + 1406.0, + 1803.0, + 1406.0, + 1841.0, + 292.0, + 1841.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1831.0, + 711.0, + 1831.0, + 711.0, + 1871.0, + 294.0, + 1871.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1879.0, + 1406.0, + 1879.0, + 1406.0, + 1917.0, + 293.0, + 1917.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1908.0, + 1404.0, + 1908.0, + 1404.0, + 1947.0, + 294.0, + 1947.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1941.0, + 646.0, + 1941.0, + 646.0, + 1977.0, + 294.0, + 1977.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 740.0, + 1941.0, + 1404.0, + 1941.0, + 1404.0, + 1977.0, + 740.0, + 1977.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1970.0, + 1406.0, + 1970.0, + 1406.0, + 2010.0, + 293.0, + 2010.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 2000.0, + 730.0, + 2000.0, + 730.0, + 2040.0, + 293.0, + 2040.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1266.0, + 592.0, + 1266.0, + 592.0, + 1308.0, + 292.0, + 1308.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 806.0, + 1266.0, + 1407.0, + 1266.0, + 1407.0, + 1308.0, + 806.0, + 1308.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1297.0, + 1404.0, + 1297.0, + 1404.0, + 1334.0, + 292.0, + 1334.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1328.0, + 1182.0, + 1328.0, + 1182.0, + 1365.0, + 292.0, + 1365.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1208.0, + 1328.0, + 1259.0, + 1328.0, + 1259.0, + 1365.0, + 1208.0, + 1365.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1283.0, + 1328.0, + 1405.0, + 1328.0, + 1405.0, + 1365.0, + 1283.0, + 1365.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1360.0, + 1405.0, + 1360.0, + 1405.0, + 1395.0, + 295.0, + 1395.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1391.0, + 1405.0, + 1391.0, + 1405.0, + 1426.0, + 293.0, + 1426.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1422.0, + 1145.0, + 1422.0, + 1145.0, + 1457.0, + 295.0, + 1457.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1167.0, + 1422.0, + 1405.0, + 1422.0, + 1405.0, + 1457.0, + 1167.0, + 1457.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1453.0, + 996.0, + 1453.0, + 996.0, + 1488.0, + 295.0, + 1488.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 847.0, + 1404.0, + 847.0, + 1404.0, + 880.0, + 296.0, + 880.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 878.0, + 996.0, + 878.0, + 996.0, + 911.0, + 296.0, + 911.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1049.0, + 878.0, + 1403.0, + 878.0, + 1403.0, + 911.0, + 1049.0, + 911.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 908.0, + 1404.0, + 908.0, + 1404.0, + 942.0, + 294.0, + 942.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 939.0, + 1405.0, + 939.0, + 1405.0, + 972.0, + 296.0, + 972.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 968.0, + 1281.0, + 968.0, + 1281.0, + 1006.0, + 294.0, + 1006.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 695.0, + 602.0, + 695.0, + 602.0, + 734.0, + 295.0, + 734.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 648.0, + 695.0, + 861.0, + 695.0, + 861.0, + 734.0, + 648.0, + 734.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 959.0, + 695.0, + 993.0, + 695.0, + 993.0, + 734.0, + 959.0, + 734.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1092.0, + 695.0, + 1403.0, + 695.0, + 1403.0, + 734.0, + 1092.0, + 734.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 726.0, + 634.0, + 726.0, + 634.0, + 762.0, + 295.0, + 762.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 709.0, + 726.0, + 828.0, + 726.0, + 828.0, + 762.0, + 709.0, + 762.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 909.0, + 726.0, + 923.0, + 726.0, + 923.0, + 762.0, + 909.0, + 762.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 5, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 5, + "poly": [ + 295, + 863, + 1399, + 863, + 1399, + 1175, + 295, + 1175 + ], + "score": 0.981, + "html": "
Set5Set14BSD100
Model TypebpdPSNRSSIM 1bpdPSNRSSIMbpdPSNRSSIM
Bicubic-33.70.930-30.20.869129.60.843
SRCNN136.70.954132.40.906131.40.888
PSyCO136.90.956-32.60.898131.40.890
ENet137.30.958133.30.915132.00.898
LL Baseline2.3432.50.9583.2331.00.9173.2030.60.900
CNF (ours)2.1136.20.9572.5132.50.9112.3331.40.893
" + }, + { + "category_id": 6, + "poly": [ + 296, + 739, + 1405, + 739, + 1405, + 861, + 296, + 861 + ], + "score": 0.967 + }, + { + "category_id": 1, + "poly": [ + 297, + 1322, + 1406, + 1322, + 1406, + 1416, + 297, + 1416 + ], + "score": 0.963 + }, + { + "category_id": 3, + "poly": [ + 298, + 217, + 1401, + 217, + 1401, + 539, + 298, + 539 + ], + "score": 0.96 + }, + { + "category_id": 4, + "poly": [ + 297, + 570, + 1404, + 570, + 1404, + 664, + 297, + 664 + ], + "score": 0.957 + }, + { + "category_id": 3, + "poly": [ + 298, + 1483, + 1404, + 1483, + 1404, + 1879, + 298, + 1879 + ], + "score": 0.944 + }, + { + "category_id": 4, + "poly": [ + 297, + 1910, + 1405, + 1910, + 1405, + 2033, + 297, + 2033 + ], + "score": 0.93 + }, + { + "category_id": 2, + "poly": [ + 298, + 76, + 858, + 76, + 858, + 105, + 298, + 105 + ], + "score": 0.906 + }, + { + "category_id": 0, + "poly": [ + 299, + 1254, + 653, + 1254, + 653, + 1284, + 299, + 1284 + ], + "score": 0.876 + }, + { + "category_id": 2, + "poly": [ + 841, + 2087, + 858, + 2087, + 858, + 2111, + 841, + 2111 + ], + "score": 0.67 + }, + { + "category_id": 2, + "poly": [ + 841, + 2087, + 859, + 2087, + 859, + 2111, + 841, + 2111 + ], + "score": 0.303 + }, + { + "category_id": 13, + "poly": [ + 1167, + 570, + 1314, + 570, + 1314, + 604, + 1167, + 604 + ], + "score": 0.88, + "latex": "\\{ 0 . , 0 . 5 , 1 . 0 \\}" + }, + { + "category_id": 13, + "poly": [ + 1227, + 772, + 1279, + 772, + 1279, + 803, + 1227, + 803 + ], + "score": 0.87, + "latex": "\\log _ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 649, + 603, + 682, + 603, + 682, + 630, + 649, + 630 + ], + "score": 0.39, + "latex": "2 \\mathbf { x }" + }, + { + "category_id": 13, + "poly": [ + 887, + 802, + 921, + 802, + 921, + 830, + 887, + 830 + ], + "score": 0.29, + "latex": "2 \\mathbf { x }" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 736.0, + 1405.0, + 736.0, + 1405.0, + 777.0, + 293.0, + 777.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 771.0, + 1226.0, + 771.0, + 1226.0, + 803.0, + 294.0, + 803.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1280.0, + 771.0, + 1405.0, + 771.0, + 1405.0, + 803.0, + 1280.0, + 803.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 801.0, + 886.0, + 801.0, + 886.0, + 837.0, + 294.0, + 837.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 922.0, + 801.0, + 1406.0, + 801.0, + 1406.0, + 837.0, + 922.0, + 837.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 831.0, + 449.0, + 831.0, + 449.0, + 865.0, + 294.0, + 865.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 298.0, + 221.0, + 517.0, + 221.0, + 517.0, + 254.0, + 298.0, + 254.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 563.0, + 218.0, + 699.0, + 218.0, + 699.0, + 260.0, + 563.0, + 260.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 785.0, + 220.0, + 934.0, + 220.0, + 934.0, + 254.0, + 785.0, + 254.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1000.0, + 217.0, + 1152.0, + 217.0, + 1152.0, + 259.0, + 1000.0, + 259.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1213.0, + 220.0, + 1358.0, + 220.0, + 1358.0, + 258.0, + 1213.0, + 258.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 568.0, + 1166.0, + 568.0, + 1166.0, + 606.0, + 295.0, + 606.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1315.0, + 568.0, + 1405.0, + 568.0, + 1405.0, + 606.0, + 1315.0, + 606.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 600.0, + 648.0, + 600.0, + 648.0, + 636.0, + 294.0, + 636.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 683.0, + 600.0, + 1404.0, + 600.0, + 1404.0, + 636.0, + 683.0, + 636.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 629.0, + 1074.0, + 629.0, + 1074.0, + 667.0, + 292.0, + 667.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 381.0, + 1482.0, + 446.0, + 1482.0, + 446.0, + 1517.0, + 381.0, + 1517.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 604.0, + 1483.0, + 663.0, + 1483.0, + 663.0, + 1514.0, + 604.0, + 1514.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 750.0, + 1483.0, + 954.0, + 1483.0, + 954.0, + 1516.0, + 750.0, + 1516.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1024.0, + 1480.0, + 1120.0, + 1480.0, + 1120.0, + 1517.0, + 1024.0, + 1517.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1225.0, + 1483.0, + 1357.0, + 1483.0, + 1357.0, + 1513.0, + 1225.0, + 1513.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 605.0, + 1632.0, + 675.0, + 1632.0, + 675.0, + 1680.0, + 605.0, + 1680.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 825.0, + 1631.0, + 900.0, + 1631.0, + 900.0, + 1681.0, + 825.0, + 1681.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1051.0, + 1637.0, + 1112.0, + 1637.0, + 1112.0, + 1673.0, + 1051.0, + 1673.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1267.0, + 1633.0, + 1338.0, + 1633.0, + 1338.0, + 1678.0, + 1267.0, + 1678.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 331.0, + 1764.0, + 460.0, + 1764.0, + 460.0, + 1842.0, + 331.0, + 1842.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 486.0, + 1707.0, + 1145.0, + 1707.0, + 1145.0, + 1900.0, + 486.0, + 1900.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1910.0, + 1406.0, + 1910.0, + 1406.0, + 1944.0, + 292.0, + 1944.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1939.0, + 1405.0, + 1939.0, + 1405.0, + 1978.0, + 292.0, + 1978.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1974.0, + 1406.0, + 1974.0, + 1406.0, + 2004.0, + 294.0, + 2004.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 2003.0, + 392.0, + 2003.0, + 392.0, + 2034.0, + 294.0, + 2034.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 298.0, + 72.0, + 858.0, + 72.0, + 858.0, + 108.0, + 298.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1253.0, + 656.0, + 1253.0, + 656.0, + 1288.0, + 295.0, + 1288.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 839.0, + 2086.0, + 860.0, + 2086.0, + 860.0, + 2117.0, + 839.0, + 2117.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 839.0, + 2086.0, + 860.0, + 2086.0, + 860.0, + 2118.0, + 839.0, + 2118.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1320.0, + 1406.0, + 1320.0, + 1406.0, + 1358.0, + 296.0, + 1358.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1352.0, + 1404.0, + 1352.0, + 1404.0, + 1386.0, + 294.0, + 1386.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1384.0, + 1404.0, + 1384.0, + 1404.0, + 1418.0, + 295.0, + 1418.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 6, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 298, + 954, + 1404, + 954, + 1404, + 1291, + 298, + 1291 + ], + "score": 0.982 + }, + { + "category_id": 1, + "poly": [ + 298, + 1329, + 1044, + 1329, + 1044, + 1814, + 298, + 1814 + ], + "score": 0.981 + }, + { + "category_id": 1, + "poly": [ + 298, + 735, + 1403, + 735, + 1403, + 920, + 298, + 920 + ], + "score": 0.981 + }, + { + "category_id": 1, + "poly": [ + 298, + 1850, + 1404, + 1850, + 1404, + 2034, + 298, + 2034 + ], + "score": 0.98 + }, + { + "category_id": 6, + "poly": [ + 296, + 247, + 1404, + 247, + 1404, + 431, + 296, + 431 + ], + "score": 0.978 + }, + { + "category_id": 5, + "poly": [ + 1066, + 1478, + 1416, + 1478, + 1416, + 1775, + 1066, + 1775 + ], + "score": 0.966, + "html": "
LAYERTYPERES.
01inputblock10241024
234max-poolblockblock512512512
567max-poolblockblock256
256
256
" + }, + { + "category_id": 5, + "poly": [ + 301, + 431, + 1401, + 431, + 1401, + 516, + 301, + 516 + ], + "score": 0.962, + "html": "
SELDWaveletsHumanHEDKBN4DRIUFactored (ours)CNF Uniform (Ours)CNF (ours)
bpd==0.0647 ± 0.00150.3366 ± 0.02900.0254± 0.0008
F-Score0.6580.6920.7620.7910.7940.8000.8050.8210.815 ± 0.0010.762 ± 0.0020.819 ± 0.001
" + }, + { + "category_id": 8, + "poly": [ + 652, + 622, + 1044, + 622, + 1044, + 717, + 652, + 717 + ], + "score": 0.953 + }, + { + "category_id": 2, + "poly": [ + 298, + 75, + 858, + 75, + 858, + 105, + 298, + 105 + ], + "score": 0.915 + }, + { + "category_id": 9, + "poly": [ + 1366, + 655, + 1400, + 655, + 1400, + 684, + 1366, + 684 + ], + "score": 0.866 + }, + { + "category_id": 6, + "poly": [ + 1066, + 1326, + 1403, + 1326, + 1403, + 1478, + 1066, + 1478 + ], + "score": 0.834 + }, + { + "category_id": 2, + "poly": [ + 840, + 2088, + 858, + 2088, + 858, + 2112, + 840, + 2112 + ], + "score": 0.798 + }, + { + "category_id": 1, + "poly": [ + 297, + 573, + 670, + 573, + 670, + 604, + 297, + 604 + ], + "score": 0.46 + }, + { + "category_id": 0, + "poly": [ + 297, + 573, + 670, + 573, + 670, + 604, + 297, + 604 + ], + "score": 0.359 + }, + { + "category_id": 1, + "poly": [ + 1066, + 1326, + 1403, + 1326, + 1403, + 1478, + 1066, + 1478 + ], + "score": 0.11 + }, + { + "category_id": 14, + "poly": [ + 650, + 619, + 1048, + 619, + 1048, + 719, + 650, + 719 + ], + "score": 0.94, + "latex": "\\mathcal { L } = \\prod _ { j } \\frac { p _ { j } ^ { \\beta \\cdot y _ { j } } ( 1 - p _ { j } ) ^ { ( 1 - \\beta ) \\cdot ( 1 - y _ { j } ) } } { p _ { j } ^ { \\beta } + ( 1 - p _ { j } ) ^ { 1 - \\beta } }" + }, + { + "category_id": 13, + "poly": [ + 372, + 736, + 573, + 736, + 573, + 771, + 372, + 771 + ], + "score": 0.92, + "latex": "p _ { j } = p ( y _ { j } = 1 | \\mathbf { x } )" + }, + { + "category_id": 13, + "poly": [ + 661, + 766, + 747, + 766, + 747, + 796, + 661, + 796 + ], + "score": 0.9, + "latex": "\\sim 1 0 \\%" + }, + { + "category_id": 13, + "poly": [ + 524, + 1448, + 569, + 1448, + 569, + 1482, + 524, + 1482 + ], + "score": 0.89, + "latex": "s ( \\cdot )" + }, + { + "category_id": 13, + "poly": [ + 855, + 1448, + 897, + 1448, + 897, + 1482, + 855, + 1482 + ], + "score": 0.87, + "latex": "t ( \\cdot )" + }, + { + "category_id": 13, + "poly": [ + 625, + 1912, + 683, + 1912, + 683, + 1941, + 625, + 1941 + ], + "score": 0.87, + "latex": "3 6 0 ^ { \\circ }" + }, + { + "category_id": 13, + "poly": [ + 1090, + 1943, + 1133, + 1943, + 1133, + 1971, + 1090, + 1971 + ], + "score": 0.86, + "latex": "1 0 ^ { \\circ }" + }, + { + "category_id": 13, + "poly": [ + 1002, + 741, + 1031, + 741, + 1031, + 770, + 1002, + 770 + ], + "score": 0.85, + "latex": "y _ { j }" + }, + { + "category_id": 13, + "poly": [ + 1329, + 956, + 1404, + 956, + 1404, + 986, + 1329, + 986 + ], + "score": 0.85, + "latex": "5 8 4 \\times" + }, + { + "category_id": 13, + "poly": [ + 1030, + 339, + 1072, + 339, + 1072, + 369, + 1030, + 369 + ], + "score": 0.85, + "latex": "N ^ { 4 }" + }, + { + "category_id": 13, + "poly": [ + 1355, + 738, + 1376, + 738, + 1376, + 768, + 1355, + 768 + ], + "score": 0.85, + "latex": "\\beta" + }, + { + "category_id": 13, + "poly": [ + 972, + 339, + 1012, + 339, + 1012, + 369, + 972, + 369 + ], + "score": 0.85, + "latex": "N ^ { 4 }" + }, + { + "category_id": 13, + "poly": [ + 886, + 1882, + 1013, + 1882, + 1013, + 1911, + 886, + 1911 + ], + "score": 0.76, + "latex": "1 0 2 4 \\mathrm { x } 1 0 2 4" + }, + { + "category_id": 13, + "poly": [ + 1013, + 1664, + 1046, + 1664, + 1046, + 1691, + 1013, + 1691 + ], + "score": 0.75, + "latex": "=" + }, + { + "category_id": 13, + "poly": [ + 689, + 1693, + 736, + 1693, + 736, + 1722, + 689, + 1722 + ], + "score": 0.47, + "latex": "2 \\mathbf { x } 2" + }, + { + "category_id": 13, + "poly": [ + 634, + 1724, + 679, + 1724, + 679, + 1751, + 634, + 1751 + ], + "score": 0.45, + "latex": "3 { \\tt X } 3" + }, + { + "category_id": 13, + "poly": [ + 812, + 436, + 840, + 436, + 840, + 457, + 812, + 457 + ], + "score": 0.31, + "latex": "N ^ { 4 }" + }, + { + "category_id": 13, + "poly": [ + 477, + 1544, + 513, + 1544, + 513, + 1569, + 477, + 1569 + ], + "score": 0.31, + "latex": "^ { + + }" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 250.0, + 1402.0, + 250.0, + 1402.0, + 282.0, + 296.0, + 282.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 278.0, + 1404.0, + 278.0, + 1404.0, + 315.0, + 293.0, + 315.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 306.0, + 1406.0, + 306.0, + 1406.0, + 348.0, + 291.0, + 348.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 334.0, + 971.0, + 334.0, + 971.0, + 381.0, + 291.0, + 381.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1013.0, + 334.0, + 1029.0, + 334.0, + 1029.0, + 381.0, + 1013.0, + 381.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1073.0, + 334.0, + 1406.0, + 334.0, + 1406.0, + 381.0, + 1073.0, + 381.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 369.0, + 1404.0, + 369.0, + 1404.0, + 406.0, + 293.0, + 406.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 400.0, + 932.0, + 400.0, + 932.0, + 435.0, + 294.0, + 435.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 298.0, + 73.0, + 858.0, + 73.0, + 858.0, + 108.0, + 298.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1066.0, + 1324.0, + 1404.0, + 1324.0, + 1404.0, + 1359.0, + 1066.0, + 1359.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1067.0, + 1356.0, + 1404.0, + 1356.0, + 1404.0, + 1387.0, + 1067.0, + 1387.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1065.0, + 1389.0, + 1404.0, + 1389.0, + 1404.0, + 1417.0, + 1065.0, + 1417.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1064.0, + 1415.0, + 1405.0, + 1415.0, + 1405.0, + 1452.0, + 1064.0, + 1452.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1063.0, + 1447.0, + 1226.0, + 1447.0, + 1226.0, + 1481.0, + 1063.0, + 1481.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 836.0, + 2085.0, + 859.0, + 2085.0, + 859.0, + 2116.0, + 836.0, + 2116.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 571.0, + 670.0, + 571.0, + 670.0, + 608.0, + 292.0, + 608.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 955.0, + 1328.0, + 955.0, + 1328.0, + 990.0, + 294.0, + 990.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 985.0, + 1405.0, + 985.0, + 1405.0, + 1022.0, + 293.0, + 1022.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1017.0, + 1405.0, + 1017.0, + 1405.0, + 1052.0, + 294.0, + 1052.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1047.0, + 1406.0, + 1047.0, + 1406.0, + 1082.0, + 294.0, + 1082.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1075.0, + 1405.0, + 1075.0, + 1405.0, + 1114.0, + 292.0, + 1114.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1106.0, + 1408.0, + 1106.0, + 1408.0, + 1145.0, + 293.0, + 1145.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1136.0, + 1405.0, + 1136.0, + 1405.0, + 1172.0, + 293.0, + 1172.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1168.0, + 1406.0, + 1168.0, + 1406.0, + 1203.0, + 294.0, + 1203.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1201.0, + 1404.0, + 1201.0, + 1404.0, + 1232.0, + 296.0, + 1232.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1229.0, + 1406.0, + 1229.0, + 1406.0, + 1264.0, + 294.0, + 1264.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1260.0, + 803.0, + 1260.0, + 803.0, + 1295.0, + 294.0, + 1295.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1327.0, + 1046.0, + 1327.0, + 1046.0, + 1360.0, + 295.0, + 1360.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1357.0, + 1047.0, + 1357.0, + 1047.0, + 1391.0, + 294.0, + 1391.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1389.0, + 1045.0, + 1389.0, + 1045.0, + 1420.0, + 295.0, + 1420.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1416.0, + 1049.0, + 1416.0, + 1049.0, + 1453.0, + 294.0, + 1453.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1449.0, + 523.0, + 1449.0, + 523.0, + 1483.0, + 295.0, + 1483.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 570.0, + 1449.0, + 854.0, + 1449.0, + 854.0, + 1483.0, + 570.0, + 1483.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 898.0, + 1449.0, + 1047.0, + 1449.0, + 1047.0, + 1483.0, + 898.0, + 1483.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1479.0, + 1048.0, + 1479.0, + 1048.0, + 1513.0, + 295.0, + 1513.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1510.0, + 1046.0, + 1510.0, + 1046.0, + 1541.0, + 294.0, + 1541.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1540.0, + 476.0, + 1540.0, + 476.0, + 1574.0, + 293.0, + 1574.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 514.0, + 1540.0, + 1047.0, + 1540.0, + 1047.0, + 1574.0, + 514.0, + 1574.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1568.0, + 1047.0, + 1568.0, + 1047.0, + 1605.0, + 294.0, + 1605.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1601.0, + 1047.0, + 1601.0, + 1047.0, + 1634.0, + 294.0, + 1634.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1631.0, + 1046.0, + 1631.0, + 1046.0, + 1664.0, + 294.0, + 1664.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1662.0, + 1012.0, + 1662.0, + 1012.0, + 1693.0, + 296.0, + 1693.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1693.0, + 688.0, + 1693.0, + 688.0, + 1725.0, + 296.0, + 1725.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 737.0, + 1693.0, + 1045.0, + 1693.0, + 1045.0, + 1725.0, + 737.0, + 1725.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1721.0, + 633.0, + 1721.0, + 633.0, + 1754.0, + 294.0, + 1754.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 680.0, + 1721.0, + 1046.0, + 1721.0, + 1046.0, + 1754.0, + 680.0, + 1754.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1751.0, + 1049.0, + 1751.0, + 1049.0, + 1786.0, + 295.0, + 1786.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1781.0, + 548.0, + 1781.0, + 548.0, + 1820.0, + 294.0, + 1820.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 735.0, + 371.0, + 735.0, + 371.0, + 774.0, + 294.0, + 774.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 574.0, + 735.0, + 1001.0, + 735.0, + 1001.0, + 774.0, + 574.0, + 774.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1032.0, + 735.0, + 1354.0, + 735.0, + 1354.0, + 774.0, + 1032.0, + 774.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1377.0, + 735.0, + 1407.0, + 735.0, + 1407.0, + 774.0, + 1377.0, + 774.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 766.0, + 660.0, + 766.0, + 660.0, + 798.0, + 293.0, + 798.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 748.0, + 766.0, + 1404.0, + 766.0, + 1404.0, + 798.0, + 748.0, + 798.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 798.0, + 1405.0, + 798.0, + 1405.0, + 830.0, + 294.0, + 830.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 826.0, + 1405.0, + 826.0, + 1405.0, + 862.0, + 294.0, + 862.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 861.0, + 1404.0, + 861.0, + 1404.0, + 892.0, + 294.0, + 892.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 887.0, + 1390.0, + 887.0, + 1390.0, + 924.0, + 293.0, + 924.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1849.0, + 1405.0, + 1849.0, + 1405.0, + 1885.0, + 296.0, + 1885.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1882.0, + 885.0, + 1882.0, + 885.0, + 1914.0, + 296.0, + 1914.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1014.0, + 1882.0, + 1405.0, + 1882.0, + 1405.0, + 1914.0, + 1014.0, + 1914.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1909.0, + 624.0, + 1909.0, + 624.0, + 1947.0, + 293.0, + 1947.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 684.0, + 1909.0, + 1405.0, + 1909.0, + 1405.0, + 1947.0, + 684.0, + 1947.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1943.0, + 1089.0, + 1943.0, + 1089.0, + 1975.0, + 296.0, + 1975.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1134.0, + 1943.0, + 1405.0, + 1943.0, + 1405.0, + 1975.0, + 1134.0, + 1975.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1972.0, + 1406.0, + 1972.0, + 1406.0, + 2007.0, + 293.0, + 2007.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 2002.0, + 1406.0, + 2002.0, + 1406.0, + 2037.0, + 294.0, + 2037.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 571.0, + 670.0, + 571.0, + 670.0, + 608.0, + 292.0, + 608.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1066.0, + 1324.0, + 1404.0, + 1324.0, + 1404.0, + 1359.0, + 1066.0, + 1359.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1067.0, + 1356.0, + 1404.0, + 1356.0, + 1404.0, + 1387.0, + 1067.0, + 1387.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1065.0, + 1389.0, + 1404.0, + 1389.0, + 1404.0, + 1417.0, + 1065.0, + 1417.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1064.0, + 1415.0, + 1405.0, + 1415.0, + 1405.0, + 1452.0, + 1064.0, + 1452.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1063.0, + 1447.0, + 1226.0, + 1447.0, + 1226.0, + 1481.0, + 1063.0, + 1481.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 7, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 297, + 378, + 1405, + 378, + 1405, + 992, + 297, + 992 + ], + "score": 0.983 + }, + { + "category_id": 3, + "poly": [ + 302, + 1056, + 1380, + 1056, + 1380, + 1631, + 302, + 1631 + ], + "score": 0.973 + }, + { + "category_id": 4, + "poly": [ + 296, + 1653, + 1404, + 1653, + 1404, + 1991, + 296, + 1991 + ], + "score": 0.965 + }, + { + "category_id": 1, + "poly": [ + 299, + 229, + 1403, + 229, + 1403, + 323, + 299, + 323 + ], + "score": 0.961 + }, + { + "category_id": 2, + "poly": [ + 298, + 76, + 857, + 76, + 857, + 104, + 298, + 104 + ], + "score": 0.881 + }, + { + "category_id": 2, + "poly": [ + 840, + 2088, + 858, + 2088, + 858, + 2111, + 840, + 2111 + ], + "score": 0.787 + }, + { + "category_id": 15, + "poly": [ + 326.0, + 1053.0, + 371.0, + 1053.0, + 371.0, + 1087.0, + 326.0, + 1087.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 874.0, + 1054.0, + 923.0, + 1054.0, + 923.0, + 1092.0, + 874.0, + 1092.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 765.0, + 1108.0, + 775.0, + 1108.0, + 775.0, + 1121.0, + 765.0, + 1121.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 873.0, + 1099.0, + 922.0, + 1099.0, + 922.0, + 1136.0, + 873.0, + 1136.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1116.0, + 371.0, + 1116.0, + 371.0, + 1154.0, + 323.0, + 1154.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1241.0, + 1120.0, + 1250.0, + 1120.0, + 1250.0, + 1133.0, + 1241.0, + 1133.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 873.0, + 1144.0, + 922.0, + 1144.0, + 922.0, + 1182.0, + 873.0, + 1182.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1241.0, + 1141.0, + 1255.0, + 1141.0, + 1255.0, + 1167.0, + 1241.0, + 1167.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1290.0, + 1146.0, + 1305.0, + 1146.0, + 1305.0, + 1165.0, + 1290.0, + 1165.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1182.0, + 1169.0, + 1193.0, + 1169.0, + 1193.0, + 1181.0, + 1182.0, + 1181.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1241.0, + 1166.0, + 1251.0, + 1166.0, + 1251.0, + 1182.0, + 1241.0, + 1182.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1182.0, + 372.0, + 1182.0, + 372.0, + 1218.0, + 323.0, + 1218.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 699.0, + 1176.0, + 713.0, + 1176.0, + 713.0, + 1193.0, + 699.0, + 1193.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1202.0, + 1185.0, + 1208.0, + 1185.0, + 1208.0, + 1191.0, + 1202.0, + 1191.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 875.0, + 1191.0, + 920.0, + 1191.0, + 920.0, + 1224.0, + 875.0, + 1224.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1284.0, + 1214.0, + 1301.0, + 1214.0, + 1301.0, + 1228.0, + 1284.0, + 1228.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 283.0, + 1228.0, + 389.0, + 1228.0, + 389.0, + 1367.0, + 283.0, + 1367.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 850.0, + 1233.0, + 922.0, + 1233.0, + 922.0, + 1351.0, + 850.0, + 1351.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1148.0, + 1229.0, + 1185.0, + 1229.0, + 1185.0, + 1270.0, + 1148.0, + 1270.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1191.0, + 1272.0, + 1201.0, + 1272.0, + 1201.0, + 1281.0, + 1191.0, + 1281.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 874.0, + 1279.0, + 920.0, + 1279.0, + 920.0, + 1316.0, + 874.0, + 1316.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1167.0, + 1300.0, + 1176.0, + 1300.0, + 1176.0, + 1310.0, + 1167.0, + 1310.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1257.0, + 1306.0, + 1268.0, + 1306.0, + 1268.0, + 1316.0, + 1257.0, + 1316.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 416.0, + 1331.0, + 534.0, + 1331.0, + 534.0, + 1383.0, + 416.0, + 1383.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 875.0, + 1326.0, + 920.0, + 1326.0, + 920.0, + 1358.0, + 875.0, + 1358.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 986.0, + 1342.0, + 1009.0, + 1342.0, + 1009.0, + 1370.0, + 986.0, + 1370.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1013.0, + 1352.0, + 1026.0, + 1352.0, + 1026.0, + 1368.0, + 1013.0, + 1368.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1377.0, + 371.0, + 1377.0, + 371.0, + 1414.0, + 323.0, + 1414.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 415.0, + 1373.0, + 505.0, + 1373.0, + 505.0, + 1429.0, + 415.0, + 1429.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 874.0, + 1370.0, + 921.0, + 1370.0, + 921.0, + 1407.0, + 874.0, + 1407.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 982.0, + 1361.0, + 1037.0, + 1361.0, + 1037.0, + 1436.0, + 982.0, + 1436.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 415.0, + 1419.0, + 532.0, + 1419.0, + 532.0, + 1451.0, + 415.0, + 1451.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 873.0, + 1414.0, + 921.0, + 1414.0, + 921.0, + 1451.0, + 873.0, + 1451.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1444.0, + 373.0, + 1444.0, + 373.0, + 1480.0, + 323.0, + 1480.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 414.0, + 1439.0, + 507.0, + 1439.0, + 507.0, + 1497.0, + 414.0, + 1497.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 874.0, + 1461.0, + 918.0, + 1461.0, + 918.0, + 1495.0, + 874.0, + 1495.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 952.0, + 1440.0, + 1067.0, + 1440.0, + 1067.0, + 1493.0, + 952.0, + 1493.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1123.0, + 1440.0, + 1239.0, + 1440.0, + 1239.0, + 1493.0, + 1123.0, + 1493.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1296.0, + 1440.0, + 1376.0, + 1440.0, + 1376.0, + 1494.0, + 1296.0, + 1494.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 415.0, + 1485.0, + 503.0, + 1485.0, + 503.0, + 1521.0, + 415.0, + 1521.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 951.0, + 1482.0, + 1040.0, + 1482.0, + 1040.0, + 1518.0, + 951.0, + 1518.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1123.0, + 1484.0, + 1215.0, + 1484.0, + 1215.0, + 1516.0, + 1123.0, + 1516.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1295.0, + 1482.0, + 1370.0, + 1482.0, + 1370.0, + 1519.0, + 1295.0, + 1519.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 410.0, + 1522.0, + 459.0, + 1522.0, + 459.0, + 1558.0, + 410.0, + 1558.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 475.0, + 1521.0, + 524.0, + 1521.0, + 524.0, + 1558.0, + 475.0, + 1558.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 542.0, + 1523.0, + 654.0, + 1523.0, + 654.0, + 1556.0, + 542.0, + 1556.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 670.0, + 1525.0, + 720.0, + 1525.0, + 720.0, + 1556.0, + 670.0, + 1556.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 737.0, + 1525.0, + 786.0, + 1525.0, + 786.0, + 1556.0, + 737.0, + 1556.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 797.0, + 1525.0, + 847.0, + 1525.0, + 847.0, + 1556.0, + 797.0, + 1556.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 560.0, + 1546.0, + 636.0, + 1546.0, + 636.0, + 1579.0, + 560.0, + 1579.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1109.0, + 1545.0, + 1180.0, + 1545.0, + 1180.0, + 1574.0, + 1109.0, + 1574.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 499.0, + 1597.0, + 653.0, + 1597.0, + 653.0, + 1638.0, + 499.0, + 1638.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1015.0, + 1594.0, + 1235.0, + 1594.0, + 1235.0, + 1634.0, + 1015.0, + 1634.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1285.0, + 1202.5, + 1309.0, + 1202.5, + 1309.0, + 1212.5, + 1285.0, + 1212.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1160.0, + 1266.0, + 1164.0, + 1266.0, + 1164.0, + 1293.5, + 1160.0, + 1293.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 332.0, + 1508.0, + 385.0, + 1508.0, + 385.0, + 1558.0, + 332.0, + 1558.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 862.0, + 1500.5, + 1398.0, + 1500.5, + 1398.0, + 1571.0, + 862.0, + 1571.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1654.0, + 1404.0, + 1654.0, + 1404.0, + 1689.0, + 295.0, + 1689.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1685.0, + 1405.0, + 1685.0, + 1405.0, + 1719.0, + 293.0, + 1719.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1711.0, + 1406.0, + 1711.0, + 1406.0, + 1752.0, + 291.0, + 1752.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1746.0, + 1404.0, + 1746.0, + 1404.0, + 1781.0, + 294.0, + 1781.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1775.0, + 1404.0, + 1775.0, + 1404.0, + 1810.0, + 295.0, + 1810.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1810.0, + 1405.0, + 1810.0, + 1405.0, + 1841.0, + 296.0, + 1841.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1836.0, + 1404.0, + 1836.0, + 1404.0, + 1874.0, + 294.0, + 1874.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1864.0, + 1405.0, + 1864.0, + 1405.0, + 1907.0, + 291.0, + 1907.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1898.0, + 1404.0, + 1898.0, + 1404.0, + 1933.0, + 295.0, + 1933.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1929.0, + 1406.0, + 1929.0, + 1406.0, + 1964.0, + 295.0, + 1964.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1960.0, + 1162.0, + 1960.0, + 1162.0, + 1995.0, + 295.0, + 1995.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 298.0, + 73.0, + 858.0, + 73.0, + 858.0, + 108.0, + 298.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 839.0, + 2087.0, + 860.0, + 2087.0, + 860.0, + 2117.0, + 839.0, + 2117.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 380.0, + 1405.0, + 380.0, + 1405.0, + 415.0, + 295.0, + 415.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 411.0, + 1405.0, + 411.0, + 1405.0, + 446.0, + 295.0, + 446.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 443.0, + 1402.0, + 443.0, + 1402.0, + 474.0, + 296.0, + 474.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 473.0, + 1403.0, + 473.0, + 1403.0, + 508.0, + 295.0, + 508.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 503.0, + 1405.0, + 503.0, + 1405.0, + 537.0, + 295.0, + 537.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 534.0, + 1405.0, + 534.0, + 1405.0, + 568.0, + 295.0, + 568.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 565.0, + 1403.0, + 565.0, + 1403.0, + 599.0, + 295.0, + 599.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 595.0, + 1406.0, + 595.0, + 1406.0, + 629.0, + 295.0, + 629.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 621.0, + 1406.0, + 621.0, + 1406.0, + 661.0, + 292.0, + 661.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 655.0, + 1405.0, + 655.0, + 1405.0, + 689.0, + 291.0, + 689.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 686.0, + 1405.0, + 686.0, + 1405.0, + 721.0, + 295.0, + 721.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 715.0, + 1405.0, + 715.0, + 1405.0, + 748.0, + 294.0, + 748.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 744.0, + 1407.0, + 744.0, + 1407.0, + 782.0, + 294.0, + 782.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 777.0, + 1407.0, + 777.0, + 1407.0, + 811.0, + 294.0, + 811.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 805.0, + 1407.0, + 805.0, + 1407.0, + 844.0, + 294.0, + 844.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 839.0, + 1405.0, + 839.0, + 1405.0, + 870.0, + 295.0, + 870.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 866.0, + 1403.0, + 866.0, + 1403.0, + 903.0, + 292.0, + 903.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 896.0, + 1405.0, + 896.0, + 1405.0, + 933.0, + 294.0, + 933.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 928.0, + 1403.0, + 928.0, + 1403.0, + 961.0, + 295.0, + 961.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 956.0, + 1373.0, + 956.0, + 1373.0, + 996.0, + 294.0, + 996.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 225.0, + 1407.0, + 225.0, + 1407.0, + 270.0, + 292.0, + 270.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 260.0, + 1405.0, + 260.0, + 1405.0, + 297.0, + 294.0, + 297.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 293.0, + 881.0, + 293.0, + 881.0, + 327.0, + 295.0, + 327.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 8, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 298, + 297, + 1404, + 297, + 1404, + 450, + 298, + 450 + ], + "score": 0.963 + }, + { + "category_id": 2, + "poly": [ + 298, + 75, + 858, + 75, + 858, + 105, + 298, + 105 + ], + "score": 0.902 + }, + { + "category_id": 0, + "poly": [ + 299, + 226, + 544, + 226, + 544, + 262, + 299, + 262 + ], + "score": 0.875 + }, + { + "category_id": 0, + "poly": [ + 299, + 497, + 488, + 497, + 488, + 532, + 299, + 532 + ], + "score": 0.854 + }, + { + "category_id": 2, + "poly": [ + 836, + 2088, + 865, + 2088, + 865, + 2112, + 836, + 2112 + ], + "score": 0.831 + }, + { + "category_id": 1, + "poly": [ + 298, + 550, + 1400, + 550, + 1400, + 613, + 298, + 613 + ], + "score": 0.823 + }, + { + "category_id": 1, + "poly": [ + 294, + 1593, + 1402, + 1593, + 1402, + 1658, + 294, + 1658 + ], + "score": 0.776 + }, + { + "category_id": 1, + "poly": [ + 296, + 1244, + 1405, + 1244, + 1405, + 1367, + 296, + 1367 + ], + "score": 0.767 + }, + { + "category_id": 1, + "poly": [ + 295, + 1825, + 1404, + 1825, + 1404, + 1918, + 295, + 1918 + ], + "score": 0.752 + }, + { + "category_id": 1, + "poly": [ + 300, + 1937, + 1402, + 1937, + 1402, + 2033, + 300, + 2033 + ], + "score": 0.744 + }, + { + "category_id": 1, + "poly": [ + 296, + 635, + 1399, + 635, + 1399, + 728, + 296, + 728 + ], + "score": 0.742 + }, + { + "category_id": 1, + "poly": [ + 298, + 1128, + 1406, + 1128, + 1406, + 1224, + 298, + 1224 + ], + "score": 0.733 + }, + { + "category_id": 1, + "poly": [ + 297, + 1678, + 1404, + 1678, + 1404, + 1802, + 297, + 1802 + ], + "score": 0.73 + }, + { + "category_id": 1, + "poly": [ + 298, + 1013, + 1405, + 1013, + 1405, + 1107, + 298, + 1107 + ], + "score": 0.723 + }, + { + "category_id": 1, + "poly": [ + 297, + 1476, + 1406, + 1476, + 1406, + 1570, + 297, + 1570 + ], + "score": 0.721 + }, + { + "category_id": 1, + "poly": [ + 292, + 749, + 1400, + 749, + 1400, + 816, + 292, + 816 + ], + "score": 0.713 + }, + { + "category_id": 1, + "poly": [ + 295, + 1390, + 1400, + 1390, + 1400, + 1457, + 295, + 1457 + ], + "score": 0.674 + }, + { + "category_id": 1, + "poly": [ + 297, + 836, + 1406, + 836, + 1406, + 992, + 297, + 992 + ], + "score": 0.666 + }, + { + "category_id": 13, + "poly": [ + 784, + 1934, + 823, + 1934, + 823, + 1970, + 784, + 1970 + ], + "score": 0.87, + "latex": "\\mathrm { N } ^ { 4 }" + }, + { + "category_id": 15, + "poly": [ + 298.0, + 73.0, + 858.0, + 73.0, + 858.0, + 108.0, + 298.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 219.0, + 550.0, + 219.0, + 550.0, + 271.0, + 292.0, + 271.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 500.0, + 490.0, + 500.0, + 490.0, + 533.0, + 297.0, + 533.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 832.0, + 2084.0, + 871.0, + 2084.0, + 871.0, + 2123.0, + 832.0, + 2123.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 296.0, + 1402.0, + 296.0, + 1402.0, + 333.0, + 294.0, + 333.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 326.0, + 1404.0, + 326.0, + 1404.0, + 363.0, + 294.0, + 363.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 358.0, + 1406.0, + 358.0, + 1406.0, + 395.0, + 293.0, + 395.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 388.0, + 1405.0, + 388.0, + 1405.0, + 425.0, + 294.0, + 425.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 418.0, + 1257.0, + 418.0, + 1257.0, + 455.0, + 294.0, + 455.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 546.0, + 1404.0, + 546.0, + 1404.0, + 588.0, + 293.0, + 588.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 582.0, + 776.0, + 582.0, + 776.0, + 611.0, + 323.0, + 611.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1593.0, + 1405.0, + 1593.0, + 1405.0, + 1629.0, + 294.0, + 1629.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1622.0, + 1179.0, + 1622.0, + 1179.0, + 1658.0, + 323.0, + 1658.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1247.0, + 1405.0, + 1247.0, + 1405.0, + 1280.0, + 294.0, + 1280.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 319.0, + 1274.0, + 1406.0, + 1274.0, + 1406.0, + 1311.0, + 319.0, + 1311.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 319.0, + 1304.0, + 1403.0, + 1304.0, + 1403.0, + 1343.0, + 319.0, + 1343.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 1338.0, + 422.0, + 1338.0, + 422.0, + 1369.0, + 324.0, + 1369.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1822.0, + 1405.0, + 1822.0, + 1405.0, + 1863.0, + 294.0, + 1863.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1855.0, + 1402.0, + 1855.0, + 1402.0, + 1892.0, + 322.0, + 1892.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 1887.0, + 508.0, + 1887.0, + 508.0, + 1917.0, + 324.0, + 1917.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1934.0, + 783.0, + 1934.0, + 783.0, + 1978.0, + 293.0, + 1978.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 824.0, + 1934.0, + 1407.0, + 1934.0, + 1407.0, + 1978.0, + 824.0, + 1978.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1972.0, + 1402.0, + 1972.0, + 1402.0, + 2006.0, + 321.0, + 2006.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1999.0, + 408.0, + 1999.0, + 408.0, + 2036.0, + 322.0, + 2036.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 634.0, + 1404.0, + 634.0, + 1404.0, + 669.0, + 292.0, + 669.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 667.0, + 1405.0, + 667.0, + 1405.0, + 698.0, + 321.0, + 698.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 697.0, + 855.0, + 697.0, + 855.0, + 731.0, + 324.0, + 731.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1127.0, + 1408.0, + 1127.0, + 1408.0, + 1165.0, + 293.0, + 1165.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1159.0, + 1402.0, + 1159.0, + 1402.0, + 1193.0, + 322.0, + 1193.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1189.0, + 692.0, + 1189.0, + 692.0, + 1227.0, + 322.0, + 1227.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1679.0, + 1404.0, + 1679.0, + 1404.0, + 1712.0, + 295.0, + 1712.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 1711.0, + 1405.0, + 1711.0, + 1405.0, + 1744.0, + 324.0, + 1744.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 1739.0, + 1404.0, + 1739.0, + 1404.0, + 1775.0, + 320.0, + 1775.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 325.0, + 1773.0, + 555.0, + 1773.0, + 555.0, + 1802.0, + 325.0, + 1802.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1014.0, + 1402.0, + 1014.0, + 1402.0, + 1048.0, + 296.0, + 1048.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1043.0, + 1405.0, + 1043.0, + 1405.0, + 1081.0, + 321.0, + 1081.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 318.0, + 1071.0, + 396.0, + 1071.0, + 396.0, + 1109.0, + 318.0, + 1109.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1476.0, + 1404.0, + 1476.0, + 1404.0, + 1512.0, + 294.0, + 1512.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1505.0, + 1402.0, + 1505.0, + 1402.0, + 1544.0, + 323.0, + 1544.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 1540.0, + 573.0, + 1540.0, + 573.0, + 1569.0, + 324.0, + 1569.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 749.0, + 1401.0, + 749.0, + 1401.0, + 785.0, + 296.0, + 785.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 781.0, + 1101.0, + 781.0, + 1101.0, + 818.0, + 323.0, + 818.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1391.0, + 1405.0, + 1391.0, + 1405.0, + 1427.0, + 295.0, + 1427.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1422.0, + 1018.0, + 1422.0, + 1018.0, + 1457.0, + 322.0, + 1457.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 838.0, + 1403.0, + 838.0, + 1403.0, + 871.0, + 296.0, + 871.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 325.0, + 869.0, + 1404.0, + 869.0, + 1404.0, + 902.0, + 325.0, + 902.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 898.0, + 1403.0, + 898.0, + 1403.0, + 935.0, + 323.0, + 935.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 929.0, + 1404.0, + 929.0, + 1404.0, + 962.0, + 323.0, + 962.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 961.0, + 1076.0, + 961.0, + 1076.0, + 994.0, + 323.0, + 994.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 9, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 298, + 1850, + 1471, + 1850, + 1471, + 2034, + 298, + 2034 + ], + "score": 0.944 + }, + { + "category_id": 1, + "poly": [ + 297, + 1672, + 1405, + 1672, + 1405, + 1825, + 297, + 1825 + ], + "score": 0.912 + }, + { + "category_id": 1, + "poly": [ + 300, + 1553, + 1402, + 1553, + 1402, + 1646, + 300, + 1646 + ], + "score": 0.893 + }, + { + "category_id": 2, + "poly": [ + 298, + 75, + 858, + 75, + 858, + 105, + 298, + 105 + ], + "score": 0.878 + }, + { + "category_id": 2, + "poly": [ + 836, + 2088, + 863, + 2088, + 863, + 2113, + 836, + 2113 + ], + "score": 0.835 + }, + { + "category_id": 1, + "poly": [ + 299, + 939, + 1401, + 939, + 1401, + 1033, + 299, + 1033 + ], + "score": 0.828 + }, + { + "category_id": 1, + "poly": [ + 297, + 1436, + 1400, + 1436, + 1400, + 1529, + 297, + 1529 + ], + "score": 0.826 + }, + { + "category_id": 1, + "poly": [ + 298, + 1347, + 1404, + 1347, + 1404, + 1413, + 298, + 1413 + ], + "score": 0.823 + }, + { + "category_id": 1, + "poly": [ + 297, + 229, + 1405, + 229, + 1405, + 384, + 297, + 384 + ], + "score": 0.821 + }, + { + "category_id": 1, + "poly": [ + 297, + 821, + 1405, + 821, + 1405, + 915, + 297, + 915 + ], + "score": 0.821 + }, + { + "category_id": 1, + "poly": [ + 299, + 1292, + 1254, + 1292, + 1254, + 1326, + 299, + 1326 + ], + "score": 0.809 + }, + { + "category_id": 1, + "poly": [ + 298, + 1173, + 1405, + 1173, + 1405, + 1268, + 298, + 1268 + ], + "score": 0.804 + }, + { + "category_id": 1, + "poly": [ + 302, + 1056, + 1401, + 1056, + 1401, + 1151, + 302, + 1151 + ], + "score": 0.802 + }, + { + "category_id": 1, + "poly": [ + 297, + 642, + 1404, + 642, + 1404, + 797, + 297, + 797 + ], + "score": 0.784 + }, + { + "category_id": 1, + "poly": [ + 298, + 408, + 1404, + 408, + 1404, + 502, + 298, + 502 + ], + "score": 0.78 + }, + { + "category_id": 1, + "poly": [ + 294, + 525, + 1404, + 525, + 1404, + 619, + 294, + 619 + ], + "score": 0.752 + }, + { + "category_id": 13, + "poly": [ + 1167, + 530, + 1201, + 530, + 1201, + 555, + 1167, + 555 + ], + "score": 0.71, + "latex": "^ { + + }" + }, + { + "category_id": 13, + "poly": [ + 1167, + 648, + 1201, + 648, + 1201, + 673, + 1167, + 673 + ], + "score": 0.59, + "latex": "^ { + + }" + }, + { + "category_id": 15, + "poly": [ + 298.0, + 73.0, + 858.0, + 73.0, + 858.0, + 108.0, + 298.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 832.0, + 2085.0, + 868.0, + 2085.0, + 868.0, + 2125.0, + 832.0, + 2125.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1848.0, + 1404.0, + 1848.0, + 1404.0, + 1884.0, + 296.0, + 1884.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1880.0, + 784.0, + 1880.0, + 784.0, + 1915.0, + 322.0, + 1915.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 824.0, + 1879.0, + 1403.0, + 1879.0, + 1403.0, + 1915.0, + 824.0, + 1915.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 1908.0, + 1406.0, + 1908.0, + 1406.0, + 1947.0, + 320.0, + 1947.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1941.0, + 1403.0, + 1941.0, + 1403.0, + 1976.0, + 321.0, + 1976.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1969.0, + 1403.0, + 1969.0, + 1403.0, + 2008.0, + 322.0, + 2008.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 2002.0, + 1479.0, + 2002.0, + 1479.0, + 2037.0, + 322.0, + 2037.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1672.0, + 1403.0, + 1672.0, + 1403.0, + 1705.0, + 296.0, + 1705.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 325.0, + 1702.0, + 1403.0, + 1702.0, + 1403.0, + 1735.0, + 325.0, + 1735.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1730.0, + 1403.0, + 1730.0, + 1403.0, + 1767.0, + 321.0, + 1767.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 1763.0, + 813.0, + 1763.0, + 813.0, + 1796.0, + 324.0, + 1796.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 851.0, + 1760.0, + 1403.0, + 1760.0, + 1403.0, + 1801.0, + 851.0, + 1801.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 1795.0, + 1379.0, + 1795.0, + 1379.0, + 1828.0, + 324.0, + 1828.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1552.0, + 1406.0, + 1552.0, + 1406.0, + 1589.0, + 294.0, + 1589.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1585.0, + 1401.0, + 1585.0, + 1401.0, + 1619.0, + 321.0, + 1619.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 1615.0, + 424.0, + 1615.0, + 424.0, + 1648.0, + 324.0, + 1648.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 939.0, + 1403.0, + 939.0, + 1403.0, + 976.0, + 294.0, + 976.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 968.0, + 1403.0, + 968.0, + 1403.0, + 1008.0, + 322.0, + 1008.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 1002.0, + 549.0, + 1002.0, + 549.0, + 1032.0, + 324.0, + 1032.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1435.0, + 1405.0, + 1435.0, + 1405.0, + 1473.0, + 295.0, + 1473.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1468.0, + 1401.0, + 1468.0, + 1401.0, + 1501.0, + 321.0, + 1501.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1495.0, + 424.0, + 1495.0, + 424.0, + 1531.0, + 323.0, + 1531.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1348.0, + 1406.0, + 1348.0, + 1406.0, + 1384.0, + 294.0, + 1384.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1379.0, + 1016.0, + 1379.0, + 1016.0, + 1415.0, + 322.0, + 1415.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 227.0, + 1403.0, + 227.0, + 1403.0, + 267.0, + 294.0, + 267.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 259.0, + 1406.0, + 259.0, + 1406.0, + 297.0, + 323.0, + 297.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 291.0, + 1406.0, + 291.0, + 1406.0, + 328.0, + 323.0, + 328.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 318.0, + 1405.0, + 318.0, + 1405.0, + 360.0, + 320.0, + 360.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 353.0, + 855.0, + 353.0, + 855.0, + 386.0, + 324.0, + 386.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 819.0, + 1405.0, + 819.0, + 1405.0, + 858.0, + 294.0, + 858.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 852.0, + 1401.0, + 852.0, + 1401.0, + 886.0, + 323.0, + 886.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 882.0, + 506.0, + 882.0, + 506.0, + 917.0, + 323.0, + 917.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1290.0, + 1257.0, + 1290.0, + 1257.0, + 1330.0, + 294.0, + 1330.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1175.0, + 1402.0, + 1175.0, + 1402.0, + 1210.0, + 293.0, + 1210.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1203.0, + 1403.0, + 1203.0, + 1403.0, + 1240.0, + 321.0, + 1240.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1238.0, + 854.0, + 1238.0, + 854.0, + 1268.0, + 323.0, + 1268.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1056.0, + 1406.0, + 1056.0, + 1406.0, + 1094.0, + 297.0, + 1094.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1089.0, + 1404.0, + 1089.0, + 1404.0, + 1123.0, + 323.0, + 1123.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1119.0, + 1224.0, + 1119.0, + 1224.0, + 1153.0, + 323.0, + 1153.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 642.0, + 1166.0, + 642.0, + 1166.0, + 678.0, + 295.0, + 678.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1202.0, + 642.0, + 1402.0, + 642.0, + 1402.0, + 678.0, + 1202.0, + 678.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 672.0, + 1405.0, + 672.0, + 1405.0, + 712.0, + 321.0, + 712.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 701.0, + 1405.0, + 701.0, + 1405.0, + 745.0, + 320.0, + 745.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 733.0, + 1401.0, + 733.0, + 1401.0, + 771.0, + 321.0, + 771.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 767.0, + 571.0, + 767.0, + 571.0, + 801.0, + 322.0, + 801.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 409.0, + 1402.0, + 409.0, + 1402.0, + 443.0, + 296.0, + 443.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 438.0, + 1404.0, + 438.0, + 1404.0, + 473.0, + 322.0, + 473.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 470.0, + 1127.0, + 470.0, + 1127.0, + 503.0, + 323.0, + 503.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 522.0, + 1166.0, + 522.0, + 1166.0, + 562.0, + 293.0, + 562.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1202.0, + 522.0, + 1404.0, + 522.0, + 1404.0, + 562.0, + 1202.0, + 562.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 555.0, + 1405.0, + 555.0, + 1405.0, + 595.0, + 321.0, + 595.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 325.0, + 588.0, + 1133.0, + 588.0, + 1133.0, + 622.0, + 325.0, + 622.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 10, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 298, + 1171, + 1403, + 1171, + 1403, + 1296, + 298, + 1296 + ], + "score": 0.918 + }, + { + "category_id": 1, + "poly": [ + 297, + 789, + 1404, + 789, + 1404, + 945, + 297, + 945 + ], + "score": 0.91 + }, + { + "category_id": 1, + "poly": [ + 296, + 1437, + 1403, + 1437, + 1403, + 1593, + 296, + 1593 + ], + "score": 0.898 + }, + { + "category_id": 1, + "poly": [ + 298, + 1910, + 1402, + 1910, + 1402, + 2034, + 298, + 2034 + ], + "score": 0.895 + }, + { + "category_id": 1, + "poly": [ + 297, + 1319, + 1404, + 1319, + 1404, + 1413, + 297, + 1413 + ], + "score": 0.889 + }, + { + "category_id": 1, + "poly": [ + 298, + 229, + 1402, + 229, + 1402, + 353, + 298, + 353 + ], + "score": 0.879 + }, + { + "category_id": 1, + "poly": [ + 296, + 1615, + 1403, + 1615, + 1403, + 1772, + 296, + 1772 + ], + "score": 0.879 + }, + { + "category_id": 1, + "poly": [ + 297, + 377, + 1404, + 377, + 1404, + 532, + 297, + 532 + ], + "score": 0.878 + }, + { + "category_id": 1, + "poly": [ + 299, + 1053, + 1400, + 1053, + 1400, + 1148, + 299, + 1148 + ], + "score": 0.878 + }, + { + "category_id": 1, + "poly": [ + 294, + 967, + 1402, + 967, + 1402, + 1032, + 294, + 1032 + ], + "score": 0.871 + }, + { + "category_id": 1, + "poly": [ + 298, + 642, + 1404, + 642, + 1404, + 767, + 298, + 767 + ], + "score": 0.87 + }, + { + "category_id": 1, + "poly": [ + 300, + 1793, + 1401, + 1793, + 1401, + 1888, + 300, + 1888 + ], + "score": 0.864 + }, + { + "category_id": 1, + "poly": [ + 291, + 555, + 1402, + 555, + 1402, + 620, + 291, + 620 + ], + "score": 0.845 + }, + { + "category_id": 2, + "poly": [ + 836, + 2088, + 865, + 2088, + 865, + 2113, + 836, + 2113 + ], + "score": 0.816 + }, + { + "category_id": 2, + "poly": [ + 298, + 75, + 858, + 75, + 858, + 105, + 298, + 105 + ], + "score": 0.6 + }, + { + "category_id": 2, + "poly": [ + 298, + 75, + 858, + 75, + 858, + 105, + 298, + 105 + ], + "score": 0.294 + }, + { + "category_id": 13, + "poly": [ + 1187, + 1799, + 1220, + 1799, + 1220, + 1823, + 1187, + 1823 + ], + "score": 0.77, + "latex": "^ { + + }" + }, + { + "category_id": 13, + "poly": [ + 1069, + 738, + 1087, + 738, + 1087, + 760, + 1069, + 760 + ], + "score": 0.3, + "latex": "{ . } = { }" + }, + { + "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": [ + 298.0, + 73.0, + 858.0, + 73.0, + 858.0, + 108.0, + 298.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 298.0, + 73.0, + 858.0, + 73.0, + 858.0, + 108.0, + 298.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1169.0, + 1407.0, + 1169.0, + 1407.0, + 1209.0, + 292.0, + 1209.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1203.0, + 1400.0, + 1203.0, + 1400.0, + 1236.0, + 322.0, + 1236.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1235.0, + 1402.0, + 1235.0, + 1402.0, + 1267.0, + 322.0, + 1267.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 325.0, + 1266.0, + 637.0, + 1266.0, + 637.0, + 1296.0, + 325.0, + 1296.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 787.0, + 1404.0, + 787.0, + 1404.0, + 826.0, + 295.0, + 826.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 325.0, + 822.0, + 1402.0, + 822.0, + 1402.0, + 855.0, + 325.0, + 855.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 848.0, + 1405.0, + 848.0, + 1405.0, + 890.0, + 321.0, + 890.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 879.0, + 1404.0, + 879.0, + 1404.0, + 919.0, + 320.0, + 919.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 325.0, + 914.0, + 1311.0, + 914.0, + 1311.0, + 947.0, + 325.0, + 947.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1436.0, + 1404.0, + 1436.0, + 1404.0, + 1472.0, + 295.0, + 1472.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1466.0, + 1404.0, + 1466.0, + 1404.0, + 1503.0, + 321.0, + 1503.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 319.0, + 1498.0, + 1405.0, + 1498.0, + 1405.0, + 1535.0, + 319.0, + 1535.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 1528.0, + 1403.0, + 1528.0, + 1403.0, + 1566.0, + 320.0, + 1566.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 1560.0, + 1185.0, + 1560.0, + 1185.0, + 1594.0, + 324.0, + 1594.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1911.0, + 1402.0, + 1911.0, + 1402.0, + 1944.0, + 296.0, + 1944.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1943.0, + 1404.0, + 1943.0, + 1404.0, + 1977.0, + 321.0, + 1977.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1970.0, + 1402.0, + 1970.0, + 1402.0, + 2009.0, + 321.0, + 2009.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 325.0, + 2004.0, + 756.0, + 2004.0, + 756.0, + 2036.0, + 325.0, + 2036.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1317.0, + 1405.0, + 1317.0, + 1405.0, + 1356.0, + 295.0, + 1356.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 1351.0, + 1402.0, + 1351.0, + 1402.0, + 1385.0, + 324.0, + 1385.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1379.0, + 1211.0, + 1379.0, + 1211.0, + 1416.0, + 322.0, + 1416.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 228.0, + 1403.0, + 228.0, + 1403.0, + 267.0, + 294.0, + 267.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 263.0, + 1403.0, + 263.0, + 1403.0, + 293.0, + 323.0, + 293.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 292.0, + 1407.0, + 292.0, + 1407.0, + 325.0, + 321.0, + 325.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 323.0, + 1069.0, + 323.0, + 1069.0, + 355.0, + 323.0, + 355.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1615.0, + 935.0, + 1615.0, + 935.0, + 1648.0, + 295.0, + 1648.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 969.0, + 1614.0, + 1404.0, + 1614.0, + 1404.0, + 1651.0, + 969.0, + 1651.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1645.0, + 1405.0, + 1645.0, + 1405.0, + 1683.0, + 323.0, + 1683.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 1676.0, + 1404.0, + 1676.0, + 1404.0, + 1711.0, + 320.0, + 1711.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 1704.0, + 1403.0, + 1704.0, + 1403.0, + 1743.0, + 320.0, + 1743.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1736.0, + 1186.0, + 1736.0, + 1186.0, + 1772.0, + 321.0, + 1772.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 377.0, + 1401.0, + 377.0, + 1401.0, + 411.0, + 297.0, + 411.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 325.0, + 409.0, + 1404.0, + 409.0, + 1404.0, + 443.0, + 325.0, + 443.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 326.0, + 439.0, + 1401.0, + 439.0, + 1401.0, + 472.0, + 326.0, + 472.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 464.0, + 1405.0, + 464.0, + 1405.0, + 509.0, + 321.0, + 509.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 325.0, + 500.0, + 975.0, + 500.0, + 975.0, + 533.0, + 325.0, + 533.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1053.0, + 1405.0, + 1053.0, + 1405.0, + 1091.0, + 294.0, + 1091.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1086.0, + 1402.0, + 1086.0, + 1402.0, + 1120.0, + 323.0, + 1120.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 1116.0, + 561.0, + 1116.0, + 561.0, + 1150.0, + 324.0, + 1150.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 965.0, + 1405.0, + 965.0, + 1405.0, + 1007.0, + 292.0, + 1007.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 996.0, + 399.0, + 996.0, + 399.0, + 1034.0, + 320.0, + 1034.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 641.0, + 1403.0, + 641.0, + 1403.0, + 678.0, + 295.0, + 678.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 673.0, + 1403.0, + 673.0, + 1403.0, + 708.0, + 322.0, + 708.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 704.0, + 1405.0, + 704.0, + 1405.0, + 741.0, + 320.0, + 741.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 318.0, + 733.0, + 1068.0, + 733.0, + 1068.0, + 770.0, + 318.0, + 770.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1088.0, + 733.0, + 1348.0, + 733.0, + 1348.0, + 770.0, + 1088.0, + 770.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1794.0, + 1186.0, + 1794.0, + 1186.0, + 1828.0, + 296.0, + 1828.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1221.0, + 1794.0, + 1403.0, + 1794.0, + 1403.0, + 1828.0, + 1221.0, + 1828.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1825.0, + 1405.0, + 1825.0, + 1405.0, + 1858.0, + 323.0, + 1858.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 325.0, + 1854.0, + 998.0, + 1854.0, + 998.0, + 1892.0, + 325.0, + 1892.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 555.0, + 1404.0, + 555.0, + 1404.0, + 591.0, + 295.0, + 591.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 585.0, + 1405.0, + 585.0, + 1405.0, + 622.0, + 322.0, + 622.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 11, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 2, + "poly": [ + 298, + 75, + 858, + 75, + 858, + 105, + 298, + 105 + ], + "score": 0.884 + }, + { + "category_id": 1, + "poly": [ + 299, + 1910, + 1404, + 1910, + 1404, + 2033, + 299, + 2033 + ], + "score": 0.871 + }, + { + "category_id": 1, + "poly": [ + 298, + 1025, + 1404, + 1025, + 1404, + 1150, + 298, + 1150 + ], + "score": 0.828 + }, + { + "category_id": 2, + "poly": [ + 836, + 2088, + 864, + 2088, + 864, + 2113, + 836, + 2113 + ], + "score": 0.828 + }, + { + "category_id": 1, + "poly": [ + 298, + 1173, + 1404, + 1173, + 1404, + 1299, + 298, + 1299 + ], + "score": 0.827 + }, + { + "category_id": 1, + "poly": [ + 297, + 673, + 1405, + 673, + 1405, + 799, + 297, + 799 + ], + "score": 0.827 + }, + { + "category_id": 1, + "poly": [ + 298, + 907, + 1404, + 907, + 1404, + 1002, + 298, + 1002 + ], + "score": 0.824 + }, + { + "category_id": 1, + "poly": [ + 297, + 1762, + 1403, + 1762, + 1403, + 1886, + 297, + 1886 + ], + "score": 0.816 + }, + { + "category_id": 1, + "poly": [ + 296, + 821, + 1400, + 821, + 1400, + 887, + 296, + 887 + ], + "score": 0.812 + }, + { + "category_id": 1, + "poly": [ + 298, + 1526, + 1405, + 1526, + 1405, + 1622, + 298, + 1622 + ], + "score": 0.811 + }, + { + "category_id": 1, + "poly": [ + 298, + 1409, + 1402, + 1409, + 1402, + 1504, + 298, + 1504 + ], + "score": 0.803 + }, + { + "category_id": 1, + "poly": [ + 293, + 1321, + 1405, + 1321, + 1405, + 1388, + 293, + 1388 + ], + "score": 0.795 + }, + { + "category_id": 1, + "poly": [ + 297, + 1643, + 1405, + 1643, + 1405, + 1738, + 297, + 1738 + ], + "score": 0.791 + }, + { + "category_id": 1, + "poly": [ + 297, + 229, + 1404, + 229, + 1404, + 353, + 297, + 353 + ], + "score": 0.773 + }, + { + "category_id": 1, + "poly": [ + 296, + 525, + 1405, + 525, + 1405, + 649, + 296, + 649 + ], + "score": 0.769 + }, + { + "category_id": 1, + "poly": [ + 296, + 377, + 1405, + 377, + 1405, + 501, + 296, + 501 + ], + "score": 0.748 + }, + { + "category_id": 13, + "poly": [ + 841, + 771, + 860, + 771, + 860, + 793, + 841, + 793 + ], + "score": 0.43, + "latex": "\\underline { { \\underline { { \\mathbf { \\Pi } } } } } =" + }, + { + "category_id": 15, + "poly": [ + 298.0, + 73.0, + 858.0, + 73.0, + 858.0, + 108.0, + 298.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 832.0, + 2085.0, + 869.0, + 2085.0, + 869.0, + 2123.0, + 832.0, + 2123.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1911.0, + 1406.0, + 1911.0, + 1406.0, + 1947.0, + 295.0, + 1947.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1941.0, + 1406.0, + 1941.0, + 1406.0, + 1977.0, + 321.0, + 1977.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1970.0, + 1405.0, + 1970.0, + 1405.0, + 2009.0, + 322.0, + 2009.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 2002.0, + 396.0, + 2002.0, + 396.0, + 2034.0, + 322.0, + 2034.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1024.0, + 1405.0, + 1024.0, + 1405.0, + 1063.0, + 292.0, + 1063.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1058.0, + 1404.0, + 1058.0, + 1404.0, + 1091.0, + 323.0, + 1091.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 317.0, + 1085.0, + 1406.0, + 1085.0, + 1406.0, + 1127.0, + 317.0, + 1127.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1119.0, + 504.0, + 1119.0, + 504.0, + 1150.0, + 323.0, + 1150.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1174.0, + 1405.0, + 1174.0, + 1405.0, + 1209.0, + 295.0, + 1209.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1203.0, + 1404.0, + 1203.0, + 1404.0, + 1241.0, + 321.0, + 1241.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 1236.0, + 1404.0, + 1236.0, + 1404.0, + 1271.0, + 320.0, + 1271.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1267.0, + 644.0, + 1267.0, + 644.0, + 1300.0, + 322.0, + 1300.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 672.0, + 1406.0, + 672.0, + 1406.0, + 709.0, + 294.0, + 709.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 707.0, + 1406.0, + 707.0, + 1406.0, + 740.0, + 324.0, + 740.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 735.0, + 1406.0, + 735.0, + 1406.0, + 771.0, + 321.0, + 771.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 768.0, + 840.0, + 768.0, + 840.0, + 801.0, + 323.0, + 801.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 861.0, + 768.0, + 1037.0, + 768.0, + 1037.0, + 801.0, + 861.0, + 801.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 906.0, + 1405.0, + 906.0, + 1405.0, + 946.0, + 293.0, + 946.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 939.0, + 1401.0, + 939.0, + 1401.0, + 975.0, + 322.0, + 975.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 325.0, + 972.0, + 572.0, + 972.0, + 572.0, + 1002.0, + 325.0, + 1002.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1762.0, + 1404.0, + 1762.0, + 1404.0, + 1798.0, + 293.0, + 1798.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 319.0, + 1795.0, + 1405.0, + 1795.0, + 1405.0, + 1828.0, + 319.0, + 1828.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 1824.0, + 1402.0, + 1824.0, + 1402.0, + 1858.0, + 320.0, + 1858.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1856.0, + 395.0, + 1856.0, + 395.0, + 1887.0, + 321.0, + 1887.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 816.0, + 1405.0, + 816.0, + 1405.0, + 862.0, + 292.0, + 862.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 854.0, + 1081.0, + 854.0, + 1081.0, + 886.0, + 324.0, + 886.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1524.0, + 1405.0, + 1524.0, + 1405.0, + 1565.0, + 293.0, + 1565.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1558.0, + 1403.0, + 1558.0, + 1403.0, + 1592.0, + 323.0, + 1592.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1587.0, + 1178.0, + 1587.0, + 1178.0, + 1624.0, + 322.0, + 1624.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1409.0, + 1407.0, + 1409.0, + 1407.0, + 1447.0, + 294.0, + 1447.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1442.0, + 1406.0, + 1442.0, + 1406.0, + 1476.0, + 323.0, + 1476.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1471.0, + 1318.0, + 1471.0, + 1318.0, + 1504.0, + 323.0, + 1504.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1322.0, + 1404.0, + 1322.0, + 1404.0, + 1358.0, + 296.0, + 1358.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1353.0, + 1114.0, + 1353.0, + 1114.0, + 1388.0, + 321.0, + 1388.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1642.0, + 1405.0, + 1642.0, + 1405.0, + 1681.0, + 294.0, + 1681.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1676.0, + 1403.0, + 1676.0, + 1403.0, + 1710.0, + 323.0, + 1710.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 1705.0, + 786.0, + 1705.0, + 786.0, + 1738.0, + 324.0, + 1738.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 230.0, + 1402.0, + 230.0, + 1402.0, + 263.0, + 295.0, + 263.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 259.0, + 1405.0, + 259.0, + 1405.0, + 296.0, + 321.0, + 296.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 290.0, + 1404.0, + 290.0, + 1404.0, + 327.0, + 321.0, + 327.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 323.0, + 888.0, + 323.0, + 888.0, + 354.0, + 324.0, + 354.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 526.0, + 1403.0, + 526.0, + 1403.0, + 559.0, + 295.0, + 559.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 557.0, + 1405.0, + 557.0, + 1405.0, + 593.0, + 322.0, + 593.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 587.0, + 1403.0, + 587.0, + 1403.0, + 623.0, + 322.0, + 623.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 619.0, + 639.0, + 619.0, + 639.0, + 649.0, + 323.0, + 649.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 378.0, + 1403.0, + 378.0, + 1403.0, + 411.0, + 294.0, + 411.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 409.0, + 1405.0, + 409.0, + 1405.0, + 445.0, + 320.0, + 445.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 440.0, + 1401.0, + 440.0, + 1401.0, + 473.0, + 324.0, + 473.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 327.0, + 473.0, + 589.0, + 473.0, + 589.0, + 499.0, + 327.0, + 499.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 12, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 299, + 230, + 1404, + 230, + 1404, + 382, + 299, + 382 + ], + "score": 0.955 + }, + { + "category_id": 2, + "poly": [ + 836, + 2089, + 864, + 2089, + 864, + 2112, + 836, + 2112 + ], + "score": 0.831 + }, + { + "category_id": 2, + "poly": [ + 298, + 75, + 858, + 75, + 858, + 105, + 298, + 105 + ], + "score": 0.664 + }, + { + "category_id": 1, + "poly": [ + 298, + 75, + 858, + 75, + 858, + 105, + 298, + 105 + ], + "score": 0.28 + }, + { + "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": [ + 298.0, + 73.0, + 858.0, + 73.0, + 858.0, + 108.0, + 298.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 230.0, + 1404.0, + 230.0, + 1404.0, + 267.0, + 294.0, + 267.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 260.0, + 1406.0, + 260.0, + 1406.0, + 299.0, + 321.0, + 299.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 290.0, + 1404.0, + 290.0, + 1404.0, + 323.0, + 324.0, + 323.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 318.0, + 315.0, + 1408.0, + 315.0, + 1408.0, + 360.0, + 318.0, + 360.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 350.0, + 375.0, + 350.0, + 375.0, + 387.0, + 322.0, + 387.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 298.0, + 73.0, + 858.0, + 73.0, + 858.0, + 108.0, + 298.0, + 108.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 13, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 5, + "poly": [ + 380, + 1081, + 1319, + 1081, + 1319, + 1233, + 380, + 1233 + ], + "score": 0.979, + "html": "
DATASETMINIBATCH SIZELEVELSSUB-FLOWSLEARNING RATE
ImageNet3264280.0001
ImageNet6464280.0001
DRIVE2220.001
" + }, + { + "category_id": 1, + "poly": [ + 298, + 867, + 1404, + 867, + 1404, + 992, + 298, + 992 + ], + "score": 0.976 + }, + { + "category_id": 1, + "poly": [ + 298, + 295, + 1403, + 295, + 1403, + 389, + 298, + 389 + ], + "score": 0.972 + }, + { + "category_id": 1, + "poly": [ + 299, + 403, + 1404, + 403, + 1404, + 498, + 299, + 498 + ], + "score": 0.971 + }, + { + "category_id": 4, + "poly": [ + 295, + 713, + 1405, + 713, + 1405, + 837, + 295, + 837 + ], + "score": 0.961 + }, + { + "category_id": 3, + "poly": [ + 429, + 521, + 1270, + 521, + 1270, + 693, + 429, + 693 + ], + "score": 0.941 + }, + { + "category_id": 2, + "poly": [ + 297, + 74, + 858, + 74, + 858, + 105, + 297, + 105 + ], + "score": 0.91 + }, + { + "category_id": 6, + "poly": [ + 412, + 1046, + 1267, + 1046, + 1267, + 1077, + 412, + 1077 + ], + "score": 0.907 + }, + { + "category_id": 0, + "poly": [ + 301, + 227, + 603, + 227, + 603, + 262, + 301, + 262 + ], + "score": 0.888 + }, + { + "category_id": 2, + "poly": [ + 836, + 2088, + 865, + 2088, + 865, + 2112, + 836, + 2112 + ], + "score": 0.845 + }, + { + "category_id": 13, + "poly": [ + 1114, + 750, + 1145, + 750, + 1145, + 776, + 1114, + 776 + ], + "score": 0.86, + "latex": "\\mathbf { z } _ { 1 }" + }, + { + "category_id": 13, + "poly": [ + 1193, + 780, + 1223, + 780, + 1223, + 806, + 1193, + 806 + ], + "score": 0.85, + "latex": "\\mathbf { z } _ { 0 }" + }, + { + "category_id": 13, + "poly": [ + 471, + 471, + 490, + 471, + 490, + 493, + 471, + 493 + ], + "score": 0.64, + "latex": "\\mathbf { z }" + }, + { + "category_id": 13, + "poly": [ + 941, + 750, + 965, + 750, + 965, + 774, + 941, + 774 + ], + "score": 0.61, + "latex": "\\mathbf { x }" + }, + { + "category_id": 13, + "poly": [ + 462, + 811, + 481, + 811, + 481, + 833, + 462, + 833 + ], + "score": 0.44, + "latex": "\\mathbf { z }" + }, + { + "category_id": 13, + "poly": [ + 540, + 471, + 560, + 471, + 560, + 497, + 540, + 497 + ], + "score": 0.42, + "latex": "\\mathbf { y }" + }, + { + "category_id": 13, + "poly": [ + 530, + 810, + 551, + 810, + 551, + 837, + 530, + 837 + ], + "score": 0.37, + "latex": "\\mathbf { y }" + }, + { + "category_id": 13, + "poly": [ + 432, + 440, + 453, + 440, + 453, + 463, + 432, + 463 + ], + "score": 0.34, + "latex": "\\mathbf { x }" + }, + { + "category_id": 13, + "poly": [ + 673, + 811, + 694, + 811, + 694, + 833, + 673, + 833 + ], + "score": 0.29, + "latex": "\\mathbf { x }" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 712.0, + 1405.0, + 712.0, + 1405.0, + 749.0, + 294.0, + 749.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 745.0, + 940.0, + 745.0, + 940.0, + 781.0, + 294.0, + 781.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 966.0, + 745.0, + 1113.0, + 745.0, + 1113.0, + 781.0, + 966.0, + 781.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1146.0, + 745.0, + 1405.0, + 745.0, + 1405.0, + 781.0, + 1146.0, + 781.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 777.0, + 1192.0, + 777.0, + 1192.0, + 810.0, + 295.0, + 810.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1224.0, + 777.0, + 1403.0, + 777.0, + 1403.0, + 810.0, + 1224.0, + 810.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 805.0, + 461.0, + 805.0, + 461.0, + 839.0, + 293.0, + 839.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 482.0, + 805.0, + 529.0, + 805.0, + 529.0, + 839.0, + 482.0, + 839.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 552.0, + 805.0, + 672.0, + 805.0, + 672.0, + 839.0, + 552.0, + 839.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 695.0, + 805.0, + 705.0, + 805.0, + 705.0, + 839.0, + 695.0, + 839.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 577.0, + 521.0, + 619.0, + 521.0, + 619.0, + 558.0, + 577.0, + 558.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1072.0, + 521.0, + 1114.0, + 521.0, + 1114.0, + 558.0, + 1072.0, + 558.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 430.0, + 565.0, + 476.0, + 565.0, + 476.0, + 614.0, + 430.0, + 614.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 527.0, + 562.0, + 571.0, + 562.0, + 571.0, + 607.0, + 527.0, + 607.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 622.0, + 558.0, + 669.0, + 558.0, + 669.0, + 607.0, + 622.0, + 607.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 707.0, + 555.0, + 783.0, + 555.0, + 783.0, + 616.0, + 707.0, + 616.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 923.0, + 565.0, + 983.0, + 565.0, + 983.0, + 613.0, + 923.0, + 613.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1217.0, + 561.0, + 1272.0, + 561.0, + 1272.0, + 612.0, + 1217.0, + 612.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 431.0, + 618.0, + 476.0, + 618.0, + 476.0, + 661.0, + 431.0, + 661.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 707.0, + 612.0, + 778.0, + 612.0, + 778.0, + 663.0, + 707.0, + 663.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 925.0, + 619.0, + 986.0, + 619.0, + 986.0, + 661.0, + 925.0, + 661.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1216.0, + 612.0, + 1269.0, + 612.0, + 1269.0, + 663.0, + 1216.0, + 663.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 530.0, + 656.0, + 676.0, + 656.0, + 676.0, + 695.0, + 530.0, + 695.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1027.0, + 657.0, + 1168.0, + 657.0, + 1168.0, + 698.0, + 1027.0, + 698.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 72.0, + 858.0, + 72.0, + 858.0, + 108.0, + 297.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 419.0, + 1043.0, + 1271.0, + 1043.0, + 1271.0, + 1083.0, + 419.0, + 1083.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 223.0, + 606.0, + 223.0, + 606.0, + 269.0, + 295.0, + 269.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, + 869.0, + 1404.0, + 869.0, + 1404.0, + 901.0, + 294.0, + 901.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 900.0, + 1404.0, + 900.0, + 1404.0, + 933.0, + 294.0, + 933.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 931.0, + 1405.0, + 931.0, + 1405.0, + 963.0, + 296.0, + 963.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 961.0, + 934.0, + 961.0, + 934.0, + 994.0, + 296.0, + 994.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 295.0, + 1403.0, + 295.0, + 1403.0, + 330.0, + 293.0, + 330.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 326.0, + 1405.0, + 326.0, + 1405.0, + 360.0, + 296.0, + 360.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 355.0, + 573.0, + 355.0, + 573.0, + 393.0, + 295.0, + 393.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 403.0, + 1405.0, + 403.0, + 1405.0, + 441.0, + 295.0, + 441.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 437.0, + 431.0, + 437.0, + 431.0, + 468.0, + 297.0, + 468.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 454.0, + 437.0, + 1404.0, + 437.0, + 1404.0, + 468.0, + 454.0, + 468.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 466.0, + 470.0, + 466.0, + 470.0, + 500.0, + 294.0, + 500.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 491.0, + 466.0, + 539.0, + 466.0, + 539.0, + 500.0, + 491.0, + 500.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 561.0, + 466.0, + 1252.0, + 466.0, + 1252.0, + 500.0, + 561.0, + 500.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 14, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 5, + "poly": [ + 460, + 655, + 1239, + 655, + 1239, + 843, + 460, + 843 + ], + "score": 0.977, + "html": "
LAYERINTERMEDIATECHANNELSKERNEL SIZE
Conv2d323×3
InstanceNorm2d32-
ReLU-1
Conv2dCout3×3
" + }, + { + "category_id": 5, + "poly": [ + 364, + 1006, + 1336, + 1006, + 1336, + 1128, + 364, + 1128 + ], + "score": 0.976, + "html": "
MODEL TYPERRDB BLOCKSCHANNEL GROWTH|CONTEXT CHANNELS
CNF1632128
Factorized LL1655128
" + }, + { + "category_id": 5, + "poly": [ + 509, + 338, + 1188, + 338, + 1188, + 493, + 509, + 493 + ], + "score": 0.971, + "html": "
LAYERINTERMEDIATE CHANNELSKERNEL SIZE
Conv2d5123×3
Conv2d5121×1
Conv2dCout3×3
" + }, + { + "category_id": 6, + "poly": [ + 298, + 560, + 1400, + 560, + 1400, + 653, + 298, + 653 + ], + "score": 0.943 + }, + { + "category_id": 6, + "poly": [ + 300, + 248, + 1402, + 248, + 1402, + 336, + 300, + 336 + ], + "score": 0.941 + }, + { + "category_id": 6, + "poly": [ + 300, + 910, + 1401, + 910, + 1401, + 1003, + 300, + 1003 + ], + "score": 0.932 + }, + { + "category_id": 2, + "poly": [ + 297, + 74, + 859, + 74, + 859, + 106, + 297, + 106 + ], + "score": 0.915 + }, + { + "category_id": 2, + "poly": [ + 836, + 2088, + 865, + 2088, + 865, + 2113, + 836, + 2113 + ], + "score": 0.848 + }, + { + "category_id": 13, + "poly": [ + 392, + 596, + 442, + 596, + 442, + 624, + 392, + 624 + ], + "score": 0.88, + "latex": "c _ { \\mathrm { o u t } }" + }, + { + "category_id": 13, + "poly": [ + 297, + 283, + 346, + 283, + 346, + 311, + 297, + 311 + ], + "score": 0.85, + "latex": "c _ { \\mathrm { o u t } }" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 559.0, + 1404.0, + 559.0, + 1404.0, + 596.0, + 293.0, + 596.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 593.0, + 391.0, + 593.0, + 391.0, + 627.0, + 296.0, + 627.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 443.0, + 593.0, + 1404.0, + 593.0, + 1404.0, + 627.0, + 443.0, + 627.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 623.0, + 652.0, + 623.0, + 652.0, + 657.0, + 296.0, + 657.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 247.0, + 1404.0, + 247.0, + 1404.0, + 283.0, + 294.0, + 283.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 278.0, + 296.0, + 278.0, + 296.0, + 317.0, + 293.0, + 317.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 347.0, + 278.0, + 1408.0, + 278.0, + 1408.0, + 317.0, + 347.0, + 317.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 307.0, + 493.0, + 307.0, + 493.0, + 344.0, + 294.0, + 344.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 909.0, + 1405.0, + 909.0, + 1405.0, + 947.0, + 294.0, + 947.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 942.0, + 1405.0, + 942.0, + 1405.0, + 976.0, + 295.0, + 976.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 971.0, + 1074.0, + 971.0, + 1074.0, + 1007.0, + 295.0, + 1007.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 72.0, + 858.0, + 72.0, + 858.0, + 109.0, + 297.0, + 109.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 832.0, + 2085.0, + 871.0, + 2085.0, + 871.0, + 2123.0, + 832.0, + 2123.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 15, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 3, + "poly": [ + 463, + 391, + 1236, + 391, + 1236, + 1162, + 463, + 1162 + ], + "score": 0.975 + }, + { + "category_id": 1, + "poly": [ + 299, + 295, + 1400, + 295, + 1400, + 357, + 299, + 357 + ], + "score": 0.937 + }, + { + "category_id": 2, + "poly": [ + 298, + 75, + 858, + 75, + 858, + 105, + 298, + 105 + ], + "score": 0.902 + }, + { + "category_id": 0, + "poly": [ + 298, + 225, + 866, + 225, + 866, + 262, + 298, + 262 + ], + "score": 0.893 + }, + { + "category_id": 4, + "poly": [ + 326, + 1194, + 1369, + 1194, + 1369, + 1228, + 326, + 1228 + ], + "score": 0.847 + }, + { + "category_id": 2, + "poly": [ + 836, + 2088, + 864, + 2088, + 864, + 2112, + 836, + 2112 + ], + "score": 0.839 + }, + { + "category_id": 13, + "poly": [ + 1290, + 1196, + 1360, + 1196, + 1360, + 1223, + 1290, + 1223 + ], + "score": 0.89, + "latex": "\\tau = 0" + }, + { + "category_id": 13, + "poly": [ + 406, + 333, + 424, + 333, + 424, + 354, + 406, + 354 + ], + "score": 0.71, + "latex": "\\tau" + }, + { + "category_id": 15, + "poly": [ + 1079.0, + 406.0, + 1214.0, + 406.0, + 1214.0, + 523.0, + 1079.0, + 523.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 477.0, + 846.0, + 628.0, + 846.0, + 628.0, + 1002.0, + 477.0, + 1002.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1056.0, + 992.0, + 1220.0, + 992.0, + 1220.0, + 1147.0, + 1056.0, + 1147.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 298.0, + 73.0, + 858.0, + 73.0, + 858.0, + 108.0, + 298.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 221.0, + 869.0, + 221.0, + 869.0, + 268.0, + 291.0, + 268.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 325.0, + 1189.0, + 1289.0, + 1189.0, + 1289.0, + 1234.0, + 325.0, + 1234.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1361.0, + 1189.0, + 1373.0, + 1189.0, + 1373.0, + 1234.0, + 1361.0, + 1234.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 832.0, + 2085.0, + 869.0, + 2085.0, + 869.0, + 2124.0, + 832.0, + 2124.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 293.0, + 1402.0, + 293.0, + 1402.0, + 331.0, + 293.0, + 331.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 330.0, + 405.0, + 330.0, + 405.0, + 359.0, + 292.0, + 359.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 425.0, + 330.0, + 436.0, + 330.0, + 436.0, + 359.0, + 425.0, + 359.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 16, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 3, + "poly": [ + 462, + 1165, + 1236, + 1165, + 1236, + 1937, + 462, + 1937 + ], + "score": 0.976 + }, + { + "category_id": 3, + "poly": [ + 463, + 256, + 1236, + 256, + 1236, + 1024, + 463, + 1024 + ], + "score": 0.975 + }, + { + "category_id": 4, + "poly": [ + 349, + 1057, + 1347, + 1057, + 1347, + 1092, + 349, + 1092 + ], + "score": 0.927 + }, + { + "category_id": 4, + "poly": [ + 354, + 1968, + 1347, + 1968, + 1347, + 2003, + 354, + 2003 + ], + "score": 0.917 + }, + { + "category_id": 2, + "poly": [ + 297, + 76, + 858, + 76, + 858, + 105, + 297, + 105 + ], + "score": 0.901 + }, + { + "category_id": 2, + "poly": [ + 836, + 2088, + 865, + 2088, + 865, + 2113, + 836, + 2113 + ], + "score": 0.857 + }, + { + "category_id": 13, + "poly": [ + 1254, + 1059, + 1346, + 1059, + 1346, + 1088, + 1254, + 1088 + ], + "score": 0.86, + "latex": "\\tau = 0 . 5" + }, + { + "category_id": 13, + "poly": [ + 1254, + 1970, + 1346, + 1970, + 1346, + 1999, + 1254, + 1999 + ], + "score": 0.81, + "latex": "\\tau = 0 . 8" + }, + { + "category_id": 15, + "poly": [ + 470.0, + 1625.0, + 635.0, + 1625.0, + 635.0, + 1793.0, + 470.0, + 1793.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1086.0, + 260.0, + 1225.0, + 260.0, + 1225.0, + 404.0, + 1086.0, + 404.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 478.0, + 716.0, + 628.0, + 716.0, + 628.0, + 870.0, + 478.0, + 870.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1060.0, + 842.0, + 1247.0, + 842.0, + 1247.0, + 1037.0, + 1060.0, + 1037.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 531.25, + 287.5, + 557.25, + 287.5, + 557.25, + 350.5, + 531.25, + 350.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 667.25, + 290.5, + 770.25, + 290.5, + 770.25, + 361.5, + 667.25, + 361.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 624.0, + 301.0, + 715.0, + 301.0, + 715.0, + 351.0, + 624.0, + 351.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 347.0, + 1053.0, + 1253.0, + 1053.0, + 1253.0, + 1098.0, + 347.0, + 1098.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1347.0, + 1053.0, + 1351.0, + 1053.0, + 1351.0, + 1098.0, + 1347.0, + 1098.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 347.0, + 1964.0, + 1253.0, + 1964.0, + 1253.0, + 2009.0, + 347.0, + 2009.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1347.0, + 1964.0, + 1351.0, + 1964.0, + 1351.0, + 2009.0, + 1347.0, + 2009.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 298.0, + 72.0, + 858.0, + 72.0, + 858.0, + 108.0, + 298.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 832.0, + 2085.0, + 870.0, + 2085.0, + 870.0, + 2122.0, + 832.0, + 2122.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 17, + "width": 1700, + "height": 2200 + } + } +] \ No newline at end of file diff --git a/parse/train/rkGabzZgl/rkGabzZgl.md b/parse/train/rkGabzZgl/rkGabzZgl.md new file mode 100644 index 0000000000000000000000000000000000000000..e8955f5119c0155a5829c2e091a858df5bf1cf12 --- /dev/null +++ b/parse/train/rkGabzZgl/rkGabzZgl.md @@ -0,0 +1,979 @@ +# DROPOUT WITH EXPECTATION-LINEAR REGULARIZATION + +Xuezhe Ma, Yingkai Gao +Language Technologies Institute +Carnegie Mellon University +{xuezhem, yingkaig}@cs.cmu.edu +Zhiting Hu, Yaoliang Yu +Machine Learning Department +Carnegie Mellon University +{zhitinghu, yaoliang}@cs.cmu.edu +Yuntian Deng +School of Engineering and Applied Sciences +Harvard University +dengyuntian@gmail.com +Eduard Hovy +Language Technologies Institute +Carnegie Mellon University +hovy@cmu.edu + +# ABSTRACT + +Dropout, a simple and effective way to train deep neural networks, has led to a number of impressive empirical successes and spawned many recent theoretical investigations. However, the gap between dropout’s training and inference phases, introduced due to tractability considerations, has largely remained under-appreciated. In this work, we first formulate dropout as a tractable approximation of some latent variable model, leading to a clean view of parameter sharing and enabling further theoretical analysis. Then, we introduce (approximate) expectation-linear dropout neural networks, whose inference gap we are able to formally characterize. Algorithmically, we show that our proposed measure of the inference gap can be used to regularize the standard dropout training objective, resulting in an explicit control of the gap. Our method is as simple and efficient as standard dropout. We further prove the upper bounds on the loss in accuracy due to expectation-linearization, describe classes of input distributions that expectation-linearize easily. Experiments on three image classification benchmark datasets demonstrate that reducing the inference gap can indeed improve the performance consistently. + +# 1 INTRODUCTION + +Deep neural networks (DNNs, e.g., LeCun et al., 2015; Schmidhuber, 2015), if trained properly, have been demonstrated to significantly improve the benchmark performances in a wide range of application domains. As neural networks go deeper and deeper, naturally, its model complexity also increases quickly, hence the pressing need to reduce overfitting in training DNNs. A number of techniques have emerged over the years to address this challenge, among which dropout (Hinton et al., 2012; Srivastava, 2013) has stood out for its simplicity and effectiveness. In a nutshell, dropout randomly “drops” neural units during training as a means to prevent feature co-adaptation—a sign of overfitting (Hinton et al., 2012). Simple as it appears to be, dropout has led to several record-breaking performances (Hinton et al., 2012; Ma & Hovy, 2016), and thus spawned a lot of recent interests in analyzing and justifying dropout from the theoretical perspective, and also in further improving dropout from the algorithmic and practical perspective. + +In their pioneering work, Hinton et al. (2012) and Srivastava et al. (2014) interpreted dropout as an extreme form of model combination (aka. model ensemble) with extensive parameter/weight sharing, and they proposed to learn the combination through minimizing an appropriate expected loss. Interestingly, they also pointed out that for a single logistic neural unit, the output of dropout is in fact the geometric mean of the outputs of the model ensemble with shared parameters. Subsequently, many theoretical justifications of dropout have been explored, and we can only mention a few here due to space limits. Building on the weight sharing perspective, Baldi & Sadowski (2013; 2014) analyzed the ensemble averaging property of dropout in deep non-linear logistic networks, and supported the view that dropout is equivalent to applying stochastic gradient descent on some regularized loss function. Wager et al. (2013) treated dropout as an adaptive regularizer for generalized linear models (GLMs). Helmbold & Long (2016) discussed the differences between dropout and traditional weight decay regularization. In terms of statistical learning theory, Gao & Zhou (2014) studied the Rademacher complexity of different types of dropout, showing that dropout is able to reduce the Rademacher complexity polynomially for shallow neural networks (with one or no hidden layers) and exponentially for deep neural networks. This latter work (Gao & Zhou, 2014) formally demonstrated that dropout, due to its regularizing effect, contributes to reducing the inherent model complexity, in particular the variance component in the generalization error. + +Seen as a model combination technique, it is intuitive that dropout contributes to reducing the variance of the model performance. Surprisingly, dropout has also been shown to play some role in reducing the model bias. For instance, Jain et al. (2015) studied the ability of dropout training to escape local minima, hence leading to reduced model bias. Other studies (Chen et al., 2014; Helmbold & Long, 2014; Wager et al., 2014) focus on the effect of the dropout noise on models with shallow architectures. We noted in passing that there are also some work (Kingma et al., 2015; Gal & Ghahramani, 2015; 2016) trying to understand dropout from the Bayesian perspective. + +In this work, we first formulate dropout as a tractable approximation of a latent variable model, and give a clean view of weight sharing (§3). Then, we focus on an inference gap in dropout that has somehow gotten under-appreciated: In the inference phase, for computational tractability considerations, the model ensemble generated by dropout is approximated by a single model with scaled weights, resulting in a gap between training and inference, and rendering the many previous theoretical findings inapplicable. In general, this inference gap can be very large and no attempt (to our best knowledge) has been made to control it. We make three contributions in bridging this gap: Theoretically, we introduce expectation-linear dropout neural networks, through which we are able to explicitly quantify the inference gap (§4). In particular, our theoretical results explain why the max-norm constraint on the network weights, a standard practice in training DNNs, can lead to a small inference gap hence potentially improve performance. Algorithmically, we propose to add a sampled version of the inference gap to regularize the standard dropout training objective (expectationlinearization), hence allowing explicit control of the inference gap, and analyze the interaction between expectation-linearization and the model accuracy (§5). Experimentally, through three benchmark datasets we show that our regularized dropout is not only as simple and efficient as standard dropout but also consistently leads to improved performance (§6). + +# 2 DROPOUT NEURAL NETWORKS + +In this section we set up the notations, review the dropout neural network model, and discuss the inference gap in standard dropout training that we will attempt to study in the rest of the paper. + +# 2.1 DNNS AND NOTATIONS + +Throughout we use uppercase letters for random variables (and occasionally for matrices as well), and lowercase letters for realizations of the corresponding random variables. Let $X \in { \mathcal { X } }$ be the input of the neural network, $Y \in \mathcal { V }$ be the desired output, and $D = \{ ( x _ { 1 } , y _ { 1 } ) , \dotsc , ( x _ { N } , y _ { N } ) \}$ be our training sample, where $x _ { i } , i = 1 , \ldots , N$ , (resp. $y _ { i }$ ) are usually i.i.d. samples of $X$ (resp. $Y$ ). + +Let M denote a deep neural network with $L$ hidden layers, indexed by $l \in \{ 1 , \ldots , L \}$ . Let $\mathbf { h } ^ { ( l ) }$ denote the output vector from layer $l$ . As usual, $\mathbf { h } ^ { ( 0 ) } = x$ is the input, and $\mathbf { h } ^ { ( L ) }$ is the output of the neural network. Denote $\theta = \{ \theta _ { l } : l = 1 , \ldots , L \}$ as the set of parameters in the network $\mathbf { M }$ , where $\theta _ { l }$ assembles the parameters in layer $l$ . With dropout, we need to introduce a set of dropout random variables $S = \{ \bar { \Gamma ^ { ( l ) } } : l = 1 , \dots , \bar { L } \}$ , where $\Gamma ^ { ( l ) }$ is the dropout random variable for layer $l$ . Then the deep neural network M can be described as: + +$$ +\mathbf { h } ^ { ( l ) } = f _ { l } ( \mathbf { h } ^ { ( l - 1 ) } \odot \boldsymbol { \gamma } ^ { ( l ) } ; \boldsymbol { \theta } _ { l } ) , \quad l = 1 , \ldots , L , +$$ + +where $\odot$ is the element-wise product and $f _ { l }$ is the transformation function of layer $l$ . For example, if layer $l$ is a fully connected layer with weight matrix $W$ , bias vector $b$ , and sigmoid activation function σ(x) = 11+exp(−x) , then $f _ { l } ( x ) = \sigma ( W x + b ) )$ . We will also use $\mathbf { h } ^ { ( l ) } ( x , s ; \theta )$ to denote the output of layer $l$ with input $x$ and dropout value $s$ , under parameter $\theta$ . + +In the simplest form of dropout, which is also called standard dropout, $\Gamma ^ { ( l ) }$ is a vector of independent Bernoulli random variables, each of which has probability $p _ { l }$ of being 1 and $1 - p _ { l }$ of being 0. This corresponds to dropping each of the weights independently with probability $p _ { l }$ . + +# 2.2 DROPOUT TRAINING + +The standard dropout neural networks can be trained using stochastic gradient decent (SGD), with a sub-network sampled by dropping neural units for each training instance in a mini-batch. Forward and backward pass for that training instance are done only on the sampled sub-network. Intuitively, dropout aims at, simultaneously and jointly, training an ensemble of exponentially many neural networks (one for each configuration of dropped units) while sharing the same weights/parameters. + +The goal of the stochastic training procedure of dropout can be understood as minimizing an expected loss function, after marginalizing out the dropout variables (Srivastava, 2013; Wang & Manning, 2013). In the context of maximal likelihood estimation, dropout training can be formulated as: + +$$ +\theta ^ { * } = \underset { \theta } { \operatorname { a r g m i n } } \operatorname { E } _ { S _ { D } } [ - l ( D , S _ { D } ; \theta ) ] = \underset { \theta } { \operatorname { a r g m i n } } \operatorname { E } _ { S _ { D } } \Big [ - \sum _ { i = 1 } ^ { N } \log p ( y _ { i } | x _ { i } , S _ { i } ; \theta ) \Big ] , +$$ + +where recall that $D$ is the training sample, ${ { S } _ { D } } = \left\{ { { S } _ { 1 } } , \ldots , { { S } _ { N } } \right\}$ is the dropout variable (one for each training instance), and $l ( D , S _ { D } ; \theta )$ is the (conditional) log-likelihood function defined by the conditional distribution $p ( \boldsymbol { y } | \boldsymbol { x } , s ; \theta )$ of output $y$ given input $x$ , under parameter $\theta$ and dropout variable $s$ . Throughout we use the notation $\mathrm { E } _ { Z }$ to denote the conditional expectation where all random variables except $Z$ are conditioned on. + +Dropout has also been shown to work well with regularization, such as L2 weight decay (Tikhonov, 1943), Lasso (Tibshirani, 1996), KL-sparsity(Bradley & Bagnell, 2008; Hinton, 2010), and max-norm regularization (Srebro et al., 2004), among which the max-norm regularization — that constrains the norm of the incoming weight matrix to be bounded by some constant — was found to be especially useful for dropout (Srivastava, 2013; Srivastava et al., 2014). + +# 2.3 DROPOUT INFERENCE AND GAP + +As mentioned before, dropout is effectively training an ensemble of neural networks with weight sharing. Consequently, at test time, the output of each network in the ensemble should be averaged to deliver the final prediction. This averaging over exponentially many sub-networks is, however, intractable, and standard dropout typically implements an approximation by introducing a deterministic scaling factor for each layer to replace the random dropout variable: + +$$ +\mathrm { E } _ { S } [ \mathbf { H } ^ { ( L ) } ( x , S ; \theta ) ] \stackrel { ? } { \approx } \mathbf { h } ^ { ( L ) } ( x , \mathrm { E } [ S ] ; \theta ) , +$$ + +where the right-hand side is the output of a single deterministic neural network whose weights are scaled to match the expected number of active hidden units on the left-hand side. Importantly, the right-hand side can be easily computed since it only involves a single deterministic network. + +Bulò et al. (2016) combined dropout with knowledge distillation methods (Hinton et al., 2015) to better approximate the averaging processing of the left-hand side. However, the quality of the approximation in (3) is largely unknown, and to our best knowledge, no attempt has been made to explicitly control this inference gap. The main goal of this work is to explicitly quantify, algorithmically control, and experimentally demonstrate the inference gap in (3), in the hope of improving the generalization performance of DNNs eventually. To this end, in the next section we first present a latent variable model interpretation of dropout, which will greatly facilitate our later theoretical analysis. + +# 3 DROPOUT AS LATENT VARIABLE MODELS + +With the end goal of studying the inference gap in (3) in mind, in this section, we first formulate dropout neural networks as a latent variable model (LVM) in $\ S \ 3 . 1$ . Then, we point out the relation between the training procedure of LVM and that of standard dropout in $\ S \ 3 . 2$ . The advantage of formulating dropout as a LVM is that we need only deal with a single model (with latent structure), instead of an ensemble of exponentially many different models (with weight sharing). This much simplified view of dropout enables us to understand and analyze the model parameter $\theta$ in a much more straightforward and intuitive way. + +# 3.1 AN LVM FORMULATION OF DROPOUT + +A latent variable model consists of two types of variables: the observed variables that represent the empirical (observed) data and the latent variables that characterize the hidden (unobserved) structure. To formulate dropout as a latent variable model, the input $x$ and output $y$ are regarded as observed variables, while the dropout variable $s$ , representing the sub-network structure, is hidden. Then, upon fixing the input space $\mathcal { X }$ , the output space $\mathcal { V }$ , and the latent space $s$ for dropout variables, the conditional probability of $y$ given $x$ under parameter $\theta$ can be written as + +$$ +p ( y | x ; \theta ) = \int _ { S } p ( y | x , s ; \theta ) p ( s ) d \mu ( s ) , +$$ + +where $p ( \boldsymbol { y } | \boldsymbol { x } , s ; \theta )$ is the conditional distribution modeled by the neutral network with configuration $s$ (same as in Eq. (2)), $p ( s )$ is the distribution of dropout variable $S$ (e.g. Bernoulli), here assumed to be independent of the input $x$ , and $\mu ( s )$ is the base measure on the space $s$ . + +# 3.2 LVM DROPOUT TRAINING VS. STANDARD DROPOUT TRAINING + +Building on the above latent variable model formulation (4) of dropout, we are now ready to point out a simple relation between the training procedure of LVM and that of standard dropout. Given an i.i.d. training sample $D$ , the maximum likelihood estimate for the LVM formulation of dropout in (4) is equivalent to minimizing the following negative log-likelihood function: + +$$ +\theta ^ { * } = \underset { \theta } { \operatorname { a r g m i n } } - l ( D ; \theta ) = \underset { \theta } { \operatorname { a r g m i n } } - \sum _ { i = 1 } ^ { N } \log p ( y _ { i } | x _ { i } ; \theta ) , +$$ + +where $p ( \boldsymbol { y } | \boldsymbol { x } ; \boldsymbol { \theta } )$ is given in Eq. (4). Recall the dropout training objective $\operatorname { E } _ { S _ { D } } [ - l ( D , S _ { D } ; \theta ) ]$ in Eq. (2). We have the following theorem as a simple consequence of Jensen’s inequality (details in Appendix A): + +Theorem 1. The expected loss function of standard dropout (Eq. (2)) is an upper bound of the negative log-likelihood of LVM dropout (Eq. (5)): + +$$ +- l ( D ; \theta ) \leq \mathrm { E } _ { S _ { D } } [ - l ( D , S _ { D } ; \theta ) ] . +$$ + +Theorem 1, in a rigorous sense, justifies dropout training as a convenient and tractable approximation of the LVM formulation in (4). Indeed, since directly minimizing the marginalized negative loglikelihood in (5) may not be easy, a standard practice is to replace the marginalized (conditional) likelihood $p ( \boldsymbol { y } | \boldsymbol { x } ; \boldsymbol { \theta } )$ in (4) with its empirical Monte carlo average through drawing samples from the dropout variable $S$ . The dropout training objective in (2) corresponds exactly to this Monte carlo approximation when a single sample $S _ { i }$ is drawn for each training instance $( x _ { i } , y _ { i } )$ . Importantly, we note that the above LVM formulation involves only a single network parameter $\theta$ , which largely simplifies the picture and facilitates our subsequent analysis. + +# 4 EXPECTATION-LINEAR DROPOUT NEURAL NETWORKS + +Building on the latent variable model formulation in $\ S \ O 3$ , we introduce in this section the notion of expectation-linearity that essentially measures the inference gap in (3). We then characterize a general class of neural networks that exhibit expectation-linearity, either exactly or approximately over a distribution $p ( x )$ on the input space. + +We start with defining expectation-linearity in the simplest single-layer neural network, then we extend the notion into general deep networks in a natural way. + +Definition 1 (Expectation-linear Layer). A network layer $\mathbf { h } = f ( x \odot \gamma ; \theta )$ is expectation-linear with respect to a set ${ { \mathcal { X } } ^ { \prime } } \subseteq { { \mathcal { X } } }$ , if for all $x \in \mathcal { X } ^ { \prime }$ we have + +$$ +\left\| \operatorname { E } [ f ( x \odot \Gamma ; \theta ) ] - f ( x \odot \operatorname { E } [ \Gamma ] ; \theta ) \right\| _ { 2 } = 0 . +$$ + +In this case we say that $\mathcal { X } ^ { \prime }$ is expectation-linearizable, and $\theta$ is expectation-linearizing w.r.t $\mathcal { X } ^ { \prime }$ + +Obviously, the condition in (7) will guarantee no gap in the dropout inference approximation (3)—an admittedly strong condition that we will relax below. Clearly, if $f$ is an affine function, then we can choose $\mathcal { X } ^ { \prime } = \mathcal { X }$ and expectation-linearity is trivial. Note that expectation-linearity depends on the network parameter $\theta$ and the dropout distribution $\Gamma$ . + +Expectation-linearity, as defined in (7), is overly strong: under standard regularity conditions, essentially the transformation function $f$ has to be affine over the set $\mathcal { X } ^ { \prime }$ , ruling out for instance the popular sigmoid or tanh activation functions. Moreover, in practice, downstream use of DNNs are usually robust to small errors resulting from approximate expectation-linearity (hence the empirical success of dropout), so it makes sense to define an inexact extension. We note also that the definition in (7) is uniform over the set $\mathcal { X } ^ { \prime }$ , while in a statistical setting it is perhaps more meaningful to have expectation-linearity “on average,” since inputs from lower density regions are not going to play a significant role anyway. Taking into account the aforementioned motivations, we arrive at the following inexact extension: + +Definition 2 (Approximately Expectation-linear Layer). A network layer $\mathbf { h } \ = \ f ( x \odot \gamma ; \theta )$ is $\delta$ -approximately expectation-linear with respect to a distribution $p ( x )$ over $\mathcal { X }$ if + +$$ +\mathbb { E } _ { X } \Big [ \big \| \mathbb { E } _ { \Gamma } \big [ f ( X \odot \Gamma ; \theta ) | X \big ] - f ( X \odot \mathbb { E } [ \Gamma ] ; \theta ) \big \| _ { 2 } \Big ] < \delta . +$$ + +In this case we say that $p ( x )$ is $\delta$ -approximately expectation-linearizable, and $\theta$ is $\delta$ -approximately expectation-linearizing. + +To appreciate the power of cutting some slack from exact expectation-linearity, we remark that even non-affine activation functions often have approximately linear regions. For example, the logistic function, a commonly used non-linear activation function in DNNs, is approximately linear around the origin. Naturally, we can ask whether it is sufficient for a target distribution $p ( x )$ to be well-approximated by an approximately expectation-linearizable one. We begin by providing an appropriate measurement of the quality of this approximation. + +Definition 3 (Closeness, (Andreas et al., 2015)). A distribution $p ( x )$ is $C$ -close to a set ${ { \mathcal { X } } ^ { \prime } } \subseteq { { \mathcal { X } } }$ if + +$$ +\operatorname { E } \Big [ \operatorname* { i n f } _ { x ^ { * } \in \mathcal { X } ^ { \prime } } \operatorname* { s u p } _ { \gamma \in S } \| X \odot \gamma - x ^ { * } \odot \gamma \| _ { 2 } \Big ] \leq C , +$$ + +where recall that $s$ is the (bounded) space that the dropout variable lives in. + +Intuitively, $p ( x )$ is $C$ -close to a set $\mathcal { X } ^ { \prime }$ if a random sample from $p$ is no more than a distance $C$ from $\mathcal { X } ^ { \prime }$ in expectation and under the worst “dropout perturbation”. For example, a standard normal distribution is close to an interval centering at origin $( [ - \alpha , \alpha ] )$ with some constant $C$ . Our definition of closeness is similar to that in Andreas et al. (2015), who used this notion to analyze self-normalized log-linear models. + +We are now ready to state our first major result that quantifies approximate expectation-linearity of a single-layered network (proof in Appendix B.1): + +Theorem 2. Given a network layer $\mathbf { h } = f ( x \odot \gamma ; \theta )$ , where $\theta$ is expectation-linearizing w.r.t. ${ { \mathcal { X } } ^ { \prime } } \subseteq { { \mathcal { X } } }$ . Suppose $p ( x )$ is $C$ -close to $\mathcal { X } ^ { \prime }$ and for all $x \in \mathcal { X } , \| \nabla _ { x } f ( x ) \| _ { \mathsf { o p } } \leq B ,$ , where $\| \cdot \| _ { \mathsf { o p } }$ is the usual operator norm. Then, $p ( x )$ is $2 B C$ -approximately expectation-linearizable. + +Roughly, Theorem 2 states that the input distribution $p ( x )$ that place most of its mass on regions close to expectation-linearizable sets are approximately expectation-linearizable on a similar scale. The bounded operator norm assumption on the derivative $\nabla f$ is satisfied in most commonly used layers. For example, for a fully connected layer with weight matrix $W$ , bias vector $b$ , and activation function $\sigma$ , $\| \nabla \bar { f ( \cdot ) } \| _ { \mathsf { o p } } = | \sigma ^ { \prime } \bar { ( \cdot ) } | \cdot \| W \| _ { \mathsf { o p } }$ is bounded by $\| W \| _ { \mathsf { o p } }$ and the supremum of $| \sigma ^ { \prime } ( \cdot ) |$ (1/4 when $\sigma$ is sigmoid and 1 when $\sigma$ is tanh). + +Next, we extend the notion of approximate expectation-linearity to deep dropout neural networks. + +Definition 4 (Approximately Expectation-linear Network). A deep neural network with $L$ layers (cf. Eq. (1)) is $\delta$ -approximately expectation-linear with respect to $p ( x )$ over $\mathcal { X }$ if + +$$ +\mathrm { E } _ { X } \Big [ \big \| \mathrm { E } _ { S } \big [ \mathbf { H } ^ { ( L ) } ( X , S ; \theta ) | X \big ] - \mathbf { h } ^ { ( L ) } ( X , \mathrm { E } [ S ] ; \theta ) \big \| _ { 2 } \Big ] < \delta . +$$ + +where $\mathbf { h } ^ { ( L ) } ( X , \operatorname { E } [ S ] ; \theta )$ is the output of the deterministic neural network in standard dropout. + +Lastly, we relate the level of approximate expectation-linearity of a deep neural network to the level of approximate expectation-linearity of each of its layers: + +Theorem 3. Given an $L$ -layer neural network as in Eq. (1), and suppose that each layer $l \in$ $\{ 1 , \ldots , L \}$ is $\delta$ -approximately expectation-linear w.r.t. $\begin{array} { r } { p ( \hat { \mathbf { h } } ^ { ( l ) } ) , \mathrm { E } [ \Gamma ^ { ( l ) } ] \stackrel { } { \leq } \gamma , \operatorname* { s u p } _ { x } \| \nabla f _ { l } ( x ) \| _ { \mathrm { o p } } \leq B } \end{array}$ , and $\mathrm { E } \big [ \mathrm { V a r } [ \mathbf { H } ^ { ( l ) } | X ] \big ] \leq \sigma ^ { 2 }$ . Then the network is $\Delta$ -approximately expectation-linear with + +$$ +\Delta = ( B \gamma ) ^ { L - 1 } \delta + ( \delta + B \gamma \sigma ) \Bigg ( \frac { 1 - ( B \gamma ) ^ { L - 1 } } { 1 - B \gamma } \Bigg ) . +$$ + +From Theorem 3 (proof in Appendix B.2) we observe that the level of approximate expectationlinearity of the network mainly depends on four factors: the level of approximate expecatationlinearity of each layer $( \delta )$ , the expected variance of each layer $( \sigma )$ , the operator norm of the derivative of each layer’s transformation function $( B )$ , and the mean of each layer’s dropout variable $( \gamma )$ . In practice, $\gamma$ is often a constant less than or equal to 1. For example, if $\Gamma \sim \mathrm { B e r n o u l l i } ( p )$ , then $\gamma = p$ + +According to the theorem, the operator norm of the derivative of each layer’s transformation function is an important factor in the level of approximate expectation-linearity: the smaller the operator norm is, the better the approximation. Interestingly, the operator norm of a layer often depends on the norm of the layer’s weight (e.g. for fully connected layers). Therefore, adding max-norm constraints to regularize dropout neural networks can lead to better approximate expectation-linearity hence smaller inference gap and the often improved model performance. + +It should also be noted that when $B \gamma < 1$ , the approximation error $\Delta$ tends to be a constant when the network becomes deeper. When $B \gamma = 1$ , $\Delta$ grows linearly with $L$ , and when $B \gamma > 1$ , the growth of $\Delta$ becomes exponential. Thus, it is essential to keep $B \gamma < 1$ to achieve good approximation, particularly for deep neural networks. + +# 5 EXPECTATION-LINEAR REGULARIZED DROPOUT + +In the previous section we have managed to bound the approximate expectation-linearity, hence the inference gap in (3), of dropout neural networks. In this section, we first prove a uniform deviation bound of the sampled approximate expectation-linearity measure from its mean, which motivates adding the sampled (hence computable) expectation-linearity measure as a regularization scheme to standard dropout, with the goal of explicitly controlling the inference gap of the learned parameter, hence potentially improving the performance. Then we give the upper bounds on the loss in accuracy due to expectation-linearization, and describe classes of distributions that expectation-linearize easily. + +5.1 A UNIFORM DEVIATION BOUND FOR THE SAMPLED EXPECTATION-LINEAR MEASURE + +We now show that an expectation-linear network can be found by expectation-linearizing the network on the training sample. To this end, we prove a uniform deviation bound between the empirical expectation-linearization measure using i.i.d. samples (Eq. (12)) and its mean (Eq. (13)). + +Theorem 4. Let $\mathcal { H } = \left\{ \mathbf { h } ^ { ( L ) } ( x , s ; \theta ) : \theta \in \Theta \right\}$ denote a space of $L$ -layer dropout neural networks indexed with $\theta$ , where $\mathbf { h } ^ { ( L ) } : \mathcal { X } \times \mathcal { S } \mathcal { R }$ and $\Theta$ is the space that $\theta$ lives in. Suppose that the neural networks in $\mathcal { H }$ satisfy the constraints: 1 $) \forall x \in \mathcal { X } , \| x \| _ { 2 } \leq \alpha ; 2 ) \forall l \in \{ 1 , \ldots , L \}$ , $\mathrm { E } ( \Gamma ^ { ( l ) } ) \le \gamma$ and $\| \nabla f _ { l } \| _ { o p } \leq B ; 3 ) \| \mathbf { h } ^ { ( L ) } \| \leq \beta$ . Denote empirical expectation-linearization measure and its mean as: + +$$ +\begin{array} { l } { \displaystyle \hat { \Delta } = \frac { 1 } { n } \sum _ { i = 1 } ^ { n } \big \| \mathrm { E } _ { S _ { i } } \big [ \mathbf { H } ^ { ( L ) } ( X _ { i } , S _ { i } ; \theta ) \big ] - \mathbf { h } ^ { ( L ) } ( X _ { i } , \mathrm { E } [ S _ { i } ] ; \theta ) \big \| _ { 2 } , } \\ { \displaystyle \Delta = \mathrm { E } _ { X } \Big [ \big \| \mathrm { E } _ { S } \big [ \mathbf { H } ^ { ( L ) } ( X , S ; \theta ) \big ] - \mathbf { h } ^ { ( L ) } ( X , \mathrm { E } [ S ] ; \theta ) \big \| _ { 2 } \Big ] . } \end{array} +$$ + +Then, with probability at least $1 - \nu$ , we have + +$$ +\operatorname* { s u p } _ { \theta \in \Theta } | \Delta - \hat { \Delta } | < \frac { 2 \alpha B ^ { L } ( \gamma ^ { L / 2 } + 1 ) } { \sqrt { n } } + \beta \sqrt { \frac { \log ( 1 / \nu ) } { n } } . +$$ + +From Theorem 4 (proof in Appendix C.1) we observe that the deviation bound decreases exponentially with the number of layers $L$ when the operator norm of the derivative of each layer’s transformation function $( B )$ is less than 1 (and the contrary if $B \geq 1 $ ). Importantly, the square root dependence on the number of samples $( n )$ is standard and cannot be improved without significantly stronger assumptions. + +It should be noted that Theorem 4 per se does not imply anything between expectation-linearization and the model accuracy (i.e. how well the expectation-linearized neural network actually achieves on modeling the data). Formally studying this relation is provided in $\ S 5 . 3$ . In addition, we provide some experimental evidences in $\ S 6$ on how improved approximate expectation-linearity (equivalently smaller inference gap) does lead to better empirical performances. + +# 5.2 EXPECTATION-LINEARIZATION AS REGULARIZATION + +The uniform deviation bound in Theorem 4 motivates the possibility of obtaining an approximately expectation-linear dropout neural networks through adding the empirical measure (12) as a regularization scheme to the standard dropout training objective, as follows: + +$$ +l o s s ( D ; \theta ) = - l ( D ; \theta ) + \lambda V ( D ; \theta ) , +$$ + +where $- l ( D ; \theta )$ is the negative log-likelihood defined in Eq. (5), $\lambda > 0$ is a regularization constant, and $V ( D ; \theta )$ measures the level of approximate expectation-linearity: + +$$ +V ( D ; \theta ) = \frac { 1 } { N } \sum _ { i = 1 } ^ { N } \big \| \mathrm { E } _ { S _ { i } } \big [ \mathbf { H } ^ { ( L ) } ( x _ { i } , S _ { i } ; \theta ) \big ] - \mathbf { h } ^ { ( L ) } ( x _ { i } , \mathrm { E } [ S _ { i } ] ; \theta ) \big \| _ { 2 } ^ { 2 } . +$$ + +To solve (15), we can minimize $l o s s ( D ; \theta )$ via stochastic gradient descent as in standard dropout, and approximate $V ( D ; \theta )$ using Monte carlo: + +$$ +V ( D ; \theta ) \approx \frac { 1 } { N } \sum _ { i = 1 } ^ { N } \big \| \mathbf { h } ^ { ( L ) } ( x _ { i } , s _ { i } ; \theta ) - \mathbf { h } ^ { ( L ) } ( x _ { i } , \mathrm { E } [ S _ { i } ] ; \theta ) \big \| _ { 2 } ^ { 2 } , +$$ + +where $s _ { i }$ is the same dropout sample as in $l ( D ; \theta )$ for each training instance in a mini-batch. Thus, the only additional computational cost comes from the deterministic term $\mathbf { h } ^ { ( L ) } ( x _ { i } , \mathrm { E } [ S _ { i } ] ; \theta )$ . Overall, our regularized dropout (15), in its Monte carlo approximate form, is as simple and efficient as the standard dropout. + +# 5.3 ON THE ACCURACY OF EXPECTATION-LINEARIZED MODELS + +So far our discussion has concentrated on the problem of finding expectation-linear neural network models, without any concerns on how well they actually perform at modeling the data. In this section, we characterize the trade-off between maximizing “data likelihood” and satisfying an expectationlinearization constraint. + +To achieve the characterization, we measure the likelihood gap between the classical maximum likelihood estimator (MLE) and the MLE subject to a expectation-linearization constraint. Formally, given training data $D = \{ ( x _ { 1 } , y _ { 1 } ) , \dotsc , ( x _ { n } , y _ { n } ) \}$ , we define + +$$ +\begin{array} { r l } { \hat { \theta } = } & { \underset { \theta \in \Theta } { \mathrm { a r g m i n } } \quad - l ( D ; \theta ) } \\ { \hat { \theta } _ { \delta } = } & { \underset { \theta \in \Theta , V ( D ; \theta ) \leq \delta } { \mathrm { a r g m i n } } - l ( D ; \theta ) } \end{array} +$$ + +where $- l ( D ; \theta )$ is the negative log-likelihood defined in Eq. (5), and $V ( D ; \theta )$ is the level of approximate expectation-linearity in Eq. (16). + +We would like to control the loss of model accuracy by obtaining a bound on the likelihood gap defined as: + +$$ +\Delta _ { l } ( \hat { \theta } , \hat { \theta } _ { \delta } ) = \frac { 1 } { n } ( l ( D ; \hat { \theta } ) - l ( D ; \hat { \theta } _ { \delta } ) ) +$$ + +In the following, we focus on neural networks with softmax output layer for classification tasks. + +$$ +p ( \boldsymbol { y } | \boldsymbol { x } , s ; \theta ) = \mathbf { h } _ { \boldsymbol { y } } ^ { ( L ) } ( \boldsymbol { x } , s ; \theta ) = f _ { L } \big ( \mathbf { h } ^ { ( L - 1 ) } ( \boldsymbol { x } , s ) ; \eta \big ) = \frac { e ^ { \eta _ { \boldsymbol { y } } ^ { T } \mathbf { h } ^ { ( L - 1 ) } ( \boldsymbol { x } , s ) } } { \displaystyle \sum _ { \boldsymbol { y ^ { \prime } } \in \boldsymbol { y } } e ^ { \eta _ { \boldsymbol { y ^ { \prime } } } ^ { T } \mathbf { h } ^ { ( L - 1 ) } ( \boldsymbol { x } , s ) } } +$$ + +where $\boldsymbol { \theta } = \{ \theta _ { 1 } , \ldots , \theta _ { L - 1 } , \eta \} , \mathcal { V } = \{ 1 , \ldots , k \}$ and $\eta = \{ \eta _ { y } : y \in \mathcal { V } \}$ . We claim: + +Theorem 5. Given an $L$ -layer neural network $\mathbf { h } ^ { ( L ) } ( x , s ; \theta )$ with softmax output layer in (21), where parameter $\theta \in \Theta$ , dropout variable $s \in S$ , input $x \in \mathcal { X }$ and target $y \in \mathcal { V }$ . Suppose that for every $x$ and s, $p ( \boldsymbol { y } | \boldsymbol { x } , s ; \hat { \theta } )$ makes a unique best prediction—that is, for each $x \in \mathcal { X } , s \in \mathcal { S }$ , there exists a unique $y ^ { \ast } \in \mathcal { V }$ such that $\forall y \ne y ^ { * }$ , $\hat { \eta } _ { y } ^ { T } \mathbf { h } ^ { ( L - 1 ) } ( x , s ) < \hat { \eta } _ { y ^ { \ast } } ^ { T } \mathbf { h } ^ { ( L - 1 ) } ( x , s )$ . Suppose additionally that $\forall x , s$ , $\| \mathbf { h } ^ { ( L - 1 ) } ( x , s ; \hat { \theta } ) \| \leq \beta$ , and $\forall y , p ( y | x ; \hat { \theta } ) > 0$ . Then + +$$ +\Delta _ { l } ( \hat { \theta } , \hat { \theta } _ { \delta } ) \leq c _ { 1 } \beta ^ { 2 } \left( \| \hat { \eta } \| _ { 2 } - \frac { \delta } { 4 \beta } \right) ^ { 2 } e ^ { - c _ { 2 } \delta / 4 \beta } +$$ + +where $c _ { 1 }$ and $c _ { 2 }$ are distribution-dependent constants. + +From Theorem 5 (proof in Appendix C.2) we observe that, at one extreme, distributions closed to deterministic can be expectation-linearized with little loss of likelihood. + +What about the other extreme — distributions “as close to uniform distribution as possible”? With suitable assumptions about the form of $p ( \boldsymbol { y } | \boldsymbol { x } , s ; \hat { \theta } )$ and $p ( \boldsymbol { y } | \boldsymbol { x } ; \hat { \boldsymbol { \theta } } )$ , we can achieve an accuracy loss bound for distributions that are close to uniform: + +Theorem 6. Suppose that $\forall x , s$ , $\| \mathbf { h } ^ { ( L - 1 ) } ( x , s ; \hat { \theta } ) \| \leq \beta$ . Additionally, for each $( x _ { i } , y _ { i } ) \in D , s \in \mathcal { S } $ $\log \frac { 1 } { k } \le \log p ( y _ { i } | x _ { i } , s ; \hat { \theta } ) \le \frac { 1 } { k } \sum _ { y \in \mathcal { V } } \log p ( y | x _ { i } , s ; \hat { \theta } )$ . Then asymptotically as $n \to \infty$ : + +$$ +\Delta _ { l } ( \hat { \theta } , \hat { \theta } _ { \delta } ) \leq \left( 1 - \frac { \delta } { 4 \beta \| \hat { \eta } \| _ { 2 } } \right) \mathrm { E } \left[ \mathrm { K L } \left( p ( \cdot | X ; \theta ) \| \mathrm { U n i f } ( \mathcal { V } ) \right) \right] +$$ + +Theorem 6 (proof in Appendix C.3) indicates that uniform distributions are also an easy class for expectation-linearization. + +The next question is whether there exist any classes of conditional distributions $p ( y | x )$ for which all distributions are provably hard to expectation-linearize. It remains an open problem and might be an interesting direction for future work. + +# 6 EXPERIMENTS + +In this section, we evaluate the empirical performance of the proposed regularized dropout in (15) on a variety of network architectures for the classification task on three benchmark datasets—MNIST, CIFAR-10 and CIFAR-100. We applied the same data preprocessing procedure as in Srivastava et al. (2014). To make a thorough comparison and provide experimental evidence on how the expectationlinearization interacts with the predictive power of the learned model, we perform experiments of Monte Carlo (MC) dropout, which approximately computes the final prediction (left-hand side of (3)) via Monte Carlo sampling, w/o the proposed regularizer. In the case of MC dropout, we average $m = 1 0 0$ predictions using randomly sampled configurations. In addition, the network architectures and hyper-parameters for each experiment setup are the same as those in Srivastava et al. (2014), unless we explicitly claim to use different ones. Following previous works, for each data set We held out 10,000 random training images for validation to tune the hyper-parameters, including $\lambda$ in Eq. (15). When the hyper-parameters are fixed, we train the final models with all the training data, including the validation data. A more detailed description of the conducted experiments can be provided in Appendix D. For each experiment, we report the mean test errors with corresponding standard deviations over 5 repetitions. + +# 6.1 MNIST + +The MNIST dataset (LeCun et al., 1998) consists of 70,000 handwritten digit images of size $2 8 \times 2 8$ , where 60,000 images are used for training and the rest for testing. This task is to classify the images into 10 digit classes. For the purpose of comparison, we train 6 neural networks with different architectures. The experimental results are shown in Table 1. + +# 6.2 CIFAR-10 AND CIFAR-100 + +The CIFAR-10 and CIFAR-100 datasets (Krizhevsky, 2009) consist of 60,000 color images of size $3 2 \times 3 2$ , drawn from 10 and 100 categories, respectively. 50,000 images are used for training and the rest for testing. The neural network architecture we used for these two datasets has 3 convolutional layers, followed by two fully-connected (dense) hidden layers (again, same as that in Srivastava et al. (2014)). The experimental results are recorded in Table 1, too. + +Table 1: Comparison of classification error percentage on test data with and without using expectationlinearization on MNIST, CIFAR-10 and CIFAR-100, under different network architectures (with standard deviations for 5 repetitions). + +
DataArchitecturew.0. ELw. EL
StandardMCStandardMC
MNIST3 dense,1024,logistic1.23±0.031.06±0.021.07±0.021.06±0.03
3 dense,1024,relu1.19±0.021.04±0.021.03±0.021.05±0.03
3 dense,1024,relu+max-norm1.05±0.031.02±0.020.98±0.031.02±0.02
3 dense,2048,relu+max-norm1.07±0.021.00±0.020.94±0.020.97±0.03
2 dense,4096,relu+max-norm1.03±0.020.92±0.030.90±0.020.93±0.02
CIFAR-102 dense,8192,relu+max-norm0.99±0.020.96±0.020.87±0.020.92±0.03
3 conv+2 dense,relu+max-norm12.82±0.1012.16±0.1212.20±0.1412.21±0.15
CIFAR-1003 conv+2 dense,relu+max-norm37.22±0.2236.01±0.2136.25±0.1236.10±0.18
+ +![](images/c49daebdcab4221015f37caba68dea112f6c0b6488108175b3f185757fd7ca95.jpg) +Figure 1: Error rate and empirical expectation-linearization risk relative to $\lambda$ . + +From Table 1 we can see that on MNIST data, dropout network training with expectation-linearization outperforms standard dropout on all 6 neural architectures. On CIFAR data, expectation-linearization reduces error rate from $1 2 . 8 2 \%$ to $1 2 . 2 0 \%$ for CIFAR-10, achieving $0 . 6 2 \%$ improvement. For CIFAR-100, the improvement in terms of error rate is $0 . 9 7 \%$ with reduction from $3 7 . 2 2 \%$ to $3 6 . 2 5 \%$ . + +From the results we see that with or without expectation-linearization, the MC dropout networks achieve similar results. It illustrates that by achieving expectation-linear neural networks, the predictive power of the learned models has not degraded significantly. Moreover, it is interesting to see that with the regularization, on MNIST dataset, standard dropout networks achieve even better accuracy than MC dropout. It may be because that with expectation-linearization, standard dropout inference achieves better approximation of the final prediction than MC dropout with (only) 100 samples. On CIFAR datasets, MC dropout networks achieve better accuracy than the ones with the regularization. But, obviously, MC dropout requires much more inference time than standard dropout (MC dropout with $m$ samples requires about $m$ times the inference time of standard dropout). + +# 6.3 EFFECT OF REGULARIZATION CONSTANT $\lambda$ + +In this section, we explore the effect of varying the hyper-parameter for the expectation-linearization rate $\lambda$ . We train the network architectures in Table 1 with the $\lambda$ value ranging from 0.1 to 10.0. Figure 1 shows the test errors obtained as a function of $\lambda$ on three datasets. In addition, Figure 1, middle and right panels, also measures the empirical expectation-linearization risk $\hat { \Delta }$ of Eq. (12) with varying $\lambda$ on CIFAR-10 and CIFAR-100, where $\hat { \Delta }$ is computed using Monte carlo with 100 independent samples. + +From Figure 1 we can see that when $\lambda$ increases, better expectation-linearity is achieved (i.e. $\hat { \Delta }$ decreases). The model accuracy, however, has not kept growing with increasing $\lambda$ , showing that in practice considerations on the trade-off between model expectation-linearity and accuracy are needed. + +Table 2: Comparison of test data errors using standard dropout, Monte Carlo dropout, standard dropout with our proposed expectation-linearization, and recently proposed dropout distillation on CIFAR-10 and CIFAR-100 under AllConv, (with standard deviations for 5 repetitions). + +
DataNetworkStandardMCw. ELDistillation
CIFAR-10AllConv11.18±0.1110.58±0.2110.86±0.0810.81±0.14
CIFAR-100AllConv35.50±0.2334.43±0.2535.10±0.1335.07±0.20
+ +# 6.4 COMPARISON WITH DROPOUT DISTILLATION + +To make a thorough empirical comparison with the recently proposed Dropout Distillation method (Bulò et al., 2016), we also evaluate our regularization method on CIFAR-10 and CIFAR-100 datasets with the All Convolutional Network (Springenberg et al., 2014) (AllConv). To facilitate comparison, we adopt the originally reported hyper-parameters and the same setup for training. + +Table 2 gives the results comparison the classification error percentages on test data under AllConv using standard dropout, Monte Carlo dropout, standard dropout with our proposed expectationlinearization, and recently proposed dropout distillation on CIFAR-10 and CIFAR-100 1. According to Table 2, our proposed expectation-linear regularization method achieves comparable performance to dropout distillation. + +# 7 CONCLUSIONS + +In this work, we attempted to establish a theoretical basis for the understanding of dropout, motivated by controlling the gap between dropout’s training and inference phases. Through formulating dropout as a latent variable model and introducing the notion of (approximate) expectation-linearity, we have formally studied the inference gap of dropout, and introduced an empirical measure as a regularization scheme to explicitly control the gap. Experiments on three benchmark datasets demonstrate that reducing the inference gap can indeed improve the end performance. In the future, we intend to formally relate the inference gap to the generalization error of the underlying network, hence providing further justification of regularized dropout. + +# ACKNOWLEDGEMENTS + +This research was supported in part by DARPA grant FA8750-12-2-0342 funded under the DEFT program. Any opinions, findings, and conclusions or recommendations expressed in this material are those of the authors and do not necessarily reflect the views of DARPA. + +# REFERENCES + +Jacob Andreas, Maxim Rabinovich, Michael I Jordan, and Dan Klein. On the accuracy of selfnormalized log-linear models. In Advances in Neural Information Processing Systems, pp. 1774– 1782, 2015. + +Pierre Baldi and Peter Sadowski. The dropout learning algorithm. Artificial intelligence, 210:78–122, 2014. + +Pierre Baldi and Peter J Sadowski. Understanding dropout. In Advances in Neural Information Processing Systems, pp. 2814–2822, 2013. + +David M Bradley and J Andrew Bagnell. Differential sparse coding. 2008. + +Samuel Rota Bulò, Lorenzo Porzi, and Peter Kontschieder. Dropout distillation. In Proceedings of The 33rd International Conference on Machine Learning, pp. 99–107, 2016. + +Ning Chen, Jun Zhu, Jianfei Chen, and Bo Zhang. Dropout training for support vector machines. In Proceedings Twenty-Eighth AAAI Conference on Artificial Intelligence, 2014. + +Yarin Gal and Zoubin Ghahramani. Dropout as a bayesian approximation: Insights and applications. In Deep Learning Workshop, ICML, 2015. + +Yarin Gal and Zoubin Ghahramani. A theoretically grounded application of dropout in recurrent neural networks. In Advances in Neural Information Processing Systems, 2016. + +Wei Gao and Zhi-Hua Zhou. Dropout rademacher complexity of deep neural networks. arXiv preprint arXiv:1402.3811, 2014. + +David P Helmbold and Philip M Long. On the inductive bias of dropout. arXiv preprint arXiv:1412.4736, 2014. + +David P Helmbold and Philip M Long. Fundamental differences between dropout and weight decay in deep networks. arXiv preprint arXiv:1602.04484, 2016. + +Geoffrey Hinton. A practical guide to training restricted boltzmann machines. Momentum, 9(1):926, 2010. + +Geoffrey Hinton, Oriol Vinyals, and Jeff Dean. Distilling the knowledge in a neural network. arXiv preprint arXiv:1503.02531, 2015. + +Geoffrey E Hinton, Nitish Srivastava, Alex Krizhevsky, Ilya Sutskever, and Ruslan R Salakhutdinov. Improving neural networks by preventing co-adaptation of feature detectors. arXiv preprint arXiv:1207.0580, 2012. + +Prateek Jain, Vivek Kulkarni, Abhradeep Thakurta, and Oliver Williams. To drop or not to drop: Robustness, consistency and differential privacy properties of dropout. arXiv preprint arXiv:1503.02031, 2015. + +Diederik P Kingma, Tim Salimans, and Max Welling. Variational dropout and the local reparameterization trick. In Advances in Neural Information Processing Systems, pp. 2575–2583, 2015. + +Alex Krizhevsky. Learning multiple layers of features from tiny images, 2009. + +Yann LeCun, Léon Bottou, Yoshua Bengio, and Patrick Haffner. Gradient-based learning applied to document recognition. Proceedings of the IEEE, 86(11):2278–2324, 1998. + +Yann LeCun, Yoshua Bengio, and Geoffrey Hinton. Deep learning. Nature, 521:436–444, 2015. + +Xuezhe Ma and Eduard Hovy. End-to-end sequence labeling via bi-directional LSTM-CNNs-CRF. In Proceedings of ACL-2016, pp. 1064–1074, Berlin, Germany, August 2016. + +Jürgen Schmidhuber. Deep learning in neural networks: An overview. Neural Networks, 61:85–117, 2015. + +Jost Tobias Springenberg, Alexey Dosovitskiy, Thomas Brox, and Martin Riedmiller. Striving for simplicity: The all convolutional net. arXiv preprint arXiv:1412.6806, 2014. + +Nathan Srebro, Jason Rennie, and Tommi S Jaakkola. Maximum-margin matrix factorization. In Advances in neural information processing systems, pp. 1329–1336, 2004. + +Nitish Srivastava. Improving neural networks with dropout. PhD thesis, University of Toronto, 2013. + +Nitish Srivastava, Geoffrey Hinton, Alex Krizhevsky, Ilya Sutskever, and Ruslan Salakhutdinov. Dropout: A simple way to prevent neural networks from overfitting. The Journal of Machine Learning Research, 15(1):1929–1958, 2014. + +Robert Tibshirani. Regression shrinkage and selection via the lasso. Journal of the Royal Statistical Society. Series B (Methodological), pp. 267–288, 1996. + +Andrey Nikolayevich Tikhonov. On the stability of inverse problems. In Dokl. Akad. Nauk SSSR, volume 39, pp. 195–198, 1943. + +Stefan Wager, Sida Wang, and Percy S Liang. Dropout training as adaptive regularization. In Advances in neural information processing systems, pp. 351–359, 2013. + +Stefan Wager, William Fithian, Sida Wang, and Percy S Liang. Altitude training: Strong bounds for single-layer dropout. In Advances in Neural Information Processing Systems, pp. 100–108, 2014. + +Sida Wang and Christopher Manning. Fast dropout training. In Proceedings of the 30th International Conference on Machine Learning, pp. 118–126, 2013. + +# APPENDIX: DROPOUT WITH EXPECTATION-LINEAR REGULARIZATION + +A LVM DROPOUT TRAINING VS. STANDARD DROPOUT TRAINING + +# Proof of Theorem 1 + +Proof. + +$$ +\begin{array} { r c l } { \operatorname { E } _ { S _ { D } } [ l ( D , S _ { D } ; \theta ) ] } & { = } & { \displaystyle \int _ { S } \prod _ { i = 1 } ^ { N } p ( s _ { i } ) \Big ( \sum _ { i = 1 } ^ { N } \log p ( y _ { i } | x _ { i } , s _ { i } ; \theta ) \Big ) d \mu ( s _ { 1 } ) \dots d \mu ( s _ { N } ) } \\ & { = } & { \displaystyle \sum _ { i = 1 } ^ { N } \int _ { S } p ( s _ { i } ) \log p ( y _ { i } | x _ { i } , s _ { i } ; \theta ) d \mu ( s _ { i } ) } \end{array} +$$ + +Because $\log ( \cdot )$ is a concave function, from Jensen’s Inequality, + +$$ +\int _ { S } p ( s ) \log p ( y | x , s ; \theta ) d \mu ( s ) \leq \log \int _ { S } p ( s ) p ( y | x , s ; \theta ) d \mu ( s ) +$$ + +Thus + +$$ +\mathrm { E } _ { S _ { D } } [ - l ( D , S _ { D } ; \theta ) ] \geq \sum _ { i = 1 } ^ { N } \log \int _ { S } p ( s _ { i } ) p ( y _ { i } | x _ { i } , s _ { i } ; \theta ) d \mu ( s _ { i } ) = - l ( D ; \theta ) . +$$ + +# B EXPECTATION-LINEAR DROPOUT NEURAL NETWORKS + +# B.1 PROOF OF THEOREM 2 + +Proof. Let $\gamma ^ { * } = \operatorname { E } [ \Gamma ]$ , and + +$$ +A \triangleq \{ x : \| \mathrm { E } [ f ( x \odot \Gamma ; \theta ) ] - f ( x \odot \gamma ^ { * } ; \theta ) \| _ { 2 } = 0 \} +$$ + +Let $X ^ { * } = \underset { x \in A } { \operatorname { a r g m i n } } \ \underset { \gamma \in S } { \operatorname* { s u p } } \| X \odot \gamma - x \odot \gamma \| _ { 2 }$ , and $X ^ { - } = X - X ^ { * }$ . Then, + +$$ +X \odot \gamma = X ^ { * } \odot \gamma + X ^ { - } \odot \gamma +$$ + +In the following, we omit the parameter $\theta$ for convenience. Moreover, we denote + +$$ +\operatorname { E } _ { \Gamma } { \big [ } f ( X \odot \Gamma ; \theta ) { \big ] } \triangleq \operatorname { E } \left[ f ( X \odot \Gamma ; \theta ) | X \right] +$$ + +From Taylor Series, there exit some $X ^ { \prime } , X ^ { \prime \prime } \in \mathcal { X }$ satisfy that + +$$ +\begin{array} { r c l } { f ( X \odot \Gamma ) } & { = } & { f ( X ^ { * } \odot \Gamma ) + f ^ { \prime } ( X ^ { \prime } \odot \Gamma ) ( X ^ { - } \odot \Gamma ) } \\ { f ( X \odot \gamma ^ { * } ) } & { = } & { f ( X ^ { * } \odot \gamma ^ { * } ) + f ^ { \prime } ( X ^ { \prime \prime } \odot \gamma ^ { * } ) ( X ^ { - } \odot \gamma ^ { * } ) } \end{array} +$$ + +where we denote $f ^ { \prime } ( x ) = ( \nabla _ { x } f ( x ) ) ^ { T }$ . Then, + +$$ +\begin{array} { r l } & { \mathrm { E r } [ f ( X \odot \Gamma ) - f ( X \odot \gamma ^ { * } ) ] } \\ { = } & { \mathrm { E r } [ f ( X ^ { * } \odot \Gamma + X ^ { - } \odot \Gamma ) - f ( X ^ { * } \odot \gamma ^ { * } + X ^ { - } \odot \gamma ^ { * } ) ] } \\ { = } & { \mathrm { E r } [ f ( X ^ { * } \odot \Gamma ) - f ( X ^ { * } \odot \gamma ^ { * } ) + f ^ { \prime } ( X ^ { \prime } \odot \Gamma ) ( X ^ { - } \odot \Gamma ) - f ^ { \prime } ( X ^ { \prime \prime } \odot \gamma ^ { * } ) ( X ^ { - } \odot \gamma ^ { * } ) ] } \\ { = } & { \mathrm { E r } [ f ( X ^ { * } \odot \Gamma ) - f ( X ^ { * } \odot \gamma ^ { * } ) ] + \mathrm { E r } [ f ^ { \prime } ( X ^ { \prime } \odot \Gamma ) ( X ^ { - } \odot \Gamma ) - f ^ { \prime } ( X ^ { \prime \prime } \odot \gamma ^ { * } ) ( X ^ { - } \odot \gamma ^ { * } ) ] } \end{array} +$$ + +Since $X ^ { * } \in A$ , we have + +$$ +\operatorname { E } _ { \Gamma } [ f ( X ^ { * } \odot \Gamma ) - f ( X ^ { * } \odot \gamma ^ { * } ) ] = 0 . +$$ + +Then, + +$$ +\begin{array} { r l } & { \mathrm { E r } [ f ( X \odot \Gamma ) - f ( X \odot \gamma ^ { * } ) ] } \\ { = } & { \mathrm { E } _ { \Gamma } [ f ^ { \prime } ( X ^ { \prime } \odot \Gamma ) ( X ^ { - } \odot \Gamma ) - f ^ { \prime } ( X ^ { \prime \prime } \odot \gamma ^ { * } ) ( X ^ { - } \odot \gamma ^ { * } ) ] } \\ { = } & { \mathrm { E } _ { \Gamma } \big [ ( f ^ { \prime } ( X ^ { \prime } \odot \Gamma ) - f ^ { \prime } ( X ^ { \prime \prime } \odot \gamma ^ { * } ) ) ( X ^ { - } \odot \Gamma ) \big ] + \mathrm { E } _ { \Gamma } [ f ^ { \prime } ( X ^ { \prime \prime } \odot \gamma ^ { * } ) ( X ^ { - } \odot \Gamma - X ^ { - } \odot \gamma ^ { * } ) ] } \\ { = } & { \mathrm { E } _ { \Gamma } \big [ ( f ^ { \prime } ( X ^ { \prime } \odot \Gamma ) - f ^ { \prime } ( X ^ { \prime \prime } \odot \gamma ^ { * } ) ) ( X ^ { - } \odot \Gamma ) \big ] } \end{array} +$$ + +Then, + +$$ +\begin{array} { r l } & { \| \mathrm { E } _ { \Gamma } [ f ( X \odot \Gamma ) ] - f ( X \odot \gamma ^ { * } ) \| _ { 2 } } \\ { = } & { \| \mathrm { E } _ { \Gamma } [ ( f ^ { \prime } ( X ^ { \prime } \odot \Gamma ) - f ^ { \prime } ( X ^ { \prime \prime } \odot \gamma ^ { * } ) ) ( X ^ { - } \odot \Gamma ) ] \| _ { 2 } } \end{array} +$$ + +Since $\| X ^ { - } \odot \gamma ^ { \prime } \| _ { 2 } \leq \operatorname* { s u p } _ { \gamma \in S } \| X ^ { - } \odot \gamma \| _ { 2 } = \operatorname* { i n f } _ { x \in A } \operatorname* { s u p } _ { \gamma \in S } \| X \odot \gamma - x \odot \gamma \| _ { 2 }$ , and from Jensen’s inequality and property of operator norm, + +$$ +\begin{array} { r l } & { \| \mathrm { E } _ { \Gamma } [ ( f ^ { \prime } ( X ^ { \prime } \odot \Gamma ) - f ^ { \prime } ( X ^ { \prime \prime } \odot \gamma ^ { * } ) ) ( X ^ { - } \odot \Gamma ) ] \| _ { 2 } } \\ { \le } & { \mathrm { E } _ { \Gamma } \Big [ \| f ^ { \prime } ( X ^ { \prime } \odot \Gamma ) - f ^ { \prime } ( X ^ { \prime \prime } \odot \gamma ^ { * } ) \| _ { o p } \| X ^ { - } \odot \Gamma \| _ { 2 } \Big ] } \\ { \le } & { 2 B \mathrm { E } _ { \Gamma } \Big [ \| X ^ { - } \odot \Gamma \| _ { 2 } \Big ] } \\ { \le } & { 2 B \underset { x \in A } { \operatorname* { i n f } } \underset { \gamma \in S } { \operatorname* { s u p } } \| X \odot \gamma - x \odot \gamma \| _ { 2 } } \end{array} +$$ + +Finally we have, + +$$ +\begin{array} { r l } & { \mathrm { E } _ { X } \bigg [ \| \mathrm { E } _ { \Gamma } [ ( f ^ { \prime } ( X ^ { \prime } \odot \Gamma ) - f ^ { \prime } ( X ^ { \prime \prime } \odot \gamma ^ { * } ) ) ( X ^ { - } \odot \Gamma ) ] \| _ { 2 } \bigg ] } \\ { \le } & { 2 B \mathrm { E } \bigg [ \underset { x \in A } { \operatorname* { i n f } } \underset { \gamma \in S } { \operatorname* { s u p } } \| X \odot \gamma - x \odot \gamma \| _ { 2 } \bigg ] \le 2 B C } \end{array} +$$ + +# B.2 PROOF OF THEOREM 3 + +Proof. Induction on the number of the layers $L$ . As before, we omit the parameter $\theta$ . + +itial step: when $L = 1$ , the statement is obviously true. + +Induction on $L$ : Suppose that the statement is true for neural networks with $L$ layers. Now we prove the case $L + 1$ . From the inductive assumption, we have, + +$$ +\begin{array} { r } { \mathrm { E } _ { X } \Big [ \big \| \mathrm { E } _ { S _ { L } } \big [ \mathbf { H } ^ { ( L ) } ( X , S _ { L } ) \big ] - \mathbf { h } ^ { ( L ) } ( X , \mathrm { E } [ S _ { L } ] ) \big \| _ { 2 } \Big ] \leq \Delta _ { L } } \end{array} +$$ + +where ${ \cal S } _ { \cal L } = \{ \Gamma ^ { ( 1 ) } , \dots , \Gamma ^ { ( L ) } \}$ is the dropout random variables for the first $L$ layers, and + +$$ +\Delta _ { L } = ( B \gamma ) ^ { L - 1 } \delta + ( \delta + B \gamma \sigma ) \bigg ( { \frac { 1 - ( B \gamma ) ^ { L - 1 } } { 1 - B \gamma } } \bigg ) +$$ + +In addition, the $L + 1$ layer is $\delta$ -approximately expectation-linear, we have: + +$$ +\begin{array} { r } { \mathrm { E } _ { \mathbf { H } ^ { ( L ) } } \Big [ \big \lVert \mathrm { E } _ { \Gamma ^ { ( L + 1 ) } } \left[ f _ { L + 1 } ( \mathbf { H } ^ { ( L ) } \odot \Gamma ^ { ( L + 1 ) } ) \right] - f _ { L + 1 } ( \mathbf { H } ^ { ( L ) } \odot \boldsymbol { \gamma } ^ { ( L + 1 ) } ) \big \rVert _ { 2 } \Big ] \leq \delta } \end{array} +$$ + +Let $\operatorname { E } [ \Gamma ^ { ( l ) } ] ~ = ~ \gamma ^ { ( l ) } , \forall l ~ \in ~ \{ 1 , \dots , L + 1 \}$ , and let $\mathbf { H } ^ { ( l ) }$ and $\mathbf { h } ^ { ( l ) }$ be short for $\mathbf { H } ^ { ( l ) } ( X , S _ { l } )$ and $\mathbf { h } ^ { ( l ) } ( X , \mathrm { E } ( S _ { l } ) )$ , respectively, when there is no ambiguity. Moreover, we denote + +$$ +\operatorname { E } _ { S } \big [ \mathbf { H } ^ { ( L ) } ( X , S ; \theta ) \big ] = \operatorname { E } _ { S } \big [ \mathbf { H } ^ { ( L ) } ( X , S ; \theta ) \big | X \big ] +$$ + +for convenience. Then, + +$$ +\begin{array} { r l } & { \mathrm { E } _ { X } [ \| \mathrm { E } _ { S _ { L + 1 } } [ \mathbf { H } ^ { ( L + 1 ) } ] - \mathbf { h } ^ { ( L + 1 ) } \| _ { 2 } ] } \\ { = } & { \mathrm { E } _ { X } [ \| \mathrm { E } _ { S _ { L } } [ \mathrm { E } _ { \Gamma ( L + 1 ) } [ f _ { L + 1 } ( \mathbf { H } ^ { ( L ) } \odot \Gamma ^ { ( L + 1 ) } ) ] - f _ { L + 1 } ( \mathbf { h } ^ { ( L ) } \odot \gamma ^ { ( L + 1 ) } ) ] } \\ & { + \mathrm { E } _ { S _ { L } } [ f _ { L + 1 } ( \mathbf { H } ^ { ( L ) } \odot \gamma ^ { ( L + 1 ) } ) ] - f _ { L + 1 } ( \mathbf { h } ^ { ( L ) } \odot \gamma ^ { ( L + 1 ) } ) \| _ { 2 } ] } \\ { \le } & { \mathrm { E } _ { X } [ \| \mathrm { E } _ { S _ { L } } [ \mathrm { E } _ { \Gamma ( L + 1 ) } [ f _ { L + 1 } ( \mathbf { H } ^ { ( L ) } \odot \Gamma ^ { ( L + 1 ) } ) ] - f _ { L + 1 } ( \mathbf { h } ^ { ( L ) } \odot \gamma ^ { ( L + 1 ) } ) ] \| _ { 2 } ] } \\ & { + \mathrm { E } _ { X } [ \| \mathrm { E } _ { S _ { L } } [ f _ { L + 1 } ( \mathbf { H } ^ { ( L ) } \odot \gamma ^ { ( L + 1 ) } ) ] - f _ { L + 1 } ( \mathbf { h } ^ { ( L ) } \odot \gamma ^ { ( L + 1 ) } ) \| _ { 2 } ] } \end{array} . +$$ + +From Eq. 2 and Jensen’s inequality, we have + +$$ +\begin{array} { r l } & { \mathbf { E } _ { X } \bigg [ \Big \| \mathrm { E } _ { S _ { L } } \Big [ \mathrm { E } _ { \Gamma ^ { ( L + 1 ) } } \big [ f _ { L + 1 } ( \mathbf { H } ^ { ( L ) } \odot \Gamma ^ { ( L + 1 ) } ) \big ] - f _ { L + 1 } ( \mathbf { h } ^ { ( L ) } \odot \gamma ^ { ( L + 1 ) } ) \Big ] \Big \| _ { 2 } \bigg ] } \\ { \le } & { \mathrm { E } _ { \mathbf { H } ^ { ( L ) } } \bigg [ \Big \| \mathrm { E } _ { \Gamma ^ { ( L + 1 ) } } \big [ f _ { L + 1 } ( \mathbf { H } ^ { ( L ) } \odot \Gamma ^ { ( L + 1 ) } ) \big ] - f _ { L + 1 } ( \mathbf { h } ^ { ( L ) } \odot \gamma ^ { ( L + 1 ) } ) \Big \| _ { 2 } \bigg ] \le \delta } \end{array} +$$ + +and + +$$ +\begin{array} { r l } & { \mathrm { E } _ { X } \left[ \Big \lVert \mathrm { E } _ { S _ { L } } \Big [ f _ { L + 1 } ( \mathbf { H } ^ { ( L ) } \odot \gamma ^ { ( L + 1 ) } ) \Big ] - f _ { L + 1 } ( \mathbf { h } ^ { ( L ) } \odot \gamma ^ { ( L + 1 ) } ) \Big \rVert _ { 2 } \right] } \\ { = } & { \mathrm { E } _ { X } \left[ \Big \lVert \mathrm { E } _ { S _ { L } } \Big [ f _ { L + 1 } ( \mathbf { H } ^ { ( L ) } \odot \gamma ^ { ( L + 1 ) } ) \Big ] - f _ { L + 1 } ( \mathrm { E } _ { S _ { L } } \big [ \mathbf { H } ^ { ( L ) } \big ] \odot \gamma ^ { ( L + 1 ) } ) \right. } \\ & { \left. + f _ { L + 1 } ( \mathrm { E } _ { S _ { L } } \big [ \mathbf { H } ^ { ( L ) } \big ] \odot \gamma ^ { ( L + 1 ) } ) - f _ { L + 1 } ( \mathbf { h } ^ { ( L ) } \odot \gamma ^ { ( L + 1 ) } ) \Big \rVert _ { 2 } \right] } \\ { \le } & { \mathrm { E } _ { X } \left[ \Big \lVert \mathrm { E } _ { S _ { L } } \Big [ f _ { L + 1 } ( \mathbf { H } ^ { ( L ) } \odot \gamma ^ { ( L + 1 ) } ) \Big ] - f _ { L + 1 } ( \mathrm { E } _ { S _ { L } } \big [ \mathbf { H } ^ { ( L ) } \big ] \odot \gamma ^ { ( L + 1 ) } ) \Big \rVert _ { 2 } \right] } \\ & { + \mathrm { E } _ { X } \left[ \Big \lVert f _ { L + 1 } ( \mathrm { E } _ { S _ { L } } \big [ \mathbf { H } ^ { ( L ) } \big ] \odot \gamma ^ { ( L + 1 ) } ) - f _ { L + 1 } ( \mathbf { h } ^ { ( L ) } \odot \gamma ^ { ( L + 1 ) } ) \Big \rVert _ { 2 } \right] } \end{array} +$$ + +Using Jensen’s inequality, property of operator norm and $\mathrm { E } \big [ \mathrm { V a r } [ \mathbf { H } ^ { ( l ) } | X ] \big ] \leq \sigma ^ { 2 }$ , we have + +$$ +\begin{array} { r l } & { \mathrm { E } _ { X } \left[ \Big \| \mathrm { E } _ { S _ { L } } \Big [ f _ { L + 1 } \big ( \mathbf { H } ^ { ( L ) } \odot \boldsymbol { \gamma } ^ { ( L + 1 ) } \big ) \Big ] - f _ { L + 1 } \big ( \mathrm { E } _ { S _ { L } } \big [ \mathbf { H } ^ { ( L ) } \big ] \odot \boldsymbol { \gamma } ^ { ( L + 1 ) } \big ) \Big \| _ { 2 } \right] } \\ { \leq } & { \mathrm { E } _ { \mathbf { H } ^ { ( L ) } } \left[ \Big \| f _ { L + 1 } \big ( \mathbf { H } ^ { ( L ) } \odot \boldsymbol { \gamma } ^ { ( L + 1 ) } \big ) - f _ { L + 1 } \big ( \mathrm { E } _ { S _ { L } } \big [ \mathbf { H } ^ { ( L ) } \big ] \odot \boldsymbol { \gamma } ^ { ( L + 1 ) } \big ) \Big \| _ { 2 } \right] } \\ { \leq } & { B \gamma \mathrm { E } _ { \mathbf { H } ^ { ( L ) } } \left[ \big \| \mathbf { H } ^ { ( L ) } - \mathrm { E } _ { S _ { L } } \big [ \mathbf { H } ^ { ( L ) } \big ] \big \| _ { 2 } \right] } \\ { \leq } & { B \gamma \left( \mathrm { E } _ { \mathbf { H } ^ { ( L ) } } \left[ \big \| \mathbf { H } ^ { ( L ) } - \mathrm { E } _ { S _ { L } } \big [ \mathbf { H } ^ { ( L ) } \big ] \big \| _ { 2 } ^ { 2 } \right] \right) ^ { \frac { 1 } { 2 } } \leq B \gamma \sigma } \end{array} +$$ + +From Eq. 1 + +$$ +\begin{array} { r l } & { \mathrm { E } _ { X } \bigg [ \Big \| f _ { L + 1 } \big ( \mathrm { E } _ { S _ { L } } \big [ \mathbf { H } ^ { ( L ) } \big ] \odot \boldsymbol { \gamma } ^ { ( L + 1 ) } \big ) - f _ { L + 1 } \big ( \mathbf { h } ^ { ( L ) } \odot \boldsymbol { \gamma } ^ { ( L + 1 ) } \big ) \Big \| _ { 2 } \bigg ] } \\ { = } & { B \gamma \mathrm { E } _ { X } \Big [ \big \| \mathrm { E } _ { S _ { L } } \big [ \mathbf { H } ^ { ( L ) } \big ] - \mathbf { h } ^ { ( L ) } \big \| _ { 2 } \Big ] \leq B \gamma \Delta _ { L } } \end{array} +$$ + +Finally, to sum up with Eq. 3, Eq. 4, , Eq. 5, , Eq. 6, we have + +$$ +\begin{array} { r l } & { \mathrm { E } _ { X } \Big [ \big \| \mathrm { E } _ { S _ { L + 1 } } \big [ \mathbf { H } ^ { ( L + 1 ) } \big ] - \mathbf { h } ^ { ( L + 1 ) } \big \| _ { 2 } \Big ] } \\ { \leq } & { \delta + B \gamma \sigma + B \gamma \Delta _ { L } } \\ { = } & { ( B \gamma ) ^ { L } \delta + ( \delta + B \gamma \sigma ) \bigg ( \frac { 1 - ( B \gamma ) ^ { L } } { 1 - B \gamma } \bigg ) = \Delta _ { L + 1 } } \end{array} +$$ + +# C EXPECTATION-LINEARIZATION + +C.1 PROOF OF THEOREM 4: UNIFORM DEVIATION BOUND + +Before proving Theorem 4, we first define the notations. + +Let $X ^ { n } = \{ X _ { 1 } , \ldots , X _ { n } \}$ be a set of $n$ samples of input $X$ . For a function space $\mathcal { F } : \mathcal { X } \mathcal { R }$ , we use $R a d _ { n } ( \mathcal { F } , X ^ { n } )$ to denote the empirical Rademacher complexity of $\mathcal { F }$ , + +$$ +R a d _ { n } ( \mathcal { F } , X ^ { n } ) = \mathrm { E } _ { \sigma } \left[ \operatorname* { s u p } _ { f \in \mathcal { F } } \Big ( \frac { 1 } { n } \sum _ { i = 1 } ^ { n } \sigma _ { i } f ( X _ { i } ) \Big ) \right] +$$ + +and the Rademacher complexity is defined as + +$$ +R a d _ { n } ( \mathcal { F } ) = \mathrm { E } _ { X ^ { n } } \Big [ R a d _ { n } ( \mathcal { F } , X ^ { n } ) \Big ] +$$ + +In addition, we import the definition of dropout Rademacher complexity from Gao & Zhou (2014): + +$$ +\begin{array} { r c l } { \mathcal { R } _ { n } ( \mathcal { H } , X ^ { n } , S ^ { n } ) } & { = } & { \operatorname { E } _ { \sigma } \bigg [ \underset { h \in \mathcal { H } } { \operatorname* { s u p } } \Big ( \frac { 1 } { n } \sum _ { i = 1 } ^ { n } \sigma _ { i } h ( X _ { i } , S _ { i } ) \Big ) \bigg ] } \\ { \mathcal { R } _ { n } ( \mathcal { H } ) } & { = } & { \operatorname { E } _ { X ^ { n } , S ^ { n } } \Big [ R a d _ { n } ( \mathcal { H } , X ^ { n } , S ^ { n } ) \Big ] } \end{array} +$$ + +where $\mathcal { H } : \mathcal { X } \times \mathcal { S } \mathcal { R }$ is a function space defined on input space $\mathcal { X }$ and dropout variable space $s$ . $\mathcal { R } _ { n } ( \mathcal { H } , X ^ { n } , S ^ { n } )$ and $\textstyle { \mathcal { R } } _ { n } ( { \mathcal { H } } )$ are the empirical dropout Rademacher complexity and dropout Rademacher complexity, respectively. We further denote $\mathcal { R } _ { n } ( \mathcal { H } , X ^ { n } ) \stackrel { \Delta } { = } \mathrm { E } _ { S ^ { n } } \left[ \stackrel { \cdot } { R a d _ { n } } ( \mathcal { H } , X ^ { n } , S ^ { n } ) \right]$ . + +Now, we define the following function spaces: + +$$ +\begin{array} { r c l } { \mathcal { F } } & { = } & { \bigg \{ f ( x ; \theta ) : f ( x ; \theta ) = \mathrm { E } _ { S } \Big [ \mathbf { H } ^ { ( L ) } ( x , S ; \theta ) \Big ] , \theta \in \Theta \bigg \} } \\ { \mathcal { G } } & { = } & { \bigg \{ g ( x ; \theta ) : g ( x ; \theta ) = \mathbf { h } ^ { ( L ) } ( x , \mathrm { E } [ S ] ; \theta ) , \theta \in \Theta \bigg \} } \\ { \mathcal { H } } & { = } & { \bigg \{ h ( x , s ; \theta ) : h ( x , s ; \theta ) = \mathbf { h } ^ { ( L ) } ( x , s ; \theta ) , \theta \in \Theta \bigg \} } \end{array} +$$ + +Then, the function space of $v ( x ) = f ( x ) - g ( x )$ is $\mathcal { V } = \{ f ( x ) - g ( x ) : f \in \mathcal { F } , g \in \mathcal { G } \}$ Lemma 7. + +$$ +R a d _ { n } ( { \mathcal { F } } , X ^ { n } ) \leq { \mathcal { R } } _ { n } ( { \mathcal { H } } , X ^ { n } ) +$$ + +Proof. + +$$ +\begin{array} { r l } & { { \mathcal { R } } _ { n } ( { \mathcal { H } } , X ^ { n } ) = \mathbb { E } _ { S ^ { n } } \left[ R a d _ { n } ( { \mathcal { H } } , X ^ { n } , S ^ { n } ) \right] } \\ { = } & { \mathbb { E } _ { S ^ { n } } \Bigg [ \mathbb { E } _ { \sigma } \Bigg [ \underset { h \in \mathcal { H } } { \operatorname* { s u p } } \left( \frac { 1 } { n } \frac { \sqrt { 2 } } { i _ { 0 } ^ { - 1 } } \sigma _ { i } h ( X _ { i } , S _ { i } ) \right) \Bigg ] \Bigg ] } \\ { = } & { \mathbb { E } _ { \sigma } \Bigg [ \mathbb { E } _ { S ^ { n } } \Bigg [ \underset { h \in \mathcal { H } } { \operatorname* { s u p } } \left( \frac { 1 } { n } \frac { \sqrt { 2 } } { i _ { 0 } ^ { - 1 } } \sigma _ { i } h ( X _ { i } , S _ { i } ) \right) \Bigg ] \Bigg ] } \\ { \geq } & { \mathbb { E } _ { \sigma } \Bigg [ \underset { h \in \mathcal { H } } { \operatorname* { s u p } } \mathbb { E } _ { S ^ { n } } \Bigg [ \left( \frac { 1 } { n } \frac { \sqrt { 2 } } { i _ { 0 } ^ { - 1 } } \sigma _ { i } h ( X _ { i } , S _ { i } ) \right) \Bigg ] \Bigg ] } \\ { = } & { \mathbb { E } _ { \sigma } \Bigg [ \underset { h \in \mathcal { H } } { \operatorname* { s u p } } \left( \frac { 1 } { n } \frac { \sqrt { 2 } } { i _ { 0 } ^ { - 1 } } \sigma _ { i } \mathbb { E } _ { S _ { i } } \big [ h ( X _ { i } , S _ { i } ) \big ] \right) \Bigg ] } \\ { = } & { \mathbb { E } _ { \sigma } \Bigg [ \underset { h \in \mathcal { H } } { \operatorname* { s u p } } \left( \frac { 1 } { n } \frac { \sqrt { 2 } } { i _ { 0 } ^ { - 1 } } \sigma _ { i } \mathbb { E } _ { S _ { i } } \big [ \mathbb { H } ^ { ( L ) } ( X _ { i } , S _ { i } ; \theta ) \big ] \right) \Bigg ] = R a d _ { n } ( \mathcal { F } , X ^ { n } ) } \end{array} +$$ + +From Lemma 7, we have $R a d _ { n } ( \mathcal { F } ) \leq \mathcal { R } _ { n } ( \mathcal { H } )$ . + +Lemma 8. + +$$ +\begin{array} { r l r } { \mathcal { R } _ { n } ( \mathcal { H } ) } & { \leq } & { \frac { \alpha B ^ { L } \gamma ^ { L / 2 } } { \sqrt { n } } } \\ { R a d _ { n } ( \mathcal { G } ) } & { \leq } & { \frac { \alpha B ^ { L } } { \sqrt { n } } } \end{array} +$$ + +Proof. See Theorem 4 in Gao & Zhou (2014). + +Now, we can prove Theorem 4. + +# Proof of Theorem 4 + +Proof. From Rademacher-based uniform bounds theorem, with probability $\geq 1 - \delta$ + +$$ +\operatorname* { s u p } _ { v \in \mathcal { V } } | \Delta - \hat { \Delta } | < 2 R a d _ { n } ( \mathcal { V } ) + \beta \sqrt { \frac { \log ( 1 / \delta ) } { n } } +$$ + +Since $\mathcal { V } = \mathcal { F } - \mathcal { G }$ , we have + +$$ +R a d _ { n } ( \mathcal { V } ) = R a d _ { n } ( \mathcal { F } - \mathcal { G } ) \leq R a d _ { n } ( \mathcal { F } ) + R a d _ { n } ( \mathcal { G } ) \leq \frac { \alpha B ^ { L } ( \gamma ^ { L / 2 } + 1 ) } { \sqrt { n } } +$$ + +Then, finally, we have that with probability $\geq 1 - \delta$ , + +$$ +\operatorname* { s u p } _ { \theta \in \Theta } | \Delta - \hat { \Delta } | < \frac { 2 \alpha B ^ { L } ( \gamma ^ { L / 2 } + 1 ) } { \sqrt { n } } + \beta \sqrt { \frac { \log ( 1 / \delta ) } { n } } +$$ + +C.2 PROOF OF THEOREM 5: NON-UNIFORM BOUND OF MODEL ACCURACY + +For convenience, we denote $\lambda = \{ \theta _ { 1 } , \dots , \theta _ { L - 1 } \}$ . Then $\theta = \{ \lambda , \eta \}$ , and MLE $\hat { \theta } = \{ \hat { \lambda } , \hat { \eta } \}$ Lemma 9. + +$$ +\| \nabla f _ { L } ( \cdot ; \eta ) ^ { T } \| _ { o p } \leq 2 \| \eta \| _ { 2 } +$$ + +Proof. denote + +$$ +\begin{array} { c } { A = \nabla f _ { L } ( \cdot ; \boldsymbol { \eta } ) ^ { T } = \left[ p _ { y } ( \eta _ { y } - \overline { { \boldsymbol { \eta } } } ) ^ { T } \right] \Big | _ { y = 1 } ^ { k } } \\ { p _ { y } = p ( y | \boldsymbol { x } , s ; \theta ) , \overline { { \boldsymbol { \eta } } } = \mathrm { E } \left[ \eta _ { Y } \right] = \displaystyle \sum _ { y = 1 } ^ { k } p _ { y } \eta _ { y } . } \end{array} +$$ + +For each $v$ such that $\| v \| _ { 2 } = 1$ , + +$$ +\begin{array} { r c l } { \| A v \| _ { 2 } ^ { 2 } } & { = } & { \displaystyle \sum _ { y \in \mathcal { V } } \left( p _ { y } \left( \eta _ { y } - \overline { { \eta } } \right) ^ { T } v \right) ^ { 2 } \leq \sum _ { y \in \mathcal { V } } \| p _ { y } \left( \eta _ { y } - \overline { { \eta } } \right) \| _ { 2 } ^ { 2 } \| v \| _ { 2 } ^ { 2 } = \displaystyle \sum _ { y \in \mathcal { V } } \| p _ { y } \left( \eta _ { y } - \overline { { \eta } } \right) \| _ { 2 } ^ { 2 } } \\ & { \leq } & { \displaystyle \sum _ { y \in \mathcal { V } } p _ { y } \| \eta _ { y } - \overline { { \eta } } \| _ { 2 } ^ { 2 } \leq \sum _ { y \in \mathcal { V } } 2 p _ { y } \left( \| \eta \| _ { 2 } ^ { 2 } + \sum _ { y ^ { \prime } \in \mathcal { V } } p _ { y ^ { \prime } } \| \eta _ { y ^ { \prime } } \| _ { 2 } ^ { 2 } \right) } \\ & { = } & { \displaystyle 4 \sum _ { y \in \mathcal { V } } p _ { y } \| \eta _ { y } \| _ { 2 } ^ { 2 } \leq 4 \| \eta \| _ { 2 } ^ { 2 } } \end{array} +$$ + +So we have $\| A \| _ { o p } \leq 2 \| \eta \| _ { 2 }$ + +Lemma 10. If parameter $\tilde { \theta } = \{ \hat { \lambda } , \eta \}$ satisfies that $\begin{array} { r } { \| \eta \| _ { 2 } \le \frac { \delta } { 4 \beta } } \end{array}$ , then $V ( D ; { \tilde { \theta } } ) \leq \delta$ , where $V ( D ; \theta )$ is defined in Eq. (16). + +Proof. Let $S _ { L } = \{ \Gamma ^ { ( 1 ) } , \dots , \Gamma ^ { ( L ) } \}$ , and let $\mathbf { H } ^ { ( l ) }$ and $\mathbf { h } ^ { ( l ) }$ be short for $\mathbf { H } ^ { ( l ) } ( X , S _ { l } ; \tilde { \theta } )$ and $\mathbf { h } ^ { ( l ) } ( X , \mathrm { E } ( S _ { l } ) ; \tilde { \theta } )$ , respectively. + +From lemma 9, we have $\| f _ { L } ( x ; \eta ) - f _ { L } ( y ; \eta ) \| _ { 2 } \leq 2 \| \eta \| _ { 2 } \| x - y \| _ { 2 }$ . Then, + +$$ +\begin{array} { r c l } { \left\| \boldsymbol { \mathrm { E } } _ { S _ { L } } \left[ \mathbf { H } ^ { L } \right] - \mathbf { h } ^ { L } \right\| _ { 2 } } & { = } & { \left\| \boldsymbol { \mathrm { E } } _ { S _ { L - 1 } } \left[ f _ { L } ( \mathbf { H } ^ { ( L - 1 ) } ; \boldsymbol { \eta } ) \right] - f _ { L } ( \mathbf { h } ^ { ( L - 1 ) } ; \boldsymbol { \eta } ) \right\| _ { 2 } } \\ & { \leq } & { \boldsymbol { \mathrm { E } } _ { S _ { L - 1 } } \left\| f _ { L } ( \mathbf { H } ^ { ( L - 1 ) } ; \boldsymbol { \eta } ) - f _ { L } ( \mathbf { h } ^ { ( L - 1 ) } ; \boldsymbol { \eta } ) \right\| _ { 2 } } \\ & { \leq } & { 2 \| \boldsymbol { \eta } \| _ { 2 } \left\| \mathbf { H } ^ { ( L - 1 ) } - \mathbf { h } ^ { ( L - 1 ) } \right\| _ { 2 } } \\ & { \leq } & { 4 \beta \| \boldsymbol { \eta } \| _ { 2 } \leq \delta } \end{array} +$$ + +Lemma 10 says that we can get $\theta$ satisfying the expectation-linearization constrain by explicitly scaling down $\hat { \eta }$ while keeping $\hat { \lambda }$ . + +In order to prove Theorem 5, we make the following assumptions: + +• The dimension of $\mathbf { h } ^ { ( L - 1 ) }$ is $d$ , i.e. $\mathbf { h } ^ { ( L - 1 ) } \in \mathcal { R } ^ { d }$ . • Since $\forall y \in \mathcal { V } , p ( y | x ; \hat { \theta } ) > 0$ , we assume $p ( y | x ; \hat { \theta } ) \geq 1 / b$ , where $b \geq | \mathcal { V } | = k$ . • As in the body text, let $p ( \boldsymbol { y } | \boldsymbol { x } , s ; \hat { \theta } )$ be nonuniform, and in particular let $\hat { \eta } _ { y ^ { * } } ^ { T } \mathbf { h } ^ { ( L - 1 ) } ( x , s ; \hat { \lambda } ) - \hat { \eta } _ { y } ^ { T } \mathbf { h } ^ { ( L - 1 ) } ( x , s ; \hat { \lambda } ) > c \| \hat { \eta } \| _ { 2 } , \forall y \neq y ^ { * } .$ . + +For convenience, we denote $\eta ^ { T } \mathbf { h } ^ { ( L - 1 ) } ( x , s ; \lambda ) = \eta ^ { T } u _ { y } ( x , s ; \lambda )$ , where $u _ { y } ^ { T } ( x , s ; \lambda ) = ( v _ { 0 } ^ { T } , \ldots , v _ { k } ^ { T } )$ and + +$$ +v _ { i } = { \left\{ \begin{array} { l l } { \mathbf { h } ^ { ( L - 1 ) } ( x , s ; \lambda ) } & { { \mathrm { i f ~ } } i = y } \\ { 0 } & { { \mathrm { o t h e r w i s e } } } \end{array} \right. } +$$ + +To prove Theorem 5, we first prove the following lemmas. + +Lemma 11. If $p ( y | x ; \hat { \theta } ) \geq 1 / b ,$ , then $\forall \alpha \in [ 0 , 1 ] ,$ , for parameter $\tilde { \theta } = \{ \hat { \lambda } , \alpha \hat { \eta } \}$ , we have + +$$ +p ( y | x ; \tilde { \theta } ) \geq \frac { 1 } { b } +$$ + +Proof. We define + +$$ +f ( \alpha ) \overset { \Delta } { = } ( y | x , s ; \tilde { \theta } ) = \frac { e ^ { \alpha \eta _ { y } ^ { T } \mathbf { h } ^ { ( L - 1 ) } ( x , s ; \hat { \lambda } ) } } { \displaystyle \sum _ { y ^ { \prime } \in \mathcal { Y } } e ^ { \alpha \eta _ { y ^ { \prime } } ^ { T } \mathbf { h } ^ { ( L - 1 ) } ( x , s ; \hat { \lambda } ) } } = \frac { \left( e ^ { \eta _ { y } ^ { T } \mathbf { h } ^ { ( L - 1 ) } ( x , s ; \hat { \lambda } ) } \right) ^ { \alpha } } { \displaystyle \sum _ { y ^ { \prime } \in \mathcal { Y } } \left( e ^ { \eta _ { y ^ { \prime } } ^ { T } \mathbf { h } ^ { ( L - 1 ) } ( x , s ; \hat { \lambda } ) } \right) ^ { \alpha } } +$$ + +Since $\mathcal { V } = \{ 1 , \ldots , k \}$ , for fixed $x \in { \mathcal { X } } , s \in { \mathcal { S } } , \log f ( \alpha )$ is a concave function w.r.t $\alpha$ . Since $b \geq k$ , we have + +$$ +\log f ( \alpha ) \geq ( 1 - \alpha ) \log f ( 0 ) + \alpha \log f ( 1 ) \geq - \log b +$$ + +So we have $\forall x , s , p ( y | x , s ; \tilde { \theta } ) \geq 1 / b$ . Then + +$$ +p ( \boldsymbol { y } | \boldsymbol { x } ; \tilde { \boldsymbol { \theta } } ) = \mathrm { E } _ { S } \left[ p ( \boldsymbol { y } | \boldsymbol { x } , S ; \hat { \boldsymbol { \theta } } ) \right] \geq \frac { 1 } { b } +$$ + +Lemma 12. if y is not the majority class, i.e. $y \neq y ^ { * }$ , then for parameter $\tilde { \theta } = \{ \hat { \lambda } , \alpha \hat { \eta } \}$ + +$$ +p ( y | x , s , \tilde { \theta } ) \leq e ^ { - c \alpha \| \hat { \eta } \| _ { 2 } } +$$ + +Proof. + +$$ +p ( y | x , s , \widetilde { \theta } ) = \frac { e ^ { \alpha \widehat { \eta } ^ { T } u _ { y } } } { \displaystyle \sum _ { y ^ { \prime } \in \mathcal { V } } e ^ { \alpha \widehat { \eta } ^ { T } u _ { y ^ { \prime } } } } \le \frac { e ^ { \alpha \widehat { \eta } ^ { T } u _ { y } } } { e ^ { \alpha \widehat { \eta } ^ { T } u _ { y ^ { * } } } } \le e ^ { - c \alpha \| \widehat { \eta } \| _ { 2 } } +$$ + +Lemma 13. For a fixed $x$ and s, the absolute value of the entry of the vector under the parameter $\tilde { \theta } = \{ \hat { \lambda } , \alpha \hat { \eta } \}$ : + +$$ +| p ( y | x , s ; \tilde { \theta } ) ( u _ { y } - \mathrm { E } _ { Y } [ u _ { Y } ] ) | _ { i } \le \beta ( k - 1 ) e ^ { - c \alpha \| \hat { \eta } \| _ { 2 } } +$$ + +Proof. Suppose $y$ is the majority class of $p ( \boldsymbol { y } | \boldsymbol { x } , s ; \tilde { \theta } )$ . Then, + +$$ +u _ { y } - \mathrm { E } _ { y } [ u _ { Y } ] = \left( v _ { y ^ { \prime } } \right) _ { y ^ { \prime } = 1 } ^ { k } +$$ + +where + +$$ +v _ { y } = { \left\{ \begin{array} { l l } { ( 1 - p ( y | x , s ; { \tilde { \theta } } ) \mathbf { h } ^ { ( L - 1 ) } } & { { \mathrm { i f ~ } } y = y ^ { * } } \\ { - p ( y | x , s ; { \tilde { \theta } } ) \mathbf { h } ^ { ( L - 1 ) } } & { { \mathrm { o t h e r w i s e } } } \end{array} \right. } +$$ + +From Lemma 12, we have + +$$ +| p ( y | x , s ; \tilde { \theta } ) ( u _ { y } - \mathrm { E } _ { Y } [ u _ { Y } ] ) | _ { i } \le | ( u _ { y } - \mathrm { E } _ { Y } [ u _ { Y } ] ) | _ { i } \le \beta ( k - 1 ) e ^ { - c \alpha | | \hat { \eta } | | _ { 2 } } +$$ + +Now, we suppose $y$ is not the majority class of $p ( \boldsymbol { y } | \boldsymbol { x } , s ; \tilde { \boldsymbol { \theta } } )$ . Then, + +$$ +| p ( y | x , s ; \tilde { \theta } ) ( u _ { y } - \mathrm { E } _ { Y } [ u _ { Y } ] ) | _ { i } \le p ( y | x , s ; \tilde { \theta } ) \beta \le \beta e ^ { - c \alpha \| \hat { \eta } \| _ { 2 } } +$$ + +Overall, the lemma follows. + +Lemma 14. We denote the matrix + +$$ +\begin{array} { r l } { A \stackrel { \Delta } { = } } & { \mathrm { E } _ { S } \left[ \frac { p ( y | x , s ; \tilde { \theta } ) } { p ( y | x ; \tilde { \theta } ) } ( u _ { y } - \mathrm { E } _ { Y } [ u _ { Y } ] ) ( u _ { y } - \mathrm { E } _ { Y } [ u _ { Y } ] ) ^ { T } \right] } \\ & { - \mathrm { E } _ { S } \left[ \frac { p ( y | x , s ; \tilde { \theta } ) } { p ( y | x ; \tilde { \theta } ) } ( u _ { y } - \mathrm { E } _ { Y } [ u _ { Y } ] ) \right] \mathrm { E } _ { S } \left[ \frac { p ( y | x , s ; \tilde { \theta } ) } { p ( y | x ; \tilde { \theta } ) } ( u _ { y } - \mathrm { E } _ { Y } [ u _ { Y } ] ) \right] ^ { T } } \end{array} +$$ + +Then the absolute value of the entry of $A$ under the parameter $\tilde { \theta } = \{ \hat { \lambda } , \alpha \hat { \eta } \}$ : + +$$ +| A _ { i j } | \leq 2 b ( k - 1 ) \beta ^ { 2 } e ^ { - c \alpha \| \hat { \eta } \| _ { 2 } } +$$ + +Proof. From Lemma 11, we have $p ( y | x ; \tilde { \theta } ) \geq 1 / b$ . Additionally, the absolute value of the entry of $u _ { y } - \operatorname { E } _ { Y } [ u _ { Y } ]$ is bounded by $\beta$ . We have for each $i$ + +$$ +\begin{array} { r } { \left| \mathrm { E } _ { S } \left[ \frac { p ( y | x , s ; \tilde { \theta } ) } { p ( y | x ; \tilde { \theta } ) } ( u _ { y } - \mathrm { E } _ { Y } [ u _ { Y } ] ) \right] \right| _ { i } \le \mathrm { E } _ { S } \left[ \frac { p ( y | x , s ; \tilde { \theta } ) } { p ( y | x ; \tilde { \theta } ) } \beta \right] = \beta } \end{array} +$$ + +Then from Lemma 13 + +$$ +| A _ { i j } | \leq 2 b ( k - 1 ) \beta ^ { 2 } e ^ { - c \alpha \| \hat { \eta } \| _ { 2 } } +$$ + +Lemma 15. We denote the matrix + +$$ +B \overset { \Delta } { = } \mathrm { E } _ { S } \left[ \frac { p ( y | x , s ; \tilde { \theta } ) } { p ( y | x ; \tilde { \theta } ) } \left( \mathrm { E } _ { Y } \left[ u _ { Y } u _ { Y } ^ { T } \right] - \mathrm { E } _ { Y } [ u _ { Y } ] \mathrm { E } _ { Y } [ u _ { Y } ] ^ { T } \right) \right] +$$ + +Then the absolute value of the entry of $B$ under the parameter $\tilde { \theta } = \{ \hat { \lambda } , \alpha \hat { \eta } \}$ : + +$$ +| B _ { i j } | \leq 2 ( k - 1 ) \beta ^ { 2 } e ^ { - c \alpha \| \hat { \eta } \| _ { 2 } } +$$ + +Proof. We only need to prove that for fixed $x$ and $s$ , for each $i , j$ : + +$$ +\begin{array} { r } { \left| \mathrm { E } _ { Y } \left[ u _ { Y } u _ { Y } ^ { T } \right] - \mathrm { E } _ { Y } [ u _ { Y } ] \mathrm { E } _ { Y } [ u _ { Y } ] ^ { T } \right| _ { i j } \leq 2 ( k - 1 ) \beta ^ { 2 } e ^ { - c \alpha \| \hat { \eta } \| _ { 2 } } } \end{array} +$$ + +Since + +$$ +\mathbb { E } _ { Y } \left[ u _ { Y } u _ { Y } ^ { T } \right] - \mathbb { E } _ { Y } [ u _ { Y } ] \mathbb { E } _ { Y } [ u _ { Y } ] ^ { T } \big | _ { i j } = \big | \mathrm { C o v } _ { Y } [ ( u _ { Y } ) _ { i } , ( u _ { Y } ) _ { j } ] \big | \le \beta ^ { 2 } \sum _ { y = 1 } ^ { k } p ( y | x , s ; \tilde { \theta } ) - p ( y | x , s ; \tilde { \theta } ) ^ { 2 } +$$ + +Suppose $y$ is the majority class. Then from Lemma 12, + +$$ +\begin{array} { r } { p ( y | x , s ; \tilde { \theta } ) - p ( y | x , s ; \tilde { \theta } ) ^ { 2 } \leq 1 - p ( y | x , s ; \tilde { \theta } ) \leq ( k - 1 ) e ^ { - c \alpha \| \hat { \eta } \| _ { 2 } } } \end{array} +$$ + +If $y$ is not the majority class. Then, + +$$ +p ( y | x , s ; \tilde { \theta } ) - p ( y | x , s ; \tilde { \theta } ) ^ { 2 } \leq p ( y | x , s ; \tilde { \theta } ) \leq e ^ { - c \alpha \| \hat { \eta } \| _ { 2 } } +$$ + +So we have + +$$ +\sum _ { y = 1 } ^ { k } p ( y | x , s ; \tilde { \theta } ) - p ( y | x , s ; \tilde { \theta } ) ^ { 2 } \leq 2 ( k - 1 ) e ^ { - c \alpha \| \hat { \eta } \| _ { 2 } } +$$ + +The lemma follows. + +Lemma 16. Under the parameter $\tilde { \theta } = \{ \hat { \lambda } , \alpha \hat { \eta } \}$ , the largest eigenvalue of the matrix + +$$ +{ \frac { 1 } { n } } \sum _ { i = 1 } ^ { n } { \big ( } A ( x _ { i } , y _ { i } ) - B ( x _ { i } , y _ { i } ) { \big ) } +$$ + +is at most + +$$ +2 d k ( k - 1 ) ( b + 1 ) \beta ^ { 2 } e ^ { - c \alpha \| \hat { \eta } \| _ { 2 } } +$$ + +Proof. From Lemma 14 and Lemma 15, each entry of the matrix in (8) is at most $2 ( k - 1 ) ( b +$ $1 ) \beta ^ { 2 } e ^ { - c \alpha \| \hat { \eta } \| _ { 2 } }$ . Thus, by Gershgorin’s theorem, the maximum eigenvalue of the matrix in (8) is at most 2dk(k − 1)(b + 1)β2e−cαkηˆk2 . □ + +Now, we can prove Theorem 5 by constructing a scaled version of $\hat { \theta }$ that satisfies the expectationlinearization constraint. + +# Proof of Theorem 5 + +Proof. Consider the likelihood evaluated at $\tilde { \theta } = \{ \hat { \lambda } , \alpha \hat { \eta } \}$ , where $\begin{array} { r } { \alpha = \frac { \delta } { 4 \beta \| \hat { \eta } \| _ { 2 } } } \end{array}$ . If $\alpha > 1$ , then $\begin{array} { r } { \| \eta \| _ { 2 } > \frac { \delta } { 4 \beta } } \end{array}$ . We know the MLE $\hat { \theta }$ already satisfies the expectation-linearization constraint. So we can assume that $0 \leq \alpha \leq 1$ , and we know that $\tilde { \theta }$ satisfies $V ( D ; \tilde { \theta } ) \le \delta$ . Then, + +$$ +\Delta _ { l } ( \hat { \theta } , \hat { \theta } _ { \delta } ) \leq \Delta _ { l } ( \hat { \theta } , \tilde { \theta } ) = \frac { 1 } { n } ( l ( D ; \hat { \theta } ) - l ( D ; \tilde { \theta } ) ) = g ( \hat { \lambda } , \hat { \eta } ) - g ( \hat { \lambda } , \alpha \hat { \eta } ) +$$ + +where $\begin{array} { r } { g ( \lambda , \eta ) = \frac { 1 } { n } l ( D ; ( \lambda , \eta ) ) } \end{array}$ . Taking the second-order Taylor expansion about $\eta$ , we have + +$$ +g ( \hat { \lambda } , \alpha \hat { \eta } ) = g ( \hat { \lambda } , \hat { \eta } ) + \nabla _ { \eta } ^ { T } g ( \hat { \lambda } , \hat { \eta } ) ( \alpha \hat { \eta } - \hat { \eta } ) + ( \alpha \hat { \eta } - \hat { \eta } ) ^ { T } \nabla _ { \eta } ^ { 2 } g ( \hat { \lambda } , \hat { \eta } ) ( \alpha \hat { \eta } - \hat { \eta } ) +$$ + +Since $\hat { \theta }$ is the MLE, the first-order term $\nabla _ { \eta } ^ { T } g ( \hat { \lambda } , \hat { \eta } ) ( \alpha \hat { \eta } - \hat { \eta } ) = 0$ . The Hessian in the second-order term is just Eq.(8). Thus, from Lemma 16 we have + +$$ +\begin{array} { r c l } { g ( \hat { \lambda } , \alpha \hat { \eta } ) } & { \leq } & { g ( \hat { \lambda } , \hat { \eta } ) - ( 1 - \alpha ) ^ { 2 } \| \hat { \eta } \| _ { 2 } ^ { 2 } 2 d k ( k - 1 ) ( b + 1 ) \beta ^ { 2 } e ^ { - c \alpha \| \hat { \eta } \| _ { 2 } } } \\ & { = } & { g ( \hat { \lambda } , \hat { \eta } ) - 2 d k ( k - 1 ) ( b + 1 ) \beta ^ { 2 } \left( \| \hat { \eta } \| _ { 2 } - \frac { \delta } { 4 \beta } \right) ^ { 2 } e ^ { - c \delta / 4 \beta } } \\ & { = } & { g ( \hat { \lambda } , \hat { \eta } ) - c _ { 1 } \beta ^ { 2 } \left( \| \hat { \eta } \| _ { 2 } - \frac { \delta } { 4 \beta } \right) ^ { 2 } e ^ { - c _ { 2 } \delta / 4 \beta } } \end{array} +$$ + +with setting $c 1 = 2 d k ( k - 1 ) ( b + 1 )$ and $c 2 = c$ . Then the theorem follows. + +C.3 PROOF OF THEOREM 6: UNIFORM BOUND OF MODEL ACCURACY + +In the following, we denote $\tilde { \theta } = \{ \hat { \lambda } , \alpha \hat { \eta } \}$ . + +Lemma 17. For each $y \in \mathcal { V }$ , if $p ( y | x , s ; \hat { \theta } ) \geq 1 / k$ , then $\forall \alpha \in [ 0 , 1 ]$ + +$$ +p ( y | x , s ; \tilde { \theta } ) \geq \frac { 1 } { k } +$$ + +Proof. This lemma can be regarded as a corollary of Lemma 11. + +Lemma 18. For a fixed $x$ and $s$ , we denote $e ^ { \hat { \eta } _ { y } ^ { T } \mathbf { h } ^ { ( L - 1 ) } ( x , s ; \hat { \lambda } ) } = w _ { y }$ . Then we have + +$$ +p ( y | x , s , \tilde { \theta } ) = \frac { e ^ { \alpha \hat { \eta } _ { y } ^ { T } \mathbf { h } ^ { ( L - 1 ) } ( x , s ; \hat { \lambda } ) } } { \displaystyle \sum _ { y ^ { \prime } \in \mathcal { Y } } e ^ { \alpha \hat { \eta } _ { y ^ { \prime } } ^ { T } \mathbf { h } ^ { ( L - 1 ) } ( x , s ; \hat { \lambda } ) } } = \frac { ( w _ { y } ) ^ { \alpha } } { { \displaystyle \sum _ { y ^ { \prime } \in \mathcal { Y } } ( w _ { y ^ { \prime } } ) ^ { \alpha } } } +$$ + +Additionally, we denote $g _ { s } ( \alpha ) = \sum _ { y ^ { \prime } \in \mathcal { V } } p ( y ^ { \prime } | x , s ; \tilde { \theta } ) \log w _ { y ^ { \prime } } - \log w _ { y }$ . We assume $g _ { s } ( 0 ) \geq 0$ . Then we have $\forall \alpha \geq 0$ + +$$ +g _ { s } ( \alpha ) \geq 0 +$$ + +Proof. + +$$ +\frac { \partial g _ { s } ( \alpha ) } { \partial \alpha } = \sum _ { y ^ { \prime } \in \mathcal { Y } } \log w _ { y ^ { \prime } } \frac { \partial p ( y ^ { \prime } | x , s ; \tilde { \theta } ) } { \partial \alpha } = \mathrm { V a r } _ { Y } \left[ \log w _ { Y } | X - x , S = s \right] \geq 0 +$$ + +So $g _ { s } ( \alpha )$ is non-decreasing. Since $g _ { s } ( 0 ) \geq 0$ , we have $g _ { s } ( \alpha ) \geq 0$ when $\alpha \geq 0$ . + +From above lemma, we have for each training instance $( x _ { i } , y _ { i } ) \in D$ , and $\forall \alpha \in [ 0 , 1 ]$ , + +$$ +\mathrm { E } _ { Y } \left[ \log p ( Y | x _ { i } , s ; \tilde { \theta } ) \right] \geq \log p ( y _ { i } | x _ { i } , s ; \tilde { \theta } ) +$$ + +For convenience, we define + +$$ +m ( s , y ) = \log p ( y | x , s ; \tilde { \theta } ) - \mathrm { E } _ { Y } \left[ \log p ( Y | x , s ; \tilde { \theta } ) \right] +$$ + +Lemma 19. If y satisfies Lemma $^ { 1 7 }$ and $g _ { s } ( \alpha ) \geq 0$ , then + +$$ +\operatorname { V a r } _ { Y } [ m ( s , Y ) ] \geq m ( s , y ) ^ { 2 } +$$ + +Proof. First we have + +$$ +\begin{array} { r } { m ( s , y ) = \log p ( y | x , s ; \tilde { \theta } ) - \log 1 / k - K L \left( p ( \cdot | x , s ; \tilde { \theta } ) | \mathrm { U n i f } ( \mathcal { V } ) \right) \leq 0 } \end{array} +$$ + +So we have + +$$ +\begin{array} { r c l } { \big ( \mathrm { V a r } _ { Y } [ m ( s , Y ) ] \big ) ^ { 1 / 2 } } & { = } & { \sqrt { \mathrm { E } _ { Y } \left[ \Big ( \log p ( Y | x , s ; \widetilde { \theta } ) - \mathrm { E } _ { Y } \left[ \log p ( Y | x , s ; \widetilde { \theta } ) \right] \Big ) ^ { 2 } \right] } } \\ & { \ge } & { \mathrm { E } _ { Y } \left[ \Big | \log p ( Y | x , s ; \widetilde { \theta } ) - \mathrm { E } _ { Y } \left[ \log p ( Y | x , s ; \widetilde { \theta } ) \right] \Big | \right] } \\ & { = } & { \mathrm { E } _ { Y } \left[ \Big | K L \left( p ( \cdot | x , s ; \widetilde { \theta } ) | \mathrm { U n i f } ( y ) \right) + \log 1 / k - \log p ( Y | x , s ; \widetilde { \theta } ) \Big | \right] } \\ & { = } & { \mathrm { E } _ { Y } \left[ K L \left( p ( \cdot | x , s ; \widetilde { \theta } ) | \mathrm { U n i f } ( y ) \right) + \Big | \log 1 / k - \log p ( Y | x , s ; \widetilde { \theta } ) \Big | \right] } \\ & { \ge } & { K L \left( p ( \cdot | x , s ; \widetilde { \theta } ) | \mathrm { U n i f } ( y ) \right) + \mathrm { E } _ { Y } \left[ \log p ( Y | x , s ; \widetilde { \theta } ) - \log 1 / k \right] } \\ & { = } & { 2 K L \left( p ( \cdot | x , s ; \widetilde { \theta } ) | \mathrm { U n i f } ( y ) \right) + \mathrm { E } _ { Y } \left[ \log p ( Y | x , s ; \widetilde { \theta } ) - \log 1 / k \right] } \\ & { = } & { 2 K L \left( p ( \cdot | x , s ; \widetilde { \theta } ) | \mathrm { U n i f } ( y ) \right) } \end{array} +$$ + +As $K L \left( p ( \cdot | x , s ; \tilde { \theta } ) | \mathrm { U n i f } ( y ) \right) \geq 0$ and $\log p ( y | x , s ; \tilde { \theta } ) \geq \log 1 / k$ . So we have + +$$ +\cdot K L \left( p ( \cdot | x , s ; \tilde { \theta } ) | \mathrm { U n i f } ( y ) \right) \geq K L \left( p ( \cdot | x , s ; \tilde { \theta } ) | \mathrm { U n i f } ( y ) \right) + \log 1 / k - \log p ( y | x , s ; \tilde { \theta } ) = - m ( s , y ) +$$ + +Then the lemma follows. + +From Lemma 19 and Eq. (9), we have for each training instance $( x _ { i } , y _ { i } ) \in D$ , and $\forall \alpha \in [ 0 , 1 ]$ , + +$$ +\operatorname { V a r } _ { Y } [ m ( s , Y ) ] \geq m ( s , y _ { i } ) ^ { 2 } +$$ + +Lemma 20. For each training instance $( x _ { i } , y _ { i } ) \in D$ , and $\forall \alpha \in [ 0 , 1 ]$ , we have + +$$ +\log p ( y _ { i } | x _ { i } ; \{ \hat { \lambda } , \alpha \hat { \eta } \} ) \ge ( 1 - \alpha ) \log p ( y _ { i } | x _ { i } ; \{ \hat { \lambda } , 0 \} ) + \alpha \log p ( y _ { i } | x _ { i } ; \{ \hat { \lambda } , \hat { \eta } \} ) +$$ + +Proof. We define + +$$ +f ( \alpha ) = \log p ( y _ { i } | x _ { i } ; \{ \hat { \lambda } , \alpha \hat { \eta } \} ) - ( 1 - \alpha ) \log p ( y _ { i } | x _ { i } ; \{ \hat { \lambda } , 0 \} ) - \alpha \log p ( y _ { i } | x _ { i } ; \{ \hat { \lambda } , \hat { \eta } \} ) +$$ + +Because $f ( 0 ) = f ( 1 ) = 0$ , we only need to prove that $f ( \alpha )$ is concave on $[ 0 , 1 ]$ . We have + +$$ +\nabla ^ { 2 } f ( \alpha ) = - \mathrm { E } _ { S \left. Y = y _ { i } \right. } \left[ \mathrm { V a r } _ { Y } \left[ m ( S , Y ) \right] \right] + \mathrm { V a r } _ { S \left. Y = y _ { i } \right. } \left[ m ( S , y _ { i } ) \right] +$$ + +where S|Y = yi is under the probability distribution p(s|Y = yi, xi; ˜θ) = p(yi|xi,S;θ˜)p(s)p(y |x ;θ˜) From Eq. (10), we have + +$$ +\mathrm { E } _ { S | Y = y _ { i } } \left[ \operatorname { V a r } _ { Y } \left[ m ( S , Y ) \right] \right] \geq \mathrm { E } _ { S | Y = y _ { i } } \left[ m ( S , y _ { i } ) ^ { 2 } \right] \geq \operatorname { V a r } _ { S | Y = y _ { i } } \left[ m ( S , y _ { i } ) \right] +$$ + +So we have $\nabla ^ { 2 } f ( \alpha ) \leq 0$ . The lemma follows. + +Now, we can prove Theorem 6 by using the same construction of an expectation-linearizing parameter as in Theorem 5. + +# Proof of Theorem 6 + +Proof. Consider the same parameter $\tilde { \theta } = \{ \hat { \lambda } , \alpha \hat { \eta } \}$ , where $\begin{array} { r } { \alpha = \frac { \delta } { 4 \beta \| \hat { \eta } \| _ { 2 } } \leq 1 } \end{array}$ . we know that $\tilde { \theta }$ satisfies $V ( D ; \tilde { \theta } ) \le \delta$ . Then, + +$$ +\Delta _ { l } ( \hat { \theta } , \hat { \theta } _ { \delta } ) \leq \Delta _ { l } ( \hat { \theta } , \tilde { \theta } ) = \frac { 1 } { n } ( l ( D ; \hat { \theta } ) - l ( D ; \tilde { \theta } ) ) +$$ + +From Lemma 20 we have: + +$$ +l ( D ; \tilde { \theta } ) = l ( D ; \{ \hat { \lambda } , \alpha \hat { \eta } \} ) \geq ( 1 - \alpha ) l ( D ; \{ \hat { \lambda } , 0 \} ) + \alpha l ( D ; \{ \hat { \lambda } , \hat { \eta } \} ) +$$ + +So + +$$ +\begin{array} { r c l } { \Delta _ { l } ( \hat { \theta } , \hat { \theta } _ { \delta } ) } & { \leq } & { ( 1 - \alpha ) \frac { 1 } { n } \left( l ( D ; \hat { \theta } ) - l ( D ; \{ \hat { \lambda } , 0 \} ) \right) } \\ & { = } & { ( 1 - \alpha ) \frac { 1 } { n } \displaystyle \sum _ { i = 1 } ^ { n } \log p ( y _ { i } | x _ { i } ; \hat { \theta } ) - \log \mathrm { U n i f } ( \mathcal { V } ) } \\ & { \asymp } & { ( 1 - \alpha ) \mathrm { E } \left[ \mathrm { K L } \left( p ( \cdot | X ; \theta ) \| \mathrm { U n i f } ( \mathcal { V } ) \right) \right] } \\ & { \le } & { \left( 1 - \frac { \delta } { 4 \beta \| \hat { \eta } \| _ { 2 } } \right) \mathrm { E } \left[ \mathrm { K L } \left( p ( \cdot | X ; \theta ) \| \mathrm { U n i f } ( \mathcal { V } ) \right) \right] } \end{array} +$$ + +# D DETAILED DESCRIPTION OF EXPERIMENTS + +D.1 NEURAL NETWORK ARCHITECTURES + +MNIST For MNIST, we train 6 different fully-connected (dense) neural networks with 2 or 3 layers (see Table 1). For all architectures, we used dropout rate $p = 0 . 5$ for all hidden layers and $p = 0 . 2$ for the input layer. + +CIFAR-10 and CIFAR-100 For the two CIFAR datasets, we used the same architecture in Srivastava et al. (2014) — three convolutional layers followed by two fully-connected hidden layers. The convolutional layers have 96, 128, 265 filters respectively, with a $5 \times 5$ receptive field applied with a stride of 1. Each convolutional layer is followed by a max pooling layer pools $3 \times 3$ regions at strides of 2. The fully-connected layers have 2048 units each. All units use the rectified linear activation function. Dropout was applied to all the layers with dropout rate $p = ( 0 . 1 , 0 . 2 5 , 0 . 2 5 , 0 . 5 , 0 . 5 , 0 . 5 )$ for the layers going from input to convolutional layers to fully-connected layers. + +# D.2 NEURAL NETWORK TRAINING + +Neural network training in all the experiments is performed with mini-batch stochastic gradient descent (SGD) with momentum. We choose an initial learning rate of $\eta _ { 0 }$ , and the learning rate is updated on each epoch of training as $\eta _ { t } = \eta _ { 0 } / ( 1 + \rho t )$ , where $\rho$ is the decay rate and $t$ is the number of epoch completed. We run each experiment with 2,000 epochs and choose the parameters achieving the best performance on validation sets. + +Table 3 summarizes the chosen hyper-parameters for all experiments. Most of the hyper-parameters are chosen from Srivastava et al. (2014). But for some experiments, we cannot reproduce the performance reported in Srivastava et al. (2014) (We guess one of the possible reasons is that we used different library for implementation.). For these experiments, we tune the hyper-parameters on the validation sets by random search. Due to time constrains it is infeasible to do a random search across the full hyper-parameter space. Thus, we try to use as many hyper-parameters reported in Srivastava et al. (2014) as possible. + +# D.3 EFFECT OF EXPECTATION-LINEARIZATION RATE $\lambda$ + +Table 4 illustrates the detailed results of the experiments on the effect of $\lambda$ . For MNIST, it lists the error rates under different $\lambda$ values for six different network architectures. For two datasets of CIFAR, it gives the error rates under different $\lambda$ values, among with the empirical expectation-linearization risk $\hat { \Delta }$ . + +Table 3: Hyper-parameters for all experiments. + +
ExperimentHyper-parameter
MNISTbatch sizeinitial learning rate modecay rate pmomentummomentum typemax-norm constrain2000.10.0250.9standard3.5
CIFARbatch sizeinitial learning rate nofor conv layersinitial learning rate nofor dense layersdecay rate pmomentummomentum typemax-norm constrainL2-norm decay10 100
100 1000.001 0.0010.1 0.020.005 0.0050.95 0.95standard nesterov4.0 2.00.001 0.001
+ +Table 4: Detailed results for experiments on the effect of $\lambda$ . + +
Experiment
0.00.51.02.03.05.07.010.0
MNISTmodel 11.231.121.121.081.071.101.251.35
model 21.191.141.081.041.031.071.131.21
model 31.051.040.981.031.051.051.101.12
model 41.071.020.970.940.961.011.051.20
model 5 model 61.030.950.950.900.920.981.031.08
0.990.980.930.87 入0.960.981.051.10
error rate0.0 12.820.1 12.520.5 12.381.0 12.202.0 12.605.0 12.8410.0 13.10
CIFAR-10 CIFAR-100A error rate0.01390.01280.01040.00950.00890.00850.0077 38.01
A37.22 0.088136.75 0.071136.25 0.059037.01 0.052937.18 0.050037.58 0.04670.0411
\ No newline at end of file diff --git a/parse/train/rkGabzZgl/rkGabzZgl_content_list.json b/parse/train/rkGabzZgl/rkGabzZgl_content_list.json new file mode 100644 index 0000000000000000000000000000000000000000..3c87ccb69795e5bb51bdb0bd87009451fdebdcae --- /dev/null +++ b/parse/train/rkGabzZgl/rkGabzZgl_content_list.json @@ -0,0 +1,4459 @@ +[ + { + "type": "text", + "text": "DROPOUT WITH EXPECTATION-LINEAR REGULARIZATION ", + "text_level": 1, + "bbox": [ + 173, + 99, + 643, + 145 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "Xuezhe Ma, Yingkai Gao \nLanguage Technologies Institute \nCarnegie Mellon University \n{xuezhem, yingkaig}@cs.cmu.edu \nZhiting Hu, Yaoliang Yu \nMachine Learning Department \nCarnegie Mellon University \n{zhitinghu, yaoliang}@cs.cmu.edu \nYuntian Deng \nSchool of Engineering and Applied Sciences \nHarvard University \ndengyuntian@gmail.com \nEduard Hovy \nLanguage Technologies Institute \nCarnegie Mellon University \nhovy@cmu.edu ", + "bbox": [ + 184, + 170, + 478, + 227 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "", + "bbox": [ + 500, + 170, + 813, + 226 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "", + "bbox": [ + 183, + 247, + 478, + 303 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "", + "bbox": [ + 547, + 247, + 761, + 303 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "ABSTRACT ", + "text_level": 1, + "bbox": [ + 454, + 340, + 544, + 354 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "Dropout, a simple and effective way to train deep neural networks, has led to a number of impressive empirical successes and spawned many recent theoretical investigations. However, the gap between dropout’s training and inference phases, introduced due to tractability considerations, has largely remained under-appreciated. In this work, we first formulate dropout as a tractable approximation of some latent variable model, leading to a clean view of parameter sharing and enabling further theoretical analysis. Then, we introduce (approximate) expectation-linear dropout neural networks, whose inference gap we are able to formally characterize. Algorithmically, we show that our proposed measure of the inference gap can be used to regularize the standard dropout training objective, resulting in an explicit control of the gap. Our method is as simple and efficient as standard dropout. We further prove the upper bounds on the loss in accuracy due to expectation-linearization, describe classes of input distributions that expectation-linearize easily. Experiments on three image classification benchmark datasets demonstrate that reducing the inference gap can indeed improve the performance consistently. ", + "bbox": [ + 233, + 371, + 766, + 579 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "1 INTRODUCTION ", + "text_level": 1, + "bbox": [ + 176, + 607, + 336, + 622 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "Deep neural networks (DNNs, e.g., LeCun et al., 2015; Schmidhuber, 2015), if trained properly, have been demonstrated to significantly improve the benchmark performances in a wide range of application domains. As neural networks go deeper and deeper, naturally, its model complexity also increases quickly, hence the pressing need to reduce overfitting in training DNNs. A number of techniques have emerged over the years to address this challenge, among which dropout (Hinton et al., 2012; Srivastava, 2013) has stood out for its simplicity and effectiveness. In a nutshell, dropout randomly “drops” neural units during training as a means to prevent feature co-adaptation—a sign of overfitting (Hinton et al., 2012). Simple as it appears to be, dropout has led to several record-breaking performances (Hinton et al., 2012; Ma & Hovy, 2016), and thus spawned a lot of recent interests in analyzing and justifying dropout from the theoretical perspective, and also in further improving dropout from the algorithmic and practical perspective. ", + "bbox": [ + 174, + 638, + 825, + 791 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "In their pioneering work, Hinton et al. (2012) and Srivastava et al. (2014) interpreted dropout as an extreme form of model combination (aka. model ensemble) with extensive parameter/weight sharing, and they proposed to learn the combination through minimizing an appropriate expected loss. Interestingly, they also pointed out that for a single logistic neural unit, the output of dropout is in fact the geometric mean of the outputs of the model ensemble with shared parameters. Subsequently, many theoretical justifications of dropout have been explored, and we can only mention a few here due to space limits. Building on the weight sharing perspective, Baldi & Sadowski (2013; 2014) analyzed the ensemble averaging property of dropout in deep non-linear logistic networks, and supported the view that dropout is equivalent to applying stochastic gradient descent on some regularized loss function. Wager et al. (2013) treated dropout as an adaptive regularizer for generalized linear models (GLMs). Helmbold & Long (2016) discussed the differences between dropout and traditional weight decay regularization. In terms of statistical learning theory, Gao & Zhou (2014) studied the Rademacher complexity of different types of dropout, showing that dropout is able to reduce the Rademacher complexity polynomially for shallow neural networks (with one or no hidden layers) and exponentially for deep neural networks. This latter work (Gao & Zhou, 2014) formally demonstrated that dropout, due to its regularizing effect, contributes to reducing the inherent model complexity, in particular the variance component in the generalization error. ", + "bbox": [ + 174, + 797, + 825, + 924 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "", + "bbox": [ + 174, + 103, + 825, + 215 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "Seen as a model combination technique, it is intuitive that dropout contributes to reducing the variance of the model performance. Surprisingly, dropout has also been shown to play some role in reducing the model bias. For instance, Jain et al. (2015) studied the ability of dropout training to escape local minima, hence leading to reduced model bias. Other studies (Chen et al., 2014; Helmbold & Long, 2014; Wager et al., 2014) focus on the effect of the dropout noise on models with shallow architectures. We noted in passing that there are also some work (Kingma et al., 2015; Gal & Ghahramani, 2015; 2016) trying to understand dropout from the Bayesian perspective. ", + "bbox": [ + 174, + 222, + 825, + 320 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "In this work, we first formulate dropout as a tractable approximation of a latent variable model, and give a clean view of weight sharing (§3). Then, we focus on an inference gap in dropout that has somehow gotten under-appreciated: In the inference phase, for computational tractability considerations, the model ensemble generated by dropout is approximated by a single model with scaled weights, resulting in a gap between training and inference, and rendering the many previous theoretical findings inapplicable. In general, this inference gap can be very large and no attempt (to our best knowledge) has been made to control it. We make three contributions in bridging this gap: Theoretically, we introduce expectation-linear dropout neural networks, through which we are able to explicitly quantify the inference gap (§4). In particular, our theoretical results explain why the max-norm constraint on the network weights, a standard practice in training DNNs, can lead to a small inference gap hence potentially improve performance. Algorithmically, we propose to add a sampled version of the inference gap to regularize the standard dropout training objective (expectationlinearization), hence allowing explicit control of the inference gap, and analyze the interaction between expectation-linearization and the model accuracy (§5). Experimentally, through three benchmark datasets we show that our regularized dropout is not only as simple and efficient as standard dropout but also consistently leads to improved performance (§6). ", + "bbox": [ + 174, + 327, + 825, + 549 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "2 DROPOUT NEURAL NETWORKS ", + "text_level": 1, + "bbox": [ + 176, + 570, + 467, + 587 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "In this section we set up the notations, review the dropout neural network model, and discuss the inference gap in standard dropout training that we will attempt to study in the rest of the paper. ", + "bbox": [ + 173, + 603, + 823, + 631 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "2.1 DNNS AND NOTATIONS ", + "text_level": 1, + "bbox": [ + 176, + 650, + 380, + 665 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "Throughout we use uppercase letters for random variables (and occasionally for matrices as well), and lowercase letters for realizations of the corresponding random variables. Let $X \\in { \\mathcal { X } }$ be the input of the neural network, $Y \\in \\mathcal { V }$ be the desired output, and $D = \\{ ( x _ { 1 } , y _ { 1 } ) , \\dotsc , ( x _ { N } , y _ { N } ) \\}$ be our training sample, where $x _ { i } , i = 1 , \\ldots , N$ , (resp. $y _ { i }$ ) are usually i.i.d. samples of $X$ (resp. $Y$ ). ", + "bbox": [ + 174, + 676, + 825, + 733 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "Let M denote a deep neural network with $L$ hidden layers, indexed by $l \\in \\{ 1 , \\ldots , L \\}$ . Let $\\mathbf { h } ^ { ( l ) }$ denote the output vector from layer $l$ . As usual, $\\mathbf { h } ^ { ( 0 ) } = x$ is the input, and $\\mathbf { h } ^ { ( L ) }$ is the output of the neural network. Denote $\\theta = \\{ \\theta _ { l } : l = 1 , \\ldots , L \\}$ as the set of parameters in the network $\\mathbf { M }$ , where $\\theta _ { l }$ assembles the parameters in layer $l$ . With dropout, we need to introduce a set of dropout random variables $S = \\{ \\bar { \\Gamma ^ { ( l ) } } : l = 1 , \\dots , \\bar { L } \\}$ , where $\\Gamma ^ { ( l ) }$ is the dropout random variable for layer $l$ . Then the deep neural network M can be described as: ", + "bbox": [ + 173, + 739, + 825, + 828 + ], + "page_idx": 1 + }, + { + "type": "equation", + "img_path": "images/6e8015e80a1c30355b3b864a8fdd4787a4cb1eb8761b967bca4f509407662690.jpg", + "text": "$$\n\\mathbf { h } ^ { ( l ) } = f _ { l } ( \\mathbf { h } ^ { ( l - 1 ) } \\odot \\boldsymbol { \\gamma } ^ { ( l ) } ; \\boldsymbol { \\theta } _ { l } ) , \\quad l = 1 , \\ldots , L ,\n$$", + "text_format": "latex", + "bbox": [ + 351, + 837, + 645, + 856 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "where $\\odot$ is the element-wise product and $f _ { l }$ is the transformation function of layer $l$ . For example, if layer $l$ is a fully connected layer with weight matrix $W$ , bias vector $b$ , and sigmoid activation function σ(x) = 11+exp(−x) , then $f _ { l } ( x ) = \\sigma ( W x + b ) )$ . We will also use $\\mathbf { h } ^ { ( l ) } ( x , s ; \\theta )$ to denote the output of layer $l$ with input $x$ and dropout value $s$ , under parameter $\\theta$ . ", + "bbox": [ + 174, + 863, + 823, + 924 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "In the simplest form of dropout, which is also called standard dropout, $\\Gamma ^ { ( l ) }$ is a vector of independent Bernoulli random variables, each of which has probability $p _ { l }$ of being 1 and $1 - p _ { l }$ of being 0. This corresponds to dropping each of the weights independently with probability $p _ { l }$ . ", + "bbox": [ + 173, + 103, + 825, + 146 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "2.2 DROPOUT TRAINING ", + "text_level": 1, + "bbox": [ + 174, + 162, + 359, + 176 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "The standard dropout neural networks can be trained using stochastic gradient decent (SGD), with a sub-network sampled by dropping neural units for each training instance in a mini-batch. Forward and backward pass for that training instance are done only on the sampled sub-network. Intuitively, dropout aims at, simultaneously and jointly, training an ensemble of exponentially many neural networks (one for each configuration of dropped units) while sharing the same weights/parameters. ", + "bbox": [ + 174, + 188, + 825, + 258 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "The goal of the stochastic training procedure of dropout can be understood as minimizing an expected loss function, after marginalizing out the dropout variables (Srivastava, 2013; Wang & Manning, 2013). In the context of maximal likelihood estimation, dropout training can be formulated as: ", + "bbox": [ + 174, + 265, + 825, + 308 + ], + "page_idx": 2 + }, + { + "type": "equation", + "img_path": "images/e299a72c16fd2259f80a8af3a744f89b890a742d73f9f01c61a959ee62a11992.jpg", + "text": "$$\n\\theta ^ { * } = \\underset { \\theta } { \\operatorname { a r g m i n } } \\operatorname { E } _ { S _ { D } } [ - l ( D , S _ { D } ; \\theta ) ] = \\underset { \\theta } { \\operatorname { a r g m i n } } \\operatorname { E } _ { S _ { D } } \\Big [ - \\sum _ { i = 1 } ^ { N } \\log p ( y _ { i } | x _ { i } , S _ { i } ; \\theta ) \\Big ] ,\n$$", + "text_format": "latex", + "bbox": [ + 245, + 313, + 751, + 357 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "where recall that $D$ is the training sample, ${ { S } _ { D } } = \\left\\{ { { S } _ { 1 } } , \\ldots , { { S } _ { N } } \\right\\}$ is the dropout variable (one for each training instance), and $l ( D , S _ { D } ; \\theta )$ is the (conditional) log-likelihood function defined by the conditional distribution $p ( \\boldsymbol { y } | \\boldsymbol { x } , s ; \\theta )$ of output $y$ given input $x$ , under parameter $\\theta$ and dropout variable $s$ . Throughout we use the notation $\\mathrm { E } _ { Z }$ to denote the conditional expectation where all random variables except $Z$ are conditioned on. ", + "bbox": [ + 173, + 361, + 825, + 433 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "Dropout has also been shown to work well with regularization, such as L2 weight decay (Tikhonov, 1943), Lasso (Tibshirani, 1996), KL-sparsity(Bradley & Bagnell, 2008; Hinton, 2010), and max-norm regularization (Srebro et al., 2004), among which the max-norm regularization — that constrains the norm of the incoming weight matrix to be bounded by some constant — was found to be especially useful for dropout (Srivastava, 2013; Srivastava et al., 2014). ", + "bbox": [ + 174, + 438, + 825, + 508 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "2.3 DROPOUT INFERENCE AND GAP ", + "text_level": 1, + "bbox": [ + 176, + 525, + 437, + 540 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "As mentioned before, dropout is effectively training an ensemble of neural networks with weight sharing. Consequently, at test time, the output of each network in the ensemble should be averaged to deliver the final prediction. This averaging over exponentially many sub-networks is, however, intractable, and standard dropout typically implements an approximation by introducing a deterministic scaling factor for each layer to replace the random dropout variable: ", + "bbox": [ + 173, + 550, + 825, + 621 + ], + "page_idx": 2 + }, + { + "type": "equation", + "img_path": "images/ee3fbd9b09d59a5cceb17f087426e4c3c0b50cf81c315bd8d8ea21cb2b2fafd5.jpg", + "text": "$$\n\\mathrm { E } _ { S } [ \\mathbf { H } ^ { ( L ) } ( x , S ; \\theta ) ] \\stackrel { ? } { \\approx } \\mathbf { h } ^ { ( L ) } ( x , \\mathrm { E } [ S ] ; \\theta ) ,\n$$", + "text_format": "latex", + "bbox": [ + 370, + 627, + 625, + 650 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "where the right-hand side is the output of a single deterministic neural network whose weights are scaled to match the expected number of active hidden units on the left-hand side. Importantly, the right-hand side can be easily computed since it only involves a single deterministic network. ", + "bbox": [ + 174, + 655, + 825, + 699 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "Bulò et al. (2016) combined dropout with knowledge distillation methods (Hinton et al., 2015) to better approximate the averaging processing of the left-hand side. However, the quality of the approximation in (3) is largely unknown, and to our best knowledge, no attempt has been made to explicitly control this inference gap. The main goal of this work is to explicitly quantify, algorithmically control, and experimentally demonstrate the inference gap in (3), in the hope of improving the generalization performance of DNNs eventually. To this end, in the next section we first present a latent variable model interpretation of dropout, which will greatly facilitate our later theoretical analysis. ", + "bbox": [ + 173, + 704, + 825, + 803 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "3 DROPOUT AS LATENT VARIABLE MODELS ", + "text_level": 1, + "bbox": [ + 174, + 821, + 558, + 838 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "With the end goal of studying the inference gap in (3) in mind, in this section, we first formulate dropout neural networks as a latent variable model (LVM) in $\\ S \\ 3 . 1$ . Then, we point out the relation between the training procedure of LVM and that of standard dropout in $\\ S \\ 3 . 2$ . The advantage of formulating dropout as a LVM is that we need only deal with a single model (with latent structure), instead of an ensemble of exponentially many different models (with weight sharing). This much simplified view of dropout enables us to understand and analyze the model parameter $\\theta$ in a much more straightforward and intuitive way. ", + "bbox": [ + 174, + 853, + 825, + 924 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "", + "bbox": [ + 173, + 103, + 823, + 132 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "3.1 AN LVM FORMULATION OF DROPOUT ", + "text_level": 1, + "bbox": [ + 176, + 147, + 482, + 162 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "A latent variable model consists of two types of variables: the observed variables that represent the empirical (observed) data and the latent variables that characterize the hidden (unobserved) structure. To formulate dropout as a latent variable model, the input $x$ and output $y$ are regarded as observed variables, while the dropout variable $s$ , representing the sub-network structure, is hidden. Then, upon fixing the input space $\\mathcal { X }$ , the output space $\\mathcal { V }$ , and the latent space $s$ for dropout variables, the conditional probability of $y$ given $x$ under parameter $\\theta$ can be written as ", + "bbox": [ + 173, + 174, + 826, + 258 + ], + "page_idx": 3 + }, + { + "type": "equation", + "img_path": "images/9125b0d58b9e8ff60d38e252eaa326687f60496445c52721abd1df2e477fbbbc.jpg", + "text": "$$\np ( y | x ; \\theta ) = \\int _ { S } p ( y | x , s ; \\theta ) p ( s ) d \\mu ( s ) ,\n$$", + "text_format": "latex", + "bbox": [ + 372, + 262, + 622, + 295 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "where $p ( \\boldsymbol { y } | \\boldsymbol { x } , s ; \\theta )$ is the conditional distribution modeled by the neutral network with configuration $s$ (same as in Eq. (2)), $p ( s )$ is the distribution of dropout variable $S$ (e.g. Bernoulli), here assumed to be independent of the input $x$ , and $\\mu ( s )$ is the base measure on the space $s$ . ", + "bbox": [ + 174, + 299, + 825, + 342 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "3.2 LVM DROPOUT TRAINING VS. STANDARD DROPOUT TRAINING ", + "text_level": 1, + "bbox": [ + 176, + 357, + 656, + 372 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "Building on the above latent variable model formulation (4) of dropout, we are now ready to point out a simple relation between the training procedure of LVM and that of standard dropout. Given an i.i.d. training sample $D$ , the maximum likelihood estimate for the LVM formulation of dropout in (4) is equivalent to minimizing the following negative log-likelihood function: ", + "bbox": [ + 174, + 383, + 825, + 439 + ], + "page_idx": 3 + }, + { + "type": "equation", + "img_path": "images/eb8cbc943c7b98a44cdf7ca2a6b1a42d864d0be3747e701808f6dd0b97cbdc9b.jpg", + "text": "$$\n\\theta ^ { * } = \\underset { \\theta } { \\operatorname { a r g m i n } } - l ( D ; \\theta ) = \\underset { \\theta } { \\operatorname { a r g m i n } } - \\sum _ { i = 1 } ^ { N } \\log p ( y _ { i } | x _ { i } ; \\theta ) ,\n$$", + "text_format": "latex", + "bbox": [ + 313, + 443, + 681, + 487 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "where $p ( \\boldsymbol { y } | \\boldsymbol { x } ; \\boldsymbol { \\theta } )$ is given in Eq. (4). Recall the dropout training objective $\\operatorname { E } _ { S _ { D } } [ - l ( D , S _ { D } ; \\theta ) ]$ in Eq. (2). We have the following theorem as a simple consequence of Jensen’s inequality (details in Appendix A): ", + "bbox": [ + 174, + 491, + 825, + 534 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "Theorem 1. The expected loss function of standard dropout (Eq. (2)) is an upper bound of the negative log-likelihood of LVM dropout (Eq. (5)): ", + "bbox": [ + 171, + 536, + 823, + 564 + ], + "page_idx": 3 + }, + { + "type": "equation", + "img_path": "images/a9a5b4f36e7b1d7532233f14f8d9943c84c8b97f88c469f63ea025f8fed33ceb.jpg", + "text": "$$\n- l ( D ; \\theta ) \\leq \\mathrm { E } _ { S _ { D } } [ - l ( D , S _ { D } ; \\theta ) ] .\n$$", + "text_format": "latex", + "bbox": [ + 387, + 569, + 607, + 587 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "Theorem 1, in a rigorous sense, justifies dropout training as a convenient and tractable approximation of the LVM formulation in (4). Indeed, since directly minimizing the marginalized negative loglikelihood in (5) may not be easy, a standard practice is to replace the marginalized (conditional) likelihood $p ( \\boldsymbol { y } | \\boldsymbol { x } ; \\boldsymbol { \\theta } )$ in (4) with its empirical Monte carlo average through drawing samples from the dropout variable $S$ . The dropout training objective in (2) corresponds exactly to this Monte carlo approximation when a single sample $S _ { i }$ is drawn for each training instance $( x _ { i } , y _ { i } )$ . Importantly, we note that the above LVM formulation involves only a single network parameter $\\theta$ , which largely simplifies the picture and facilitates our subsequent analysis. ", + "bbox": [ + 173, + 597, + 826, + 709 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "4 EXPECTATION-LINEAR DROPOUT NEURAL NETWORKS ", + "text_level": 1, + "bbox": [ + 174, + 727, + 663, + 744 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "Building on the latent variable model formulation in $\\ S \\ O 3$ , we introduce in this section the notion of expectation-linearity that essentially measures the inference gap in (3). We then characterize a general class of neural networks that exhibit expectation-linearity, either exactly or approximately over a distribution $p ( x )$ on the input space. ", + "bbox": [ + 174, + 758, + 825, + 815 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "We start with defining expectation-linearity in the simplest single-layer neural network, then we extend the notion into general deep networks in a natural way. ", + "bbox": [ + 173, + 821, + 821, + 851 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "Definition 1 (Expectation-linear Layer). A network layer $\\mathbf { h } = f ( x \\odot \\gamma ; \\theta )$ is expectation-linear with respect to a set ${ { \\mathcal { X } } ^ { \\prime } } \\subseteq { { \\mathcal { X } } }$ , if for all $x \\in \\mathcal { X } ^ { \\prime }$ we have ", + "bbox": [ + 173, + 853, + 823, + 882 + ], + "page_idx": 3 + }, + { + "type": "equation", + "img_path": "images/0c42ed1c9bb683289927cae7f9fbd9aecdd9fa3027ff76e935fb755bf7c8cb7a.jpg", + "text": "$$\n\\left\\| \\operatorname { E } [ f ( x \\odot \\Gamma ; \\theta ) ] - f ( x \\odot \\operatorname { E } [ \\Gamma ] ; \\theta ) \\right\\| _ { 2 } = 0 .\n$$", + "text_format": "latex", + "bbox": [ + 359, + 886, + 638, + 905 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "In this case we say that $\\mathcal { X } ^ { \\prime }$ is expectation-linearizable, and $\\theta$ is expectation-linearizing w.r.t $\\mathcal { X } ^ { \\prime }$ ", + "bbox": [ + 169, + 909, + 795, + 924 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "Obviously, the condition in (7) will guarantee no gap in the dropout inference approximation (3)—an admittedly strong condition that we will relax below. Clearly, if $f$ is an affine function, then we can choose $\\mathcal { X } ^ { \\prime } = \\mathcal { X }$ and expectation-linearity is trivial. Note that expectation-linearity depends on the network parameter $\\theta$ and the dropout distribution $\\Gamma$ . ", + "bbox": [ + 174, + 103, + 823, + 160 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "Expectation-linearity, as defined in (7), is overly strong: under standard regularity conditions, essentially the transformation function $f$ has to be affine over the set $\\mathcal { X } ^ { \\prime }$ , ruling out for instance the popular sigmoid or tanh activation functions. Moreover, in practice, downstream use of DNNs are usually robust to small errors resulting from approximate expectation-linearity (hence the empirical success of dropout), so it makes sense to define an inexact extension. We note also that the definition in (7) is uniform over the set $\\mathcal { X } ^ { \\prime }$ , while in a statistical setting it is perhaps more meaningful to have expectation-linearity “on average,” since inputs from lower density regions are not going to play a significant role anyway. Taking into account the aforementioned motivations, we arrive at the following inexact extension: ", + "bbox": [ + 173, + 165, + 825, + 292 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "Definition 2 (Approximately Expectation-linear Layer). A network layer $\\mathbf { h } \\ = \\ f ( x \\odot \\gamma ; \\theta )$ is $\\delta$ -approximately expectation-linear with respect to a distribution $p ( x )$ over $\\mathcal { X }$ if ", + "bbox": [ + 173, + 295, + 823, + 324 + ], + "page_idx": 4 + }, + { + "type": "equation", + "img_path": "images/003089e0b28e69a7d975008386ef9d4b25e7031f280c15a542d2525bb85004a9.jpg", + "text": "$$\n\\mathbb { E } _ { X } \\Big [ \\big \\| \\mathbb { E } _ { \\Gamma } \\big [ f ( X \\odot \\Gamma ; \\theta ) | X \\big ] - f ( X \\odot \\mathbb { E } [ \\Gamma ] ; \\theta ) \\big \\| _ { 2 } \\Big ] < \\delta .\n$$", + "text_format": "latex", + "bbox": [ + 318, + 329, + 678, + 356 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "In this case we say that $p ( x )$ is $\\delta$ -approximately expectation-linearizable, and $\\theta$ is $\\delta$ -approximately expectation-linearizing. ", + "bbox": [ + 174, + 361, + 823, + 390 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "To appreciate the power of cutting some slack from exact expectation-linearity, we remark that even non-affine activation functions often have approximately linear regions. For example, the logistic function, a commonly used non-linear activation function in DNNs, is approximately linear around the origin. Naturally, we can ask whether it is sufficient for a target distribution $p ( x )$ to be well-approximated by an approximately expectation-linearizable one. We begin by providing an appropriate measurement of the quality of this approximation. ", + "bbox": [ + 173, + 400, + 825, + 486 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "Definition 3 (Closeness, (Andreas et al., 2015)). A distribution $p ( x )$ is $C$ -close to a set ${ { \\mathcal { X } } ^ { \\prime } } \\subseteq { { \\mathcal { X } } }$ if ", + "bbox": [ + 176, + 488, + 818, + 503 + ], + "page_idx": 4 + }, + { + "type": "equation", + "img_path": "images/ae073ead6ebe820bbd1f1216f30532a289f081e1615217c6a207a9b6c963c8ff.jpg", + "text": "$$\n\\operatorname { E } \\Big [ \\operatorname* { i n f } _ { x ^ { * } \\in \\mathcal { X } ^ { \\prime } } \\operatorname* { s u p } _ { \\gamma \\in S } \\| X \\odot \\gamma - x ^ { * } \\odot \\gamma \\| _ { 2 } \\Big ] \\leq C ,\n$$", + "text_format": "latex", + "bbox": [ + 361, + 508, + 635, + 540 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "where recall that $s$ is the (bounded) space that the dropout variable lives in. ", + "bbox": [ + 176, + 545, + 668, + 560 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "Intuitively, $p ( x )$ is $C$ -close to a set $\\mathcal { X } ^ { \\prime }$ if a random sample from $p$ is no more than a distance $C$ from $\\mathcal { X } ^ { \\prime }$ in expectation and under the worst “dropout perturbation”. For example, a standard normal distribution is close to an interval centering at origin $( [ - \\alpha , \\alpha ] )$ with some constant $C$ . Our definition of closeness is similar to that in Andreas et al. (2015), who used this notion to analyze self-normalized log-linear models. ", + "bbox": [ + 174, + 569, + 825, + 640 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "We are now ready to state our first major result that quantifies approximate expectation-linearity of a single-layered network (proof in Appendix B.1): ", + "bbox": [ + 174, + 647, + 821, + 676 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "Theorem 2. Given a network layer $\\mathbf { h } = f ( x \\odot \\gamma ; \\theta )$ , where $\\theta$ is expectation-linearizing w.r.t. ${ { \\mathcal { X } } ^ { \\prime } } \\subseteq { { \\mathcal { X } } }$ . Suppose $p ( x )$ is $C$ -close to $\\mathcal { X } ^ { \\prime }$ and for all $x \\in \\mathcal { X } , \\| \\nabla _ { x } f ( x ) \\| _ { \\mathsf { o p } } \\leq B ,$ , where $\\| \\cdot \\| _ { \\mathsf { o p } }$ is the usual operator norm. Then, $p ( x )$ is $2 B C$ -approximately expectation-linearizable. ", + "bbox": [ + 174, + 679, + 825, + 723 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "Roughly, Theorem 2 states that the input distribution $p ( x )$ that place most of its mass on regions close to expectation-linearizable sets are approximately expectation-linearizable on a similar scale. The bounded operator norm assumption on the derivative $\\nabla f$ is satisfied in most commonly used layers. For example, for a fully connected layer with weight matrix $W$ , bias vector $b$ , and activation function $\\sigma$ , $\\| \\nabla \\bar { f ( \\cdot ) } \\| _ { \\mathsf { o p } } = | \\sigma ^ { \\prime } \\bar { ( \\cdot ) } | \\cdot \\| W \\| _ { \\mathsf { o p } }$ is bounded by $\\| W \\| _ { \\mathsf { o p } }$ and the supremum of $| \\sigma ^ { \\prime } ( \\cdot ) |$ (1/4 when $\\sigma$ is sigmoid and 1 when $\\sigma$ is tanh). ", + "bbox": [ + 173, + 732, + 825, + 818 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "Next, we extend the notion of approximate expectation-linearity to deep dropout neural networks. ", + "bbox": [ + 171, + 823, + 810, + 838 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "Definition 4 (Approximately Expectation-linear Network). A deep neural network with $L$ layers (cf. Eq. (1)) is $\\delta$ -approximately expectation-linear with respect to $p ( x )$ over $\\mathcal { X }$ if ", + "bbox": [ + 171, + 842, + 823, + 871 + ], + "page_idx": 4 + }, + { + "type": "equation", + "img_path": "images/5af0cabdc2935582c521db4f18e2e969ecaff536fc35e64fdef4944db071731a.jpg", + "text": "$$\n\\mathrm { E } _ { X } \\Big [ \\big \\| \\mathrm { E } _ { S } \\big [ \\mathbf { H } ^ { ( L ) } ( X , S ; \\theta ) | X \\big ] - \\mathbf { h } ^ { ( L ) } ( X , \\mathrm { E } [ S ] ; \\theta ) \\big \\| _ { 2 } \\Big ] < \\delta .\n$$", + "text_format": "latex", + "bbox": [ + 308, + 876, + 689, + 902 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "where $\\mathbf { h } ^ { ( L ) } ( X , \\operatorname { E } [ S ] ; \\theta )$ is the output of the deterministic neural network in standard dropout. ", + "bbox": [ + 173, + 909, + 781, + 924 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "Lastly, we relate the level of approximate expectation-linearity of a deep neural network to the level of approximate expectation-linearity of each of its layers: ", + "bbox": [ + 171, + 103, + 823, + 132 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "Theorem 3. Given an $L$ -layer neural network as in Eq. (1), and suppose that each layer $l \\in$ $\\{ 1 , \\ldots , L \\}$ is $\\delta$ -approximately expectation-linear w.r.t. $\\begin{array} { r } { p ( \\hat { \\mathbf { h } } ^ { ( l ) } ) , \\mathrm { E } [ \\Gamma ^ { ( l ) } ] \\stackrel { } { \\leq } \\gamma , \\operatorname* { s u p } _ { x } \\| \\nabla f _ { l } ( x ) \\| _ { \\mathrm { o p } } \\leq B } \\end{array}$ , and $\\mathrm { E } \\big [ \\mathrm { V a r } [ \\mathbf { H } ^ { ( l ) } | X ] \\big ] \\leq \\sigma ^ { 2 }$ . Then the network is $\\Delta$ -approximately expectation-linear with ", + "bbox": [ + 173, + 135, + 826, + 181 + ], + "page_idx": 5 + }, + { + "type": "equation", + "img_path": "images/1fae799a5674707cc01a67dda99dd186725fafdf16f02c0457adc7a0544bc16e.jpg", + "text": "$$\n\\Delta = ( B \\gamma ) ^ { L - 1 } \\delta + ( \\delta + B \\gamma \\sigma ) \\Bigg ( \\frac { 1 - ( B \\gamma ) ^ { L - 1 } } { 1 - B \\gamma } \\Bigg ) .\n$$", + "text_format": "latex", + "bbox": [ + 336, + 185, + 661, + 222 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "From Theorem 3 (proof in Appendix B.2) we observe that the level of approximate expectationlinearity of the network mainly depends on four factors: the level of approximate expecatationlinearity of each layer $( \\delta )$ , the expected variance of each layer $( \\sigma )$ , the operator norm of the derivative of each layer’s transformation function $( B )$ , and the mean of each layer’s dropout variable $( \\gamma )$ . In practice, $\\gamma$ is often a constant less than or equal to 1. For example, if $\\Gamma \\sim \\mathrm { B e r n o u l l i } ( p )$ , then $\\gamma = p$ ", + "bbox": [ + 173, + 231, + 825, + 303 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "According to the theorem, the operator norm of the derivative of each layer’s transformation function is an important factor in the level of approximate expectation-linearity: the smaller the operator norm is, the better the approximation. Interestingly, the operator norm of a layer often depends on the norm of the layer’s weight (e.g. for fully connected layers). Therefore, adding max-norm constraints to regularize dropout neural networks can lead to better approximate expectation-linearity hence smaller inference gap and the often improved model performance. ", + "bbox": [ + 173, + 309, + 825, + 393 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "It should also be noted that when $B \\gamma < 1$ , the approximation error $\\Delta$ tends to be a constant when the network becomes deeper. When $B \\gamma = 1$ , $\\Delta$ grows linearly with $L$ , and when $B \\gamma > 1$ , the growth of $\\Delta$ becomes exponential. Thus, it is essential to keep $B \\gamma < 1$ to achieve good approximation, particularly for deep neural networks. ", + "bbox": [ + 173, + 398, + 825, + 455 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "5 EXPECTATION-LINEAR REGULARIZED DROPOUT ", + "text_level": 1, + "bbox": [ + 174, + 476, + 612, + 492 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "In the previous section we have managed to bound the approximate expectation-linearity, hence the inference gap in (3), of dropout neural networks. In this section, we first prove a uniform deviation bound of the sampled approximate expectation-linearity measure from its mean, which motivates adding the sampled (hence computable) expectation-linearity measure as a regularization scheme to standard dropout, with the goal of explicitly controlling the inference gap of the learned parameter, hence potentially improving the performance. Then we give the upper bounds on the loss in accuracy due to expectation-linearization, and describe classes of distributions that expectation-linearize easily. ", + "bbox": [ + 173, + 506, + 826, + 604 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "5.1 A UNIFORM DEVIATION BOUND FOR THE SAMPLED EXPECTATION-LINEAR MEASURE ", + "bbox": [ + 173, + 619, + 810, + 636 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "We now show that an expectation-linear network can be found by expectation-linearizing the network on the training sample. To this end, we prove a uniform deviation bound between the empirical expectation-linearization measure using i.i.d. samples (Eq. (12)) and its mean (Eq. (13)). ", + "bbox": [ + 174, + 646, + 825, + 689 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "Theorem 4. Let $\\mathcal { H } = \\left\\{ \\mathbf { h } ^ { ( L ) } ( x , s ; \\theta ) : \\theta \\in \\Theta \\right\\}$ denote a space of $L$ -layer dropout neural networks indexed with $\\theta$ , where $\\mathbf { h } ^ { ( L ) } : \\mathcal { X } \\times \\mathcal { S } \\mathcal { R }$ and $\\Theta$ is the space that $\\theta$ lives in. Suppose that the neural networks in $\\mathcal { H }$ satisfy the constraints: 1 $) \\forall x \\in \\mathcal { X } , \\| x \\| _ { 2 } \\leq \\alpha ; 2 ) \\forall l \\in \\{ 1 , \\ldots , L \\}$ , $\\mathrm { E } ( \\Gamma ^ { ( l ) } ) \\le \\gamma$ and $\\| \\nabla f _ { l } \\| _ { o p } \\leq B ; 3 ) \\| \\mathbf { h } ^ { ( L ) } \\| \\leq \\beta$ . Denote empirical expectation-linearization measure and its mean as: ", + "bbox": [ + 173, + 691, + 825, + 757 + ], + "page_idx": 5 + }, + { + "type": "equation", + "img_path": "images/e94e23d82460c5f4f17c181cf128771a414d820a025e55d729e807754c937c07.jpg", + "text": "$$\n\\begin{array} { l } { \\displaystyle \\hat { \\Delta } = \\frac { 1 } { n } \\sum _ { i = 1 } ^ { n } \\big \\| \\mathrm { E } _ { S _ { i } } \\big [ \\mathbf { H } ^ { ( L ) } ( X _ { i } , S _ { i } ; \\theta ) \\big ] - \\mathbf { h } ^ { ( L ) } ( X _ { i } , \\mathrm { E } [ S _ { i } ] ; \\theta ) \\big \\| _ { 2 } , } \\\\ { \\displaystyle \\Delta = \\mathrm { E } _ { X } \\Big [ \\big \\| \\mathrm { E } _ { S } \\big [ \\mathbf { H } ^ { ( L ) } ( X , S ; \\theta ) \\big ] - \\mathbf { h } ^ { ( L ) } ( X , \\mathrm { E } [ S ] ; \\theta ) \\big \\| _ { 2 } \\Big ] . } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 313, + 761, + 681, + 824 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "Then, with probability at least $1 - \\nu$ , we have ", + "bbox": [ + 178, + 827, + 478, + 842 + ], + "page_idx": 5 + }, + { + "type": "equation", + "img_path": "images/fd78b1ca5baddc6db6bc317599e95e14b35ca6fe1e8aaaa42dc53d1feebf6027.jpg", + "text": "$$\n\\operatorname* { s u p } _ { \\theta \\in \\Theta } | \\Delta - \\hat { \\Delta } | < \\frac { 2 \\alpha B ^ { L } ( \\gamma ^ { L / 2 } + 1 ) } { \\sqrt { n } } + \\beta \\sqrt { \\frac { \\log ( 1 / \\nu ) } { n } } .\n$$", + "text_format": "latex", + "bbox": [ + 325, + 847, + 669, + 883 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "From Theorem 4 (proof in Appendix C.1) we observe that the deviation bound decreases exponentially with the number of layers $L$ when the operator norm of the derivative of each layer’s transformation function $( B )$ is less than 1 (and the contrary if $B \\geq 1 $ ). Importantly, the square root dependence on the number of samples $( n )$ is standard and cannot be improved without significantly stronger assumptions. ", + "bbox": [ + 176, + 895, + 825, + 924 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "", + "bbox": [ + 176, + 103, + 823, + 146 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "It should be noted that Theorem 4 per se does not imply anything between expectation-linearization and the model accuracy (i.e. how well the expectation-linearized neural network actually achieves on modeling the data). Formally studying this relation is provided in $\\ S 5 . 3$ . In addition, we provide some experimental evidences in $\\ S 6$ on how improved approximate expectation-linearity (equivalently smaller inference gap) does lead to better empirical performances. ", + "bbox": [ + 173, + 152, + 825, + 223 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "5.2 EXPECTATION-LINEARIZATION AS REGULARIZATION ", + "text_level": 1, + "bbox": [ + 173, + 238, + 584, + 252 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "The uniform deviation bound in Theorem 4 motivates the possibility of obtaining an approximately expectation-linear dropout neural networks through adding the empirical measure (12) as a regularization scheme to the standard dropout training objective, as follows: ", + "bbox": [ + 174, + 263, + 826, + 306 + ], + "page_idx": 6 + }, + { + "type": "equation", + "img_path": "images/2fe41bbe5146298942d0f6462657a019d1ec625d6a3406d799eb2315d14cd083.jpg", + "text": "$$\nl o s s ( D ; \\theta ) = - l ( D ; \\theta ) + \\lambda V ( D ; \\theta ) ,\n$$", + "text_format": "latex", + "bbox": [ + 377, + 309, + 620, + 325 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "where $- l ( D ; \\theta )$ is the negative log-likelihood defined in Eq. (5), $\\lambda > 0$ is a regularization constant, and $V ( D ; \\theta )$ measures the level of approximate expectation-linearity: ", + "bbox": [ + 171, + 328, + 825, + 357 + ], + "page_idx": 6 + }, + { + "type": "equation", + "img_path": "images/628a8dc47eaefe0b5f120b3c22b7891b14e13af5bd491df137fd49fcaa984d83.jpg", + "text": "$$\nV ( D ; \\theta ) = \\frac { 1 } { N } \\sum _ { i = 1 } ^ { N } \\big \\| \\mathrm { E } _ { S _ { i } } \\big [ \\mathbf { H } ^ { ( L ) } ( x _ { i } , S _ { i } ; \\theta ) \\big ] - \\mathbf { h } ^ { ( L ) } ( x _ { i } , \\mathrm { E } [ S _ { i } ] ; \\theta ) \\big \\| _ { 2 } ^ { 2 } .\n$$", + "text_format": "latex", + "bbox": [ + 282, + 358, + 715, + 402 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "To solve (15), we can minimize $l o s s ( D ; \\theta )$ via stochastic gradient descent as in standard dropout, and approximate $V ( D ; \\theta )$ using Monte carlo: ", + "bbox": [ + 174, + 404, + 823, + 433 + ], + "page_idx": 6 + }, + { + "type": "equation", + "img_path": "images/0d97fad7b90fc7032740b84d3223ad873ed399fbcf7799a37354b6c99dbb2086.jpg", + "text": "$$\nV ( D ; \\theta ) \\approx \\frac { 1 } { N } \\sum _ { i = 1 } ^ { N } \\big \\| \\mathbf { h } ^ { ( L ) } ( x _ { i } , s _ { i } ; \\theta ) - \\mathbf { h } ^ { ( L ) } ( x _ { i } , \\mathrm { E } [ S _ { i } ] ; \\theta ) \\big \\| _ { 2 } ^ { 2 } ,\n$$", + "text_format": "latex", + "bbox": [ + 303, + 435, + 692, + 478 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "where $s _ { i }$ is the same dropout sample as in $l ( D ; \\theta )$ for each training instance in a mini-batch. Thus, the only additional computational cost comes from the deterministic term $\\mathbf { h } ^ { ( L ) } ( x _ { i } , \\mathrm { E } [ S _ { i } ] ; \\theta )$ . Overall, our regularized dropout (15), in its Monte carlo approximate form, is as simple and efficient as the standard dropout. ", + "bbox": [ + 174, + 479, + 826, + 539 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "5.3 ON THE ACCURACY OF EXPECTATION-LINEARIZED MODELS ", + "text_level": 1, + "bbox": [ + 174, + 553, + 633, + 569 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "So far our discussion has concentrated on the problem of finding expectation-linear neural network models, without any concerns on how well they actually perform at modeling the data. In this section, we characterize the trade-off between maximizing “data likelihood” and satisfying an expectationlinearization constraint. ", + "bbox": [ + 174, + 579, + 826, + 636 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "To achieve the characterization, we measure the likelihood gap between the classical maximum likelihood estimator (MLE) and the MLE subject to a expectation-linearization constraint. Formally, given training data $D = \\{ ( x _ { 1 } , y _ { 1 } ) , \\dotsc , ( x _ { n } , y _ { n } ) \\}$ , we define ", + "bbox": [ + 174, + 642, + 826, + 685 + ], + "page_idx": 6 + }, + { + "type": "equation", + "img_path": "images/78c1dfcc518d011061d4ade782173fbd6731c11ea0500d1eca9b8c008f74ff00.jpg", + "text": "$$\n\\begin{array} { r l } { \\hat { \\theta } = } & { \\underset { \\theta \\in \\Theta } { \\mathrm { a r g m i n } } \\quad - l ( D ; \\theta ) } \\\\ { \\hat { \\theta } _ { \\delta } = } & { \\underset { \\theta \\in \\Theta , V ( D ; \\theta ) \\leq \\delta } { \\mathrm { a r g m i n } } - l ( D ; \\theta ) } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 403, + 688, + 596, + 747 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "where $- l ( D ; \\theta )$ is the negative log-likelihood defined in Eq. (5), and $V ( D ; \\theta )$ is the level of approximate expectation-linearity in Eq. (16). ", + "bbox": [ + 176, + 750, + 825, + 779 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "We would like to control the loss of model accuracy by obtaining a bound on the likelihood gap defined as: ", + "bbox": [ + 174, + 785, + 823, + 811 + ], + "page_idx": 6 + }, + { + "type": "equation", + "img_path": "images/d2429883a542162566fed0a788d74d4bc29ce3f8d8aca6fff95739c4ff90e591.jpg", + "text": "$$\n\\Delta _ { l } ( \\hat { \\theta } , \\hat { \\theta } _ { \\delta } ) = \\frac { 1 } { n } ( l ( D ; \\hat { \\theta } ) - l ( D ; \\hat { \\theta } _ { \\delta } ) )\n$$", + "text_format": "latex", + "bbox": [ + 382, + 809, + 616, + 838 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "In the following, we focus on neural networks with softmax output layer for classification tasks. ", + "bbox": [ + 176, + 838, + 795, + 853 + ], + "page_idx": 6 + }, + { + "type": "equation", + "img_path": "images/b912baf9528084078f933a3840f2f9b16079616382c40f8361ab3f95c33a9efe.jpg", + "text": "$$\np ( \\boldsymbol { y } | \\boldsymbol { x } , s ; \\theta ) = \\mathbf { h } _ { \\boldsymbol { y } } ^ { ( L ) } ( \\boldsymbol { x } , s ; \\theta ) = f _ { L } \\big ( \\mathbf { h } ^ { ( L - 1 ) } ( \\boldsymbol { x } , s ) ; \\eta \\big ) = \\frac { e ^ { \\eta _ { \\boldsymbol { y } } ^ { T } \\mathbf { h } ^ { ( L - 1 ) } ( \\boldsymbol { x } , s ) } } { \\displaystyle \\sum _ { \\boldsymbol { y ^ { \\prime } } \\in \\boldsymbol { y } } e ^ { \\eta _ { \\boldsymbol { y ^ { \\prime } } } ^ { T } \\mathbf { h } ^ { ( L - 1 ) } ( \\boldsymbol { x } , s ) } }\n$$", + "text_format": "latex", + "bbox": [ + 253, + 853, + 740, + 907 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "where $\\boldsymbol { \\theta } = \\{ \\theta _ { 1 } , \\ldots , \\theta _ { L - 1 } , \\eta \\} , \\mathcal { V } = \\{ 1 , \\ldots , k \\}$ and $\\eta = \\{ \\eta _ { y } : y \\in \\mathcal { V } \\}$ . We claim: ", + "bbox": [ + 171, + 909, + 702, + 926 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "Theorem 5. Given an $L$ -layer neural network $\\mathbf { h } ^ { ( L ) } ( x , s ; \\theta )$ with softmax output layer in (21), where parameter $\\theta \\in \\Theta$ , dropout variable $s \\in S$ , input $x \\in \\mathcal { X }$ and target $y \\in \\mathcal { V }$ . Suppose that for every $x$ and s, $p ( \\boldsymbol { y } | \\boldsymbol { x } , s ; \\hat { \\theta } )$ makes a unique best prediction—that is, for each $x \\in \\mathcal { X } , s \\in \\mathcal { S }$ , there exists a unique $y ^ { \\ast } \\in \\mathcal { V }$ such that $\\forall y \\ne y ^ { * }$ , $\\hat { \\eta } _ { y } ^ { T } \\mathbf { h } ^ { ( L - 1 ) } ( x , s ) < \\hat { \\eta } _ { y ^ { \\ast } } ^ { T } \\mathbf { h } ^ { ( L - 1 ) } ( x , s )$ . Suppose additionally that $\\forall x , s$ , $\\| \\mathbf { h } ^ { ( L - 1 ) } ( x , s ; \\hat { \\theta } ) \\| \\leq \\beta$ , and $\\forall y , p ( y | x ; \\hat { \\theta } ) > 0$ . Then ", + "bbox": [ + 173, + 102, + 825, + 183 + ], + "page_idx": 7 + }, + { + "type": "equation", + "img_path": "images/5bb9cf8aaa682c95af711751cff637aad2e0efe2a281dedd2b41899bf9749e2f.jpg", + "text": "$$\n\\Delta _ { l } ( \\hat { \\theta } , \\hat { \\theta } _ { \\delta } ) \\leq c _ { 1 } \\beta ^ { 2 } \\left( \\| \\hat { \\eta } \\| _ { 2 } - \\frac { \\delta } { 4 \\beta } \\right) ^ { 2 } e ^ { - c _ { 2 } \\delta / 4 \\beta }\n$$", + "text_format": "latex", + "bbox": [ + 354, + 185, + 642, + 222 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "where $c _ { 1 }$ and $c _ { 2 }$ are distribution-dependent constants. ", + "bbox": [ + 173, + 223, + 527, + 238 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "From Theorem 5 (proof in Appendix C.2) we observe that, at one extreme, distributions closed to deterministic can be expectation-linearized with little loss of likelihood. ", + "bbox": [ + 174, + 247, + 825, + 276 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "What about the other extreme — distributions “as close to uniform distribution as possible”? With suitable assumptions about the form of $p ( \\boldsymbol { y } | \\boldsymbol { x } , s ; \\hat { \\theta } )$ and $p ( \\boldsymbol { y } | \\boldsymbol { x } ; \\hat { \\boldsymbol { \\theta } } )$ , we can achieve an accuracy loss bound for distributions that are close to uniform: ", + "bbox": [ + 174, + 282, + 825, + 328 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "Theorem 6. Suppose that $\\forall x , s$ , $\\| \\mathbf { h } ^ { ( L - 1 ) } ( x , s ; \\hat { \\theta } ) \\| \\leq \\beta$ . Additionally, for each $( x _ { i } , y _ { i } ) \\in D , s \\in \\mathcal { S } $ $\\log \\frac { 1 } { k } \\le \\log p ( y _ { i } | x _ { i } , s ; \\hat { \\theta } ) \\le \\frac { 1 } { k } \\sum _ { y \\in \\mathcal { V } } \\log p ( y | x _ { i } , s ; \\hat { \\theta } )$ . Then asymptotically as $n \\to \\infty$ : ", + "bbox": [ + 173, + 329, + 825, + 372 + ], + "page_idx": 7 + }, + { + "type": "equation", + "img_path": "images/65fab427ea00ef91ffdb3e514baa2078356e2eb5b0f466bd77db37fa85cacff4.jpg", + "text": "$$\n\\Delta _ { l } ( \\hat { \\theta } , \\hat { \\theta } _ { \\delta } ) \\leq \\left( 1 - \\frac { \\delta } { 4 \\beta \\| \\hat { \\eta } \\| _ { 2 } } \\right) \\mathrm { E } \\left[ \\mathrm { K L } \\left( p ( \\cdot | X ; \\theta ) \\| \\mathrm { U n i f } ( \\mathcal { V } ) \\right) \\right]\n$$", + "text_format": "latex", + "bbox": [ + 305, + 376, + 691, + 410 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "Theorem 6 (proof in Appendix C.3) indicates that uniform distributions are also an easy class for expectation-linearization. ", + "bbox": [ + 173, + 419, + 823, + 448 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "The next question is whether there exist any classes of conditional distributions $p ( y | x )$ for which all distributions are provably hard to expectation-linearize. It remains an open problem and might be an interesting direction for future work. ", + "bbox": [ + 176, + 454, + 823, + 496 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "6 EXPERIMENTS ", + "text_level": 1, + "bbox": [ + 174, + 516, + 326, + 531 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "In this section, we evaluate the empirical performance of the proposed regularized dropout in (15) on a variety of network architectures for the classification task on three benchmark datasets—MNIST, CIFAR-10 and CIFAR-100. We applied the same data preprocessing procedure as in Srivastava et al. (2014). To make a thorough comparison and provide experimental evidence on how the expectationlinearization interacts with the predictive power of the learned model, we perform experiments of Monte Carlo (MC) dropout, which approximately computes the final prediction (left-hand side of (3)) via Monte Carlo sampling, w/o the proposed regularizer. In the case of MC dropout, we average $m = 1 0 0$ predictions using randomly sampled configurations. In addition, the network architectures and hyper-parameters for each experiment setup are the same as those in Srivastava et al. (2014), unless we explicitly claim to use different ones. Following previous works, for each data set We held out 10,000 random training images for validation to tune the hyper-parameters, including $\\lambda$ in Eq. (15). When the hyper-parameters are fixed, we train the final models with all the training data, including the validation data. A more detailed description of the conducted experiments can be provided in Appendix D. For each experiment, we report the mean test errors with corresponding standard deviations over 5 repetitions. ", + "bbox": [ + 173, + 546, + 826, + 755 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "6.1 MNIST ", + "text_level": 1, + "bbox": [ + 174, + 771, + 269, + 785 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "The MNIST dataset (LeCun et al., 1998) consists of 70,000 handwritten digit images of size $2 8 \\times 2 8$ , where 60,000 images are used for training and the rest for testing. This task is to classify the images into 10 digit classes. For the purpose of comparison, we train 6 neural networks with different architectures. The experimental results are shown in Table 1. ", + "bbox": [ + 174, + 796, + 825, + 853 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "6.2 CIFAR-10 AND CIFAR-100 ", + "text_level": 1, + "bbox": [ + 176, + 869, + 413, + 883 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "The CIFAR-10 and CIFAR-100 datasets (Krizhevsky, 2009) consist of 60,000 color images of size $3 2 \\times 3 2$ , drawn from 10 and 100 categories, respectively. 50,000 images are used for training and the rest for testing. The neural network architecture we used for these two datasets has 3 convolutional layers, followed by two fully-connected (dense) hidden layers (again, same as that in Srivastava et al. (2014)). The experimental results are recorded in Table 1, too. ", + "bbox": [ + 173, + 895, + 823, + 924 + ], + "page_idx": 7 + }, + { + "type": "table", + "img_path": "images/175f7773109b3f4f6cc7cd73466847018998be500721e237fb5993740b91fa9b.jpg", + "table_caption": [ + "Table 1: Comparison of classification error percentage on test data with and without using expectationlinearization on MNIST, CIFAR-10 and CIFAR-100, under different network architectures (with standard deviations for 5 repetitions). " + ], + "table_footnote": [], + "table_body": "
DataArchitecturew.0. ELw. EL
StandardMCStandardMC
MNIST3 dense,1024,logistic1.23±0.031.06±0.021.07±0.021.06±0.03
3 dense,1024,relu1.19±0.021.04±0.021.03±0.021.05±0.03
3 dense,1024,relu+max-norm1.05±0.031.02±0.020.98±0.031.02±0.02
3 dense,2048,relu+max-norm1.07±0.021.00±0.020.94±0.020.97±0.03
2 dense,4096,relu+max-norm1.03±0.020.92±0.030.90±0.020.93±0.02
CIFAR-102 dense,8192,relu+max-norm0.99±0.020.96±0.020.87±0.020.92±0.03
3 conv+2 dense,relu+max-norm12.82±0.1012.16±0.1212.20±0.1412.21±0.15
CIFAR-1003 conv+2 dense,relu+max-norm37.22±0.2236.01±0.2136.25±0.1236.10±0.18
", + "bbox": [ + 173, + 155, + 831, + 286 + ], + "page_idx": 8 + }, + { + "type": "image", + "img_path": "images/c49daebdcab4221015f37caba68dea112f6c0b6488108175b3f185757fd7ca95.jpg", + "image_caption": [ + "Figure 1: Error rate and empirical expectation-linearization risk relative to $\\lambda$ . " + ], + "image_footnote": [], + "bbox": [ + 178, + 305, + 833, + 446 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "", + "bbox": [ + 174, + 497, + 826, + 539 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "From Table 1 we can see that on MNIST data, dropout network training with expectation-linearization outperforms standard dropout on all 6 neural architectures. On CIFAR data, expectation-linearization reduces error rate from $1 2 . 8 2 \\%$ to $1 2 . 2 0 \\%$ for CIFAR-10, achieving $0 . 6 2 \\%$ improvement. For CIFAR-100, the improvement in terms of error rate is $0 . 9 7 \\%$ with reduction from $3 7 . 2 2 \\%$ to $3 6 . 2 5 \\%$ . ", + "bbox": [ + 174, + 546, + 825, + 602 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "From the results we see that with or without expectation-linearization, the MC dropout networks achieve similar results. It illustrates that by achieving expectation-linear neural networks, the predictive power of the learned models has not degraded significantly. Moreover, it is interesting to see that with the regularization, on MNIST dataset, standard dropout networks achieve even better accuracy than MC dropout. It may be because that with expectation-linearization, standard dropout inference achieves better approximation of the final prediction than MC dropout with (only) 100 samples. On CIFAR datasets, MC dropout networks achieve better accuracy than the ones with the regularization. But, obviously, MC dropout requires much more inference time than standard dropout (MC dropout with $m$ samples requires about $m$ times the inference time of standard dropout). ", + "bbox": [ + 174, + 608, + 825, + 734 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "6.3 EFFECT OF REGULARIZATION CONSTANT $\\lambda$ ", + "text_level": 1, + "bbox": [ + 174, + 757, + 516, + 771 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "In this section, we explore the effect of varying the hyper-parameter for the expectation-linearization rate $\\lambda$ . We train the network architectures in Table 1 with the $\\lambda$ value ranging from 0.1 to 10.0. Figure 1 shows the test errors obtained as a function of $\\lambda$ on three datasets. In addition, Figure 1, middle and right panels, also measures the empirical expectation-linearization risk $\\hat { \\Delta }$ of Eq. (12) with varying $\\lambda$ on CIFAR-10 and CIFAR-100, where $\\hat { \\Delta }$ is computed using Monte carlo with 100 independent samples. ", + "bbox": [ + 173, + 785, + 825, + 872 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "From Figure 1 we can see that when $\\lambda$ increases, better expectation-linearity is achieved (i.e. $\\hat { \\Delta }$ decreases). The model accuracy, however, has not kept growing with increasing $\\lambda$ , showing that in practice considerations on the trade-off between model expectation-linearity and accuracy are needed. ", + "bbox": [ + 176, + 882, + 825, + 924 + ], + "page_idx": 8 + }, + { + "type": "table", + "img_path": "images/e884ec4bffb7b346fbae22dd9b64b804623293e92aba47f61836441afa624e84.jpg", + "table_caption": [ + "Table 2: Comparison of test data errors using standard dropout, Monte Carlo dropout, standard dropout with our proposed expectation-linearization, and recently proposed dropout distillation on CIFAR-10 and CIFAR-100 under AllConv, (with standard deviations for 5 repetitions). " + ], + "table_footnote": [], + "table_body": "
DataNetworkStandardMCw. ELDistillation
CIFAR-10AllConv11.18±0.1110.58±0.2110.86±0.0810.81±0.14
CIFAR-100AllConv35.50±0.2334.43±0.2535.10±0.1335.07±0.20
", + "bbox": [ + 214, + 155, + 784, + 200 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "6.4 COMPARISON WITH DROPOUT DISTILLATION ", + "text_level": 1, + "bbox": [ + 174, + 227, + 529, + 242 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "To make a thorough empirical comparison with the recently proposed Dropout Distillation method (Bulò et al., 2016), we also evaluate our regularization method on CIFAR-10 and CIFAR-100 datasets with the All Convolutional Network (Springenberg et al., 2014) (AllConv). To facilitate comparison, we adopt the originally reported hyper-parameters and the same setup for training. ", + "bbox": [ + 174, + 253, + 825, + 310 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Table 2 gives the results comparison the classification error percentages on test data under AllConv using standard dropout, Monte Carlo dropout, standard dropout with our proposed expectationlinearization, and recently proposed dropout distillation on CIFAR-10 and CIFAR-100 1. According to Table 2, our proposed expectation-linear regularization method achieves comparable performance to dropout distillation. ", + "bbox": [ + 174, + 316, + 825, + 386 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "7 CONCLUSIONS ", + "text_level": 1, + "bbox": [ + 176, + 409, + 328, + 424 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "In this work, we attempted to establish a theoretical basis for the understanding of dropout, motivated by controlling the gap between dropout’s training and inference phases. Through formulating dropout as a latent variable model and introducing the notion of (approximate) expectation-linearity, we have formally studied the inference gap of dropout, and introduced an empirical measure as a regularization scheme to explicitly control the gap. Experiments on three benchmark datasets demonstrate that reducing the inference gap can indeed improve the end performance. In the future, we intend to formally relate the inference gap to the generalization error of the underlying network, hence providing further justification of regularized dropout. ", + "bbox": [ + 174, + 440, + 825, + 553 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "ACKNOWLEDGEMENTS ", + "text_level": 1, + "bbox": [ + 176, + 575, + 367, + 589 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "This research was supported in part by DARPA grant FA8750-12-2-0342 funded under the DEFT program. Any opinions, findings, and conclusions or recommendations expressed in this material are those of the authors and do not necessarily reflect the views of DARPA. ", + "bbox": [ + 174, + 606, + 825, + 648 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "REFERENCES ", + "text_level": 1, + "bbox": [ + 174, + 671, + 285, + 685 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Jacob Andreas, Maxim Rabinovich, Michael I Jordan, and Dan Klein. On the accuracy of selfnormalized log-linear models. In Advances in Neural Information Processing Systems, pp. 1774– 1782, 2015. ", + "bbox": [ + 174, + 695, + 826, + 737 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Pierre Baldi and Peter Sadowski. The dropout learning algorithm. Artificial intelligence, 210:78–122, 2014. ", + "bbox": [ + 173, + 748, + 825, + 776 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Pierre Baldi and Peter J Sadowski. Understanding dropout. In Advances in Neural Information Processing Systems, pp. 2814–2822, 2013. ", + "bbox": [ + 176, + 790, + 823, + 818 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "David M Bradley and J Andrew Bagnell. Differential sparse coding. 2008. ", + "bbox": [ + 176, + 829, + 663, + 844 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Samuel Rota Bulò, Lorenzo Porzi, and Peter Kontschieder. Dropout distillation. In Proceedings of The 33rd International Conference on Machine Learning, pp. 99–107, 2016. ", + "bbox": [ + 178, + 856, + 825, + 885 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Ning Chen, Jun Zhu, Jianfei Chen, and Bo Zhang. Dropout training for support vector machines. In Proceedings Twenty-Eighth AAAI Conference on Artificial Intelligence, 2014. ", + "bbox": [ + 171, + 103, + 823, + 133 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Yarin Gal and Zoubin Ghahramani. Dropout as a bayesian approximation: Insights and applications. In Deep Learning Workshop, ICML, 2015. ", + "bbox": [ + 173, + 140, + 823, + 170 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Yarin Gal and Zoubin Ghahramani. A theoretically grounded application of dropout in recurrent neural networks. In Advances in Neural Information Processing Systems, 2016. ", + "bbox": [ + 173, + 178, + 823, + 208 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Wei Gao and Zhi-Hua Zhou. Dropout rademacher complexity of deep neural networks. arXiv preprint arXiv:1402.3811, 2014. ", + "bbox": [ + 174, + 215, + 825, + 246 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "David P Helmbold and Philip M Long. On the inductive bias of dropout. arXiv preprint arXiv:1412.4736, 2014. ", + "bbox": [ + 176, + 253, + 825, + 284 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "David P Helmbold and Philip M Long. Fundamental differences between dropout and weight decay in deep networks. arXiv preprint arXiv:1602.04484, 2016. ", + "bbox": [ + 171, + 291, + 825, + 321 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Geoffrey Hinton. A practical guide to training restricted boltzmann machines. Momentum, 9(1):926, 2010. ", + "bbox": [ + 174, + 329, + 825, + 358 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Geoffrey Hinton, Oriol Vinyals, and Jeff Dean. Distilling the knowledge in a neural network. arXiv preprint arXiv:1503.02531, 2015. ", + "bbox": [ + 173, + 367, + 825, + 396 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Geoffrey E Hinton, Nitish Srivastava, Alex Krizhevsky, Ilya Sutskever, and Ruslan R Salakhutdinov. Improving neural networks by preventing co-adaptation of feature detectors. arXiv preprint arXiv:1207.0580, 2012. ", + "bbox": [ + 174, + 405, + 823, + 448 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Prateek Jain, Vivek Kulkarni, Abhradeep Thakurta, and Oliver Williams. To drop or not to drop: Robustness, consistency and differential privacy properties of dropout. arXiv preprint arXiv:1503.02031, 2015. ", + "bbox": [ + 174, + 455, + 823, + 500 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Diederik P Kingma, Tim Salimans, and Max Welling. Variational dropout and the local reparameterization trick. In Advances in Neural Information Processing Systems, pp. 2575–2583, 2015. ", + "bbox": [ + 174, + 507, + 823, + 537 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Alex Krizhevsky. Learning multiple layers of features from tiny images, 2009. ", + "bbox": [ + 174, + 545, + 691, + 561 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Yann LeCun, Léon Bottou, Yoshua Bengio, and Patrick Haffner. Gradient-based learning applied to document recognition. Proceedings of the IEEE, 86(11):2278–2324, 1998. ", + "bbox": [ + 173, + 569, + 818, + 599 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Yann LeCun, Yoshua Bengio, and Geoffrey Hinton. Deep learning. Nature, 521:436–444, 2015. ", + "bbox": [ + 176, + 607, + 805, + 623 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Xuezhe Ma and Eduard Hovy. End-to-end sequence labeling via bi-directional LSTM-CNNs-CRF. In Proceedings of ACL-2016, pp. 1064–1074, Berlin, Germany, August 2016. ", + "bbox": [ + 174, + 631, + 821, + 661 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Jürgen Schmidhuber. Deep learning in neural networks: An overview. Neural Networks, 61:85–117, 2015. ", + "bbox": [ + 174, + 669, + 823, + 698 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Jost Tobias Springenberg, Alexey Dosovitskiy, Thomas Brox, and Martin Riedmiller. Striving for simplicity: The all convolutional net. arXiv preprint arXiv:1412.6806, 2014. ", + "bbox": [ + 174, + 705, + 823, + 736 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Nathan Srebro, Jason Rennie, and Tommi S Jaakkola. Maximum-margin matrix factorization. In Advances in neural information processing systems, pp. 1329–1336, 2004. ", + "bbox": [ + 173, + 743, + 823, + 775 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Nitish Srivastava. Improving neural networks with dropout. PhD thesis, University of Toronto, 2013. ", + "bbox": [ + 171, + 781, + 825, + 797 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Nitish Srivastava, Geoffrey Hinton, Alex Krizhevsky, Ilya Sutskever, and Ruslan Salakhutdinov. Dropout: A simple way to prevent neural networks from overfitting. The Journal of Machine Learning Research, 15(1):1929–1958, 2014. ", + "bbox": [ + 178, + 805, + 823, + 849 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Robert Tibshirani. Regression shrinkage and selection via the lasso. Journal of the Royal Statistical Society. Series B (Methodological), pp. 267–288, 1996. ", + "bbox": [ + 173, + 857, + 821, + 887 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Andrey Nikolayevich Tikhonov. On the stability of inverse problems. In Dokl. Akad. Nauk SSSR, volume 39, pp. 195–198, 1943. ", + "bbox": [ + 173, + 895, + 823, + 924 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Stefan Wager, Sida Wang, and Percy S Liang. Dropout training as adaptive regularization. In Advances in neural information processing systems, pp. 351–359, 2013. ", + "bbox": [ + 173, + 103, + 823, + 132 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Stefan Wager, William Fithian, Sida Wang, and Percy S Liang. Altitude training: Strong bounds for single-layer dropout. In Advances in Neural Information Processing Systems, pp. 100–108, 2014. ", + "bbox": [ + 174, + 140, + 823, + 170 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Sida Wang and Christopher Manning. Fast dropout training. In Proceedings of the 30th International Conference on Machine Learning, pp. 118–126, 2013. ", + "bbox": [ + 176, + 179, + 823, + 208 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "APPENDIX: DROPOUT WITH EXPECTATION-LINEAR REGULARIZATION ", + "text_level": 1, + "bbox": [ + 169, + 101, + 759, + 119 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "A LVM DROPOUT TRAINING VS. STANDARD DROPOUT TRAINING ", + "bbox": [ + 174, + 133, + 741, + 152 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "Proof of Theorem 1 ", + "text_level": 1, + "bbox": [ + 173, + 166, + 312, + 183 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "Proof. ", + "bbox": [ + 173, + 196, + 217, + 212 + ], + "page_idx": 12 + }, + { + "type": "equation", + "img_path": "images/1b6eda8517f3480f3cc112ab5c9f02fb056c577cb4ccb3c958b4878731780415.jpg", + "text": "$$\n\\begin{array} { r c l } { \\operatorname { E } _ { S _ { D } } [ l ( D , S _ { D } ; \\theta ) ] } & { = } & { \\displaystyle \\int _ { S } \\prod _ { i = 1 } ^ { N } p ( s _ { i } ) \\Big ( \\sum _ { i = 1 } ^ { N } \\log p ( y _ { i } | x _ { i } , s _ { i } ; \\theta ) \\Big ) d \\mu ( s _ { 1 } ) \\dots d \\mu ( s _ { N } ) } \\\\ & { = } & { \\displaystyle \\sum _ { i = 1 } ^ { N } \\int _ { S } p ( s _ { i } ) \\log p ( y _ { i } | x _ { i } , s _ { i } ; \\theta ) d \\mu ( s _ { i } ) } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 233, + 218, + 763, + 287 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "Because $\\log ( \\cdot )$ is a concave function, from Jensen’s Inequality, ", + "bbox": [ + 173, + 292, + 586, + 309 + ], + "page_idx": 12 + }, + { + "type": "equation", + "img_path": "images/3859dff83b389564e9c51ff0bdec82490b03d79f6978f8e000e7f7fdf08a7e28.jpg", + "text": "$$\n\\int _ { S } p ( s ) \\log p ( y | x , s ; \\theta ) d \\mu ( s ) \\leq \\log \\int _ { S } p ( s ) p ( y | x , s ; \\theta ) d \\mu ( s )\n$$", + "text_format": "latex", + "bbox": [ + 299, + 314, + 697, + 348 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "Thus ", + "bbox": [ + 173, + 354, + 209, + 368 + ], + "page_idx": 12 + }, + { + "type": "equation", + "img_path": "images/a943f05ddcf38f168121e7f010fd299223446bdbdbab7160e8ab433d15724b17.jpg", + "text": "$$\n\\mathrm { E } _ { S _ { D } } [ - l ( D , S _ { D } ; \\theta ) ] \\geq \\sum _ { i = 1 } ^ { N } \\log \\int _ { S } p ( s _ { i } ) p ( y _ { i } | x _ { i } , s _ { i } ; \\theta ) d \\mu ( s _ { i } ) = - l ( D ; \\theta ) .\n$$", + "text_format": "latex", + "bbox": [ + 259, + 364, + 738, + 407 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "B EXPECTATION-LINEAR DROPOUT NEURAL NETWORKS ", + "text_level": 1, + "bbox": [ + 173, + 444, + 668, + 462 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "B.1 PROOF OF THEOREM 2 ", + "text_level": 1, + "bbox": [ + 174, + 477, + 375, + 491 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "Proof. Let $\\gamma ^ { * } = \\operatorname { E } [ \\Gamma ]$ , and ", + "bbox": [ + 174, + 502, + 352, + 518 + ], + "page_idx": 12 + }, + { + "type": "equation", + "img_path": "images/21b943485aeea75139781e75eec77a838dff7379b690e1a36624bde044feeaf9.jpg", + "text": "$$\nA \\triangleq \\{ x : \\| \\mathrm { E } [ f ( x \\odot \\Gamma ; \\theta ) ] - f ( x \\odot \\gamma ^ { * } ; \\theta ) \\| _ { 2 } = 0 \\}\n$$", + "text_format": "latex", + "bbox": [ + 331, + 526, + 665, + 546 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "Let $X ^ { * } = \\underset { x \\in A } { \\operatorname { a r g m i n } } \\ \\underset { \\gamma \\in S } { \\operatorname* { s u p } } \\| X \\odot \\gamma - x \\odot \\gamma \\| _ { 2 }$ , and $X ^ { - } = X - X ^ { * }$ . Then, ", + "bbox": [ + 173, + 553, + 640, + 578 + ], + "page_idx": 12 + }, + { + "type": "equation", + "img_path": "images/0980e2307b9837b6e871f9cac99c41111ca2dd922d0f88bd0bb77c61ad87adac.jpg", + "text": "$$\nX \\odot \\gamma = X ^ { * } \\odot \\gamma + X ^ { - } \\odot \\gamma\n$$", + "text_format": "latex", + "bbox": [ + 400, + 587, + 598, + 604 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "In the following, we omit the parameter $\\theta$ for convenience. Moreover, we denote ", + "bbox": [ + 173, + 611, + 702, + 626 + ], + "page_idx": 12 + }, + { + "type": "equation", + "img_path": "images/c8284b1ff901db327eca9c00d4df166fcd6b6a283bc8bf441547e3b4678b7a43.jpg", + "text": "$$\n\\operatorname { E } _ { \\Gamma } { \\big [ } f ( X \\odot \\Gamma ; \\theta ) { \\big ] } \\triangleq \\operatorname { E } \\left[ f ( X \\odot \\Gamma ; \\theta ) | X \\right]\n$$", + "text_format": "latex", + "bbox": [ + 364, + 633, + 632, + 656 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "From Taylor Series, there exit some $X ^ { \\prime } , X ^ { \\prime \\prime } \\in \\mathcal { X }$ satisfy that ", + "bbox": [ + 173, + 661, + 573, + 678 + ], + "page_idx": 12 + }, + { + "type": "equation", + "img_path": "images/e017dfa5f30f4d0bcde9cdbb1fe0ce624e22ccd6e411ce710da15e8c45abb366.jpg", + "text": "$$\n\\begin{array} { r c l } { f ( X \\odot \\Gamma ) } & { = } & { f ( X ^ { * } \\odot \\Gamma ) + f ^ { \\prime } ( X ^ { \\prime } \\odot \\Gamma ) ( X ^ { - } \\odot \\Gamma ) } \\\\ { f ( X \\odot \\gamma ^ { * } ) } & { = } & { f ( X ^ { * } \\odot \\gamma ^ { * } ) + f ^ { \\prime } ( X ^ { \\prime \\prime } \\odot \\gamma ^ { * } ) ( X ^ { - } \\odot \\gamma ^ { * } ) } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 305, + 683, + 692, + 718 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "where we denote $f ^ { \\prime } ( x ) = ( \\nabla _ { x } f ( x ) ) ^ { T }$ . Then, ", + "bbox": [ + 174, + 723, + 472, + 741 + ], + "page_idx": 12 + }, + { + "type": "equation", + "img_path": "images/1ed065d530f35da6161a8078e70ecec4c7138484e8030a8455714d1b6fe39662.jpg", + "text": "$$\n\\begin{array} { r l } & { \\mathrm { E r } [ f ( X \\odot \\Gamma ) - f ( X \\odot \\gamma ^ { * } ) ] } \\\\ { = } & { \\mathrm { E r } [ f ( X ^ { * } \\odot \\Gamma + X ^ { - } \\odot \\Gamma ) - f ( X ^ { * } \\odot \\gamma ^ { * } + X ^ { - } \\odot \\gamma ^ { * } ) ] } \\\\ { = } & { \\mathrm { E r } [ f ( X ^ { * } \\odot \\Gamma ) - f ( X ^ { * } \\odot \\gamma ^ { * } ) + f ^ { \\prime } ( X ^ { \\prime } \\odot \\Gamma ) ( X ^ { - } \\odot \\Gamma ) - f ^ { \\prime } ( X ^ { \\prime \\prime } \\odot \\gamma ^ { * } ) ( X ^ { - } \\odot \\gamma ^ { * } ) ] } \\\\ { = } & { \\mathrm { E r } [ f ( X ^ { * } \\odot \\Gamma ) - f ( X ^ { * } \\odot \\gamma ^ { * } ) ] + \\mathrm { E r } [ f ^ { \\prime } ( X ^ { \\prime } \\odot \\Gamma ) ( X ^ { - } \\odot \\Gamma ) - f ^ { \\prime } ( X ^ { \\prime \\prime } \\odot \\gamma ^ { * } ) ( X ^ { - } \\odot \\gamma ^ { * } ) ] } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 189, + 746, + 808, + 808 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "Since $X ^ { * } \\in A$ , we have ", + "bbox": [ + 173, + 814, + 333, + 828 + ], + "page_idx": 12 + }, + { + "type": "equation", + "img_path": "images/485c81811868da9d1b3b3b4e5dd9c3cb1261face5102ae8206ff0b9391611f5c.jpg", + "text": "$$\n\\operatorname { E } _ { \\Gamma } [ f ( X ^ { * } \\odot \\Gamma ) - f ( X ^ { * } \\odot \\gamma ^ { * } ) ] = 0 .\n$$", + "text_format": "latex", + "bbox": [ + 377, + 827, + 619, + 843 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "Then, ", + "bbox": [ + 173, + 848, + 214, + 861 + ], + "page_idx": 12 + }, + { + "type": "equation", + "img_path": "images/cf1f8852dfaca9b7cadef2881408869e07feaa9365764655fcf392b3189209fc.jpg", + "text": "$$\n\\begin{array} { r l } & { \\mathrm { E r } [ f ( X \\odot \\Gamma ) - f ( X \\odot \\gamma ^ { * } ) ] } \\\\ { = } & { \\mathrm { E } _ { \\Gamma } [ f ^ { \\prime } ( X ^ { \\prime } \\odot \\Gamma ) ( X ^ { - } \\odot \\Gamma ) - f ^ { \\prime } ( X ^ { \\prime \\prime } \\odot \\gamma ^ { * } ) ( X ^ { - } \\odot \\gamma ^ { * } ) ] } \\\\ { = } & { \\mathrm { E } _ { \\Gamma } \\big [ ( f ^ { \\prime } ( X ^ { \\prime } \\odot \\Gamma ) - f ^ { \\prime } ( X ^ { \\prime \\prime } \\odot \\gamma ^ { * } ) ) ( X ^ { - } \\odot \\Gamma ) \\big ] + \\mathrm { E } _ { \\Gamma } [ f ^ { \\prime } ( X ^ { \\prime \\prime } \\odot \\gamma ^ { * } ) ( X ^ { - } \\odot \\Gamma - X ^ { - } \\odot \\gamma ^ { * } ) ] } \\\\ { = } & { \\mathrm { E } _ { \\Gamma } \\big [ ( f ^ { \\prime } ( X ^ { \\prime } \\odot \\Gamma ) - f ^ { \\prime } ( X ^ { \\prime \\prime } \\odot \\gamma ^ { * } ) ) ( X ^ { - } \\odot \\Gamma ) \\big ] } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 187, + 867, + 805, + 928 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "Then, ", + "bbox": [ + 173, + 103, + 214, + 118 + ], + "page_idx": 13 + }, + { + "type": "equation", + "img_path": "images/bce0d2e616c4bad3fe56e7d67d1cf98bb1cb3030e4786fff005ad0d3ce0faf57.jpg", + "text": "$$\n\\begin{array} { r l } & { \\| \\mathrm { E } _ { \\Gamma } [ f ( X \\odot \\Gamma ) ] - f ( X \\odot \\gamma ^ { * } ) \\| _ { 2 } } \\\\ { = } & { \\| \\mathrm { E } _ { \\Gamma } [ ( f ^ { \\prime } ( X ^ { \\prime } \\odot \\Gamma ) - f ^ { \\prime } ( X ^ { \\prime \\prime } \\odot \\gamma ^ { * } ) ) ( X ^ { - } \\odot \\Gamma ) ] \\| _ { 2 } } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 320, + 116, + 676, + 147 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "Since $\\| X ^ { - } \\odot \\gamma ^ { \\prime } \\| _ { 2 } \\leq \\operatorname* { s u p } _ { \\gamma \\in S } \\| X ^ { - } \\odot \\gamma \\| _ { 2 } = \\operatorname* { i n f } _ { x \\in A } \\operatorname* { s u p } _ { \\gamma \\in S } \\| X \\odot \\gamma - x \\odot \\gamma \\| _ { 2 }$ , and from Jensen’s inequality and property of operator norm, ", + "bbox": [ + 174, + 148, + 825, + 186 + ], + "page_idx": 13 + }, + { + "type": "equation", + "img_path": "images/7293aa72bdfc9da6dd4c66f3aadb86915be163c5133b37713db59e120995bb30.jpg", + "text": "$$\n\\begin{array} { r l } & { \\| \\mathrm { E } _ { \\Gamma } [ ( f ^ { \\prime } ( X ^ { \\prime } \\odot \\Gamma ) - f ^ { \\prime } ( X ^ { \\prime \\prime } \\odot \\gamma ^ { * } ) ) ( X ^ { - } \\odot \\Gamma ) ] \\| _ { 2 } } \\\\ { \\le } & { \\mathrm { E } _ { \\Gamma } \\Big [ \\| f ^ { \\prime } ( X ^ { \\prime } \\odot \\Gamma ) - f ^ { \\prime } ( X ^ { \\prime \\prime } \\odot \\gamma ^ { * } ) \\| _ { o p } \\| X ^ { - } \\odot \\Gamma \\| _ { 2 } \\Big ] } \\\\ { \\le } & { 2 B \\mathrm { E } _ { \\Gamma } \\Big [ \\| X ^ { - } \\odot \\Gamma \\| _ { 2 } \\Big ] } \\\\ { \\le } & { 2 B \\underset { x \\in A } { \\operatorname* { i n f } } \\underset { \\gamma \\in S } { \\operatorname* { s u p } } \\| X \\odot \\gamma - x \\odot \\gamma \\| _ { 2 } } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 313, + 189, + 679, + 277 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "Finally we have, ", + "bbox": [ + 173, + 280, + 284, + 295 + ], + "page_idx": 13 + }, + { + "type": "equation", + "img_path": "images/e886b0fe49a2618c32b9a22326adb7106a4d8e5b8290a7ae8db54ba3e9da4a73.jpg", + "text": "$$\n\\begin{array} { r l } & { \\mathrm { E } _ { X } \\bigg [ \\| \\mathrm { E } _ { \\Gamma } [ ( f ^ { \\prime } ( X ^ { \\prime } \\odot \\Gamma ) - f ^ { \\prime } ( X ^ { \\prime \\prime } \\odot \\gamma ^ { * } ) ) ( X ^ { - } \\odot \\Gamma ) ] \\| _ { 2 } \\bigg ] } \\\\ { \\le } & { 2 B \\mathrm { E } \\bigg [ \\underset { x \\in A } { \\operatorname* { i n f } } \\underset { \\gamma \\in S } { \\operatorname* { s u p } } \\| X \\odot \\gamma - x \\odot \\gamma \\| _ { 2 } \\bigg ] \\le 2 B C } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 300, + 299, + 694, + 363 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "B.2 PROOF OF THEOREM 3 ", + "text_level": 1, + "bbox": [ + 174, + 397, + 375, + 411 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "Proof. Induction on the number of the layers $L$ . As before, we omit the parameter $\\theta$ . ", + "bbox": [ + 176, + 424, + 728, + 438 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "itial step: when $L = 1$ , the statement is obviously true. ", + "bbox": [ + 192, + 439, + 553, + 452 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "Induction on $L$ : Suppose that the statement is true for neural networks with $L$ layers. Now we prove the case $L + 1$ . From the inductive assumption, we have, ", + "bbox": [ + 176, + 452, + 736, + 479 + ], + "page_idx": 13 + }, + { + "type": "equation", + "img_path": "images/9ff0da115e794544d976c6876261de6f0e96a4988c1c2be95fa52ad1d4e18848.jpg", + "text": "$$\n\\begin{array} { r } { \\mathrm { E } _ { X } \\Big [ \\big \\| \\mathrm { E } _ { S _ { L } } \\big [ \\mathbf { H } ^ { ( L ) } ( X , S _ { L } ) \\big ] - \\mathbf { h } ^ { ( L ) } ( X , \\mathrm { E } [ S _ { L } ] ) \\big \\| _ { 2 } \\Big ] \\leq \\Delta _ { L } } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 313, + 482, + 683, + 510 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "where ${ \\cal S } _ { \\cal L } = \\{ \\Gamma ^ { ( 1 ) } , \\dots , \\Gamma ^ { ( L ) } \\}$ is the dropout random variables for the first $L$ layers, and ", + "bbox": [ + 171, + 513, + 750, + 530 + ], + "page_idx": 13 + }, + { + "type": "equation", + "img_path": "images/a3f94844753a1da969e76f829d6422d3b6f4bf9577a5a023505b660285137284.jpg", + "text": "$$\n\\Delta _ { L } = ( B \\gamma ) ^ { L - 1 } \\delta + ( \\delta + B \\gamma \\sigma ) \\bigg ( { \\frac { 1 - ( B \\gamma ) ^ { L - 1 } } { 1 - B \\gamma } } \\bigg )\n$$", + "text_format": "latex", + "bbox": [ + 333, + 532, + 665, + 569 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "In addition, the $L + 1$ layer is $\\delta$ -approximately expectation-linear, we have: ", + "bbox": [ + 174, + 571, + 668, + 587 + ], + "page_idx": 13 + }, + { + "type": "equation", + "img_path": "images/97e6e1224cac40b9e084b887782df39ad992930f8e349fe9c6d0f27831b4f3a4.jpg", + "text": "$$\n\\begin{array} { r } { \\mathrm { E } _ { \\mathbf { H } ^ { ( L ) } } \\Big [ \\big \\lVert \\mathrm { E } _ { \\Gamma ^ { ( L + 1 ) } } \\left[ f _ { L + 1 } ( \\mathbf { H } ^ { ( L ) } \\odot \\Gamma ^ { ( L + 1 ) } ) \\right] - f _ { L + 1 } ( \\mathbf { H } ^ { ( L ) } \\odot \\boldsymbol { \\gamma } ^ { ( L + 1 ) } ) \\big \\rVert _ { 2 } \\Big ] \\leq \\delta } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 250, + 589, + 746, + 616 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "Let $\\operatorname { E } [ \\Gamma ^ { ( l ) } ] ~ = ~ \\gamma ^ { ( l ) } , \\forall l ~ \\in ~ \\{ 1 , \\dots , L + 1 \\}$ , and let $\\mathbf { H } ^ { ( l ) }$ and $\\mathbf { h } ^ { ( l ) }$ be short for $\\mathbf { H } ^ { ( l ) } ( X , S _ { l } )$ and $\\mathbf { h } ^ { ( l ) } ( X , \\mathrm { E } ( S _ { l } ) )$ , respectively, when there is no ambiguity. Moreover, we denote ", + "bbox": [ + 171, + 619, + 826, + 652 + ], + "page_idx": 13 + }, + { + "type": "equation", + "img_path": "images/de6b84481e73483fcad010587eb5dccf440b5d72b5f170f2b5370c0eb95c578e.jpg", + "text": "$$\n\\operatorname { E } _ { S } \\big [ \\mathbf { H } ^ { ( L ) } ( X , S ; \\theta ) \\big ] = \\operatorname { E } _ { S } \\big [ \\mathbf { H } ^ { ( L ) } ( X , S ; \\theta ) \\big | X \\big ]\n$$", + "text_format": "latex", + "bbox": [ + 346, + 655, + 650, + 676 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "for convenience. Then, ", + "bbox": [ + 173, + 678, + 328, + 693 + ], + "page_idx": 13 + }, + { + "type": "equation", + "img_path": "images/0f3827329b44583b21a5a42d1f4452450977a1463c47600dc3c2da08b458c67b.jpg", + "text": "$$\n\\begin{array} { r l } & { \\mathrm { E } _ { X } [ \\| \\mathrm { E } _ { S _ { L + 1 } } [ \\mathbf { H } ^ { ( L + 1 ) } ] - \\mathbf { h } ^ { ( L + 1 ) } \\| _ { 2 } ] } \\\\ { = } & { \\mathrm { E } _ { X } [ \\| \\mathrm { E } _ { S _ { L } } [ \\mathrm { E } _ { \\Gamma ( L + 1 ) } [ f _ { L + 1 } ( \\mathbf { H } ^ { ( L ) } \\odot \\Gamma ^ { ( L + 1 ) } ) ] - f _ { L + 1 } ( \\mathbf { h } ^ { ( L ) } \\odot \\gamma ^ { ( L + 1 ) } ) ] } \\\\ & { + \\mathrm { E } _ { S _ { L } } [ f _ { L + 1 } ( \\mathbf { H } ^ { ( L ) } \\odot \\gamma ^ { ( L + 1 ) } ) ] - f _ { L + 1 } ( \\mathbf { h } ^ { ( L ) } \\odot \\gamma ^ { ( L + 1 ) } ) \\| _ { 2 } ] } \\\\ { \\le } & { \\mathrm { E } _ { X } [ \\| \\mathrm { E } _ { S _ { L } } [ \\mathrm { E } _ { \\Gamma ( L + 1 ) } [ f _ { L + 1 } ( \\mathbf { H } ^ { ( L ) } \\odot \\Gamma ^ { ( L + 1 ) } ) ] - f _ { L + 1 } ( \\mathbf { h } ^ { ( L ) } \\odot \\gamma ^ { ( L + 1 ) } ) ] \\| _ { 2 } ] } \\\\ & { + \\mathrm { E } _ { X } [ \\| \\mathrm { E } _ { S _ { L } } [ f _ { L + 1 } ( \\mathbf { H } ^ { ( L ) } \\odot \\gamma ^ { ( L + 1 ) } ) ] - f _ { L + 1 } ( \\mathbf { h } ^ { ( L ) } \\odot \\gamma ^ { ( L + 1 ) } ) \\| _ { 2 } ] } \\end{array} .\n$$", + "text_format": "latex", + "bbox": [ + 236, + 695, + 759, + 843 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "From Eq. 2 and Jensen’s inequality, we have ", + "bbox": [ + 174, + 845, + 465, + 861 + ], + "page_idx": 13 + }, + { + "type": "equation", + "img_path": "images/96ee04411401f10bda6dbf98b37808555d1edbb3e586d121146b1625aed3fffd.jpg", + "text": "$$\n\\begin{array} { r l } & { \\mathbf { E } _ { X } \\bigg [ \\Big \\| \\mathrm { E } _ { S _ { L } } \\Big [ \\mathrm { E } _ { \\Gamma ^ { ( L + 1 ) } } \\big [ f _ { L + 1 } ( \\mathbf { H } ^ { ( L ) } \\odot \\Gamma ^ { ( L + 1 ) } ) \\big ] - f _ { L + 1 } ( \\mathbf { h } ^ { ( L ) } \\odot \\gamma ^ { ( L + 1 ) } ) \\Big ] \\Big \\| _ { 2 } \\bigg ] } \\\\ { \\le } & { \\mathrm { E } _ { \\mathbf { H } ^ { ( L ) } } \\bigg [ \\Big \\| \\mathrm { E } _ { \\Gamma ^ { ( L + 1 ) } } \\big [ f _ { L + 1 } ( \\mathbf { H } ^ { ( L ) } \\odot \\Gamma ^ { ( L + 1 ) } ) \\big ] - f _ { L + 1 } ( \\mathbf { h } ^ { ( L ) } \\odot \\gamma ^ { ( L + 1 ) } ) \\Big \\| _ { 2 } \\bigg ] \\le \\delta } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 233, + 863, + 759, + 929 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "and ", + "bbox": [ + 173, + 104, + 202, + 117 + ], + "page_idx": 14 + }, + { + "type": "equation", + "img_path": "images/2703115d94680807f82810b8fb6493bf9518b59591bc8cc9121cc3b5306c246b.jpg", + "text": "$$\n\\begin{array} { r l } & { \\mathrm { E } _ { X } \\left[ \\Big \\lVert \\mathrm { E } _ { S _ { L } } \\Big [ f _ { L + 1 } ( \\mathbf { H } ^ { ( L ) } \\odot \\gamma ^ { ( L + 1 ) } ) \\Big ] - f _ { L + 1 } ( \\mathbf { h } ^ { ( L ) } \\odot \\gamma ^ { ( L + 1 ) } ) \\Big \\rVert _ { 2 } \\right] } \\\\ { = } & { \\mathrm { E } _ { X } \\left[ \\Big \\lVert \\mathrm { E } _ { S _ { L } } \\Big [ f _ { L + 1 } ( \\mathbf { H } ^ { ( L ) } \\odot \\gamma ^ { ( L + 1 ) } ) \\Big ] - f _ { L + 1 } ( \\mathrm { E } _ { S _ { L } } \\big [ \\mathbf { H } ^ { ( L ) } \\big ] \\odot \\gamma ^ { ( L + 1 ) } ) \\right. } \\\\ & { \\left. + f _ { L + 1 } ( \\mathrm { E } _ { S _ { L } } \\big [ \\mathbf { H } ^ { ( L ) } \\big ] \\odot \\gamma ^ { ( L + 1 ) } ) - f _ { L + 1 } ( \\mathbf { h } ^ { ( L ) } \\odot \\gamma ^ { ( L + 1 ) } ) \\Big \\rVert _ { 2 } \\right] } \\\\ { \\le } & { \\mathrm { E } _ { X } \\left[ \\Big \\lVert \\mathrm { E } _ { S _ { L } } \\Big [ f _ { L + 1 } ( \\mathbf { H } ^ { ( L ) } \\odot \\gamma ^ { ( L + 1 ) } ) \\Big ] - f _ { L + 1 } ( \\mathrm { E } _ { S _ { L } } \\big [ \\mathbf { H } ^ { ( L ) } \\big ] \\odot \\gamma ^ { ( L + 1 ) } ) \\Big \\rVert _ { 2 } \\right] } \\\\ & { + \\mathrm { E } _ { X } \\left[ \\Big \\lVert f _ { L + 1 } ( \\mathrm { E } _ { S _ { L } } \\big [ \\mathbf { H } ^ { ( L ) } \\big ] \\odot \\gamma ^ { ( L + 1 ) } ) - f _ { L + 1 } ( \\mathbf { h } ^ { ( L ) } \\odot \\gamma ^ { ( L + 1 ) } ) \\Big \\rVert _ { 2 } \\right] } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 246, + 113, + 750, + 268 + ], + "page_idx": 14 + }, + { + "type": "text", + "text": "Using Jensen’s inequality, property of operator norm and $\\mathrm { E } \\big [ \\mathrm { V a r } [ \\mathbf { H } ^ { ( l ) } | X ] \\big ] \\leq \\sigma ^ { 2 }$ , we have ", + "bbox": [ + 168, + 272, + 759, + 290 + ], + "page_idx": 14 + }, + { + "type": "equation", + "img_path": "images/e6ff3c52165aa6ec59258beec816c1232016b5f7bb1a49f08ef2dfdf595a4ab1.jpg", + "text": "$$\n\\begin{array} { r l } & { \\mathrm { E } _ { X } \\left[ \\Big \\| \\mathrm { E } _ { S _ { L } } \\Big [ f _ { L + 1 } \\big ( \\mathbf { H } ^ { ( L ) } \\odot \\boldsymbol { \\gamma } ^ { ( L + 1 ) } \\big ) \\Big ] - f _ { L + 1 } \\big ( \\mathrm { E } _ { S _ { L } } \\big [ \\mathbf { H } ^ { ( L ) } \\big ] \\odot \\boldsymbol { \\gamma } ^ { ( L + 1 ) } \\big ) \\Big \\| _ { 2 } \\right] } \\\\ { \\leq } & { \\mathrm { E } _ { \\mathbf { H } ^ { ( L ) } } \\left[ \\Big \\| f _ { L + 1 } \\big ( \\mathbf { H } ^ { ( L ) } \\odot \\boldsymbol { \\gamma } ^ { ( L + 1 ) } \\big ) - f _ { L + 1 } \\big ( \\mathrm { E } _ { S _ { L } } \\big [ \\mathbf { H } ^ { ( L ) } \\big ] \\odot \\boldsymbol { \\gamma } ^ { ( L + 1 ) } \\big ) \\Big \\| _ { 2 } \\right] } \\\\ { \\leq } & { B \\gamma \\mathrm { E } _ { \\mathbf { H } ^ { ( L ) } } \\left[ \\big \\| \\mathbf { H } ^ { ( L ) } - \\mathrm { E } _ { S _ { L } } \\big [ \\mathbf { H } ^ { ( L ) } \\big ] \\big \\| _ { 2 } \\right] } \\\\ { \\leq } & { B \\gamma \\left( \\mathrm { E } _ { \\mathbf { H } ^ { ( L ) } } \\left[ \\big \\| \\mathbf { H } ^ { ( L ) } - \\mathrm { E } _ { S _ { L } } \\big [ \\mathbf { H } ^ { ( L ) } \\big ] \\big \\| _ { 2 } ^ { 2 } \\right] \\right) ^ { \\frac { 1 } { 2 } } \\leq B \\gamma \\sigma } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 246, + 296, + 750, + 412 + ], + "page_idx": 14 + }, + { + "type": "text", + "text": "From Eq. 1 ", + "bbox": [ + 173, + 416, + 250, + 431 + ], + "page_idx": 14 + }, + { + "type": "equation", + "img_path": "images/99f5cc07e5e71a85940099ef2716379411d1c68b273bb05f4cf49b626cf3c3a9.jpg", + "text": "$$\n\\begin{array} { r l } & { \\mathrm { E } _ { X } \\bigg [ \\Big \\| f _ { L + 1 } \\big ( \\mathrm { E } _ { S _ { L } } \\big [ \\mathbf { H } ^ { ( L ) } \\big ] \\odot \\boldsymbol { \\gamma } ^ { ( L + 1 ) } \\big ) - f _ { L + 1 } \\big ( \\mathbf { h } ^ { ( L ) } \\odot \\boldsymbol { \\gamma } ^ { ( L + 1 ) } \\big ) \\Big \\| _ { 2 } \\bigg ] } \\\\ { = } & { B \\gamma \\mathrm { E } _ { X } \\Big [ \\big \\| \\mathrm { E } _ { S _ { L } } \\big [ \\mathbf { H } ^ { ( L ) } \\big ] - \\mathbf { h } ^ { ( L ) } \\big \\| _ { 2 } \\Big ] \\leq B \\gamma \\Delta _ { L } } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 269, + 438, + 723, + 496 + ], + "page_idx": 14 + }, + { + "type": "text", + "text": "Finally, to sum up with Eq. 3, Eq. 4, , Eq. 5, , Eq. 6, we have ", + "bbox": [ + 173, + 500, + 571, + 516 + ], + "page_idx": 14 + }, + { + "type": "equation", + "img_path": "images/e42749701a2fe3cd5afe102a84e97b97d388b6b65a47a83f134d554508b6aaef.jpg", + "text": "$$\n\\begin{array} { r l } & { \\mathrm { E } _ { X } \\Big [ \\big \\| \\mathrm { E } _ { S _ { L + 1 } } \\big [ \\mathbf { H } ^ { ( L + 1 ) } \\big ] - \\mathbf { h } ^ { ( L + 1 ) } \\big \\| _ { 2 } \\Big ] } \\\\ { \\leq } & { \\delta + B \\gamma \\sigma + B \\gamma \\Delta _ { L } } \\\\ { = } & { ( B \\gamma ) ^ { L } \\delta + ( \\delta + B \\gamma \\sigma ) \\bigg ( \\frac { 1 - ( B \\gamma ) ^ { L } } { 1 - B \\gamma } \\bigg ) = \\Delta _ { L + 1 } } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 334, + 521, + 660, + 594 + ], + "page_idx": 14 + }, + { + "type": "text", + "text": "C EXPECTATION-LINEARIZATION ", + "text_level": 1, + "bbox": [ + 174, + 633, + 468, + 650 + ], + "page_idx": 14 + }, + { + "type": "text", + "text": "C.1 PROOF OF THEOREM 4: UNIFORM DEVIATION BOUND ", + "bbox": [ + 174, + 665, + 596, + 680 + ], + "page_idx": 14 + }, + { + "type": "text", + "text": "Before proving Theorem 4, we first define the notations. ", + "bbox": [ + 176, + 690, + 542, + 707 + ], + "page_idx": 14 + }, + { + "type": "text", + "text": "Let $X ^ { n } = \\{ X _ { 1 } , \\ldots , X _ { n } \\}$ be a set of $n$ samples of input $X$ . For a function space $\\mathcal { F } : \\mathcal { X } \\mathcal { R }$ , we use $R a d _ { n } ( \\mathcal { F } , X ^ { n } )$ to denote the empirical Rademacher complexity of $\\mathcal { F }$ , ", + "bbox": [ + 174, + 712, + 823, + 742 + ], + "page_idx": 14 + }, + { + "type": "equation", + "img_path": "images/f04eb2324fa86a3364e87f3bbd9dd72ccfebf6671faf2723c1b9c3f61765020d.jpg", + "text": "$$\nR a d _ { n } ( \\mathcal { F } , X ^ { n } ) = \\mathrm { E } _ { \\sigma } \\left[ \\operatorname* { s u p } _ { f \\in \\mathcal { F } } \\Big ( \\frac { 1 } { n } \\sum _ { i = 1 } ^ { n } \\sigma _ { i } f ( X _ { i } ) \\Big ) \\right]\n$$", + "text_format": "latex", + "bbox": [ + 344, + 748, + 653, + 790 + ], + "page_idx": 14 + }, + { + "type": "text", + "text": "and the Rademacher complexity is defined as ", + "bbox": [ + 174, + 795, + 470, + 810 + ], + "page_idx": 14 + }, + { + "type": "equation", + "img_path": "images/d8dd27c39444072410e5ed963fd1ce96a0aedec0bcbf84ce79742c4275dfc86a.jpg", + "text": "$$\nR a d _ { n } ( \\mathcal { F } ) = \\mathrm { E } _ { X ^ { n } } \\Big [ R a d _ { n } ( \\mathcal { F } , X ^ { n } ) \\Big ]\n$$", + "text_format": "latex", + "bbox": [ + 383, + 816, + 614, + 843 + ], + "page_idx": 14 + }, + { + "type": "text", + "text": "In addition, we import the definition of dropout Rademacher complexity from Gao & Zhou (2014): ", + "bbox": [ + 171, + 848, + 820, + 864 + ], + "page_idx": 14 + }, + { + "type": "equation", + "img_path": "images/a013b442d6ddbc3854762fcc741b3a1141b856b4ea6cf1ec63f6dfe0a673276e.jpg", + "text": "$$\n\\begin{array} { r c l } { \\mathcal { R } _ { n } ( \\mathcal { H } , X ^ { n } , S ^ { n } ) } & { = } & { \\operatorname { E } _ { \\sigma } \\bigg [ \\underset { h \\in \\mathcal { H } } { \\operatorname* { s u p } } \\Big ( \\frac { 1 } { n } \\sum _ { i = 1 } ^ { n } \\sigma _ { i } h ( X _ { i } , S _ { i } ) \\Big ) \\bigg ] } \\\\ { \\mathcal { R } _ { n } ( \\mathcal { H } ) } & { = } & { \\operatorname { E } _ { X ^ { n } , S ^ { n } } \\Big [ R a d _ { n } ( \\mathcal { H } , X ^ { n } , S ^ { n } ) \\Big ] } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 316, + 871, + 679, + 929 + ], + "page_idx": 14 + }, + { + "type": "text", + "text": "where $\\mathcal { H } : \\mathcal { X } \\times \\mathcal { S } \\mathcal { R }$ is a function space defined on input space $\\mathcal { X }$ and dropout variable space $s$ . $\\mathcal { R } _ { n } ( \\mathcal { H } , X ^ { n } , S ^ { n } )$ and $\\textstyle { \\mathcal { R } } _ { n } ( { \\mathcal { H } } )$ are the empirical dropout Rademacher complexity and dropout Rademacher complexity, respectively. We further denote $\\mathcal { R } _ { n } ( \\mathcal { H } , X ^ { n } ) \\stackrel { \\Delta } { = } \\mathrm { E } _ { S ^ { n } } \\left[ \\stackrel { \\cdot } { R a d _ { n } } ( \\mathcal { H } , X ^ { n } , S ^ { n } ) \\right]$ . ", + "bbox": [ + 173, + 102, + 826, + 157 + ], + "page_idx": 15 + }, + { + "type": "text", + "text": "Now, we define the following function spaces: ", + "bbox": [ + 173, + 161, + 478, + 176 + ], + "page_idx": 15 + }, + { + "type": "equation", + "img_path": "images/76bbff1f74aa4b906f6b347d2447d96e3cadcefba0950d800e6133e84c46dbb3.jpg", + "text": "$$\n\\begin{array} { r c l } { \\mathcal { F } } & { = } & { \\bigg \\{ f ( x ; \\theta ) : f ( x ; \\theta ) = \\mathrm { E } _ { S } \\Big [ \\mathbf { H } ^ { ( L ) } ( x , S ; \\theta ) \\Big ] , \\theta \\in \\Theta \\bigg \\} } \\\\ { \\mathcal { G } } & { = } & { \\bigg \\{ g ( x ; \\theta ) : g ( x ; \\theta ) = \\mathbf { h } ^ { ( L ) } ( x , \\mathrm { E } [ S ] ; \\theta ) , \\theta \\in \\Theta \\bigg \\} } \\\\ { \\mathcal { H } } & { = } & { \\bigg \\{ h ( x , s ; \\theta ) : h ( x , s ; \\theta ) = \\mathbf { h } ^ { ( L ) } ( x , s ; \\theta ) , \\theta \\in \\Theta \\bigg \\} } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 302, + 179, + 692, + 275 + ], + "page_idx": 15 + }, + { + "type": "text", + "text": "Then, the function space of $v ( x ) = f ( x ) - g ( x )$ is $\\mathcal { V } = \\{ f ( x ) - g ( x ) : f \\in \\mathcal { F } , g \\in \\mathcal { G } \\}$ Lemma 7. ", + "bbox": [ + 173, + 276, + 746, + 309 + ], + "page_idx": 15 + }, + { + "type": "equation", + "img_path": "images/0a49ae1c7e670dd92c67131811baabec8d144cac0fd69ddef937740455d0b056.jpg", + "text": "$$\nR a d _ { n } ( { \\mathcal { F } } , X ^ { n } ) \\leq { \\mathcal { R } } _ { n } ( { \\mathcal { H } } , X ^ { n } )\n$$", + "text_format": "latex", + "bbox": [ + 398, + 309, + 598, + 325 + ], + "page_idx": 15 + }, + { + "type": "text", + "text": "Proof. ", + "bbox": [ + 173, + 339, + 217, + 354 + ], + "page_idx": 15 + }, + { + "type": "equation", + "img_path": "images/4504dd8c46c5d032de648fc9e4d07d59d151dffa76e3e833dea01c2b36048367.jpg", + "text": "$$\n\\begin{array} { r l } & { { \\mathcal { R } } _ { n } ( { \\mathcal { H } } , X ^ { n } ) = \\mathbb { E } _ { S ^ { n } } \\left[ R a d _ { n } ( { \\mathcal { H } } , X ^ { n } , S ^ { n } ) \\right] } \\\\ { = } & { \\mathbb { E } _ { S ^ { n } } \\Bigg [ \\mathbb { E } _ { \\sigma } \\Bigg [ \\underset { h \\in \\mathcal { H } } { \\operatorname* { s u p } } \\left( \\frac { 1 } { n } \\frac { \\sqrt { 2 } } { i _ { 0 } ^ { - 1 } } \\sigma _ { i } h ( X _ { i } , S _ { i } ) \\right) \\Bigg ] \\Bigg ] } \\\\ { = } & { \\mathbb { E } _ { \\sigma } \\Bigg [ \\mathbb { E } _ { S ^ { n } } \\Bigg [ \\underset { h \\in \\mathcal { H } } { \\operatorname* { s u p } } \\left( \\frac { 1 } { n } \\frac { \\sqrt { 2 } } { i _ { 0 } ^ { - 1 } } \\sigma _ { i } h ( X _ { i } , S _ { i } ) \\right) \\Bigg ] \\Bigg ] } \\\\ { \\geq } & { \\mathbb { E } _ { \\sigma } \\Bigg [ \\underset { h \\in \\mathcal { H } } { \\operatorname* { s u p } } \\mathbb { E } _ { S ^ { n } } \\Bigg [ \\left( \\frac { 1 } { n } \\frac { \\sqrt { 2 } } { i _ { 0 } ^ { - 1 } } \\sigma _ { i } h ( X _ { i } , S _ { i } ) \\right) \\Bigg ] \\Bigg ] } \\\\ { = } & { \\mathbb { E } _ { \\sigma } \\Bigg [ \\underset { h \\in \\mathcal { H } } { \\operatorname* { s u p } } \\left( \\frac { 1 } { n } \\frac { \\sqrt { 2 } } { i _ { 0 } ^ { - 1 } } \\sigma _ { i } \\mathbb { E } _ { S _ { i } } \\big [ h ( X _ { i } , S _ { i } ) \\big ] \\right) \\Bigg ] } \\\\ { = } & { \\mathbb { E } _ { \\sigma } \\Bigg [ \\underset { h \\in \\mathcal { H } } { \\operatorname* { s u p } } \\left( \\frac { 1 } { n } \\frac { \\sqrt { 2 } } { i _ { 0 } ^ { - 1 } } \\sigma _ { i } \\mathbb { E } _ { S _ { i } } \\big [ \\mathbb { H } ^ { ( L ) } ( X _ { i } , S _ { i } ; \\theta ) \\big ] \\right) \\Bigg ] = R a d _ { n } ( \\mathcal { F } , X ^ { n } ) } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 277, + 352, + 715, + 534 + ], + "page_idx": 15 + }, + { + "type": "text", + "text": "From Lemma 7, we have $R a d _ { n } ( \\mathcal { F } ) \\leq \\mathcal { R } _ { n } ( \\mathcal { H } )$ . ", + "bbox": [ + 173, + 563, + 482, + 578 + ], + "page_idx": 15 + }, + { + "type": "text", + "text": "Lemma 8. ", + "bbox": [ + 173, + 580, + 246, + 594 + ], + "page_idx": 15 + }, + { + "type": "equation", + "img_path": "images/906d93fa6c990d74a3e44e0e3b4e205e82b0771feef12ce4740864eec5f6be5d.jpg", + "text": "$$\n\\begin{array} { r l r } { \\mathcal { R } _ { n } ( \\mathcal { H } ) } & { \\leq } & { \\frac { \\alpha B ^ { L } \\gamma ^ { L / 2 } } { \\sqrt { n } } } \\\\ { R a d _ { n } ( \\mathcal { G } ) } & { \\leq } & { \\frac { \\alpha B ^ { L } } { \\sqrt { n } } } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 413, + 590, + 583, + 636 + ], + "page_idx": 15 + }, + { + "type": "text", + "text": "Proof. See Theorem 4 in Gao & Zhou (2014). ", + "bbox": [ + 174, + 647, + 477, + 662 + ], + "page_idx": 15 + }, + { + "type": "text", + "text": "Now, we can prove Theorem 4. ", + "bbox": [ + 174, + 678, + 380, + 693 + ], + "page_idx": 15 + }, + { + "type": "text", + "text": "Proof of Theorem 4 ", + "text_level": 1, + "bbox": [ + 174, + 707, + 312, + 722 + ], + "page_idx": 15 + }, + { + "type": "text", + "text": "Proof. From Rademacher-based uniform bounds theorem, with probability $\\geq 1 - \\delta$ ", + "bbox": [ + 173, + 736, + 725, + 752 + ], + "page_idx": 15 + }, + { + "type": "equation", + "img_path": "images/07e15bb7f517575240e13d2b7e4da5b5bb2d212f3a74b65dbbce55f3ac5cac5a.jpg", + "text": "$$\n\\operatorname* { s u p } _ { v \\in \\mathcal { V } } | \\Delta - \\hat { \\Delta } | < 2 R a d _ { n } ( \\mathcal { V } ) + \\beta \\sqrt { \\frac { \\log ( 1 / \\delta ) } { n } }\n$$", + "text_format": "latex", + "bbox": [ + 352, + 755, + 643, + 791 + ], + "page_idx": 15 + }, + { + "type": "text", + "text": "Since $\\mathcal { V } = \\mathcal { F } - \\mathcal { G }$ , we have ", + "bbox": [ + 174, + 795, + 356, + 809 + ], + "page_idx": 15 + }, + { + "type": "equation", + "img_path": "images/bef726fa475f41170328fef501a83aa48fe658e1e0ca934d65228b015ffccfbd.jpg", + "text": "$$\nR a d _ { n } ( \\mathcal { V } ) = R a d _ { n } ( \\mathcal { F } - \\mathcal { G } ) \\leq R a d _ { n } ( \\mathcal { F } ) + R a d _ { n } ( \\mathcal { G } ) \\leq \\frac { \\alpha B ^ { L } ( \\gamma ^ { L / 2 } + 1 ) } { \\sqrt { n } }\n$$", + "text_format": "latex", + "bbox": [ + 256, + 813, + 740, + 848 + ], + "page_idx": 15 + }, + { + "type": "text", + "text": "Then, finally, we have that with probability $\\geq 1 - \\delta$ , ", + "bbox": [ + 173, + 849, + 517, + 866 + ], + "page_idx": 15 + }, + { + "type": "equation", + "img_path": "images/981b083c8e07c64139ba1a145da481a9fa7a094c0b3951e6367b63ca4561de18.jpg", + "text": "$$\n\\operatorname* { s u p } _ { \\theta \\in \\Theta } | \\Delta - \\hat { \\Delta } | < \\frac { 2 \\alpha B ^ { L } ( \\gamma ^ { L / 2 } + 1 ) } { \\sqrt { n } } + \\beta \\sqrt { \\frac { \\log ( 1 / \\delta ) } { n } }\n$$", + "text_format": "latex", + "bbox": [ + 328, + 869, + 666, + 906 + ], + "page_idx": 15 + }, + { + "type": "text", + "text": "C.2 PROOF OF THEOREM 5: NON-UNIFORM BOUND OF MODEL ACCURACY ", + "bbox": [ + 171, + 102, + 714, + 119 + ], + "page_idx": 16 + }, + { + "type": "text", + "text": "For convenience, we denote $\\lambda = \\{ \\theta _ { 1 } , \\dots , \\theta _ { L - 1 } \\}$ . Then $\\theta = \\{ \\lambda , \\eta \\}$ , and MLE $\\hat { \\theta } = \\{ \\hat { \\lambda } , \\hat { \\eta } \\}$ Lemma 9. ", + "bbox": [ + 173, + 127, + 761, + 162 + ], + "page_idx": 16 + }, + { + "type": "equation", + "img_path": "images/668336e6b550ee5666f5eff9da20600065ce5c554eeacbe7f3452ac8aaebe6d9.jpg", + "text": "$$\n\\| \\nabla f _ { L } ( \\cdot ; \\eta ) ^ { T } \\| _ { o p } \\leq 2 \\| \\eta \\| _ { 2 }\n$$", + "text_format": "latex", + "bbox": [ + 413, + 159, + 584, + 179 + ], + "page_idx": 16 + }, + { + "type": "text", + "text": "Proof. denote ", + "bbox": [ + 173, + 193, + 269, + 207 + ], + "page_idx": 16 + }, + { + "type": "equation", + "img_path": "images/0c96192ab5f7d35ca74ac2639d617cc566edc0b35e1c4c06d5d7cfd16012ba61.jpg", + "text": "$$\n\\begin{array} { c } { A = \\nabla f _ { L } ( \\cdot ; \\boldsymbol { \\eta } ) ^ { T } = \\left[ p _ { y } ( \\eta _ { y } - \\overline { { \\boldsymbol { \\eta } } } ) ^ { T } \\right] \\Big | _ { y = 1 } ^ { k } } \\\\ { p _ { y } = p ( y | \\boldsymbol { x } , s ; \\theta ) , \\overline { { \\boldsymbol { \\eta } } } = \\mathrm { E } \\left[ \\eta _ { Y } \\right] = \\displaystyle \\sum _ { y = 1 } ^ { k } p _ { y } \\eta _ { y } . } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 171, + 204, + 630, + 276 + ], + "page_idx": 16 + }, + { + "type": "text", + "text": "For each $v$ such that $\\| v \\| _ { 2 } = 1$ , ", + "bbox": [ + 173, + 281, + 379, + 297 + ], + "page_idx": 16 + }, + { + "type": "equation", + "img_path": "images/70d80023c607997d88ffc80493dda0dc030a3e63b50a0ebc95f9c3f44fd0ea6d.jpg", + "text": "$$\n\\begin{array} { r c l } { \\| A v \\| _ { 2 } ^ { 2 } } & { = } & { \\displaystyle \\sum _ { y \\in \\mathcal { V } } \\left( p _ { y } \\left( \\eta _ { y } - \\overline { { \\eta } } \\right) ^ { T } v \\right) ^ { 2 } \\leq \\sum _ { y \\in \\mathcal { V } } \\| p _ { y } \\left( \\eta _ { y } - \\overline { { \\eta } } \\right) \\| _ { 2 } ^ { 2 } \\| v \\| _ { 2 } ^ { 2 } = \\displaystyle \\sum _ { y \\in \\mathcal { V } } \\| p _ { y } \\left( \\eta _ { y } - \\overline { { \\eta } } \\right) \\| _ { 2 } ^ { 2 } } \\\\ & { \\leq } & { \\displaystyle \\sum _ { y \\in \\mathcal { V } } p _ { y } \\| \\eta _ { y } - \\overline { { \\eta } } \\| _ { 2 } ^ { 2 } \\leq \\sum _ { y \\in \\mathcal { V } } 2 p _ { y } \\left( \\| \\eta \\| _ { 2 } ^ { 2 } + \\sum _ { y ^ { \\prime } \\in \\mathcal { V } } p _ { y ^ { \\prime } } \\| \\eta _ { y ^ { \\prime } } \\| _ { 2 } ^ { 2 } \\right) } \\\\ & { = } & { \\displaystyle 4 \\sum _ { y \\in \\mathcal { V } } p _ { y } \\| \\eta _ { y } \\| _ { 2 } ^ { 2 } \\leq 4 \\| \\eta \\| _ { 2 } ^ { 2 } } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 205, + 303, + 790, + 401 + ], + "page_idx": 16 + }, + { + "type": "text", + "text": "So we have $\\| A \\| _ { o p } \\leq 2 \\| \\eta \\| _ { 2 }$ ", + "bbox": [ + 173, + 406, + 362, + 424 + ], + "page_idx": 16 + }, + { + "type": "text", + "text": "Lemma 10. If parameter $\\tilde { \\theta } = \\{ \\hat { \\lambda } , \\eta \\}$ satisfies that $\\begin{array} { r } { \\| \\eta \\| _ { 2 } \\le \\frac { \\delta } { 4 \\beta } } \\end{array}$ , then $V ( D ; { \\tilde { \\theta } } ) \\leq \\delta$ , where $V ( D ; \\theta )$ is defined in Eq. (16). ", + "bbox": [ + 173, + 431, + 823, + 465 + ], + "page_idx": 16 + }, + { + "type": "text", + "text": "Proof. Let $S _ { L } = \\{ \\Gamma ^ { ( 1 ) } , \\dots , \\Gamma ^ { ( L ) } \\}$ , and let $\\mathbf { H } ^ { ( l ) }$ and $\\mathbf { h } ^ { ( l ) }$ be short for $\\mathbf { H } ^ { ( l ) } ( X , S _ { l } ; \\tilde { \\theta } )$ and $\\mathbf { h } ^ { ( l ) } ( X , \\mathrm { E } ( S _ { l } ) ; \\tilde { \\theta } )$ , respectively. ", + "bbox": [ + 174, + 478, + 825, + 512 + ], + "page_idx": 16 + }, + { + "type": "text", + "text": "From lemma 9, we have $\\| f _ { L } ( x ; \\eta ) - f _ { L } ( y ; \\eta ) \\| _ { 2 } \\leq 2 \\| \\eta \\| _ { 2 } \\| x - y \\| _ { 2 }$ . Then, ", + "bbox": [ + 174, + 517, + 665, + 535 + ], + "page_idx": 16 + }, + { + "type": "equation", + "img_path": "images/c1a3b0aaf3c09b5b6204f720ce6a2abab50b5b237e44e8e3d05813256df7201d.jpg", + "text": "$$\n\\begin{array} { r c l } { \\left\\| \\boldsymbol { \\mathrm { E } } _ { S _ { L } } \\left[ \\mathbf { H } ^ { L } \\right] - \\mathbf { h } ^ { L } \\right\\| _ { 2 } } & { = } & { \\left\\| \\boldsymbol { \\mathrm { E } } _ { S _ { L - 1 } } \\left[ f _ { L } ( \\mathbf { H } ^ { ( L - 1 ) } ; \\boldsymbol { \\eta } ) \\right] - f _ { L } ( \\mathbf { h } ^ { ( L - 1 ) } ; \\boldsymbol { \\eta } ) \\right\\| _ { 2 } } \\\\ & { \\leq } & { \\boldsymbol { \\mathrm { E } } _ { S _ { L - 1 } } \\left\\| f _ { L } ( \\mathbf { H } ^ { ( L - 1 ) } ; \\boldsymbol { \\eta } ) - f _ { L } ( \\mathbf { h } ^ { ( L - 1 ) } ; \\boldsymbol { \\eta } ) \\right\\| _ { 2 } } \\\\ & { \\leq } & { 2 \\| \\boldsymbol { \\eta } \\| _ { 2 } \\left\\| \\mathbf { H } ^ { ( L - 1 ) } - \\mathbf { h } ^ { ( L - 1 ) } \\right\\| _ { 2 } } \\\\ & { \\leq } & { 4 \\beta \\| \\boldsymbol { \\eta } \\| _ { 2 } \\leq \\delta } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 258, + 540, + 738, + 608 + ], + "page_idx": 16 + }, + { + "type": "text", + "text": "Lemma 10 says that we can get $\\theta$ satisfying the expectation-linearization constrain by explicitly scaling down $\\hat { \\eta }$ while keeping $\\hat { \\lambda }$ . ", + "bbox": [ + 173, + 642, + 825, + 674 + ], + "page_idx": 16 + }, + { + "type": "text", + "text": "In order to prove Theorem 5, we make the following assumptions: ", + "bbox": [ + 173, + 680, + 607, + 695 + ], + "page_idx": 16 + }, + { + "type": "text", + "text": "• The dimension of $\\mathbf { h } ^ { ( L - 1 ) }$ is $d$ , i.e. $\\mathbf { h } ^ { ( L - 1 ) } \\in \\mathcal { R } ^ { d }$ . • Since $\\forall y \\in \\mathcal { V } , p ( y | x ; \\hat { \\theta } ) > 0$ , we assume $p ( y | x ; \\hat { \\theta } ) \\geq 1 / b$ , where $b \\geq | \\mathcal { V } | = k$ . • As in the body text, let $p ( \\boldsymbol { y } | \\boldsymbol { x } , s ; \\hat { \\theta } )$ be nonuniform, and in particular let $\\hat { \\eta } _ { y ^ { * } } ^ { T } \\mathbf { h } ^ { ( L - 1 ) } ( x , s ; \\hat { \\lambda } ) - \\hat { \\eta } _ { y } ^ { T } \\mathbf { h } ^ { ( L - 1 ) } ( x , s ; \\hat { \\lambda } ) > c \\| \\hat { \\eta } \\| _ { 2 } , \\forall y \\neq y ^ { * } .$ . ", + "bbox": [ + 214, + 705, + 746, + 784 + ], + "page_idx": 16 + }, + { + "type": "text", + "text": "For convenience, we denote $\\eta ^ { T } \\mathbf { h } ^ { ( L - 1 ) } ( x , s ; \\lambda ) = \\eta ^ { T } u _ { y } ( x , s ; \\lambda )$ , where $u _ { y } ^ { T } ( x , s ; \\lambda ) = ( v _ { 0 } ^ { T } , \\ldots , v _ { k } ^ { T } )$ and ", + "bbox": [ + 171, + 792, + 826, + 820 + ], + "page_idx": 16 + }, + { + "type": "equation", + "img_path": "images/453f768723071c256bea498071168b345295684dfce15e110cd0855cb01ccd33.jpg", + "text": "$$\nv _ { i } = { \\left\\{ \\begin{array} { l l } { \\mathbf { h } ^ { ( L - 1 ) } ( x , s ; \\lambda ) } & { { \\mathrm { i f ~ } } i = y } \\\\ { 0 } & { { \\mathrm { o t h e r w i s e } } } \\end{array} \\right. }\n$$", + "text_format": "latex", + "bbox": [ + 374, + 819, + 611, + 854 + ], + "page_idx": 16 + }, + { + "type": "text", + "text": "To prove Theorem 5, we first prove the following lemmas. ", + "bbox": [ + 169, + 856, + 566, + 872 + ], + "page_idx": 16 + }, + { + "type": "text", + "text": "Lemma 11. If $p ( y | x ; \\hat { \\theta } ) \\geq 1 / b ,$ , then $\\forall \\alpha \\in [ 0 , 1 ] ,$ , for parameter $\\tilde { \\theta } = \\{ \\hat { \\lambda } , \\alpha \\hat { \\eta } \\}$ , we have ", + "bbox": [ + 174, + 875, + 740, + 893 + ], + "page_idx": 16 + }, + { + "type": "equation", + "img_path": "images/b78a53c1be84d657467f664327baec2f32a9cee91372058f960e5bec46d47351.jpg", + "text": "$$\np ( y | x ; \\tilde { \\theta } ) \\geq \\frac { 1 } { b }\n$$", + "text_format": "latex", + "bbox": [ + 450, + 898, + 547, + 929 + ], + "page_idx": 16 + }, + { + "type": "text", + "text": "Proof. We define ", + "bbox": [ + 173, + 103, + 290, + 118 + ], + "page_idx": 17 + }, + { + "type": "equation", + "img_path": "images/a0cfd1285a76395ebe523603abeed94f85248785de2129b4cd7f72e5d56ae2bb.jpg", + "text": "$$\nf ( \\alpha ) \\overset { \\Delta } { = } ( y | x , s ; \\tilde { \\theta } ) = \\frac { e ^ { \\alpha \\eta _ { y } ^ { T } \\mathbf { h } ^ { ( L - 1 ) } ( x , s ; \\hat { \\lambda } ) } } { \\displaystyle \\sum _ { y ^ { \\prime } \\in \\mathcal { Y } } e ^ { \\alpha \\eta _ { y ^ { \\prime } } ^ { T } \\mathbf { h } ^ { ( L - 1 ) } ( x , s ; \\hat { \\lambda } ) } } = \\frac { \\left( e ^ { \\eta _ { y } ^ { T } \\mathbf { h } ^ { ( L - 1 ) } ( x , s ; \\hat { \\lambda } ) } \\right) ^ { \\alpha } } { \\displaystyle \\sum _ { y ^ { \\prime } \\in \\mathcal { Y } } \\left( e ^ { \\eta _ { y ^ { \\prime } } ^ { T } \\mathbf { h } ^ { ( L - 1 ) } ( x , s ; \\hat { \\lambda } ) } \\right) ^ { \\alpha } }\n$$", + "text_format": "latex", + "bbox": [ + 253, + 126, + 743, + 186 + ], + "page_idx": 17 + }, + { + "type": "text", + "text": "Since $\\mathcal { V } = \\{ 1 , \\ldots , k \\}$ , for fixed $x \\in { \\mathcal { X } } , s \\in { \\mathcal { S } } , \\log f ( \\alpha )$ is a concave function w.r.t $\\alpha$ . Since $b \\geq k$ , we have ", + "bbox": [ + 174, + 194, + 735, + 223 + ], + "page_idx": 17 + }, + { + "type": "equation", + "img_path": "images/7291de092f5529999b860252cae4a308953f60c18bb878cb6d779dfa1de6ccf8.jpg", + "text": "$$\n\\log f ( \\alpha ) \\geq ( 1 - \\alpha ) \\log f ( 0 ) + \\alpha \\log f ( 1 ) \\geq - \\log b\n$$", + "text_format": "latex", + "bbox": [ + 325, + 231, + 673, + 248 + ], + "page_idx": 17 + }, + { + "type": "text", + "text": "So we have $\\forall x , s , p ( y | x , s ; \\tilde { \\theta } ) \\geq 1 / b$ . Then ", + "bbox": [ + 174, + 257, + 459, + 273 + ], + "page_idx": 17 + }, + { + "type": "equation", + "img_path": "images/76be1239564a9337b33a7f3bb04ed7cfb29a450e16e330f83eddffcff9536553.jpg", + "text": "$$\np ( \\boldsymbol { y } | \\boldsymbol { x } ; \\tilde { \\boldsymbol { \\theta } } ) = \\mathrm { E } _ { S } \\left[ p ( \\boldsymbol { y } | \\boldsymbol { x } , S ; \\hat { \\boldsymbol { \\theta } } ) \\right] \\geq \\frac { 1 } { b }\n$$", + "text_format": "latex", + "bbox": [ + 382, + 281, + 616, + 310 + ], + "page_idx": 17 + }, + { + "type": "text", + "text": "Lemma 12. if y is not the majority class, i.e. $y \\neq y ^ { * }$ , then for parameter $\\tilde { \\theta } = \\{ \\hat { \\lambda } , \\alpha \\hat { \\eta } \\}$ ", + "bbox": [ + 171, + 342, + 740, + 359 + ], + "page_idx": 17 + }, + { + "type": "equation", + "img_path": "images/14a49cb8849dd59f0e0cf0b2b0cb156f8874971a4e6ade846ca71b4e2c6a2691.jpg", + "text": "$$\np ( y | x , s , \\tilde { \\theta } ) \\leq e ^ { - c \\alpha \\| \\hat { \\eta } \\| _ { 2 } }\n$$", + "text_format": "latex", + "bbox": [ + 419, + 366, + 576, + 386 + ], + "page_idx": 17 + }, + { + "type": "text", + "text": "Proof. ", + "bbox": [ + 173, + 404, + 217, + 419 + ], + "page_idx": 17 + }, + { + "type": "equation", + "img_path": "images/519effaaaf3a265db81a93e535eb8a9e9119986f81539cae63009e7db5539aad.jpg", + "text": "$$\np ( y | x , s , \\widetilde { \\theta } ) = \\frac { e ^ { \\alpha \\widehat { \\eta } ^ { T } u _ { y } } } { \\displaystyle \\sum _ { y ^ { \\prime } \\in \\mathcal { V } } e ^ { \\alpha \\widehat { \\eta } ^ { T } u _ { y ^ { \\prime } } } } \\le \\frac { e ^ { \\alpha \\widehat { \\eta } ^ { T } u _ { y } } } { e ^ { \\alpha \\widehat { \\eta } ^ { T } u _ { y ^ { * } } } } \\le e ^ { - c \\alpha \\| \\widehat { \\eta } \\| _ { 2 } }\n$$", + "text_format": "latex", + "bbox": [ + 323, + 417, + 673, + 468 + ], + "page_idx": 17 + }, + { + "type": "text", + "text": "Lemma 13. For a fixed $x$ and s, the absolute value of the entry of the vector under the parameter $\\tilde { \\theta } = \\{ \\hat { \\lambda } , \\alpha \\hat { \\eta } \\}$ : ", + "bbox": [ + 171, + 497, + 826, + 529 + ], + "page_idx": 17 + }, + { + "type": "equation", + "img_path": "images/f7961415d29ae440136ed8b2865f542f6a028e02c34d48b25a77898e47eb7f2c.jpg", + "text": "$$\n| p ( y | x , s ; \\tilde { \\theta } ) ( u _ { y } - \\mathrm { E } _ { Y } [ u _ { Y } ] ) | _ { i } \\le \\beta ( k - 1 ) e ^ { - c \\alpha \\| \\hat { \\eta } \\| _ { 2 } }\n$$", + "text_format": "latex", + "bbox": [ + 331, + 529, + 665, + 549 + ], + "page_idx": 17 + }, + { + "type": "text", + "text": "Proof. Suppose $y$ is the majority class of $p ( \\boldsymbol { y } | \\boldsymbol { x } , s ; \\tilde { \\theta } )$ . Then, ", + "bbox": [ + 173, + 568, + 570, + 585 + ], + "page_idx": 17 + }, + { + "type": "equation", + "img_path": "images/c876670a48f5c227b5950d6fae7780ff4d92f7f3cc34853d10c4943342fdd226.jpg", + "text": "$$\nu _ { y } - \\mathrm { E } _ { y } [ u _ { Y } ] = \\left( v _ { y ^ { \\prime } } \\right) _ { y ^ { \\prime } = 1 } ^ { k }\n$$", + "text_format": "latex", + "bbox": [ + 411, + 592, + 584, + 614 + ], + "page_idx": 17 + }, + { + "type": "text", + "text": "where ", + "bbox": [ + 173, + 622, + 217, + 636 + ], + "page_idx": 17 + }, + { + "type": "equation", + "img_path": "images/cb30c22519487583b940798a5e0c9a0b99defe7a027e9dbc6ff677f521049f92.jpg", + "text": "$$\nv _ { y } = { \\left\\{ \\begin{array} { l l } { ( 1 - p ( y | x , s ; { \\tilde { \\theta } } ) \\mathbf { h } ^ { ( L - 1 ) } } & { { \\mathrm { i f ~ } } y = y ^ { * } } \\\\ { - p ( y | x , s ; { \\tilde { \\theta } } ) \\mathbf { h } ^ { ( L - 1 ) } } & { { \\mathrm { o t h e r w i s e } } } \\end{array} \\right. }\n$$", + "text_format": "latex", + "bbox": [ + 346, + 633, + 642, + 669 + ], + "page_idx": 17 + }, + { + "type": "text", + "text": "From Lemma 12, we have ", + "bbox": [ + 173, + 672, + 349, + 688 + ], + "page_idx": 17 + }, + { + "type": "equation", + "img_path": "images/821043e820149e19a45875b7c51dae434c87f7411d23b77e25afcc88cc684fe9.jpg", + "text": "$$\n| p ( y | x , s ; \\tilde { \\theta } ) ( u _ { y } - \\mathrm { E } _ { Y } [ u _ { Y } ] ) | _ { i } \\le | ( u _ { y } - \\mathrm { E } _ { Y } [ u _ { Y } ] ) | _ { i } \\le \\beta ( k - 1 ) e ^ { - c \\alpha | | \\hat { \\eta } | | _ { 2 } }\n$$", + "text_format": "latex", + "bbox": [ + 261, + 693, + 735, + 714 + ], + "page_idx": 17 + }, + { + "type": "text", + "text": "Now, we suppose $y$ is not the majority class of $p ( \\boldsymbol { y } | \\boldsymbol { x } , s ; \\tilde { \\boldsymbol { \\theta } } )$ . Then, ", + "bbox": [ + 174, + 723, + 604, + 739 + ], + "page_idx": 17 + }, + { + "type": "equation", + "img_path": "images/bd72ec01d20c00994bd94a4d250f3c1d5c4f0700ed9734f91a1e823610640d3d.jpg", + "text": "$$\n| p ( y | x , s ; \\tilde { \\theta } ) ( u _ { y } - \\mathrm { E } _ { Y } [ u _ { Y } ] ) | _ { i } \\le p ( y | x , s ; \\tilde { \\theta } ) \\beta \\le \\beta e ^ { - c \\alpha \\| \\hat { \\eta } \\| _ { 2 } }\n$$", + "text_format": "latex", + "bbox": [ + 303, + 746, + 694, + 766 + ], + "page_idx": 17 + }, + { + "type": "text", + "text": "Overall, the lemma follows. ", + "bbox": [ + 173, + 773, + 357, + 789 + ], + "page_idx": 17 + }, + { + "type": "text", + "text": "Lemma 14. We denote the matrix ", + "bbox": [ + 173, + 799, + 400, + 814 + ], + "page_idx": 17 + }, + { + "type": "equation", + "img_path": "images/8884771578010fbfba07194c2efe71411a38da1a200910ae5bb14bdfc5f3db2a.jpg", + "text": "$$\n\\begin{array} { r l } { A \\stackrel { \\Delta } { = } } & { \\mathrm { E } _ { S } \\left[ \\frac { p ( y | x , s ; \\tilde { \\theta } ) } { p ( y | x ; \\tilde { \\theta } ) } ( u _ { y } - \\mathrm { E } _ { Y } [ u _ { Y } ] ) ( u _ { y } - \\mathrm { E } _ { Y } [ u _ { Y } ] ) ^ { T } \\right] } \\\\ & { - \\mathrm { E } _ { S } \\left[ \\frac { p ( y | x , s ; \\tilde { \\theta } ) } { p ( y | x ; \\tilde { \\theta } ) } ( u _ { y } - \\mathrm { E } _ { Y } [ u _ { Y } ] ) \\right] \\mathrm { E } _ { S } \\left[ \\frac { p ( y | x , s ; \\tilde { \\theta } ) } { p ( y | x ; \\tilde { \\theta } ) } ( u _ { y } - \\mathrm { E } _ { Y } [ u _ { Y } ] ) \\right] ^ { T } } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 261, + 820, + 736, + 875 + ], + "page_idx": 17 + }, + { + "type": "text", + "text": "Then the absolute value of the entry of $A$ under the parameter $\\tilde { \\theta } = \\{ \\hat { \\lambda } , \\alpha \\hat { \\eta } \\}$ : ", + "bbox": [ + 173, + 882, + 671, + 898 + ], + "page_idx": 17 + }, + { + "type": "equation", + "img_path": "images/f5362d24d4b0113eadda06b0c5846e71de703846577097ba8235fed1026b753f.jpg", + "text": "$$\n| A _ { i j } | \\leq 2 b ( k - 1 ) \\beta ^ { 2 } e ^ { - c \\alpha \\| \\hat { \\eta } \\| _ { 2 } }\n$$", + "text_format": "latex", + "bbox": [ + 400, + 906, + 598, + 926 + ], + "page_idx": 17 + }, + { + "type": "text", + "text": "Proof. From Lemma 11, we have $p ( y | x ; \\tilde { \\theta } ) \\geq 1 / b$ . Additionally, the absolute value of the entry of $u _ { y } - \\operatorname { E } _ { Y } [ u _ { Y } ]$ is bounded by $\\beta$ . We have for each $i$ ", + "bbox": [ + 171, + 102, + 825, + 132 + ], + "page_idx": 18 + }, + { + "type": "equation", + "img_path": "images/e99103e520298aadb5721526beff0ad58a12abae6019296cd67ab848c586e678.jpg", + "text": "$$\n\\begin{array} { r } { \\left| \\mathrm { E } _ { S } \\left[ \\frac { p ( y | x , s ; \\tilde { \\theta } ) } { p ( y | x ; \\tilde { \\theta } ) } ( u _ { y } - \\mathrm { E } _ { Y } [ u _ { Y } ] ) \\right] \\right| _ { i } \\le \\mathrm { E } _ { S } \\left[ \\frac { p ( y | x , s ; \\tilde { \\theta } ) } { p ( y | x ; \\tilde { \\theta } ) } \\beta \\right] = \\beta } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 282, + 140, + 714, + 184 + ], + "page_idx": 18 + }, + { + "type": "text", + "text": "Then from Lemma 13 ", + "bbox": [ + 173, + 190, + 320, + 205 + ], + "page_idx": 18 + }, + { + "type": "equation", + "img_path": "images/b6124589df28f453d7dbfba96d7ff52478a6f5937490417cbf4a212f5504120c.jpg", + "text": "$$\n| A _ { i j } | \\leq 2 b ( k - 1 ) \\beta ^ { 2 } e ^ { - c \\alpha \\| \\hat { \\eta } \\| _ { 2 } }\n$$", + "text_format": "latex", + "bbox": [ + 398, + 204, + 598, + 224 + ], + "page_idx": 18 + }, + { + "type": "text", + "text": "Lemma 15. We denote the matrix ", + "bbox": [ + 173, + 255, + 400, + 270 + ], + "page_idx": 18 + }, + { + "type": "equation", + "img_path": "images/d6526be645fd6b1e28324a272dfe4f5c2f3e29e681df9844644080ce3491765f.jpg", + "text": "$$\nB \\overset { \\Delta } { = } \\mathrm { E } _ { S } \\left[ \\frac { p ( y | x , s ; \\tilde { \\theta } ) } { p ( y | x ; \\tilde { \\theta } ) } \\left( \\mathrm { E } _ { Y } \\left[ u _ { Y } u _ { Y } ^ { T } \\right] - \\mathrm { E } _ { Y } [ u _ { Y } ] \\mathrm { E } _ { Y } [ u _ { Y } ] ^ { T } \\right) \\right]\n$$", + "text_format": "latex", + "bbox": [ + 303, + 275, + 694, + 318 + ], + "page_idx": 18 + }, + { + "type": "text", + "text": "Then the absolute value of the entry of $B$ under the parameter $\\tilde { \\theta } = \\{ \\hat { \\lambda } , \\alpha \\hat { \\eta } \\}$ : ", + "bbox": [ + 173, + 327, + 671, + 344 + ], + "page_idx": 18 + }, + { + "type": "equation", + "img_path": "images/29584ec2c35e977d0fe4063b3eb7c459b7b667b77f078db4c99d5af4d0d437ba.jpg", + "text": "$$\n| B _ { i j } | \\leq 2 ( k - 1 ) \\beta ^ { 2 } e ^ { - c \\alpha \\| \\hat { \\eta } \\| _ { 2 } }\n$$", + "text_format": "latex", + "bbox": [ + 401, + 352, + 594, + 371 + ], + "page_idx": 18 + }, + { + "type": "text", + "text": "Proof. We only need to prove that for fixed $x$ and $s$ , for each $i , j$ : ", + "bbox": [ + 173, + 388, + 602, + 405 + ], + "page_idx": 18 + }, + { + "type": "equation", + "img_path": "images/eb1665c002f141e03f6bfbce4d5521faeb0b3e5f90eeff33beec2e5512175c86.jpg", + "text": "$$\n\\begin{array} { r } { \\left| \\mathrm { E } _ { Y } \\left[ u _ { Y } u _ { Y } ^ { T } \\right] - \\mathrm { E } _ { Y } [ u _ { Y } ] \\mathrm { E } _ { Y } [ u _ { Y } ] ^ { T } \\right| _ { i j } \\leq 2 ( k - 1 ) \\beta ^ { 2 } e ^ { - c \\alpha \\| \\hat { \\eta } \\| _ { 2 } } } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 299, + 412, + 696, + 435 + ], + "page_idx": 18 + }, + { + "type": "text", + "text": "Since ", + "bbox": [ + 173, + 443, + 214, + 457 + ], + "page_idx": 18 + }, + { + "type": "equation", + "img_path": "images/ccb52cd17f649eebf81dd22579c7f54516d53815c5eb993258df873bd34c627a.jpg", + "text": "$$\n\\mathbb { E } _ { Y } \\left[ u _ { Y } u _ { Y } ^ { T } \\right] - \\mathbb { E } _ { Y } [ u _ { Y } ] \\mathbb { E } _ { Y } [ u _ { Y } ] ^ { T } \\big | _ { i j } = \\big | \\mathrm { C o v } _ { Y } [ ( u _ { Y } ) _ { i } , ( u _ { Y } ) _ { j } ] \\big | \\le \\beta ^ { 2 } \\sum _ { y = 1 } ^ { k } p ( y | x , s ; \\tilde { \\theta } ) - p ( y | x , s ; \\tilde { \\theta } ) ^ { 2 }\n$$", + "text_format": "latex", + "bbox": [ + 181, + 463, + 823, + 507 + ], + "page_idx": 18 + }, + { + "type": "text", + "text": "Suppose $y$ is the majority class. Then from Lemma 12, ", + "bbox": [ + 174, + 515, + 534, + 530 + ], + "page_idx": 18 + }, + { + "type": "equation", + "img_path": "images/d3f51fea1f592f685290d57da1ecc18774d109fe9d4a3fb4520b5a8a276478ec.jpg", + "text": "$$\n\\begin{array} { r } { p ( y | x , s ; \\tilde { \\theta } ) - p ( y | x , s ; \\tilde { \\theta } ) ^ { 2 } \\leq 1 - p ( y | x , s ; \\tilde { \\theta } ) \\leq ( k - 1 ) e ^ { - c \\alpha \\| \\hat { \\eta } \\| _ { 2 } } } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 282, + 537, + 714, + 558 + ], + "page_idx": 18 + }, + { + "type": "text", + "text": "If $y$ is not the majority class. Then, ", + "bbox": [ + 174, + 565, + 406, + 580 + ], + "page_idx": 18 + }, + { + "type": "equation", + "img_path": "images/1b959a1b963503377f5e345d03024a2aba2ce1f24c5559c3f6b3476b688d47bf.jpg", + "text": "$$\np ( y | x , s ; \\tilde { \\theta } ) - p ( y | x , s ; \\tilde { \\theta } ) ^ { 2 } \\leq p ( y | x , s ; \\tilde { \\theta } ) \\leq e ^ { - c \\alpha \\| \\hat { \\eta } \\| _ { 2 } }\n$$", + "text_format": "latex", + "bbox": [ + 321, + 588, + 674, + 608 + ], + "page_idx": 18 + }, + { + "type": "text", + "text": "So we have ", + "bbox": [ + 173, + 616, + 251, + 630 + ], + "page_idx": 18 + }, + { + "type": "equation", + "img_path": "images/ea3c582db03549ae4d4dca461d2e18abc90abb52273634efcf59f8353b9ae188.jpg", + "text": "$$\n\\sum _ { y = 1 } ^ { k } p ( y | x , s ; \\tilde { \\theta } ) - p ( y | x , s ; \\tilde { \\theta } ) ^ { 2 } \\leq 2 ( k - 1 ) e ^ { - c \\alpha \\| \\hat { \\eta } \\| _ { 2 } }\n$$", + "text_format": "latex", + "bbox": [ + 323, + 628, + 669, + 672 + ], + "page_idx": 18 + }, + { + "type": "text", + "text": "The lemma follows. ", + "bbox": [ + 173, + 676, + 305, + 691 + ], + "page_idx": 18 + }, + { + "type": "text", + "text": "Lemma 16. Under the parameter $\\tilde { \\theta } = \\{ \\hat { \\lambda } , \\alpha \\hat { \\eta } \\}$ , the largest eigenvalue of the matrix ", + "bbox": [ + 173, + 702, + 725, + 720 + ], + "page_idx": 18 + }, + { + "type": "equation", + "img_path": "images/dd198b37916779ef20588a3ff4512262d0e025f56097e45505800929501bfab4.jpg", + "text": "$$\n{ \\frac { 1 } { n } } \\sum _ { i = 1 } ^ { n } { \\big ( } A ( x _ { i } , y _ { i } ) - B ( x _ { i } , y _ { i } ) { \\big ) }\n$$", + "text_format": "latex", + "bbox": [ + 398, + 727, + 599, + 768 + ], + "page_idx": 18 + }, + { + "type": "text", + "text": "is at most ", + "bbox": [ + 173, + 776, + 240, + 790 + ], + "page_idx": 18 + }, + { + "type": "equation", + "img_path": "images/621fd869fb9d72213c14450800cf189d5873fcd50ca8066a8ba385e3ff772460.jpg", + "text": "$$\n2 d k ( k - 1 ) ( b + 1 ) \\beta ^ { 2 } e ^ { - c \\alpha \\| \\hat { \\eta } \\| _ { 2 } }\n$$", + "text_format": "latex", + "bbox": [ + 397, + 787, + 599, + 808 + ], + "page_idx": 18 + }, + { + "type": "text", + "text": "Proof. From Lemma 14 and Lemma 15, each entry of the matrix in (8) is at most $2 ( k - 1 ) ( b +$ $1 ) \\beta ^ { 2 } e ^ { - c \\alpha \\| \\hat { \\eta } \\| _ { 2 } }$ . Thus, by Gershgorin’s theorem, the maximum eigenvalue of the matrix in (8) is at most 2dk(k − 1)(b + 1)β2e−cαkηˆk2 . □ ", + "bbox": [ + 173, + 825, + 826, + 873 + ], + "page_idx": 18 + }, + { + "type": "text", + "text": "Now, we can prove Theorem 5 by constructing a scaled version of $\\hat { \\theta }$ that satisfies the expectationlinearization constraint. ", + "bbox": [ + 173, + 893, + 825, + 924 + ], + "page_idx": 18 + }, + { + "type": "text", + "text": "Proof of Theorem 5 ", + "text_level": 1, + "bbox": [ + 173, + 103, + 313, + 118 + ], + "page_idx": 19 + }, + { + "type": "text", + "text": "Proof. Consider the likelihood evaluated at $\\tilde { \\theta } = \\{ \\hat { \\lambda } , \\alpha \\hat { \\eta } \\}$ , where $\\begin{array} { r } { \\alpha = \\frac { \\delta } { 4 \\beta \\| \\hat { \\eta } \\| _ { 2 } } } \\end{array}$ . If $\\alpha > 1$ , then $\\begin{array} { r } { \\| \\eta \\| _ { 2 } > \\frac { \\delta } { 4 \\beta } } \\end{array}$ . We know the MLE $\\hat { \\theta }$ already satisfies the expectation-linearization constraint. So we can assume that $0 \\leq \\alpha \\leq 1$ , and we know that $\\tilde { \\theta }$ satisfies $V ( D ; \\tilde { \\theta } ) \\le \\delta$ . Then, ", + "bbox": [ + 173, + 131, + 826, + 188 + ], + "page_idx": 19 + }, + { + "type": "equation", + "img_path": "images/71c832f84ac16ede1d2370a32a4bdf560e9440640be4609f1eb19877e630c471.jpg", + "text": "$$\n\\Delta _ { l } ( \\hat { \\theta } , \\hat { \\theta } _ { \\delta } ) \\leq \\Delta _ { l } ( \\hat { \\theta } , \\tilde { \\theta } ) = \\frac { 1 } { n } ( l ( D ; \\hat { \\theta } ) - l ( D ; \\tilde { \\theta } ) ) = g ( \\hat { \\lambda } , \\hat { \\eta } ) - g ( \\hat { \\lambda } , \\alpha \\hat { \\eta } )\n$$", + "text_format": "latex", + "bbox": [ + 274, + 194, + 723, + 223 + ], + "page_idx": 19 + }, + { + "type": "text", + "text": "where $\\begin{array} { r } { g ( \\lambda , \\eta ) = \\frac { 1 } { n } l ( D ; ( \\lambda , \\eta ) ) } \\end{array}$ . Taking the second-order Taylor expansion about $\\eta$ , we have ", + "bbox": [ + 168, + 231, + 774, + 247 + ], + "page_idx": 19 + }, + { + "type": "equation", + "img_path": "images/097a88f84c7a1cba61e2ea327e6795897919eaf7379dde307775ed54208bb0fc.jpg", + "text": "$$\ng ( \\hat { \\lambda } , \\alpha \\hat { \\eta } ) = g ( \\hat { \\lambda } , \\hat { \\eta } ) + \\nabla _ { \\eta } ^ { T } g ( \\hat { \\lambda } , \\hat { \\eta } ) ( \\alpha \\hat { \\eta } - \\hat { \\eta } ) + ( \\alpha \\hat { \\eta } - \\hat { \\eta } ) ^ { T } \\nabla _ { \\eta } ^ { 2 } g ( \\hat { \\lambda } , \\hat { \\eta } ) ( \\alpha \\hat { \\eta } - \\hat { \\eta } )\n$$", + "text_format": "latex", + "bbox": [ + 250, + 253, + 748, + 276 + ], + "page_idx": 19 + }, + { + "type": "text", + "text": "Since $\\hat { \\theta }$ is the MLE, the first-order term $\\nabla _ { \\eta } ^ { T } g ( \\hat { \\lambda } , \\hat { \\eta } ) ( \\alpha \\hat { \\eta } - \\hat { \\eta } ) = 0$ . The Hessian in the second-order term is just Eq.(8). Thus, from Lemma 16 we have ", + "bbox": [ + 173, + 282, + 825, + 314 + ], + "page_idx": 19 + }, + { + "type": "equation", + "img_path": "images/7446ef4d5b46374b3ac77a196c29d54820bc06c3910e383a33e2426414183bab.jpg", + "text": "$$\n\\begin{array} { r c l } { g ( \\hat { \\lambda } , \\alpha \\hat { \\eta } ) } & { \\leq } & { g ( \\hat { \\lambda } , \\hat { \\eta } ) - ( 1 - \\alpha ) ^ { 2 } \\| \\hat { \\eta } \\| _ { 2 } ^ { 2 } 2 d k ( k - 1 ) ( b + 1 ) \\beta ^ { 2 } e ^ { - c \\alpha \\| \\hat { \\eta } \\| _ { 2 } } } \\\\ & { = } & { g ( \\hat { \\lambda } , \\hat { \\eta } ) - 2 d k ( k - 1 ) ( b + 1 ) \\beta ^ { 2 } \\left( \\| \\hat { \\eta } \\| _ { 2 } - \\frac { \\delta } { 4 \\beta } \\right) ^ { 2 } e ^ { - c \\delta / 4 \\beta } } \\\\ & { = } & { g ( \\hat { \\lambda } , \\hat { \\eta } ) - c _ { 1 } \\beta ^ { 2 } \\left( \\| \\hat { \\eta } \\| _ { 2 } - \\frac { \\delta } { 4 \\beta } \\right) ^ { 2 } e ^ { - c _ { 2 } \\delta / 4 \\beta } } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 263, + 319, + 732, + 392 + ], + "page_idx": 19 + }, + { + "type": "text", + "text": "with setting $c 1 = 2 d k ( k - 1 ) ( b + 1 )$ and $c 2 = c$ . Then the theorem follows. ", + "bbox": [ + 173, + 397, + 673, + 414 + ], + "page_idx": 19 + }, + { + "type": "text", + "text": "C.3 PROOF OF THEOREM 6: UNIFORM BOUND OF MODEL ACCURACY ", + "bbox": [ + 174, + 429, + 674, + 445 + ], + "page_idx": 19 + }, + { + "type": "text", + "text": "In the following, we denote $\\tilde { \\theta } = \\{ \\hat { \\lambda } , \\alpha \\hat { \\eta } \\}$ . ", + "bbox": [ + 173, + 454, + 446, + 472 + ], + "page_idx": 19 + }, + { + "type": "text", + "text": "Lemma 17. For each $y \\in \\mathcal { V }$ , if $p ( y | x , s ; \\hat { \\theta } ) \\geq 1 / k$ , then $\\forall \\alpha \\in [ 0 , 1 ]$ ", + "bbox": [ + 173, + 476, + 619, + 494 + ], + "page_idx": 19 + }, + { + "type": "equation", + "img_path": "images/d4cc2e37834af77134b4004e7066eb7a632fe278658e68150e90b34c710792ad.jpg", + "text": "$$\np ( y | x , s ; \\tilde { \\theta } ) \\geq \\frac { 1 } { k }\n$$", + "text_format": "latex", + "bbox": [ + 442, + 500, + 555, + 530 + ], + "page_idx": 19 + }, + { + "type": "text", + "text": "Proof. This lemma can be regarded as a corollary of Lemma 11. ", + "bbox": [ + 173, + 542, + 598, + 558 + ], + "page_idx": 19 + }, + { + "type": "text", + "text": "Lemma 18. For a fixed $x$ and $s$ , we denote $e ^ { \\hat { \\eta } _ { y } ^ { T } \\mathbf { h } ^ { ( L - 1 ) } ( x , s ; \\hat { \\lambda } ) } = w _ { y }$ . Then we have ", + "bbox": [ + 174, + 565, + 707, + 585 + ], + "page_idx": 19 + }, + { + "type": "equation", + "img_path": "images/f6ce135bb3a1e028c0cccdd8ac08e2aadd628f2a5361a0af9072e0f5516bdeee.jpg", + "text": "$$\np ( y | x , s , \\tilde { \\theta } ) = \\frac { e ^ { \\alpha \\hat { \\eta } _ { y } ^ { T } \\mathbf { h } ^ { ( L - 1 ) } ( x , s ; \\hat { \\lambda } ) } } { \\displaystyle \\sum _ { y ^ { \\prime } \\in \\mathcal { Y } } e ^ { \\alpha \\hat { \\eta } _ { y ^ { \\prime } } ^ { T } \\mathbf { h } ^ { ( L - 1 ) } ( x , s ; \\hat { \\lambda } ) } } = \\frac { ( w _ { y } ) ^ { \\alpha } } { { \\displaystyle \\sum _ { y ^ { \\prime } \\in \\mathcal { Y } } ( w _ { y ^ { \\prime } } ) ^ { \\alpha } } }\n$$", + "text_format": "latex", + "bbox": [ + 323, + 592, + 674, + 646 + ], + "page_idx": 19 + }, + { + "type": "text", + "text": "Additionally, we denote $g _ { s } ( \\alpha ) = \\sum _ { y ^ { \\prime } \\in \\mathcal { V } } p ( y ^ { \\prime } | x , s ; \\tilde { \\theta } ) \\log w _ { y ^ { \\prime } } - \\log w _ { y }$ . We assume $g _ { s } ( 0 ) \\geq 0$ . Then we have $\\forall \\alpha \\geq 0$ ", + "bbox": [ + 173, + 654, + 826, + 694 + ], + "page_idx": 19 + }, + { + "type": "equation", + "img_path": "images/e1b7764794c1d31b3f88cf8d58b1b4a57145e05ed1c17cd3dd5a17235351f7bd.jpg", + "text": "$$\ng _ { s } ( \\alpha ) \\geq 0\n$$", + "text_format": "latex", + "bbox": [ + 462, + 693, + 534, + 710 + ], + "page_idx": 19 + }, + { + "type": "text", + "text": "Proof. ", + "bbox": [ + 173, + 724, + 217, + 739 + ], + "page_idx": 19 + }, + { + "type": "equation", + "img_path": "images/e92bd549530302fdf7293b3b725407d16a7ef52641fcfa72c225727d10ffe7b0.jpg", + "text": "$$\n\\frac { \\partial g _ { s } ( \\alpha ) } { \\partial \\alpha } = \\sum _ { y ^ { \\prime } \\in \\mathcal { Y } } \\log w _ { y ^ { \\prime } } \\frac { \\partial p ( y ^ { \\prime } | x , s ; \\tilde { \\theta } ) } { \\partial \\alpha } = \\mathrm { V a r } _ { Y } \\left[ \\log w _ { Y } | X - x , S = s \\right] \\geq 0\n$$", + "text_format": "latex", + "bbox": [ + 253, + 746, + 745, + 789 + ], + "page_idx": 19 + }, + { + "type": "text", + "text": "So $g _ { s } ( \\alpha )$ is non-decreasing. Since $g _ { s } ( 0 ) \\geq 0$ , we have $g _ { s } ( \\alpha ) \\geq 0$ when $\\alpha \\geq 0$ . ", + "bbox": [ + 176, + 795, + 692, + 813 + ], + "page_idx": 19 + }, + { + "type": "text", + "text": "From above lemma, we have for each training instance $( x _ { i } , y _ { i } ) \\in D$ , and $\\forall \\alpha \\in [ 0 , 1 ]$ , ", + "bbox": [ + 174, + 824, + 732, + 842 + ], + "page_idx": 19 + }, + { + "type": "equation", + "img_path": "images/39d3a79ae9f6304dd119170d1dbfdde5d486c01a286dbb5eae6ddb4699b33c8f.jpg", + "text": "$$\n\\mathrm { E } _ { Y } \\left[ \\log p ( Y | x _ { i } , s ; \\tilde { \\theta } ) \\right] \\geq \\log p ( y _ { i } | x _ { i } , s ; \\tilde { \\theta } )\n$$", + "text_format": "latex", + "bbox": [ + 357, + 848, + 640, + 875 + ], + "page_idx": 19 + }, + { + "type": "text", + "text": "For convenience, we define ", + "bbox": [ + 173, + 881, + 354, + 895 + ], + "page_idx": 19 + }, + { + "type": "equation", + "img_path": "images/4d7d3c4663efc65fbfdda1969d68e7354dfbfb206431e2b9eccce1b303e1d0fa.jpg", + "text": "$$\nm ( s , y ) = \\log p ( y | x , s ; \\tilde { \\theta } ) - \\mathrm { E } _ { Y } \\left[ \\log p ( Y | x , s ; \\tilde { \\theta } ) \\right]\n$$", + "text_format": "latex", + "bbox": [ + 331, + 901, + 666, + 929 + ], + "page_idx": 19 + }, + { + "type": "text", + "text": "Lemma 19. If y satisfies Lemma $^ { 1 7 }$ and $g _ { s } ( \\alpha ) \\geq 0$ , then ", + "bbox": [ + 173, + 102, + 550, + 119 + ], + "page_idx": 20 + }, + { + "type": "equation", + "img_path": "images/048d7f26290bb0297b24ca5371fd210ccb1b05310eda30500492162aec6844d3.jpg", + "text": "$$\n\\operatorname { V a r } _ { Y } [ m ( s , Y ) ] \\geq m ( s , y ) ^ { 2 }\n$$", + "text_format": "latex", + "bbox": [ + 406, + 126, + 589, + 145 + ], + "page_idx": 20 + }, + { + "type": "text", + "text": "Proof. First we have ", + "bbox": [ + 173, + 159, + 313, + 174 + ], + "page_idx": 20 + }, + { + "type": "equation", + "img_path": "images/7227f25607da27c4ad3695e7189c09657460a58dccfbbe3c327aa16b468d9818.jpg", + "text": "$$\n\\begin{array} { r } { m ( s , y ) = \\log p ( y | x , s ; \\tilde { \\theta } ) - \\log 1 / k - K L \\left( p ( \\cdot | x , s ; \\tilde { \\theta } ) | \\mathrm { U n i f } ( \\mathcal { V } ) \\right) \\leq 0 } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 263, + 180, + 735, + 207 + ], + "page_idx": 20 + }, + { + "type": "text", + "text": "So we have ", + "bbox": [ + 173, + 213, + 253, + 228 + ], + "page_idx": 20 + }, + { + "type": "equation", + "img_path": "images/0994c138afa288462d675d69c8054cfda78336493b85cfbd05bf23688e6aa3af.jpg", + "text": "$$\n\\begin{array} { r c l } { \\big ( \\mathrm { V a r } _ { Y } [ m ( s , Y ) ] \\big ) ^ { 1 / 2 } } & { = } & { \\sqrt { \\mathrm { E } _ { Y } \\left[ \\Big ( \\log p ( Y | x , s ; \\widetilde { \\theta } ) - \\mathrm { E } _ { Y } \\left[ \\log p ( Y | x , s ; \\widetilde { \\theta } ) \\right] \\Big ) ^ { 2 } \\right] } } \\\\ & { \\ge } & { \\mathrm { E } _ { Y } \\left[ \\Big | \\log p ( Y | x , s ; \\widetilde { \\theta } ) - \\mathrm { E } _ { Y } \\left[ \\log p ( Y | x , s ; \\widetilde { \\theta } ) \\right] \\Big | \\right] } \\\\ & { = } & { \\mathrm { E } _ { Y } \\left[ \\Big | K L \\left( p ( \\cdot | x , s ; \\widetilde { \\theta } ) | \\mathrm { U n i f } ( y ) \\right) + \\log 1 / k - \\log p ( Y | x , s ; \\widetilde { \\theta } ) \\Big | \\right] } \\\\ & { = } & { \\mathrm { E } _ { Y } \\left[ K L \\left( p ( \\cdot | x , s ; \\widetilde { \\theta } ) | \\mathrm { U n i f } ( y ) \\right) + \\Big | \\log 1 / k - \\log p ( Y | x , s ; \\widetilde { \\theta } ) \\Big | \\right] } \\\\ & { \\ge } & { K L \\left( p ( \\cdot | x , s ; \\widetilde { \\theta } ) | \\mathrm { U n i f } ( y ) \\right) + \\mathrm { E } _ { Y } \\left[ \\log p ( Y | x , s ; \\widetilde { \\theta } ) - \\log 1 / k \\right] } \\\\ & { = } & { 2 K L \\left( p ( \\cdot | x , s ; \\widetilde { \\theta } ) | \\mathrm { U n i f } ( y ) \\right) + \\mathrm { E } _ { Y } \\left[ \\log p ( Y | x , s ; \\widetilde { \\theta } ) - \\log 1 / k \\right] } \\\\ & { = } & { 2 K L \\left( p ( \\cdot | x , s ; \\widetilde { \\theta } ) | \\mathrm { U n i f } ( y ) \\right) } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 194, + 232, + 803, + 388 + ], + "page_idx": 20 + }, + { + "type": "text", + "text": "As $K L \\left( p ( \\cdot | x , s ; \\tilde { \\theta } ) | \\mathrm { U n i f } ( y ) \\right) \\geq 0$ and $\\log p ( y | x , s ; \\tilde { \\theta } ) \\geq \\log 1 / k$ . So we have ", + "bbox": [ + 173, + 395, + 691, + 419 + ], + "page_idx": 20 + }, + { + "type": "equation", + "img_path": "images/15cb499486001036467273902f3214c34c30f2a1cdc7a554c71700e5aa76733e.jpg", + "text": "$$\n\\cdot K L \\left( p ( \\cdot | x , s ; \\tilde { \\theta } ) | \\mathrm { U n i f } ( y ) \\right) \\geq K L \\left( p ( \\cdot | x , s ; \\tilde { \\theta } ) | \\mathrm { U n i f } ( y ) \\right) + \\log 1 / k - \\log p ( y | x , s ; \\tilde { \\theta } ) = - m ( s , y )\n$$", + "text_format": "latex", + "bbox": [ + 181, + 426, + 825, + 454 + ], + "page_idx": 20 + }, + { + "type": "text", + "text": "Then the lemma follows. ", + "bbox": [ + 174, + 459, + 338, + 474 + ], + "page_idx": 20 + }, + { + "type": "text", + "text": "From Lemma 19 and Eq. (9), we have for each training instance $( x _ { i } , y _ { i } ) \\in D$ , and $\\forall \\alpha \\in [ 0 , 1 ]$ , ", + "bbox": [ + 173, + 489, + 792, + 506 + ], + "page_idx": 20 + }, + { + "type": "equation", + "img_path": "images/303909a583a4b3abe3e8fe1d7788ef7f95418740ae3a1cb0c55583dcb1d06541.jpg", + "text": "$$\n\\operatorname { V a r } _ { Y } [ m ( s , Y ) ] \\geq m ( s , y _ { i } ) ^ { 2 }\n$$", + "text_format": "latex", + "bbox": [ + 403, + 512, + 593, + 531 + ], + "page_idx": 20 + }, + { + "type": "text", + "text": "Lemma 20. For each training instance $( x _ { i } , y _ { i } ) \\in D$ , and $\\forall \\alpha \\in [ 0 , 1 ]$ , we have ", + "bbox": [ + 173, + 537, + 691, + 554 + ], + "page_idx": 20 + }, + { + "type": "equation", + "img_path": "images/31312a464d0947b6310478eb773e0b1e85dfd1f923c01606f67000b7ff625ff0.jpg", + "text": "$$\n\\log p ( y _ { i } | x _ { i } ; \\{ \\hat { \\lambda } , \\alpha \\hat { \\eta } \\} ) \\ge ( 1 - \\alpha ) \\log p ( y _ { i } | x _ { i } ; \\{ \\hat { \\lambda } , 0 \\} ) + \\alpha \\log p ( y _ { i } | x _ { i } ; \\{ \\hat { \\lambda } , \\hat { \\eta } \\} )\n$$", + "text_format": "latex", + "bbox": [ + 246, + 559, + 750, + 580 + ], + "page_idx": 20 + }, + { + "type": "text", + "text": "Proof. We define ", + "bbox": [ + 173, + 594, + 290, + 609 + ], + "page_idx": 20 + }, + { + "type": "equation", + "img_path": "images/e7750537e15cbb94b2b4fe2afafe9080382ab3e6791aa28ce54612256f152cfa.jpg", + "text": "$$\nf ( \\alpha ) = \\log p ( y _ { i } | x _ { i } ; \\{ \\hat { \\lambda } , \\alpha \\hat { \\eta } \\} ) - ( 1 - \\alpha ) \\log p ( y _ { i } | x _ { i } ; \\{ \\hat { \\lambda } , 0 \\} ) - \\alpha \\log p ( y _ { i } | x _ { i } ; \\{ \\hat { \\lambda } , \\hat { \\eta } \\} )\n$$", + "text_format": "latex", + "bbox": [ + 220, + 614, + 777, + 636 + ], + "page_idx": 20 + }, + { + "type": "text", + "text": "Because $f ( 0 ) = f ( 1 ) = 0$ , we only need to prove that $f ( \\alpha )$ is concave on $[ 0 , 1 ]$ . We have ", + "bbox": [ + 178, + 641, + 761, + 659 + ], + "page_idx": 20 + }, + { + "type": "equation", + "img_path": "images/a74ed9efe4939afe9a8966000b7b430533af6d5390fb6a0d0378f7197ebdac5d.jpg", + "text": "$$\n\\nabla ^ { 2 } f ( \\alpha ) = - \\mathrm { E } _ { S \\left. Y = y _ { i } \\right. } \\left[ \\mathrm { V a r } _ { Y } \\left[ m ( S , Y ) \\right] \\right] + \\mathrm { V a r } _ { S \\left. Y = y _ { i } \\right. } \\left[ m ( S , y _ { i } ) \\right]\n$$", + "text_format": "latex", + "bbox": [ + 284, + 664, + 714, + 684 + ], + "page_idx": 20 + }, + { + "type": "text", + "text": "where S|Y = yi is under the probability distribution p(s|Y = yi, xi; ˜θ) = p(yi|xi,S;θ˜)p(s)p(y |x ;θ˜) From Eq. (10), we have ", + "bbox": [ + 173, + 693, + 754, + 728 + ], + "page_idx": 20 + }, + { + "type": "equation", + "img_path": "images/d1af464146c492bc402682def612c0800730d275d4c7a26e1a209ef01c3c2e33.jpg", + "text": "$$\n\\mathrm { E } _ { S | Y = y _ { i } } \\left[ \\operatorname { V a r } _ { Y } \\left[ m ( S , Y ) \\right] \\right] \\geq \\mathrm { E } _ { S | Y = y _ { i } } \\left[ m ( S , y _ { i } ) ^ { 2 } \\right] \\geq \\operatorname { V a r } _ { S | Y = y _ { i } } \\left[ m ( S , y _ { i } ) \\right]\n$$", + "text_format": "latex", + "bbox": [ + 248, + 733, + 750, + 753 + ], + "page_idx": 20 + }, + { + "type": "text", + "text": "So we have $\\nabla ^ { 2 } f ( \\alpha ) \\leq 0$ . The lemma follows. ", + "bbox": [ + 173, + 760, + 477, + 776 + ], + "page_idx": 20 + }, + { + "type": "text", + "text": "Now, we can prove Theorem 6 by using the same construction of an expectation-linearizing parameter as in Theorem 5. ", + "bbox": [ + 171, + 791, + 825, + 821 + ], + "page_idx": 20 + }, + { + "type": "text", + "text": "Proof of Theorem 6 ", + "text_level": 1, + "bbox": [ + 173, + 835, + 313, + 851 + ], + "page_idx": 20 + }, + { + "type": "text", + "text": "Proof. Consider the same parameter $\\tilde { \\theta } = \\{ \\hat { \\lambda } , \\alpha \\hat { \\eta } \\}$ , where $\\begin{array} { r } { \\alpha = \\frac { \\delta } { 4 \\beta \\| \\hat { \\eta } \\| _ { 2 } } \\leq 1 } \\end{array}$ . we know that $\\tilde { \\theta }$ satisfies $V ( D ; \\tilde { \\theta } ) \\le \\delta$ . Then, ", + "bbox": [ + 173, + 863, + 825, + 900 + ], + "page_idx": 20 + }, + { + "type": "equation", + "img_path": "images/c1fcc0092b696e4da1a312f8b6458cf0d0eef8199b61893891850a8a867ca24f.jpg", + "text": "$$\n\\Delta _ { l } ( \\hat { \\theta } , \\hat { \\theta } _ { \\delta } ) \\leq \\Delta _ { l } ( \\hat { \\theta } , \\tilde { \\theta } ) = \\frac { 1 } { n } ( l ( D ; \\hat { \\theta } ) - l ( D ; \\tilde { \\theta } ) )\n$$", + "text_format": "latex", + "bbox": [ + 346, + 898, + 650, + 929 + ], + "page_idx": 20 + }, + { + "type": "text", + "text": "From Lemma 20 we have: ", + "bbox": [ + 174, + 103, + 348, + 117 + ], + "page_idx": 21 + }, + { + "type": "equation", + "img_path": "images/78e5c5ebdac47bd9fd7e9307dba99bad374a292c5518230532ac9f4293ec8f8c.jpg", + "text": "$$\nl ( D ; \\tilde { \\theta } ) = l ( D ; \\{ \\hat { \\lambda } , \\alpha \\hat { \\eta } \\} ) \\geq ( 1 - \\alpha ) l ( D ; \\{ \\hat { \\lambda } , 0 \\} ) + \\alpha l ( D ; \\{ \\hat { \\lambda } , \\hat { \\eta } \\} )\n$$", + "text_format": "latex", + "bbox": [ + 284, + 122, + 714, + 142 + ], + "page_idx": 21 + }, + { + "type": "text", + "text": "So ", + "bbox": [ + 173, + 150, + 196, + 162 + ], + "page_idx": 21 + }, + { + "type": "equation", + "img_path": "images/54c9a655a4774c8cf5e2e7e9cdbce408317245e22aa1e063e249116a0ee9e06e.jpg", + "text": "$$\n\\begin{array} { r c l } { \\Delta _ { l } ( \\hat { \\theta } , \\hat { \\theta } _ { \\delta } ) } & { \\leq } & { ( 1 - \\alpha ) \\frac { 1 } { n } \\left( l ( D ; \\hat { \\theta } ) - l ( D ; \\{ \\hat { \\lambda } , 0 \\} ) \\right) } \\\\ & { = } & { ( 1 - \\alpha ) \\frac { 1 } { n } \\displaystyle \\sum _ { i = 1 } ^ { n } \\log p ( y _ { i } | x _ { i } ; \\hat { \\theta } ) - \\log \\mathrm { U n i f } ( \\mathcal { V } ) } \\\\ & { \\asymp } & { ( 1 - \\alpha ) \\mathrm { E } \\left[ \\mathrm { K L } \\left( p ( \\cdot | X ; \\theta ) \\| \\mathrm { U n i f } ( \\mathcal { V } ) \\right) \\right] } \\\\ & { \\le } & { \\left( 1 - \\frac { \\delta } { 4 \\beta \\| \\hat { \\eta } \\| _ { 2 } } \\right) \\mathrm { E } \\left[ \\mathrm { K L } \\left( p ( \\cdot | X ; \\theta ) \\| \\mathrm { U n i f } ( \\mathcal { V } ) \\right) \\right] } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 300, + 159, + 699, + 252 + ], + "page_idx": 21 + }, + { + "type": "text", + "text": "D DETAILED DESCRIPTION OF EXPERIMENTS ", + "text_level": 1, + "bbox": [ + 173, + 287, + 570, + 304 + ], + "page_idx": 21 + }, + { + "type": "text", + "text": "D.1 NEURAL NETWORK ARCHITECTURES ", + "bbox": [ + 174, + 319, + 478, + 334 + ], + "page_idx": 21 + }, + { + "type": "text", + "text": "MNIST For MNIST, we train 6 different fully-connected (dense) neural networks with 2 or 3 layers (see Table 1). For all architectures, we used dropout rate $p = 0 . 5$ for all hidden layers and $p = 0 . 2$ for the input layer. ", + "bbox": [ + 174, + 345, + 825, + 387 + ], + "page_idx": 21 + }, + { + "type": "text", + "text": "CIFAR-10 and CIFAR-100 For the two CIFAR datasets, we used the same architecture in Srivastava et al. (2014) — three convolutional layers followed by two fully-connected hidden layers. The convolutional layers have 96, 128, 265 filters respectively, with a $5 \\times 5$ receptive field applied with a stride of 1. Each convolutional layer is followed by a max pooling layer pools $3 \\times 3$ regions at strides of 2. The fully-connected layers have 2048 units each. All units use the rectified linear activation function. Dropout was applied to all the layers with dropout rate $p = ( 0 . 1 , 0 . 2 5 , 0 . 2 5 , 0 . 5 , 0 . 5 , 0 . 5 )$ for the layers going from input to convolutional layers to fully-connected layers. ", + "bbox": [ + 174, + 402, + 825, + 501 + ], + "page_idx": 21 + }, + { + "type": "text", + "text": "D.2 NEURAL NETWORK TRAINING ", + "text_level": 1, + "bbox": [ + 176, + 518, + 431, + 532 + ], + "page_idx": 21 + }, + { + "type": "text", + "text": "Neural network training in all the experiments is performed with mini-batch stochastic gradient descent (SGD) with momentum. We choose an initial learning rate of $\\eta _ { 0 }$ , and the learning rate is updated on each epoch of training as $\\eta _ { t } = \\eta _ { 0 } / ( 1 + \\rho t )$ , where $\\rho$ is the decay rate and $t$ is the number of epoch completed. We run each experiment with 2,000 epochs and choose the parameters achieving the best performance on validation sets. ", + "bbox": [ + 174, + 544, + 825, + 613 + ], + "page_idx": 21 + }, + { + "type": "text", + "text": "Table 3 summarizes the chosen hyper-parameters for all experiments. Most of the hyper-parameters are chosen from Srivastava et al. (2014). But for some experiments, we cannot reproduce the performance reported in Srivastava et al. (2014) (We guess one of the possible reasons is that we used different library for implementation.). For these experiments, we tune the hyper-parameters on the validation sets by random search. Due to time constrains it is infeasible to do a random search across the full hyper-parameter space. Thus, we try to use as many hyper-parameters reported in Srivastava et al. (2014) as possible. ", + "bbox": [ + 174, + 621, + 825, + 718 + ], + "page_idx": 21 + }, + { + "type": "text", + "text": "D.3 EFFECT OF EXPECTATION-LINEARIZATION RATE $\\lambda$ ", + "text_level": 1, + "bbox": [ + 174, + 734, + 568, + 750 + ], + "page_idx": 21 + }, + { + "type": "text", + "text": "Table 4 illustrates the detailed results of the experiments on the effect of $\\lambda$ . For MNIST, it lists the error rates under different $\\lambda$ values for six different network architectures. For two datasets of CIFAR, it gives the error rates under different $\\lambda$ values, among with the empirical expectation-linearization risk $\\hat { \\Delta }$ . ", + "bbox": [ + 174, + 761, + 825, + 819 + ], + "page_idx": 21 + }, + { + "type": "table", + "img_path": "images/6c78b624c51f63534652177067ceb2c4db23692e4159dbdbe5974922f4efd02e.jpg", + "table_caption": [ + "Table 3: Hyper-parameters for all experiments. " + ], + "table_footnote": [], + "table_body": "
ExperimentHyper-parameter
MNISTbatch sizeinitial learning rate modecay rate pmomentummomentum typemax-norm constrain2000.10.0250.9standard3.5
CIFARbatch sizeinitial learning rate nofor conv layersinitial learning rate nofor dense layersdecay rate pmomentummomentum typemax-norm constrainL2-norm decay10 100
100 1000.001 0.0010.1 0.020.005 0.0050.95 0.95standard nesterov4.0 2.00.001 0.001
", + "bbox": [ + 236, + 209, + 761, + 435 + ], + "page_idx": 22 + }, + { + "type": "table", + "img_path": "images/739cedb9dba2581f0f1664cf81469a684c0cafb4304dcc63d8a66cd25ad43c03.jpg", + "table_caption": [ + "Table 4: Detailed results for experiments on the effect of $\\lambda$ . " + ], + "table_footnote": [], + "table_body": "
Experiment
0.00.51.02.03.05.07.010.0
MNISTmodel 11.231.121.121.081.071.101.251.35
model 21.191.141.081.041.031.071.131.21
model 31.051.040.981.031.051.051.101.12
model 41.071.020.970.940.961.011.051.20
model 5 model 61.030.950.950.900.920.981.031.08
0.990.980.930.87 入0.960.981.051.10
error rate0.0 12.820.1 12.520.5 12.381.0 12.202.0 12.605.0 12.8410.0 13.10
CIFAR-10 CIFAR-100A error rate0.01390.01280.01040.00950.00890.00850.0077 38.01
A37.22 0.088136.75 0.071136.25 0.059037.01 0.052937.18 0.050037.58 0.04670.0411
", + "bbox": [ + 173, + 635, + 857, + 839 + ], + "page_idx": 22 + } +] \ No newline at end of file diff --git a/parse/train/rkGabzZgl/rkGabzZgl_middle.json b/parse/train/rkGabzZgl/rkGabzZgl_middle.json new file mode 100644 index 0000000000000000000000000000000000000000..f116f5600477f44ea1aea3fa12fa61d877f47cad --- /dev/null +++ b/parse/train/rkGabzZgl/rkGabzZgl_middle.json @@ -0,0 +1,67672 @@ +{ + "pdf_info": [ + { + "preproc_blocks": [ + { + "type": "title", + "bbox": [ + 106, + 79, + 394, + 115 + ], + "lines": [ + { + "bbox": [ + 106, + 79, + 396, + 98 + ], + "spans": [ + { + "bbox": [ + 106, + 79, + 396, + 98 + ], + "score": 1.0, + "content": "DROPOUT WITH EXPECTATION-LINEAR", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 106, + 100, + 242, + 118 + ], + "spans": [ + { + "bbox": [ + 106, + 100, + 242, + 118 + ], + "score": 1.0, + "content": "REGULARIZATION", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5 + }, + { + "type": "text", + "bbox": [ + 113, + 135, + 293, + 180 + ], + "lines": [ + { + "bbox": [ + 115, + 135, + 224, + 147 + ], + "spans": [ + { + "bbox": [ + 115, + 135, + 224, + 147 + ], + "score": 1.0, + "content": "Xuezhe Ma, Yingkai Gao", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 111, + 146, + 245, + 158 + ], + "spans": [ + { + "bbox": [ + 111, + 146, + 245, + 158 + ], + "score": 1.0, + "content": "Language Technologies Institute", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 112, + 157, + 226, + 169 + ], + "spans": [ + { + "bbox": [ + 112, + 157, + 226, + 169 + ], + "score": 1.0, + "content": "Carnegie Mellon University", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 113, + 168, + 294, + 180 + ], + "spans": [ + { + "bbox": [ + 113, + 168, + 294, + 180 + ], + "score": 1.0, + "content": "{xuezhem, yingkaig}@cs.cmu.edu", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 5.0 + }, + { + "type": "text", + "bbox": [ + 306, + 135, + 498, + 179 + ], + "lines": [ + { + "bbox": [ + 305, + 135, + 411, + 147 + ], + "spans": [ + { + "bbox": [ + 305, + 135, + 411, + 147 + ], + "score": 1.0, + "content": "Zhiting Hu, Yaoliang Yu", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 305, + 146, + 430, + 158 + ], + "spans": [ + { + "bbox": [ + 305, + 146, + 430, + 158 + ], + "score": 1.0, + "content": "Machine Learning Department", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 304, + 156, + 419, + 170 + ], + "spans": [ + { + "bbox": [ + 304, + 156, + 419, + 170 + ], + "score": 1.0, + "content": "Carnegie Mellon University", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 306, + 168, + 498, + 180 + ], + "spans": [ + { + "bbox": [ + 306, + 168, + 498, + 180 + ], + "score": 1.0, + "content": "{zhitinghu, yaoliang}@cs.cmu.edu", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 6.0 + }, + { + "type": "text", + "bbox": [ + 112, + 196, + 293, + 240 + ], + "lines": [ + { + "bbox": [ + 112, + 194, + 175, + 210 + ], + "spans": [ + { + "bbox": [ + 112, + 194, + 175, + 210 + ], + "score": 1.0, + "content": "Yuntian Deng", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 112, + 206, + 293, + 219 + ], + "spans": [ + { + "bbox": [ + 112, + 206, + 293, + 219 + ], + "score": 1.0, + "content": "School of Engineering and Applied Sciences", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 112, + 217, + 191, + 230 + ], + "spans": [ + { + "bbox": [ + 112, + 217, + 191, + 230 + ], + "score": 1.0, + "content": "Harvard University", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 113, + 230, + 240, + 241 + ], + "spans": [ + { + "bbox": [ + 113, + 230, + 240, + 241 + ], + "score": 1.0, + "content": "dengyuntian@gmail.com", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 13.0 + }, + { + "type": "text", + "bbox": [ + 335, + 196, + 466, + 240 + ], + "lines": [ + { + "bbox": [ + 334, + 194, + 396, + 210 + ], + "spans": [ + { + "bbox": [ + 334, + 194, + 396, + 210 + ], + "score": 1.0, + "content": "Eduard Hovy", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 334, + 208, + 467, + 219 + ], + "spans": [ + { + "bbox": [ + 334, + 208, + 467, + 219 + ], + "score": 1.0, + "content": "Language Technologies Institute", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 334, + 217, + 448, + 231 + ], + "spans": [ + { + "bbox": [ + 334, + 217, + 448, + 231 + ], + "score": 1.0, + "content": "Carnegie Mellon University", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 334, + 230, + 409, + 241 + ], + "spans": [ + { + "bbox": [ + 334, + 230, + 409, + 241 + ], + "score": 1.0, + "content": "hovy@cmu.edu", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 14.0 + }, + { + "type": "title", + "bbox": [ + 278, + 270, + 333, + 281 + ], + "lines": [ + { + "bbox": [ + 276, + 268, + 336, + 284 + ], + "spans": [ + { + "bbox": [ + 276, + 268, + 336, + 284 + ], + "score": 1.0, + "content": "ABSTRACT", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 18 + }, + { + "type": "text", + "bbox": [ + 143, + 294, + 469, + 459 + ], + "lines": [ + { + "bbox": [ + 141, + 294, + 470, + 307 + ], + "spans": [ + { + "bbox": [ + 141, + 294, + 470, + 307 + ], + "score": 1.0, + "content": "Dropout, a simple and effective way to train deep neural networks, has led to a", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 141, + 306, + 470, + 318 + ], + "spans": [ + { + "bbox": [ + 141, + 306, + 470, + 318 + ], + "score": 1.0, + "content": "number of impressive empirical successes and spawned many recent theoretical in-", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 141, + 317, + 471, + 329 + ], + "spans": [ + { + "bbox": [ + 141, + 317, + 471, + 329 + ], + "score": 1.0, + "content": "vestigations. However, the gap between dropout’s training and inference phases, in-", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 141, + 327, + 471, + 340 + ], + "spans": [ + { + "bbox": [ + 141, + 327, + 471, + 340 + ], + "score": 1.0, + "content": "troduced due to tractability considerations, has largely remained under-appreciated.", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 141, + 338, + 470, + 351 + ], + "spans": [ + { + "bbox": [ + 141, + 338, + 470, + 351 + ], + "score": 1.0, + "content": "In this work, we first formulate dropout as a tractable approximation of some latent", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 141, + 350, + 470, + 362 + ], + "spans": [ + { + "bbox": [ + 141, + 350, + 470, + 362 + ], + "score": 1.0, + "content": "variable model, leading to a clean view of parameter sharing and enabling further", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 141, + 361, + 470, + 373 + ], + "spans": [ + { + "bbox": [ + 141, + 361, + 470, + 373 + ], + "score": 1.0, + "content": "theoretical analysis. Then, we introduce (approximate) expectation-linear dropout", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 141, + 372, + 470, + 383 + ], + "spans": [ + { + "bbox": [ + 141, + 372, + 470, + 383 + ], + "score": 1.0, + "content": "neural networks, whose inference gap we are able to formally characterize. Algo-", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 141, + 382, + 470, + 395 + ], + "spans": [ + { + "bbox": [ + 141, + 382, + 470, + 395 + ], + "score": 1.0, + "content": "rithmically, we show that our proposed measure of the inference gap can be used", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 141, + 393, + 470, + 406 + ], + "spans": [ + { + "bbox": [ + 141, + 393, + 470, + 406 + ], + "score": 1.0, + "content": "to regularize the standard dropout training objective, resulting in an explicit control", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 141, + 404, + 470, + 417 + ], + "spans": [ + { + "bbox": [ + 141, + 404, + 470, + 417 + ], + "score": 1.0, + "content": "of the gap. Our method is as simple and efficient as standard dropout. We further", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 141, + 416, + 470, + 428 + ], + "spans": [ + { + "bbox": [ + 141, + 416, + 470, + 428 + ], + "score": 1.0, + "content": "prove the upper bounds on the loss in accuracy due to expectation-linearization,", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 141, + 426, + 469, + 439 + ], + "spans": [ + { + "bbox": [ + 141, + 426, + 469, + 439 + ], + "score": 1.0, + "content": "describe classes of input distributions that expectation-linearize easily. Experiments", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 141, + 437, + 470, + 450 + ], + "spans": [ + { + "bbox": [ + 141, + 437, + 470, + 450 + ], + "score": 1.0, + "content": "on three image classification benchmark datasets demonstrate that reducing the", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 141, + 448, + 399, + 461 + ], + "spans": [ + { + "bbox": [ + 141, + 448, + 399, + 461 + ], + "score": 1.0, + "content": "inference gap can indeed improve the performance consistently.", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 26 + }, + { + "type": "title", + "bbox": [ + 108, + 481, + 206, + 493 + ], + "lines": [ + { + "bbox": [ + 105, + 480, + 208, + 497 + ], + "spans": [ + { + "bbox": [ + 105, + 480, + 208, + 497 + ], + "score": 1.0, + "content": "1 INTRODUCTION", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 34 + }, + { + "type": "text", + "bbox": [ + 107, + 506, + 505, + 627 + ], + "lines": [ + { + "bbox": [ + 105, + 506, + 506, + 519 + ], + "spans": [ + { + "bbox": [ + 105, + 506, + 506, + 519 + ], + "score": 1.0, + "content": "Deep neural networks (DNNs, e.g., LeCun et al., 2015; Schmidhuber, 2015), if trained properly,", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 517, + 506, + 530 + ], + "spans": [ + { + "bbox": [ + 105, + 517, + 506, + 530 + ], + "score": 1.0, + "content": "have been demonstrated to significantly improve the benchmark performances in a wide range of", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 528, + 506, + 541 + ], + "spans": [ + { + "bbox": [ + 105, + 528, + 506, + 541 + ], + "score": 1.0, + "content": "application domains. As neural networks go deeper and deeper, naturally, its model complexity also", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 539, + 506, + 552 + ], + "spans": [ + { + "bbox": [ + 105, + 539, + 506, + 552 + ], + "score": 1.0, + "content": "increases quickly, hence the pressing need to reduce overfitting in training DNNs. A number of", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 550, + 505, + 563 + ], + "spans": [ + { + "bbox": [ + 105, + 550, + 505, + 563 + ], + "score": 1.0, + "content": "techniques have emerged over the years to address this challenge, among which dropout (Hinton", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 561, + 506, + 574 + ], + "spans": [ + { + "bbox": [ + 105, + 561, + 506, + 574 + ], + "score": 1.0, + "content": "et al., 2012; Srivastava, 2013) has stood out for its simplicity and effectiveness. In a nutshell, dropout", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 572, + 506, + 585 + ], + "spans": [ + { + "bbox": [ + 105, + 572, + 506, + 585 + ], + "score": 1.0, + "content": "randomly “drops” neural units during training as a means to prevent feature co-adaptation—a sign of", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 582, + 506, + 596 + ], + "spans": [ + { + "bbox": [ + 105, + 582, + 506, + 596 + ], + "score": 1.0, + "content": "overfitting (Hinton et al., 2012). Simple as it appears to be, dropout has led to several record-breaking", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 594, + 506, + 606 + ], + "spans": [ + { + "bbox": [ + 105, + 594, + 506, + 606 + ], + "score": 1.0, + "content": "performances (Hinton et al., 2012; Ma & Hovy, 2016), and thus spawned a lot of recent interests", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 604, + 505, + 619 + ], + "spans": [ + { + "bbox": [ + 105, + 604, + 505, + 619 + ], + "score": 1.0, + "content": "in analyzing and justifying dropout from the theoretical perspective, and also in further improving", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 106, + 617, + 328, + 628 + ], + "spans": [ + { + "bbox": [ + 106, + 617, + 328, + 628 + ], + "score": 1.0, + "content": "dropout from the algorithmic and practical perspective.", + "type": "text" + } + ], + "index": 45 + } + ], + "index": 40 + }, + { + "type": "text", + "bbox": [ + 107, + 632, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 632, + 506, + 646 + ], + "spans": [ + { + "bbox": [ + 105, + 632, + 506, + 646 + ], + "score": 1.0, + "content": "In their pioneering work, Hinton et al. (2012) and Srivastava et al. (2014) interpreted dropout as", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 105, + 643, + 505, + 657 + ], + "spans": [ + { + "bbox": [ + 105, + 643, + 505, + 657 + ], + "score": 1.0, + "content": "an extreme form of model combination (aka. model ensemble) with extensive parameter/weight", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 105, + 654, + 507, + 669 + ], + "spans": [ + { + "bbox": [ + 105, + 654, + 507, + 669 + ], + "score": 1.0, + "content": "sharing, and they proposed to learn the combination through minimizing an appropriate expected loss.", + "type": "text" + } + ], + "index": 48 + }, + { + "bbox": [ + 106, + 666, + 506, + 679 + ], + "spans": [ + { + "bbox": [ + 106, + 666, + 506, + 679 + ], + "score": 1.0, + "content": "Interestingly, they also pointed out that for a single logistic neural unit, the output of dropout is in", + "type": "text" + } + ], + "index": 49 + }, + { + "bbox": [ + 105, + 676, + 506, + 690 + ], + "spans": [ + { + "bbox": [ + 105, + 676, + 506, + 690 + ], + "score": 1.0, + "content": "fact the geometric mean of the outputs of the model ensemble with shared parameters. Subsequently,", + "type": "text" + } + ], + "index": 50 + }, + { + "bbox": [ + 106, + 687, + 505, + 701 + ], + "spans": [ + { + "bbox": [ + 106, + 687, + 505, + 701 + ], + "score": 1.0, + "content": "many theoretical justifications of dropout have been explored, and we can only mention a few here due", + "type": "text" + } + ], + "index": 51 + }, + { + "bbox": [ + 106, + 699, + 506, + 712 + ], + "spans": [ + { + "bbox": [ + 106, + 699, + 506, + 712 + ], + "score": 1.0, + "content": "to space limits. Building on the weight sharing perspective, Baldi & Sadowski (2013; 2014) analyzed", + "type": "text" + } + ], + "index": 52 + }, + { + "bbox": [ + 105, + 709, + 506, + 724 + ], + "spans": [ + { + "bbox": [ + 105, + 709, + 506, + 724 + ], + "score": 1.0, + "content": "the ensemble averaging property of dropout in deep non-linear logistic networks, and supported", + "type": "text" + } + ], + "index": 53 + }, + { + "bbox": [ + 105, + 720, + 506, + 735 + ], + "spans": [ + { + "bbox": [ + 105, + 720, + 506, + 735 + ], + "score": 1.0, + "content": "the view that dropout is equivalent to applying stochastic gradient descent on some regularized", + "type": "text" + } + ], + "index": 54 + } + ], + "index": 50 + } + ], + "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 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": "1", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "title", + "bbox": [ + 106, + 79, + 394, + 115 + ], + "lines": [ + { + "bbox": [ + 106, + 79, + 396, + 98 + ], + "spans": [ + { + "bbox": [ + 106, + 79, + 396, + 98 + ], + "score": 1.0, + "content": "DROPOUT WITH EXPECTATION-LINEAR", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 106, + 100, + 242, + 118 + ], + "spans": [ + { + "bbox": [ + 106, + 100, + 242, + 118 + ], + "score": 1.0, + "content": "REGULARIZATION", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5 + }, + { + "type": "list", + "bbox": [ + 113, + 135, + 293, + 180 + ], + "lines": [ + { + "bbox": [ + 115, + 135, + 224, + 147 + ], + "spans": [ + { + "bbox": [ + 115, + 135, + 224, + 147 + ], + "score": 1.0, + "content": "Xuezhe Ma, Yingkai Gao", + "type": "text" + } + ], + "index": 2, + "is_list_start_line": true + }, + { + "bbox": [ + 111, + 146, + 245, + 158 + ], + "spans": [ + { + "bbox": [ + 111, + 146, + 245, + 158 + ], + "score": 1.0, + "content": "Language Technologies Institute", + "type": "text" + } + ], + "index": 4, + "is_list_start_line": true + }, + { + "bbox": [ + 112, + 157, + 226, + 169 + ], + "spans": [ + { + "bbox": [ + 112, + 157, + 226, + 169 + ], + "score": 1.0, + "content": "Carnegie Mellon University", + "type": "text" + } + ], + "index": 6, + "is_list_start_line": true + }, + { + "bbox": [ + 113, + 168, + 294, + 180 + ], + "spans": [ + { + "bbox": [ + 113, + 168, + 294, + 180 + ], + "score": 1.0, + "content": "{xuezhem, yingkaig}@cs.cmu.edu", + "type": "text" + } + ], + "index": 8, + "is_list_start_line": true + }, + { + "bbox": [ + 305, + 135, + 411, + 147 + ], + "spans": [ + { + "bbox": [ + 305, + 135, + 411, + 147 + ], + "score": 1.0, + "content": "Zhiting Hu, Yaoliang Yu", + "type": "text" + } + ], + "index": 3, + "is_list_start_line": true + }, + { + "bbox": [ + 305, + 146, + 430, + 158 + ], + "spans": [ + { + "bbox": [ + 305, + 146, + 430, + 158 + ], + "score": 1.0, + "content": "Machine Learning Department", + "type": "text" + } + ], + "index": 5, + "is_list_start_line": true + }, + { + "bbox": [ + 304, + 156, + 419, + 170 + ], + "spans": [ + { + "bbox": [ + 304, + 156, + 419, + 170 + ], + "score": 1.0, + "content": "Carnegie Mellon University", + "type": "text" + } + ], + "index": 7, + "is_list_start_line": true + }, + { + "bbox": [ + 306, + 168, + 498, + 180 + ], + "spans": [ + { + "bbox": [ + 306, + 168, + 498, + 180 + ], + "score": 1.0, + "content": "{zhitinghu, yaoliang}@cs.cmu.edu", + "type": "text" + } + ], + "index": 9, + "is_list_start_line": true + }, + { + "bbox": [ + 112, + 194, + 175, + 210 + ], + "spans": [ + { + "bbox": [ + 112, + 194, + 175, + 210 + ], + "score": 1.0, + "content": "Yuntian Deng", + "type": "text" + } + ], + "index": 10, + "is_list_start_line": true + }, + { + "bbox": [ + 112, + 206, + 293, + 219 + ], + "spans": [ + { + "bbox": [ + 112, + 206, + 293, + 219 + ], + "score": 1.0, + "content": "School of Engineering and Applied Sciences", + "type": "text" + } + ], + "index": 12, + "is_list_start_line": true + }, + { + "bbox": [ + 112, + 217, + 191, + 230 + ], + "spans": [ + { + "bbox": [ + 112, + 217, + 191, + 230 + ], + "score": 1.0, + "content": "Harvard University", + "type": "text" + } + ], + "index": 14, + "is_list_start_line": true + }, + { + "bbox": [ + 113, + 230, + 240, + 241 + ], + "spans": [ + { + "bbox": [ + 113, + 230, + 240, + 241 + ], + "score": 1.0, + "content": "dengyuntian@gmail.com", + "type": "text" + } + ], + "index": 16, + "is_list_start_line": true + }, + { + "bbox": [ + 334, + 194, + 396, + 210 + ], + "spans": [ + { + "bbox": [ + 334, + 194, + 396, + 210 + ], + "score": 1.0, + "content": "Eduard Hovy", + "type": "text" + } + ], + "index": 11, + "is_list_start_line": true + }, + { + "bbox": [ + 334, + 208, + 467, + 219 + ], + "spans": [ + { + "bbox": [ + 334, + 208, + 467, + 219 + ], + "score": 1.0, + "content": "Language Technologies Institute", + "type": "text" + } + ], + "index": 13, + "is_list_start_line": true + }, + { + "bbox": [ + 334, + 217, + 448, + 231 + ], + "spans": [ + { + "bbox": [ + 334, + 217, + 448, + 231 + ], + "score": 1.0, + "content": "Carnegie Mellon University", + "type": "text" + } + ], + "index": 15, + "is_list_start_line": true + }, + { + "bbox": [ + 334, + 230, + 409, + 241 + ], + "spans": [ + { + "bbox": [ + 334, + 230, + 409, + 241 + ], + "score": 1.0, + "content": "hovy@cmu.edu", + "type": "text" + } + ], + "index": 17, + "is_list_start_line": true + } + ], + "index": 5.0, + "bbox_fs": [ + 111, + 135, + 294, + 180 + ] + }, + { + "type": "list", + "bbox": [ + 306, + 135, + 498, + 179 + ], + "lines": [], + "index": 6.0, + "bbox_fs": [ + 304, + 135, + 498, + 180 + ], + "lines_deleted": true + }, + { + "type": "list", + "bbox": [ + 112, + 196, + 293, + 240 + ], + "lines": [], + "index": 13.0, + "bbox_fs": [ + 112, + 194, + 293, + 241 + ], + "lines_deleted": true + }, + { + "type": "list", + "bbox": [ + 335, + 196, + 466, + 240 + ], + "lines": [], + "index": 14.0, + "bbox_fs": [ + 334, + 194, + 467, + 241 + ], + "lines_deleted": true + }, + { + "type": "title", + "bbox": [ + 278, + 270, + 333, + 281 + ], + "lines": [ + { + "bbox": [ + 276, + 268, + 336, + 284 + ], + "spans": [ + { + "bbox": [ + 276, + 268, + 336, + 284 + ], + "score": 1.0, + "content": "ABSTRACT", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 18 + }, + { + "type": "text", + "bbox": [ + 143, + 294, + 469, + 459 + ], + "lines": [ + { + "bbox": [ + 141, + 294, + 470, + 307 + ], + "spans": [ + { + "bbox": [ + 141, + 294, + 470, + 307 + ], + "score": 1.0, + "content": "Dropout, a simple and effective way to train deep neural networks, has led to a", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 141, + 306, + 470, + 318 + ], + "spans": [ + { + "bbox": [ + 141, + 306, + 470, + 318 + ], + "score": 1.0, + "content": "number of impressive empirical successes and spawned many recent theoretical in-", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 141, + 317, + 471, + 329 + ], + "spans": [ + { + "bbox": [ + 141, + 317, + 471, + 329 + ], + "score": 1.0, + "content": "vestigations. However, the gap between dropout’s training and inference phases, in-", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 141, + 327, + 471, + 340 + ], + "spans": [ + { + "bbox": [ + 141, + 327, + 471, + 340 + ], + "score": 1.0, + "content": "troduced due to tractability considerations, has largely remained under-appreciated.", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 141, + 338, + 470, + 351 + ], + "spans": [ + { + "bbox": [ + 141, + 338, + 470, + 351 + ], + "score": 1.0, + "content": "In this work, we first formulate dropout as a tractable approximation of some latent", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 141, + 350, + 470, + 362 + ], + "spans": [ + { + "bbox": [ + 141, + 350, + 470, + 362 + ], + "score": 1.0, + "content": "variable model, leading to a clean view of parameter sharing and enabling further", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 141, + 361, + 470, + 373 + ], + "spans": [ + { + "bbox": [ + 141, + 361, + 470, + 373 + ], + "score": 1.0, + "content": "theoretical analysis. Then, we introduce (approximate) expectation-linear dropout", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 141, + 372, + 470, + 383 + ], + "spans": [ + { + "bbox": [ + 141, + 372, + 470, + 383 + ], + "score": 1.0, + "content": "neural networks, whose inference gap we are able to formally characterize. Algo-", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 141, + 382, + 470, + 395 + ], + "spans": [ + { + "bbox": [ + 141, + 382, + 470, + 395 + ], + "score": 1.0, + "content": "rithmically, we show that our proposed measure of the inference gap can be used", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 141, + 393, + 470, + 406 + ], + "spans": [ + { + "bbox": [ + 141, + 393, + 470, + 406 + ], + "score": 1.0, + "content": "to regularize the standard dropout training objective, resulting in an explicit control", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 141, + 404, + 470, + 417 + ], + "spans": [ + { + "bbox": [ + 141, + 404, + 470, + 417 + ], + "score": 1.0, + "content": "of the gap. Our method is as simple and efficient as standard dropout. We further", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 141, + 416, + 470, + 428 + ], + "spans": [ + { + "bbox": [ + 141, + 416, + 470, + 428 + ], + "score": 1.0, + "content": "prove the upper bounds on the loss in accuracy due to expectation-linearization,", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 141, + 426, + 469, + 439 + ], + "spans": [ + { + "bbox": [ + 141, + 426, + 469, + 439 + ], + "score": 1.0, + "content": "describe classes of input distributions that expectation-linearize easily. Experiments", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 141, + 437, + 470, + 450 + ], + "spans": [ + { + "bbox": [ + 141, + 437, + 470, + 450 + ], + "score": 1.0, + "content": "on three image classification benchmark datasets demonstrate that reducing the", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 141, + 448, + 399, + 461 + ], + "spans": [ + { + "bbox": [ + 141, + 448, + 399, + 461 + ], + "score": 1.0, + "content": "inference gap can indeed improve the performance consistently.", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 26, + "bbox_fs": [ + 141, + 294, + 471, + 461 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 481, + 206, + 493 + ], + "lines": [ + { + "bbox": [ + 105, + 480, + 208, + 497 + ], + "spans": [ + { + "bbox": [ + 105, + 480, + 208, + 497 + ], + "score": 1.0, + "content": "1 INTRODUCTION", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 34 + }, + { + "type": "text", + "bbox": [ + 107, + 506, + 505, + 627 + ], + "lines": [ + { + "bbox": [ + 105, + 506, + 506, + 519 + ], + "spans": [ + { + "bbox": [ + 105, + 506, + 506, + 519 + ], + "score": 1.0, + "content": "Deep neural networks (DNNs, e.g., LeCun et al., 2015; Schmidhuber, 2015), if trained properly,", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 517, + 506, + 530 + ], + "spans": [ + { + "bbox": [ + 105, + 517, + 506, + 530 + ], + "score": 1.0, + "content": "have been demonstrated to significantly improve the benchmark performances in a wide range of", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 528, + 506, + 541 + ], + "spans": [ + { + "bbox": [ + 105, + 528, + 506, + 541 + ], + "score": 1.0, + "content": "application domains. As neural networks go deeper and deeper, naturally, its model complexity also", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 539, + 506, + 552 + ], + "spans": [ + { + "bbox": [ + 105, + 539, + 506, + 552 + ], + "score": 1.0, + "content": "increases quickly, hence the pressing need to reduce overfitting in training DNNs. A number of", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 550, + 505, + 563 + ], + "spans": [ + { + "bbox": [ + 105, + 550, + 505, + 563 + ], + "score": 1.0, + "content": "techniques have emerged over the years to address this challenge, among which dropout (Hinton", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 561, + 506, + 574 + ], + "spans": [ + { + "bbox": [ + 105, + 561, + 506, + 574 + ], + "score": 1.0, + "content": "et al., 2012; Srivastava, 2013) has stood out for its simplicity and effectiveness. In a nutshell, dropout", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 572, + 506, + 585 + ], + "spans": [ + { + "bbox": [ + 105, + 572, + 506, + 585 + ], + "score": 1.0, + "content": "randomly “drops” neural units during training as a means to prevent feature co-adaptation—a sign of", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 582, + 506, + 596 + ], + "spans": [ + { + "bbox": [ + 105, + 582, + 506, + 596 + ], + "score": 1.0, + "content": "overfitting (Hinton et al., 2012). Simple as it appears to be, dropout has led to several record-breaking", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 594, + 506, + 606 + ], + "spans": [ + { + "bbox": [ + 105, + 594, + 506, + 606 + ], + "score": 1.0, + "content": "performances (Hinton et al., 2012; Ma & Hovy, 2016), and thus spawned a lot of recent interests", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 604, + 505, + 619 + ], + "spans": [ + { + "bbox": [ + 105, + 604, + 505, + 619 + ], + "score": 1.0, + "content": "in analyzing and justifying dropout from the theoretical perspective, and also in further improving", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 106, + 617, + 328, + 628 + ], + "spans": [ + { + "bbox": [ + 106, + 617, + 328, + 628 + ], + "score": 1.0, + "content": "dropout from the algorithmic and practical perspective.", + "type": "text" + } + ], + "index": 45 + } + ], + "index": 40, + "bbox_fs": [ + 105, + 506, + 506, + 628 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 632, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 632, + 506, + 646 + ], + "spans": [ + { + "bbox": [ + 105, + 632, + 506, + 646 + ], + "score": 1.0, + "content": "In their pioneering work, Hinton et al. (2012) and Srivastava et al. (2014) interpreted dropout as", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 105, + 643, + 505, + 657 + ], + "spans": [ + { + "bbox": [ + 105, + 643, + 505, + 657 + ], + "score": 1.0, + "content": "an extreme form of model combination (aka. model ensemble) with extensive parameter/weight", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 105, + 654, + 507, + 669 + ], + "spans": [ + { + "bbox": [ + 105, + 654, + 507, + 669 + ], + "score": 1.0, + "content": "sharing, and they proposed to learn the combination through minimizing an appropriate expected loss.", + "type": "text" + } + ], + "index": 48 + }, + { + "bbox": [ + 106, + 666, + 506, + 679 + ], + "spans": [ + { + "bbox": [ + 106, + 666, + 506, + 679 + ], + "score": 1.0, + "content": "Interestingly, they also pointed out that for a single logistic neural unit, the output of dropout is in", + "type": "text" + } + ], + "index": 49 + }, + { + "bbox": [ + 105, + 676, + 506, + 690 + ], + "spans": [ + { + "bbox": [ + 105, + 676, + 506, + 690 + ], + "score": 1.0, + "content": "fact the geometric mean of the outputs of the model ensemble with shared parameters. Subsequently,", + "type": "text" + } + ], + "index": 50 + }, + { + "bbox": [ + 106, + 687, + 505, + 701 + ], + "spans": [ + { + "bbox": [ + 106, + 687, + 505, + 701 + ], + "score": 1.0, + "content": "many theoretical justifications of dropout have been explored, and we can only mention a few here due", + "type": "text" + } + ], + "index": 51 + }, + { + "bbox": [ + 106, + 699, + 506, + 712 + ], + "spans": [ + { + "bbox": [ + 106, + 699, + 506, + 712 + ], + "score": 1.0, + "content": "to space limits. Building on the weight sharing perspective, Baldi & Sadowski (2013; 2014) analyzed", + "type": "text" + } + ], + "index": 52 + }, + { + "bbox": [ + 105, + 709, + 506, + 724 + ], + "spans": [ + { + "bbox": [ + 105, + 709, + 506, + 724 + ], + "score": 1.0, + "content": "the ensemble averaging property of dropout in deep non-linear logistic networks, and supported", + "type": "text" + } + ], + "index": 53 + }, + { + "bbox": [ + 105, + 720, + 506, + 735 + ], + "spans": [ + { + "bbox": [ + 105, + 720, + 506, + 735 + ], + "score": 1.0, + "content": "the view that dropout is equivalent to applying stochastic gradient descent on some regularized", + "type": "text" + } + ], + "index": 54 + }, + { + "bbox": [ + 105, + 82, + 506, + 96 + ], + "spans": [ + { + "bbox": [ + 105, + 82, + 506, + 96 + ], + "score": 1.0, + "content": "loss function. Wager et al. (2013) treated dropout as an adaptive regularizer for generalized linear", + "type": "text", + "cross_page": true + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 94, + 505, + 106 + ], + "spans": [ + { + "bbox": [ + 105, + 94, + 505, + 106 + ], + "score": 1.0, + "content": "models (GLMs). Helmbold & Long (2016) discussed the differences between dropout and traditional", + "type": "text", + "cross_page": true + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 105, + 505, + 117 + ], + "spans": [ + { + "bbox": [ + 105, + 105, + 505, + 117 + ], + "score": 1.0, + "content": "weight decay regularization. In terms of statistical learning theory, Gao & Zhou (2014) studied the", + "type": "text", + "cross_page": true + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 115, + 505, + 128 + ], + "spans": [ + { + "bbox": [ + 105, + 115, + 505, + 128 + ], + "score": 1.0, + "content": "Rademacher complexity of different types of dropout, showing that dropout is able to reduce the", + "type": "text", + "cross_page": true + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 127, + 505, + 139 + ], + "spans": [ + { + "bbox": [ + 105, + 127, + 505, + 139 + ], + "score": 1.0, + "content": "Rademacher complexity polynomially for shallow neural networks (with one or no hidden layers) and", + "type": "text", + "cross_page": true + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 137, + 506, + 150 + ], + "spans": [ + { + "bbox": [ + 105, + 137, + 506, + 150 + ], + "score": 1.0, + "content": "exponentially for deep neural networks. This latter work (Gao & Zhou, 2014) formally demonstrated", + "type": "text", + "cross_page": true + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 148, + 505, + 161 + ], + "spans": [ + { + "bbox": [ + 105, + 148, + 505, + 161 + ], + "score": 1.0, + "content": "that dropout, due to its regularizing effect, contributes to reducing the inherent model complexity, in", + "type": "text", + "cross_page": true + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 160, + 352, + 172 + ], + "spans": [ + { + "bbox": [ + 105, + 160, + 352, + 172 + ], + "score": 1.0, + "content": "particular the variance component in the generalization error.", + "type": "text", + "cross_page": true + } + ], + "index": 7 + } + ], + "index": 50, + "bbox_fs": [ + 105, + 632, + 507, + 735 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 107, + 82, + 505, + 171 + ], + "lines": [ + { + "bbox": [ + 105, + 82, + 506, + 96 + ], + "spans": [ + { + "bbox": [ + 105, + 82, + 506, + 96 + ], + "score": 1.0, + "content": "loss function. Wager et al. (2013) treated dropout as an adaptive regularizer for generalized linear", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 94, + 505, + 106 + ], + "spans": [ + { + "bbox": [ + 105, + 94, + 505, + 106 + ], + "score": 1.0, + "content": "models (GLMs). Helmbold & Long (2016) discussed the differences between dropout and traditional", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 105, + 505, + 117 + ], + "spans": [ + { + "bbox": [ + 105, + 105, + 505, + 117 + ], + "score": 1.0, + "content": "weight decay regularization. In terms of statistical learning theory, Gao & Zhou (2014) studied the", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 115, + 505, + 128 + ], + "spans": [ + { + "bbox": [ + 105, + 115, + 505, + 128 + ], + "score": 1.0, + "content": "Rademacher complexity of different types of dropout, showing that dropout is able to reduce the", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 127, + 505, + 139 + ], + "spans": [ + { + "bbox": [ + 105, + 127, + 505, + 139 + ], + "score": 1.0, + "content": "Rademacher complexity polynomially for shallow neural networks (with one or no hidden layers) and", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 137, + 506, + 150 + ], + "spans": [ + { + "bbox": [ + 105, + 137, + 506, + 150 + ], + "score": 1.0, + "content": "exponentially for deep neural networks. This latter work (Gao & Zhou, 2014) formally demonstrated", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 148, + 505, + 161 + ], + "spans": [ + { + "bbox": [ + 105, + 148, + 505, + 161 + ], + "score": 1.0, + "content": "that dropout, due to its regularizing effect, contributes to reducing the inherent model complexity, in", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 160, + 352, + 172 + ], + "spans": [ + { + "bbox": [ + 105, + 160, + 352, + 172 + ], + "score": 1.0, + "content": "particular the variance component in the generalization error.", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 3.5 + }, + { + "type": "text", + "bbox": [ + 107, + 176, + 505, + 254 + ], + "lines": [ + { + "bbox": [ + 105, + 176, + 505, + 189 + ], + "spans": [ + { + "bbox": [ + 105, + 176, + 505, + 189 + ], + "score": 1.0, + "content": "Seen as a model combination technique, it is intuitive that dropout contributes to reducing the variance", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 186, + 505, + 200 + ], + "spans": [ + { + "bbox": [ + 105, + 186, + 505, + 200 + ], + "score": 1.0, + "content": "of the model performance. Surprisingly, dropout has also been shown to play some role in reducing", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 106, + 198, + 505, + 210 + ], + "spans": [ + { + "bbox": [ + 106, + 198, + 505, + 210 + ], + "score": 1.0, + "content": "the model bias. For instance, Jain et al. (2015) studied the ability of dropout training to escape local", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 104, + 208, + 507, + 223 + ], + "spans": [ + { + "bbox": [ + 104, + 208, + 507, + 223 + ], + "score": 1.0, + "content": "minima, hence leading to reduced model bias. Other studies (Chen et al., 2014; Helmbold & Long,", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 106, + 220, + 507, + 232 + ], + "spans": [ + { + "bbox": [ + 106, + 220, + 507, + 232 + ], + "score": 1.0, + "content": "2014; Wager et al., 2014) focus on the effect of the dropout noise on models with shallow architectures.", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 230, + 506, + 244 + ], + "spans": [ + { + "bbox": [ + 105, + 230, + 506, + 244 + ], + "score": 1.0, + "content": "We noted in passing that there are also some work (Kingma et al., 2015; Gal & Ghahramani, 2015;", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 241, + 374, + 255 + ], + "spans": [ + { + "bbox": [ + 105, + 241, + 374, + 255 + ], + "score": 1.0, + "content": "2016) trying to understand dropout from the Bayesian perspective.", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 11 + }, + { + "type": "text", + "bbox": [ + 107, + 259, + 505, + 435 + ], + "lines": [ + { + "bbox": [ + 105, + 259, + 506, + 272 + ], + "spans": [ + { + "bbox": [ + 105, + 259, + 506, + 272 + ], + "score": 1.0, + "content": "In this work, we first formulate dropout as a tractable approximation of a latent variable model,", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 106, + 270, + 506, + 282 + ], + "spans": [ + { + "bbox": [ + 106, + 270, + 506, + 282 + ], + "score": 1.0, + "content": "and give a clean view of weight sharing (§3). Then, we focus on an inference gap in dropout", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 280, + 505, + 294 + ], + "spans": [ + { + "bbox": [ + 105, + 280, + 505, + 294 + ], + "score": 1.0, + "content": "that has somehow gotten under-appreciated: In the inference phase, for computational tractability", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 291, + 505, + 305 + ], + "spans": [ + { + "bbox": [ + 105, + 291, + 505, + 305 + ], + "score": 1.0, + "content": "considerations, the model ensemble generated by dropout is approximated by a single model with", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 302, + 505, + 316 + ], + "spans": [ + { + "bbox": [ + 105, + 302, + 505, + 316 + ], + "score": 1.0, + "content": "scaled weights, resulting in a gap between training and inference, and rendering the many previous", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 313, + 506, + 327 + ], + "spans": [ + { + "bbox": [ + 105, + 313, + 506, + 327 + ], + "score": 1.0, + "content": "theoretical findings inapplicable. In general, this inference gap can be very large and no attempt (to", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 324, + 507, + 339 + ], + "spans": [ + { + "bbox": [ + 105, + 324, + 507, + 339 + ], + "score": 1.0, + "content": "our best knowledge) has been made to control it. We make three contributions in bridging this gap:", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 106, + 336, + 505, + 348 + ], + "spans": [ + { + "bbox": [ + 106, + 336, + 505, + 348 + ], + "score": 1.0, + "content": "Theoretically, we introduce expectation-linear dropout neural networks, through which we are able", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 347, + 505, + 359 + ], + "spans": [ + { + "bbox": [ + 105, + 347, + 505, + 359 + ], + "score": 1.0, + "content": "to explicitly quantify the inference gap (§4). In particular, our theoretical results explain why the", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 358, + 506, + 369 + ], + "spans": [ + { + "bbox": [ + 105, + 358, + 506, + 369 + ], + "score": 1.0, + "content": "max-norm constraint on the network weights, a standard practice in training DNNs, can lead to a small", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 368, + 506, + 381 + ], + "spans": [ + { + "bbox": [ + 105, + 368, + 506, + 381 + ], + "score": 1.0, + "content": "inference gap hence potentially improve performance. Algorithmically, we propose to add a sampled", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 379, + 507, + 393 + ], + "spans": [ + { + "bbox": [ + 105, + 379, + 507, + 393 + ], + "score": 1.0, + "content": "version of the inference gap to regularize the standard dropout training objective (expectation-", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 390, + 505, + 403 + ], + "spans": [ + { + "bbox": [ + 105, + 390, + 505, + 403 + ], + "score": 1.0, + "content": "linearization), hence allowing explicit control of the inference gap, and analyze the interaction", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 400, + 505, + 415 + ], + "spans": [ + { + "bbox": [ + 105, + 400, + 505, + 415 + ], + "score": 1.0, + "content": "between expectation-linearization and the model accuracy (§5). Experimentally, through three", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 411, + 506, + 425 + ], + "spans": [ + { + "bbox": [ + 105, + 411, + 506, + 425 + ], + "score": 1.0, + "content": "benchmark datasets we show that our regularized dropout is not only as simple and efficient as", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 424, + 407, + 436 + ], + "spans": [ + { + "bbox": [ + 105, + 424, + 407, + 436 + ], + "score": 1.0, + "content": "standard dropout but also consistently leads to improved performance (§6).", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 22.5 + }, + { + "type": "title", + "bbox": [ + 108, + 452, + 286, + 465 + ], + "lines": [ + { + "bbox": [ + 105, + 450, + 288, + 467 + ], + "spans": [ + { + "bbox": [ + 105, + 450, + 288, + 467 + ], + "score": 1.0, + "content": "2 DROPOUT NEURAL NETWORKS", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 31 + }, + { + "type": "text", + "bbox": [ + 106, + 478, + 504, + 500 + ], + "lines": [ + { + "bbox": [ + 106, + 478, + 505, + 491 + ], + "spans": [ + { + "bbox": [ + 106, + 478, + 505, + 491 + ], + "score": 1.0, + "content": "In this section we set up the notations, review the dropout neural network model, and discuss the", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 488, + 487, + 502 + ], + "spans": [ + { + "bbox": [ + 105, + 488, + 487, + 502 + ], + "score": 1.0, + "content": "inference gap in standard dropout training that we will attempt to study in the rest of the paper.", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 32.5 + }, + { + "type": "title", + "bbox": [ + 108, + 515, + 233, + 527 + ], + "lines": [ + { + "bbox": [ + 105, + 514, + 234, + 529 + ], + "spans": [ + { + "bbox": [ + 105, + 514, + 234, + 529 + ], + "score": 1.0, + "content": "2.1 DNNS AND NOTATIONS", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 34 + }, + { + "type": "text", + "bbox": [ + 107, + 536, + 505, + 581 + ], + "lines": [ + { + "bbox": [ + 105, + 535, + 506, + 549 + ], + "spans": [ + { + "bbox": [ + 105, + 535, + 506, + 549 + ], + "score": 1.0, + "content": "Throughout we use uppercase letters for random variables (and occasionally for matrices as well),", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 547, + 506, + 560 + ], + "spans": [ + { + "bbox": [ + 105, + 547, + 442, + 560 + ], + "score": 1.0, + "content": "and lowercase letters for realizations of the corresponding random variables. Let", + "type": "text" + }, + { + "bbox": [ + 443, + 548, + 476, + 558 + ], + "score": 0.89, + "content": "X \\in { \\mathcal { X } }", + "type": "inline_equation" + }, + { + "bbox": [ + 476, + 547, + 506, + 560 + ], + "score": 1.0, + "content": "be the", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 558, + 506, + 571 + ], + "spans": [ + { + "bbox": [ + 105, + 558, + 218, + 571 + ], + "score": 1.0, + "content": "input of the neural network,", + "type": "text" + }, + { + "bbox": [ + 218, + 559, + 247, + 569 + ], + "score": 0.9, + "content": "Y \\in \\mathcal { V }", + "type": "inline_equation" + }, + { + "bbox": [ + 248, + 558, + 352, + 571 + ], + "score": 1.0, + "content": "be the desired output, and", + "type": "text" + }, + { + "bbox": [ + 352, + 558, + 477, + 570 + ], + "score": 0.91, + "content": "D = \\{ ( x _ { 1 } , y _ { 1 } ) , \\dotsc , ( x _ { N } , y _ { N } ) \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 477, + 558, + 506, + 571 + ], + "score": 1.0, + "content": "be our", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 106, + 570, + 476, + 582 + ], + "spans": [ + { + "bbox": [ + 106, + 570, + 200, + 582 + ], + "score": 1.0, + "content": "training sample, where", + "type": "text" + }, + { + "bbox": [ + 200, + 570, + 267, + 581 + ], + "score": 0.9, + "content": "x _ { i } , i = 1 , \\ldots , N", + "type": "inline_equation" + }, + { + "bbox": [ + 268, + 570, + 296, + 582 + ], + "score": 1.0, + "content": ", (resp.", + "type": "text" + }, + { + "bbox": [ + 297, + 571, + 306, + 581 + ], + "score": 0.77, + "content": "y _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 306, + 570, + 423, + 582 + ], + "score": 1.0, + "content": ") are usually i.i.d. samples of", + "type": "text" + }, + { + "bbox": [ + 423, + 570, + 433, + 579 + ], + "score": 0.78, + "content": "X", + "type": "inline_equation" + }, + { + "bbox": [ + 434, + 570, + 460, + 582 + ], + "score": 1.0, + "content": "(resp.", + "type": "text" + }, + { + "bbox": [ + 460, + 570, + 469, + 579 + ], + "score": 0.62, + "content": "Y", + "type": "inline_equation" + }, + { + "bbox": [ + 469, + 570, + 476, + 582 + ], + "score": 1.0, + "content": ").", + "type": "text" + } + ], + "index": 38 + } + ], + "index": 36.5 + }, + { + "type": "text", + "bbox": [ + 106, + 586, + 505, + 656 + ], + "lines": [ + { + "bbox": [ + 105, + 586, + 504, + 599 + ], + "spans": [ + { + "bbox": [ + 105, + 586, + 283, + 599 + ], + "score": 1.0, + "content": "Let M denote a deep neural network with", + "type": "text" + }, + { + "bbox": [ + 284, + 588, + 291, + 597 + ], + "score": 0.81, + "content": "L", + "type": "inline_equation" + }, + { + "bbox": [ + 291, + 586, + 402, + 599 + ], + "score": 1.0, + "content": "hidden layers, indexed by", + "type": "text" + }, + { + "bbox": [ + 402, + 587, + 465, + 599 + ], + "score": 0.91, + "content": "l \\in \\{ 1 , \\ldots , L \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 465, + 586, + 487, + 599 + ], + "score": 1.0, + "content": ". Let", + "type": "text" + }, + { + "bbox": [ + 488, + 586, + 504, + 597 + ], + "score": 0.87, + "content": "\\mathbf { h } ^ { ( l ) }", + "type": "inline_equation" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 598, + 505, + 613 + ], + "spans": [ + { + "bbox": [ + 105, + 598, + 251, + 613 + ], + "score": 1.0, + "content": "denote the output vector from layer", + "type": "text" + }, + { + "bbox": [ + 252, + 600, + 256, + 610 + ], + "score": 0.64, + "content": "l", + "type": "inline_equation" + }, + { + "bbox": [ + 256, + 598, + 300, + 613 + ], + "score": 1.0, + "content": ". As usual,", + "type": "text" + }, + { + "bbox": [ + 300, + 599, + 338, + 610 + ], + "score": 0.92, + "content": "\\mathbf { h } ^ { ( 0 ) } = x", + "type": "inline_equation" + }, + { + "bbox": [ + 338, + 598, + 406, + 613 + ], + "score": 1.0, + "content": "is the input, and", + "type": "text" + }, + { + "bbox": [ + 406, + 599, + 425, + 610 + ], + "score": 0.89, + "content": "\\mathbf { h } ^ { ( L ) }", + "type": "inline_equation" + }, + { + "bbox": [ + 425, + 598, + 505, + 613 + ], + "score": 1.0, + "content": "is the output of the", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 610, + 505, + 623 + ], + "spans": [ + { + "bbox": [ + 105, + 610, + 205, + 623 + ], + "score": 1.0, + "content": "neural network. Denote", + "type": "text" + }, + { + "bbox": [ + 205, + 611, + 302, + 623 + ], + "score": 0.92, + "content": "\\theta = \\{ \\theta _ { l } : l = 1 , \\ldots , L \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 302, + 610, + 461, + 623 + ], + "score": 1.0, + "content": "as the set of parameters in the network", + "type": "text" + }, + { + "bbox": [ + 462, + 611, + 474, + 621 + ], + "score": 0.48, + "content": "\\mathbf { M }", + "type": "inline_equation" + }, + { + "bbox": [ + 474, + 610, + 505, + 623 + ], + "score": 1.0, + "content": ", where", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 107, + 622, + 505, + 635 + ], + "spans": [ + { + "bbox": [ + 107, + 622, + 115, + 633 + ], + "score": 0.86, + "content": "\\theta _ { l }", + "type": "inline_equation" + }, + { + "bbox": [ + 115, + 622, + 253, + 635 + ], + "score": 1.0, + "content": "assembles the parameters in layer", + "type": "text" + }, + { + "bbox": [ + 254, + 624, + 258, + 632 + ], + "score": 0.69, + "content": "l", + "type": "inline_equation" + }, + { + "bbox": [ + 258, + 622, + 505, + 635 + ], + "score": 1.0, + "content": ". With dropout, we need to introduce a set of dropout random", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 632, + 506, + 646 + ], + "spans": [ + { + "bbox": [ + 105, + 632, + 144, + 646 + ], + "score": 1.0, + "content": "variables", + "type": "text" + }, + { + "bbox": [ + 145, + 632, + 249, + 646 + ], + "score": 0.92, + "content": "S = \\{ \\bar { \\Gamma ^ { ( l ) } } : l = 1 , \\dots , \\bar { L } \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 250, + 632, + 280, + 646 + ], + "score": 1.0, + "content": ", where", + "type": "text" + }, + { + "bbox": [ + 280, + 632, + 297, + 644 + ], + "score": 0.9, + "content": "\\Gamma ^ { ( l ) }", + "type": "inline_equation" + }, + { + "bbox": [ + 297, + 632, + 459, + 646 + ], + "score": 1.0, + "content": "is the dropout random variable for layer", + "type": "text" + }, + { + "bbox": [ + 459, + 634, + 463, + 644 + ], + "score": 0.68, + "content": "l", + "type": "inline_equation" + }, + { + "bbox": [ + 464, + 632, + 506, + 646 + ], + "score": 1.0, + "content": ". Then the", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 106, + 645, + 285, + 657 + ], + "spans": [ + { + "bbox": [ + 106, + 645, + 285, + 657 + ], + "score": 1.0, + "content": "deep neural network M can be described as:", + "type": "text" + } + ], + "index": 44 + } + ], + "index": 41.5 + }, + { + "type": "interline_equation", + "bbox": [ + 215, + 663, + 395, + 678 + ], + "lines": [ + { + "bbox": [ + 215, + 663, + 395, + 678 + ], + "spans": [ + { + "bbox": [ + 215, + 663, + 395, + 678 + ], + "score": 0.91, + "content": "\\mathbf { h } ^ { ( l ) } = f _ { l } ( \\mathbf { h } ^ { ( l - 1 ) } \\odot \\boldsymbol { \\gamma } ^ { ( l ) } ; \\boldsymbol { \\theta } _ { l } ) , \\quad l = 1 , \\ldots , L ,", + "type": "interline_equation", + "image_path": "6e8015e80a1c30355b3b864a8fdd4787a4cb1eb8761b967bca4f509407662690.jpg" + } + ] + } + ], + "index": 45, + "virtual_lines": [ + { + "bbox": [ + 215, + 663, + 395, + 678 + ], + "spans": [], + "index": 45 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 684, + 504, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 684, + 506, + 697 + ], + "spans": [ + { + "bbox": [ + 105, + 684, + 133, + 697 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 133, + 686, + 142, + 695 + ], + "score": 0.85, + "content": "\\odot", + "type": "inline_equation" + }, + { + "bbox": [ + 142, + 684, + 271, + 697 + ], + "score": 1.0, + "content": "is the element-wise product and", + "type": "text" + }, + { + "bbox": [ + 271, + 685, + 280, + 696 + ], + "score": 0.86, + "content": "f _ { l }", + "type": "inline_equation" + }, + { + "bbox": [ + 280, + 684, + 433, + 697 + ], + "score": 1.0, + "content": "is the transformation function of layer", + "type": "text" + }, + { + "bbox": [ + 434, + 685, + 438, + 694 + ], + "score": 0.53, + "content": "l", + "type": "inline_equation" + }, + { + "bbox": [ + 438, + 684, + 506, + 697 + ], + "score": 1.0, + "content": ". For example, if", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 106, + 696, + 506, + 708 + ], + "spans": [ + { + "bbox": [ + 106, + 696, + 128, + 708 + ], + "score": 1.0, + "content": "layer", + "type": "text" + }, + { + "bbox": [ + 128, + 696, + 132, + 705 + ], + "score": 0.66, + "content": "l", + "type": "inline_equation" + }, + { + "bbox": [ + 133, + 696, + 311, + 708 + ], + "score": 1.0, + "content": "is a fully connected layer with weight matrix", + "type": "text" + }, + { + "bbox": [ + 311, + 698, + 322, + 705 + ], + "score": 0.82, + "content": "W", + "type": "inline_equation" + }, + { + "bbox": [ + 322, + 696, + 371, + 708 + ], + "score": 1.0, + "content": ", bias vector", + "type": "text" + }, + { + "bbox": [ + 371, + 697, + 376, + 705 + ], + "score": 0.84, + "content": "b", + "type": "inline_equation" + }, + { + "bbox": [ + 376, + 696, + 506, + 708 + ], + "score": 1.0, + "content": ", and sigmoid activation function", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 104, + 707, + 506, + 724 + ], + "spans": [ + { + "bbox": [ + 104, + 707, + 189, + 724 + ], + "score": 1.0, + "content": "σ(x) = 11+exp(−x)", + "type": "text" + }, + { + "bbox": [ + 182, + 707, + 205, + 720 + ], + "score": 1.0, + "content": ", then", + "type": "text" + }, + { + "bbox": [ + 206, + 707, + 291, + 720 + ], + "score": 0.92, + "content": "f _ { l } ( x ) = \\sigma ( W x + b ) )", + "type": "inline_equation" + }, + { + "bbox": [ + 291, + 707, + 363, + 720 + ], + "score": 1.0, + "content": ". We will also use", + "type": "text" + }, + { + "bbox": [ + 363, + 708, + 411, + 720 + ], + "score": 0.94, + "content": "\\mathbf { h } ^ { ( l ) } ( x , s ; \\theta )", + "type": "inline_equation" + }, + { + "bbox": [ + 412, + 707, + 506, + 720 + ], + "score": 1.0, + "content": "to denote the output of", + "type": "text" + } + ], + "index": 48 + }, + { + "bbox": [ + 105, + 720, + 348, + 734 + ], + "spans": [ + { + "bbox": [ + 105, + 720, + 129, + 734 + ], + "score": 1.0, + "content": "layer", + "type": "text" + }, + { + "bbox": [ + 129, + 722, + 133, + 730 + ], + "score": 0.68, + "content": "l", + "type": "inline_equation" + }, + { + "bbox": [ + 133, + 720, + 178, + 734 + ], + "score": 1.0, + "content": "with input", + "type": "text" + }, + { + "bbox": [ + 178, + 724, + 185, + 730 + ], + "score": 0.76, + "content": "x", + "type": "inline_equation" + }, + { + "bbox": [ + 185, + 720, + 261, + 734 + ], + "score": 1.0, + "content": "and dropout value", + "type": "text" + }, + { + "bbox": [ + 261, + 725, + 266, + 730 + ], + "score": 0.8, + "content": "s", + "type": "inline_equation" + }, + { + "bbox": [ + 266, + 720, + 338, + 734 + ], + "score": 1.0, + "content": ", under parameter", + "type": "text" + }, + { + "bbox": [ + 338, + 722, + 343, + 730 + ], + "score": 0.86, + "content": "\\theta", + "type": "inline_equation" + }, + { + "bbox": [ + 343, + 720, + 348, + 734 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 49 + } + ], + "index": 47.5 + } + ], + "page_idx": 1, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 108, + 27, + 293, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 26, + 293, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 26, + 293, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2017", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 302, + 751, + 309, + 760 + ], + "lines": [ + { + "bbox": [ + 301, + 750, + 310, + 763 + ], + "spans": [ + { + "bbox": [ + 301, + 750, + 310, + 763 + ], + "score": 1.0, + "content": "2", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 107, + 82, + 505, + 171 + ], + "lines": [], + "index": 3.5, + "bbox_fs": [ + 105, + 82, + 506, + 172 + ], + "lines_deleted": true + }, + { + "type": "text", + "bbox": [ + 107, + 176, + 505, + 254 + ], + "lines": [ + { + "bbox": [ + 105, + 176, + 505, + 189 + ], + "spans": [ + { + "bbox": [ + 105, + 176, + 505, + 189 + ], + "score": 1.0, + "content": "Seen as a model combination technique, it is intuitive that dropout contributes to reducing the variance", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 186, + 505, + 200 + ], + "spans": [ + { + "bbox": [ + 105, + 186, + 505, + 200 + ], + "score": 1.0, + "content": "of the model performance. Surprisingly, dropout has also been shown to play some role in reducing", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 106, + 198, + 505, + 210 + ], + "spans": [ + { + "bbox": [ + 106, + 198, + 505, + 210 + ], + "score": 1.0, + "content": "the model bias. For instance, Jain et al. (2015) studied the ability of dropout training to escape local", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 104, + 208, + 507, + 223 + ], + "spans": [ + { + "bbox": [ + 104, + 208, + 507, + 223 + ], + "score": 1.0, + "content": "minima, hence leading to reduced model bias. Other studies (Chen et al., 2014; Helmbold & Long,", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 106, + 220, + 507, + 232 + ], + "spans": [ + { + "bbox": [ + 106, + 220, + 507, + 232 + ], + "score": 1.0, + "content": "2014; Wager et al., 2014) focus on the effect of the dropout noise on models with shallow architectures.", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 230, + 506, + 244 + ], + "spans": [ + { + "bbox": [ + 105, + 230, + 506, + 244 + ], + "score": 1.0, + "content": "We noted in passing that there are also some work (Kingma et al., 2015; Gal & Ghahramani, 2015;", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 241, + 374, + 255 + ], + "spans": [ + { + "bbox": [ + 105, + 241, + 374, + 255 + ], + "score": 1.0, + "content": "2016) trying to understand dropout from the Bayesian perspective.", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 11, + "bbox_fs": [ + 104, + 176, + 507, + 255 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 259, + 505, + 435 + ], + "lines": [ + { + "bbox": [ + 105, + 259, + 506, + 272 + ], + "spans": [ + { + "bbox": [ + 105, + 259, + 506, + 272 + ], + "score": 1.0, + "content": "In this work, we first formulate dropout as a tractable approximation of a latent variable model,", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 106, + 270, + 506, + 282 + ], + "spans": [ + { + "bbox": [ + 106, + 270, + 506, + 282 + ], + "score": 1.0, + "content": "and give a clean view of weight sharing (§3). Then, we focus on an inference gap in dropout", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 280, + 505, + 294 + ], + "spans": [ + { + "bbox": [ + 105, + 280, + 505, + 294 + ], + "score": 1.0, + "content": "that has somehow gotten under-appreciated: In the inference phase, for computational tractability", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 291, + 505, + 305 + ], + "spans": [ + { + "bbox": [ + 105, + 291, + 505, + 305 + ], + "score": 1.0, + "content": "considerations, the model ensemble generated by dropout is approximated by a single model with", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 302, + 505, + 316 + ], + "spans": [ + { + "bbox": [ + 105, + 302, + 505, + 316 + ], + "score": 1.0, + "content": "scaled weights, resulting in a gap between training and inference, and rendering the many previous", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 313, + 506, + 327 + ], + "spans": [ + { + "bbox": [ + 105, + 313, + 506, + 327 + ], + "score": 1.0, + "content": "theoretical findings inapplicable. In general, this inference gap can be very large and no attempt (to", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 324, + 507, + 339 + ], + "spans": [ + { + "bbox": [ + 105, + 324, + 507, + 339 + ], + "score": 1.0, + "content": "our best knowledge) has been made to control it. We make three contributions in bridging this gap:", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 106, + 336, + 505, + 348 + ], + "spans": [ + { + "bbox": [ + 106, + 336, + 505, + 348 + ], + "score": 1.0, + "content": "Theoretically, we introduce expectation-linear dropout neural networks, through which we are able", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 347, + 505, + 359 + ], + "spans": [ + { + "bbox": [ + 105, + 347, + 505, + 359 + ], + "score": 1.0, + "content": "to explicitly quantify the inference gap (§4). In particular, our theoretical results explain why the", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 358, + 506, + 369 + ], + "spans": [ + { + "bbox": [ + 105, + 358, + 506, + 369 + ], + "score": 1.0, + "content": "max-norm constraint on the network weights, a standard practice in training DNNs, can lead to a small", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 368, + 506, + 381 + ], + "spans": [ + { + "bbox": [ + 105, + 368, + 506, + 381 + ], + "score": 1.0, + "content": "inference gap hence potentially improve performance. Algorithmically, we propose to add a sampled", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 379, + 507, + 393 + ], + "spans": [ + { + "bbox": [ + 105, + 379, + 507, + 393 + ], + "score": 1.0, + "content": "version of the inference gap to regularize the standard dropout training objective (expectation-", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 390, + 505, + 403 + ], + "spans": [ + { + "bbox": [ + 105, + 390, + 505, + 403 + ], + "score": 1.0, + "content": "linearization), hence allowing explicit control of the inference gap, and analyze the interaction", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 400, + 505, + 415 + ], + "spans": [ + { + "bbox": [ + 105, + 400, + 505, + 415 + ], + "score": 1.0, + "content": "between expectation-linearization and the model accuracy (§5). Experimentally, through three", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 411, + 506, + 425 + ], + "spans": [ + { + "bbox": [ + 105, + 411, + 506, + 425 + ], + "score": 1.0, + "content": "benchmark datasets we show that our regularized dropout is not only as simple and efficient as", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 424, + 407, + 436 + ], + "spans": [ + { + "bbox": [ + 105, + 424, + 407, + 436 + ], + "score": 1.0, + "content": "standard dropout but also consistently leads to improved performance (§6).", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 22.5, + "bbox_fs": [ + 105, + 259, + 507, + 436 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 452, + 286, + 465 + ], + "lines": [ + { + "bbox": [ + 105, + 450, + 288, + 467 + ], + "spans": [ + { + "bbox": [ + 105, + 450, + 288, + 467 + ], + "score": 1.0, + "content": "2 DROPOUT NEURAL NETWORKS", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 31 + }, + { + "type": "text", + "bbox": [ + 106, + 478, + 504, + 500 + ], + "lines": [ + { + "bbox": [ + 106, + 478, + 505, + 491 + ], + "spans": [ + { + "bbox": [ + 106, + 478, + 505, + 491 + ], + "score": 1.0, + "content": "In this section we set up the notations, review the dropout neural network model, and discuss the", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 488, + 487, + 502 + ], + "spans": [ + { + "bbox": [ + 105, + 488, + 487, + 502 + ], + "score": 1.0, + "content": "inference gap in standard dropout training that we will attempt to study in the rest of the paper.", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 32.5, + "bbox_fs": [ + 105, + 478, + 505, + 502 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 515, + 233, + 527 + ], + "lines": [ + { + "bbox": [ + 105, + 514, + 234, + 529 + ], + "spans": [ + { + "bbox": [ + 105, + 514, + 234, + 529 + ], + "score": 1.0, + "content": "2.1 DNNS AND NOTATIONS", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 34 + }, + { + "type": "text", + "bbox": [ + 107, + 536, + 505, + 581 + ], + "lines": [ + { + "bbox": [ + 105, + 535, + 506, + 549 + ], + "spans": [ + { + "bbox": [ + 105, + 535, + 506, + 549 + ], + "score": 1.0, + "content": "Throughout we use uppercase letters for random variables (and occasionally for matrices as well),", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 547, + 506, + 560 + ], + "spans": [ + { + "bbox": [ + 105, + 547, + 442, + 560 + ], + "score": 1.0, + "content": "and lowercase letters for realizations of the corresponding random variables. Let", + "type": "text" + }, + { + "bbox": [ + 443, + 548, + 476, + 558 + ], + "score": 0.89, + "content": "X \\in { \\mathcal { X } }", + "type": "inline_equation" + }, + { + "bbox": [ + 476, + 547, + 506, + 560 + ], + "score": 1.0, + "content": "be the", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 558, + 506, + 571 + ], + "spans": [ + { + "bbox": [ + 105, + 558, + 218, + 571 + ], + "score": 1.0, + "content": "input of the neural network,", + "type": "text" + }, + { + "bbox": [ + 218, + 559, + 247, + 569 + ], + "score": 0.9, + "content": "Y \\in \\mathcal { V }", + "type": "inline_equation" + }, + { + "bbox": [ + 248, + 558, + 352, + 571 + ], + "score": 1.0, + "content": "be the desired output, and", + "type": "text" + }, + { + "bbox": [ + 352, + 558, + 477, + 570 + ], + "score": 0.91, + "content": "D = \\{ ( x _ { 1 } , y _ { 1 } ) , \\dotsc , ( x _ { N } , y _ { N } ) \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 477, + 558, + 506, + 571 + ], + "score": 1.0, + "content": "be our", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 106, + 570, + 476, + 582 + ], + "spans": [ + { + "bbox": [ + 106, + 570, + 200, + 582 + ], + "score": 1.0, + "content": "training sample, where", + "type": "text" + }, + { + "bbox": [ + 200, + 570, + 267, + 581 + ], + "score": 0.9, + "content": "x _ { i } , i = 1 , \\ldots , N", + "type": "inline_equation" + }, + { + "bbox": [ + 268, + 570, + 296, + 582 + ], + "score": 1.0, + "content": ", (resp.", + "type": "text" + }, + { + "bbox": [ + 297, + 571, + 306, + 581 + ], + "score": 0.77, + "content": "y _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 306, + 570, + 423, + 582 + ], + "score": 1.0, + "content": ") are usually i.i.d. samples of", + "type": "text" + }, + { + "bbox": [ + 423, + 570, + 433, + 579 + ], + "score": 0.78, + "content": "X", + "type": "inline_equation" + }, + { + "bbox": [ + 434, + 570, + 460, + 582 + ], + "score": 1.0, + "content": "(resp.", + "type": "text" + }, + { + "bbox": [ + 460, + 570, + 469, + 579 + ], + "score": 0.62, + "content": "Y", + "type": "inline_equation" + }, + { + "bbox": [ + 469, + 570, + 476, + 582 + ], + "score": 1.0, + "content": ").", + "type": "text" + } + ], + "index": 38 + } + ], + "index": 36.5, + "bbox_fs": [ + 105, + 535, + 506, + 582 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 586, + 505, + 656 + ], + "lines": [ + { + "bbox": [ + 105, + 586, + 504, + 599 + ], + "spans": [ + { + "bbox": [ + 105, + 586, + 283, + 599 + ], + "score": 1.0, + "content": "Let M denote a deep neural network with", + "type": "text" + }, + { + "bbox": [ + 284, + 588, + 291, + 597 + ], + "score": 0.81, + "content": "L", + "type": "inline_equation" + }, + { + "bbox": [ + 291, + 586, + 402, + 599 + ], + "score": 1.0, + "content": "hidden layers, indexed by", + "type": "text" + }, + { + "bbox": [ + 402, + 587, + 465, + 599 + ], + "score": 0.91, + "content": "l \\in \\{ 1 , \\ldots , L \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 465, + 586, + 487, + 599 + ], + "score": 1.0, + "content": ". Let", + "type": "text" + }, + { + "bbox": [ + 488, + 586, + 504, + 597 + ], + "score": 0.87, + "content": "\\mathbf { h } ^ { ( l ) }", + "type": "inline_equation" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 598, + 505, + 613 + ], + "spans": [ + { + "bbox": [ + 105, + 598, + 251, + 613 + ], + "score": 1.0, + "content": "denote the output vector from layer", + "type": "text" + }, + { + "bbox": [ + 252, + 600, + 256, + 610 + ], + "score": 0.64, + "content": "l", + "type": "inline_equation" + }, + { + "bbox": [ + 256, + 598, + 300, + 613 + ], + "score": 1.0, + "content": ". As usual,", + "type": "text" + }, + { + "bbox": [ + 300, + 599, + 338, + 610 + ], + "score": 0.92, + "content": "\\mathbf { h } ^ { ( 0 ) } = x", + "type": "inline_equation" + }, + { + "bbox": [ + 338, + 598, + 406, + 613 + ], + "score": 1.0, + "content": "is the input, and", + "type": "text" + }, + { + "bbox": [ + 406, + 599, + 425, + 610 + ], + "score": 0.89, + "content": "\\mathbf { h } ^ { ( L ) }", + "type": "inline_equation" + }, + { + "bbox": [ + 425, + 598, + 505, + 613 + ], + "score": 1.0, + "content": "is the output of the", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 610, + 505, + 623 + ], + "spans": [ + { + "bbox": [ + 105, + 610, + 205, + 623 + ], + "score": 1.0, + "content": "neural network. Denote", + "type": "text" + }, + { + "bbox": [ + 205, + 611, + 302, + 623 + ], + "score": 0.92, + "content": "\\theta = \\{ \\theta _ { l } : l = 1 , \\ldots , L \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 302, + 610, + 461, + 623 + ], + "score": 1.0, + "content": "as the set of parameters in the network", + "type": "text" + }, + { + "bbox": [ + 462, + 611, + 474, + 621 + ], + "score": 0.48, + "content": "\\mathbf { M }", + "type": "inline_equation" + }, + { + "bbox": [ + 474, + 610, + 505, + 623 + ], + "score": 1.0, + "content": ", where", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 107, + 622, + 505, + 635 + ], + "spans": [ + { + "bbox": [ + 107, + 622, + 115, + 633 + ], + "score": 0.86, + "content": "\\theta _ { l }", + "type": "inline_equation" + }, + { + "bbox": [ + 115, + 622, + 253, + 635 + ], + "score": 1.0, + "content": "assembles the parameters in layer", + "type": "text" + }, + { + "bbox": [ + 254, + 624, + 258, + 632 + ], + "score": 0.69, + "content": "l", + "type": "inline_equation" + }, + { + "bbox": [ + 258, + 622, + 505, + 635 + ], + "score": 1.0, + "content": ". With dropout, we need to introduce a set of dropout random", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 632, + 506, + 646 + ], + "spans": [ + { + "bbox": [ + 105, + 632, + 144, + 646 + ], + "score": 1.0, + "content": "variables", + "type": "text" + }, + { + "bbox": [ + 145, + 632, + 249, + 646 + ], + "score": 0.92, + "content": "S = \\{ \\bar { \\Gamma ^ { ( l ) } } : l = 1 , \\dots , \\bar { L } \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 250, + 632, + 280, + 646 + ], + "score": 1.0, + "content": ", where", + "type": "text" + }, + { + "bbox": [ + 280, + 632, + 297, + 644 + ], + "score": 0.9, + "content": "\\Gamma ^ { ( l ) }", + "type": "inline_equation" + }, + { + "bbox": [ + 297, + 632, + 459, + 646 + ], + "score": 1.0, + "content": "is the dropout random variable for layer", + "type": "text" + }, + { + "bbox": [ + 459, + 634, + 463, + 644 + ], + "score": 0.68, + "content": "l", + "type": "inline_equation" + }, + { + "bbox": [ + 464, + 632, + 506, + 646 + ], + "score": 1.0, + "content": ". Then the", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 106, + 645, + 285, + 657 + ], + "spans": [ + { + "bbox": [ + 106, + 645, + 285, + 657 + ], + "score": 1.0, + "content": "deep neural network M can be described as:", + "type": "text" + } + ], + "index": 44 + } + ], + "index": 41.5, + "bbox_fs": [ + 105, + 586, + 506, + 657 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 215, + 663, + 395, + 678 + ], + "lines": [ + { + "bbox": [ + 215, + 663, + 395, + 678 + ], + "spans": [ + { + "bbox": [ + 215, + 663, + 395, + 678 + ], + "score": 0.91, + "content": "\\mathbf { h } ^ { ( l ) } = f _ { l } ( \\mathbf { h } ^ { ( l - 1 ) } \\odot \\boldsymbol { \\gamma } ^ { ( l ) } ; \\boldsymbol { \\theta } _ { l } ) , \\quad l = 1 , \\ldots , L ,", + "type": "interline_equation", + "image_path": "6e8015e80a1c30355b3b864a8fdd4787a4cb1eb8761b967bca4f509407662690.jpg" + } + ] + } + ], + "index": 45, + "virtual_lines": [ + { + "bbox": [ + 215, + 663, + 395, + 678 + ], + "spans": [], + "index": 45 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 684, + 504, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 684, + 506, + 697 + ], + "spans": [ + { + "bbox": [ + 105, + 684, + 133, + 697 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 133, + 686, + 142, + 695 + ], + "score": 0.85, + "content": "\\odot", + "type": "inline_equation" + }, + { + "bbox": [ + 142, + 684, + 271, + 697 + ], + "score": 1.0, + "content": "is the element-wise product and", + "type": "text" + }, + { + "bbox": [ + 271, + 685, + 280, + 696 + ], + "score": 0.86, + "content": "f _ { l }", + "type": "inline_equation" + }, + { + "bbox": [ + 280, + 684, + 433, + 697 + ], + "score": 1.0, + "content": "is the transformation function of layer", + "type": "text" + }, + { + "bbox": [ + 434, + 685, + 438, + 694 + ], + "score": 0.53, + "content": "l", + "type": "inline_equation" + }, + { + "bbox": [ + 438, + 684, + 506, + 697 + ], + "score": 1.0, + "content": ". For example, if", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 106, + 696, + 506, + 708 + ], + "spans": [ + { + "bbox": [ + 106, + 696, + 128, + 708 + ], + "score": 1.0, + "content": "layer", + "type": "text" + }, + { + "bbox": [ + 128, + 696, + 132, + 705 + ], + "score": 0.66, + "content": "l", + "type": "inline_equation" + }, + { + "bbox": [ + 133, + 696, + 311, + 708 + ], + "score": 1.0, + "content": "is a fully connected layer with weight matrix", + "type": "text" + }, + { + "bbox": [ + 311, + 698, + 322, + 705 + ], + "score": 0.82, + "content": "W", + "type": "inline_equation" + }, + { + "bbox": [ + 322, + 696, + 371, + 708 + ], + "score": 1.0, + "content": ", bias vector", + "type": "text" + }, + { + "bbox": [ + 371, + 697, + 376, + 705 + ], + "score": 0.84, + "content": "b", + "type": "inline_equation" + }, + { + "bbox": [ + 376, + 696, + 506, + 708 + ], + "score": 1.0, + "content": ", and sigmoid activation function", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 104, + 707, + 506, + 724 + ], + "spans": [ + { + "bbox": [ + 104, + 707, + 189, + 724 + ], + "score": 1.0, + "content": "σ(x) = 11+exp(−x)", + "type": "text" + }, + { + "bbox": [ + 182, + 707, + 205, + 720 + ], + "score": 1.0, + "content": ", then", + "type": "text" + }, + { + "bbox": [ + 206, + 707, + 291, + 720 + ], + "score": 0.92, + "content": "f _ { l } ( x ) = \\sigma ( W x + b ) )", + "type": "inline_equation" + }, + { + "bbox": [ + 291, + 707, + 363, + 720 + ], + "score": 1.0, + "content": ". We will also use", + "type": "text" + }, + { + "bbox": [ + 363, + 708, + 411, + 720 + ], + "score": 0.94, + "content": "\\mathbf { h } ^ { ( l ) } ( x , s ; \\theta )", + "type": "inline_equation" + }, + { + "bbox": [ + 412, + 707, + 506, + 720 + ], + "score": 1.0, + "content": "to denote the output of", + "type": "text" + } + ], + "index": 48 + }, + { + "bbox": [ + 105, + 720, + 348, + 734 + ], + "spans": [ + { + "bbox": [ + 105, + 720, + 129, + 734 + ], + "score": 1.0, + "content": "layer", + "type": "text" + }, + { + "bbox": [ + 129, + 722, + 133, + 730 + ], + "score": 0.68, + "content": "l", + "type": "inline_equation" + }, + { + "bbox": [ + 133, + 720, + 178, + 734 + ], + "score": 1.0, + "content": "with input", + "type": "text" + }, + { + "bbox": [ + 178, + 724, + 185, + 730 + ], + "score": 0.76, + "content": "x", + "type": "inline_equation" + }, + { + "bbox": [ + 185, + 720, + 261, + 734 + ], + "score": 1.0, + "content": "and dropout value", + "type": "text" + }, + { + "bbox": [ + 261, + 725, + 266, + 730 + ], + "score": 0.8, + "content": "s", + "type": "inline_equation" + }, + { + "bbox": [ + 266, + 720, + 338, + 734 + ], + "score": 1.0, + "content": ", under parameter", + "type": "text" + }, + { + "bbox": [ + 338, + 722, + 343, + 730 + ], + "score": 0.86, + "content": "\\theta", + "type": "inline_equation" + }, + { + "bbox": [ + 343, + 720, + 348, + 734 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 49 + } + ], + "index": 47.5, + "bbox_fs": [ + 104, + 684, + 506, + 734 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 106, + 82, + 505, + 116 + ], + "lines": [ + { + "bbox": [ + 104, + 80, + 506, + 96 + ], + "spans": [ + { + "bbox": [ + 104, + 80, + 383, + 96 + ], + "score": 1.0, + "content": "In the simplest form of dropout, which is also called standard dropout,", + "type": "text" + }, + { + "bbox": [ + 384, + 81, + 400, + 93 + ], + "score": 0.9, + "content": "\\Gamma ^ { ( l ) }", + "type": "inline_equation" + }, + { + "bbox": [ + 401, + 80, + 506, + 96 + ], + "score": 1.0, + "content": "is a vector of independent", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 106, + 93, + 505, + 106 + ], + "spans": [ + { + "bbox": [ + 106, + 93, + 340, + 106 + ], + "score": 1.0, + "content": "Bernoulli random variables, each of which has probability", + "type": "text" + }, + { + "bbox": [ + 340, + 95, + 350, + 105 + ], + "score": 0.84, + "content": "p _ { l }", + "type": "inline_equation" + }, + { + "bbox": [ + 351, + 93, + 411, + 106 + ], + "score": 1.0, + "content": "of being 1 and", + "type": "text" + }, + { + "bbox": [ + 411, + 94, + 437, + 105 + ], + "score": 0.9, + "content": "1 - p _ { l }", + "type": "inline_equation" + }, + { + "bbox": [ + 438, + 93, + 505, + 106 + ], + "score": 1.0, + "content": "of being 0. This", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 103, + 424, + 118 + ], + "spans": [ + { + "bbox": [ + 105, + 103, + 410, + 118 + ], + "score": 1.0, + "content": "corresponds to dropping each of the weights independently with probability", + "type": "text" + }, + { + "bbox": [ + 411, + 107, + 420, + 116 + ], + "score": 0.82, + "content": "p _ { l }", + "type": "inline_equation" + }, + { + "bbox": [ + 420, + 103, + 424, + 118 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 2 + } + ], + "index": 1 + }, + { + "type": "title", + "bbox": [ + 107, + 129, + 220, + 140 + ], + "lines": [ + { + "bbox": [ + 105, + 128, + 221, + 142 + ], + "spans": [ + { + "bbox": [ + 105, + 128, + 221, + 142 + ], + "score": 1.0, + "content": "2.2 DROPOUT TRAINING", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 3 + }, + { + "type": "text", + "bbox": [ + 107, + 149, + 505, + 205 + ], + "lines": [ + { + "bbox": [ + 106, + 150, + 505, + 162 + ], + "spans": [ + { + "bbox": [ + 106, + 150, + 505, + 162 + ], + "score": 1.0, + "content": "The standard dropout neural networks can be trained using stochastic gradient decent (SGD), with a", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 160, + 505, + 173 + ], + "spans": [ + { + "bbox": [ + 105, + 160, + 505, + 173 + ], + "score": 1.0, + "content": "sub-network sampled by dropping neural units for each training instance in a mini-batch. Forward", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 172, + 505, + 183 + ], + "spans": [ + { + "bbox": [ + 105, + 172, + 505, + 183 + ], + "score": 1.0, + "content": "and backward pass for that training instance are done only on the sampled sub-network. Intuitively,", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 182, + 505, + 196 + ], + "spans": [ + { + "bbox": [ + 105, + 182, + 505, + 196 + ], + "score": 1.0, + "content": "dropout aims at, simultaneously and jointly, training an ensemble of exponentially many neural", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 106, + 194, + 504, + 206 + ], + "spans": [ + { + "bbox": [ + 106, + 194, + 504, + 206 + ], + "score": 1.0, + "content": "networks (one for each configuration of dropped units) while sharing the same weights/parameters.", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 6 + }, + { + "type": "text", + "bbox": [ + 107, + 210, + 505, + 244 + ], + "lines": [ + { + "bbox": [ + 105, + 210, + 506, + 224 + ], + "spans": [ + { + "bbox": [ + 105, + 210, + 506, + 224 + ], + "score": 1.0, + "content": "The goal of the stochastic training procedure of dropout can be understood as minimizing an expected", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 220, + 507, + 235 + ], + "spans": [ + { + "bbox": [ + 105, + 220, + 507, + 235 + ], + "score": 1.0, + "content": "loss function, after marginalizing out the dropout variables (Srivastava, 2013; Wang & Manning,", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 106, + 232, + 484, + 245 + ], + "spans": [ + { + "bbox": [ + 106, + 232, + 484, + 245 + ], + "score": 1.0, + "content": "2013). In the context of maximal likelihood estimation, dropout training can be formulated as:", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 10 + }, + { + "type": "interline_equation", + "bbox": [ + 150, + 248, + 460, + 283 + ], + "lines": [ + { + "bbox": [ + 150, + 248, + 460, + 283 + ], + "spans": [ + { + "bbox": [ + 150, + 248, + 460, + 283 + ], + "score": 0.94, + "content": "\\theta ^ { * } = \\underset { \\theta } { \\operatorname { a r g m i n } } \\operatorname { E } _ { S _ { D } } [ - l ( D , S _ { D } ; \\theta ) ] = \\underset { \\theta } { \\operatorname { a r g m i n } } \\operatorname { E } _ { S _ { D } } \\Big [ - \\sum _ { i = 1 } ^ { N } \\log p ( y _ { i } | x _ { i } , S _ { i } ; \\theta ) \\Big ] ,", + "type": "interline_equation", + "image_path": "e299a72c16fd2259f80a8af3a744f89b890a742d73f9f01c61a959ee62a11992.jpg" + } + ] + } + ], + "index": 13, + "virtual_lines": [ + { + "bbox": [ + 150, + 248, + 460, + 259.6666666666667 + ], + "spans": [], + "index": 12 + }, + { + "bbox": [ + 150, + 259.6666666666667, + 460, + 271.33333333333337 + ], + "spans": [], + "index": 13 + }, + { + "bbox": [ + 150, + 271.33333333333337, + 460, + 283.00000000000006 + ], + "spans": [], + "index": 14 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 286, + 505, + 343 + ], + "lines": [ + { + "bbox": [ + 106, + 287, + 506, + 300 + ], + "spans": [ + { + "bbox": [ + 106, + 287, + 178, + 300 + ], + "score": 1.0, + "content": "where recall that", + "type": "text" + }, + { + "bbox": [ + 178, + 288, + 188, + 297 + ], + "score": 0.83, + "content": "D", + "type": "inline_equation" + }, + { + "bbox": [ + 189, + 287, + 285, + 300 + ], + "score": 1.0, + "content": "is the training sample,", + "type": "text" + }, + { + "bbox": [ + 285, + 287, + 372, + 299 + ], + "score": 0.93, + "content": "{ { S } _ { D } } = \\left\\{ { { S } _ { 1 } } , \\ldots , { { S } _ { N } } \\right\\}", + "type": "inline_equation" + }, + { + "bbox": [ + 372, + 287, + 506, + 300 + ], + "score": 1.0, + "content": "is the dropout variable (one for", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 106, + 298, + 505, + 311 + ], + "spans": [ + { + "bbox": [ + 106, + 298, + 221, + 311 + ], + "score": 1.0, + "content": "each training instance), and", + "type": "text" + }, + { + "bbox": [ + 221, + 298, + 268, + 310 + ], + "score": 0.93, + "content": "l ( D , S _ { D } ; \\theta )", + "type": "inline_equation" + }, + { + "bbox": [ + 268, + 298, + 505, + 311 + ], + "score": 1.0, + "content": "is the (conditional) log-likelihood function defined by the", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 106, + 309, + 505, + 322 + ], + "spans": [ + { + "bbox": [ + 106, + 309, + 200, + 322 + ], + "score": 1.0, + "content": "conditional distribution", + "type": "text" + }, + { + "bbox": [ + 200, + 309, + 246, + 321 + ], + "score": 0.93, + "content": "p ( \\boldsymbol { y } | \\boldsymbol { x } , s ; \\theta )", + "type": "inline_equation" + }, + { + "bbox": [ + 246, + 309, + 285, + 322 + ], + "score": 1.0, + "content": "of output", + "type": "text" + }, + { + "bbox": [ + 285, + 311, + 292, + 321 + ], + "score": 0.8, + "content": "y", + "type": "inline_equation" + }, + { + "bbox": [ + 292, + 309, + 338, + 322 + ], + "score": 1.0, + "content": "given input", + "type": "text" + }, + { + "bbox": [ + 339, + 311, + 345, + 319 + ], + "score": 0.77, + "content": "x", + "type": "inline_equation" + }, + { + "bbox": [ + 345, + 309, + 415, + 322 + ], + "score": 1.0, + "content": ", under parameter", + "type": "text" + }, + { + "bbox": [ + 415, + 310, + 421, + 319 + ], + "score": 0.79, + "content": "\\theta", + "type": "inline_equation" + }, + { + "bbox": [ + 422, + 309, + 505, + 322 + ], + "score": 1.0, + "content": "and dropout variable", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 107, + 320, + 505, + 333 + ], + "spans": [ + { + "bbox": [ + 107, + 322, + 112, + 330 + ], + "score": 0.47, + "content": "s", + "type": "inline_equation" + }, + { + "bbox": [ + 113, + 320, + 255, + 333 + ], + "score": 1.0, + "content": ". Throughout we use the notation", + "type": "text" + }, + { + "bbox": [ + 256, + 321, + 270, + 331 + ], + "score": 0.89, + "content": "\\mathrm { E } _ { Z }", + "type": "inline_equation" + }, + { + "bbox": [ + 271, + 320, + 505, + 333 + ], + "score": 1.0, + "content": "to denote the conditional expectation where all random", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 106, + 331, + 261, + 343 + ], + "spans": [ + { + "bbox": [ + 106, + 331, + 173, + 343 + ], + "score": 1.0, + "content": "variables except", + "type": "text" + }, + { + "bbox": [ + 173, + 331, + 182, + 341 + ], + "score": 0.79, + "content": "Z", + "type": "inline_equation" + }, + { + "bbox": [ + 182, + 331, + 261, + 343 + ], + "score": 1.0, + "content": "are conditioned on.", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 17 + }, + { + "type": "text", + "bbox": [ + 107, + 347, + 505, + 403 + ], + "lines": [ + { + "bbox": [ + 106, + 347, + 506, + 361 + ], + "spans": [ + { + "bbox": [ + 106, + 347, + 506, + 361 + ], + "score": 1.0, + "content": "Dropout has also been shown to work well with regularization, such as L2 weight decay (Tikhonov,", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 358, + 506, + 372 + ], + "spans": [ + { + "bbox": [ + 105, + 358, + 506, + 372 + ], + "score": 1.0, + "content": "1943), Lasso (Tibshirani, 1996), KL-sparsity(Bradley & Bagnell, 2008; Hinton, 2010), and max-norm", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 104, + 369, + 506, + 383 + ], + "spans": [ + { + "bbox": [ + 104, + 369, + 506, + 383 + ], + "score": 1.0, + "content": "regularization (Srebro et al., 2004), among which the max-norm regularization — that constrains the", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 380, + 505, + 394 + ], + "spans": [ + { + "bbox": [ + 105, + 380, + 505, + 394 + ], + "score": 1.0, + "content": "norm of the incoming weight matrix to be bounded by some constant — was found to be especially", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 392, + 350, + 405 + ], + "spans": [ + { + "bbox": [ + 105, + 392, + 350, + 405 + ], + "score": 1.0, + "content": "useful for dropout (Srivastava, 2013; Srivastava et al., 2014).", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 22 + }, + { + "type": "title", + "bbox": [ + 108, + 416, + 268, + 428 + ], + "lines": [ + { + "bbox": [ + 106, + 416, + 269, + 429 + ], + "spans": [ + { + "bbox": [ + 106, + 416, + 269, + 429 + ], + "score": 1.0, + "content": "2.3 DROPOUT INFERENCE AND GAP", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 25 + }, + { + "type": "text", + "bbox": [ + 106, + 436, + 505, + 492 + ], + "lines": [ + { + "bbox": [ + 105, + 436, + 506, + 450 + ], + "spans": [ + { + "bbox": [ + 105, + 436, + 506, + 450 + ], + "score": 1.0, + "content": "As mentioned before, dropout is effectively training an ensemble of neural networks with weight", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 106, + 448, + 505, + 460 + ], + "spans": [ + { + "bbox": [ + 106, + 448, + 505, + 460 + ], + "score": 1.0, + "content": "sharing. Consequently, at test time, the output of each network in the ensemble should be averaged to", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 457, + 506, + 473 + ], + "spans": [ + { + "bbox": [ + 105, + 457, + 506, + 473 + ], + "score": 1.0, + "content": "deliver the final prediction. This averaging over exponentially many sub-networks is, however, in-", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 106, + 470, + 505, + 483 + ], + "spans": [ + { + "bbox": [ + 106, + 470, + 505, + 483 + ], + "score": 1.0, + "content": "tractable, and standard dropout typically implements an approximation by introducing a deterministic", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 106, + 482, + 379, + 493 + ], + "spans": [ + { + "bbox": [ + 106, + 482, + 379, + 493 + ], + "score": 1.0, + "content": "scaling factor for each layer to replace the random dropout variable:", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 28 + }, + { + "type": "interline_equation", + "bbox": [ + 227, + 497, + 383, + 515 + ], + "lines": [ + { + "bbox": [ + 227, + 497, + 383, + 515 + ], + "spans": [ + { + "bbox": [ + 227, + 497, + 383, + 515 + ], + "score": 0.93, + "content": "\\mathrm { E } _ { S } [ \\mathbf { H } ^ { ( L ) } ( x , S ; \\theta ) ] \\stackrel { ? } { \\approx } \\mathbf { h } ^ { ( L ) } ( x , \\mathrm { E } [ S ] ; \\theta ) ,", + "type": "interline_equation", + "image_path": "ee3fbd9b09d59a5cceb17f087426e4c3c0b50cf81c315bd8d8ea21cb2b2fafd5.jpg" + } + ] + } + ], + "index": 31, + "virtual_lines": [ + { + "bbox": [ + 227, + 497, + 383, + 515 + ], + "spans": [], + "index": 31 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 519, + 505, + 554 + ], + "lines": [ + { + "bbox": [ + 105, + 519, + 505, + 533 + ], + "spans": [ + { + "bbox": [ + 105, + 519, + 505, + 533 + ], + "score": 1.0, + "content": "where the right-hand side is the output of a single deterministic neural network whose weights are", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 530, + 505, + 544 + ], + "spans": [ + { + "bbox": [ + 105, + 530, + 505, + 544 + ], + "score": 1.0, + "content": "scaled to match the expected number of active hidden units on the left-hand side. Importantly, the", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 542, + 477, + 555 + ], + "spans": [ + { + "bbox": [ + 105, + 542, + 477, + 555 + ], + "score": 1.0, + "content": "right-hand side can be easily computed since it only involves a single deterministic network.", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 33 + }, + { + "type": "text", + "bbox": [ + 106, + 558, + 505, + 636 + ], + "lines": [ + { + "bbox": [ + 106, + 559, + 506, + 571 + ], + "spans": [ + { + "bbox": [ + 106, + 559, + 506, + 571 + ], + "score": 1.0, + "content": "Bulò et al. (2016) combined dropout with knowledge distillation methods (Hinton et al., 2015) to better", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 570, + 506, + 582 + ], + "spans": [ + { + "bbox": [ + 105, + 570, + 506, + 582 + ], + "score": 1.0, + "content": "approximate the averaging processing of the left-hand side. However, the quality of the approximation", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 106, + 581, + 505, + 594 + ], + "spans": [ + { + "bbox": [ + 106, + 581, + 505, + 594 + ], + "score": 1.0, + "content": "in (3) is largely unknown, and to our best knowledge, no attempt has been made to explicitly control", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 106, + 592, + 505, + 604 + ], + "spans": [ + { + "bbox": [ + 106, + 592, + 505, + 604 + ], + "score": 1.0, + "content": "this inference gap. The main goal of this work is to explicitly quantify, algorithmically control, and", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 603, + 506, + 616 + ], + "spans": [ + { + "bbox": [ + 105, + 603, + 506, + 616 + ], + "score": 1.0, + "content": "experimentally demonstrate the inference gap in (3), in the hope of improving the generalization", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 613, + 506, + 626 + ], + "spans": [ + { + "bbox": [ + 105, + 613, + 506, + 626 + ], + "score": 1.0, + "content": "performance of DNNs eventually. To this end, in the next section we first present a latent variable", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 106, + 625, + 466, + 637 + ], + "spans": [ + { + "bbox": [ + 106, + 625, + 466, + 637 + ], + "score": 1.0, + "content": "model interpretation of dropout, which will greatly facilitate our later theoretical analysis.", + "type": "text" + } + ], + "index": 41 + } + ], + "index": 38 + }, + { + "type": "title", + "bbox": [ + 107, + 651, + 342, + 664 + ], + "lines": [ + { + "bbox": [ + 104, + 650, + 343, + 666 + ], + "spans": [ + { + "bbox": [ + 104, + 650, + 343, + 666 + ], + "score": 1.0, + "content": "3 DROPOUT AS LATENT VARIABLE MODELS", + "type": "text" + } + ], + "index": 42 + } + ], + "index": 42 + }, + { + "type": "text", + "bbox": [ + 107, + 676, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 677, + 505, + 689 + ], + "spans": [ + { + "bbox": [ + 106, + 677, + 505, + 689 + ], + "score": 1.0, + "content": "With the end goal of studying the inference gap in (3) in mind, in this section, we first formulate", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 106, + 687, + 505, + 699 + ], + "spans": [ + { + "bbox": [ + 106, + 687, + 353, + 699 + ], + "score": 1.0, + "content": "dropout neural networks as a latent variable model (LVM) in", + "type": "text" + }, + { + "bbox": [ + 353, + 688, + 374, + 699 + ], + "score": 0.87, + "content": "\\ S \\ 3 . 1", + "type": "inline_equation" + }, + { + "bbox": [ + 374, + 687, + 505, + 699 + ], + "score": 1.0, + "content": ". Then, we point out the relation", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 699, + 506, + 712 + ], + "spans": [ + { + "bbox": [ + 105, + 699, + 403, + 712 + ], + "score": 1.0, + "content": "between the training procedure of LVM and that of standard dropout in", + "type": "text" + }, + { + "bbox": [ + 403, + 699, + 425, + 710 + ], + "score": 0.85, + "content": "\\ S \\ 3 . 2", + "type": "inline_equation" + }, + { + "bbox": [ + 426, + 699, + 506, + 712 + ], + "score": 1.0, + "content": ". The advantage of", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 106, + 710, + 506, + 722 + ], + "spans": [ + { + "bbox": [ + 106, + 710, + 506, + 722 + ], + "score": 1.0, + "content": "formulating dropout as a LVM is that we need only deal with a single model (with latent structure),", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 106, + 721, + 505, + 733 + ], + "spans": [ + { + "bbox": [ + 106, + 721, + 505, + 733 + ], + "score": 1.0, + "content": "instead of an ensemble of exponentially many different models (with weight sharing). This much", + "type": "text" + } + ], + "index": 47 + } + ], + "index": 45 + } + ], + "page_idx": 2, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 108, + 27, + 293, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 26, + 293, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 26, + 293, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2017", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 302, + 751, + 309, + 760 + ], + "lines": [ + { + "bbox": [ + 301, + 750, + 310, + 762 + ], + "spans": [ + { + "bbox": [ + 301, + 750, + 310, + 762 + ], + "score": 1.0, + "content": "3", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 106, + 82, + 505, + 116 + ], + "lines": [ + { + "bbox": [ + 104, + 80, + 506, + 96 + ], + "spans": [ + { + "bbox": [ + 104, + 80, + 383, + 96 + ], + "score": 1.0, + "content": "In the simplest form of dropout, which is also called standard dropout,", + "type": "text" + }, + { + "bbox": [ + 384, + 81, + 400, + 93 + ], + "score": 0.9, + "content": "\\Gamma ^ { ( l ) }", + "type": "inline_equation" + }, + { + "bbox": [ + 401, + 80, + 506, + 96 + ], + "score": 1.0, + "content": "is a vector of independent", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 106, + 93, + 505, + 106 + ], + "spans": [ + { + "bbox": [ + 106, + 93, + 340, + 106 + ], + "score": 1.0, + "content": "Bernoulli random variables, each of which has probability", + "type": "text" + }, + { + "bbox": [ + 340, + 95, + 350, + 105 + ], + "score": 0.84, + "content": "p _ { l }", + "type": "inline_equation" + }, + { + "bbox": [ + 351, + 93, + 411, + 106 + ], + "score": 1.0, + "content": "of being 1 and", + "type": "text" + }, + { + "bbox": [ + 411, + 94, + 437, + 105 + ], + "score": 0.9, + "content": "1 - p _ { l }", + "type": "inline_equation" + }, + { + "bbox": [ + 438, + 93, + 505, + 106 + ], + "score": 1.0, + "content": "of being 0. This", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 103, + 424, + 118 + ], + "spans": [ + { + "bbox": [ + 105, + 103, + 410, + 118 + ], + "score": 1.0, + "content": "corresponds to dropping each of the weights independently with probability", + "type": "text" + }, + { + "bbox": [ + 411, + 107, + 420, + 116 + ], + "score": 0.82, + "content": "p _ { l }", + "type": "inline_equation" + }, + { + "bbox": [ + 420, + 103, + 424, + 118 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 2 + } + ], + "index": 1, + "bbox_fs": [ + 104, + 80, + 506, + 118 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 129, + 220, + 140 + ], + "lines": [ + { + "bbox": [ + 105, + 128, + 221, + 142 + ], + "spans": [ + { + "bbox": [ + 105, + 128, + 221, + 142 + ], + "score": 1.0, + "content": "2.2 DROPOUT TRAINING", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 3 + }, + { + "type": "text", + "bbox": [ + 107, + 149, + 505, + 205 + ], + "lines": [ + { + "bbox": [ + 106, + 150, + 505, + 162 + ], + "spans": [ + { + "bbox": [ + 106, + 150, + 505, + 162 + ], + "score": 1.0, + "content": "The standard dropout neural networks can be trained using stochastic gradient decent (SGD), with a", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 160, + 505, + 173 + ], + "spans": [ + { + "bbox": [ + 105, + 160, + 505, + 173 + ], + "score": 1.0, + "content": "sub-network sampled by dropping neural units for each training instance in a mini-batch. Forward", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 172, + 505, + 183 + ], + "spans": [ + { + "bbox": [ + 105, + 172, + 505, + 183 + ], + "score": 1.0, + "content": "and backward pass for that training instance are done only on the sampled sub-network. Intuitively,", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 182, + 505, + 196 + ], + "spans": [ + { + "bbox": [ + 105, + 182, + 505, + 196 + ], + "score": 1.0, + "content": "dropout aims at, simultaneously and jointly, training an ensemble of exponentially many neural", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 106, + 194, + 504, + 206 + ], + "spans": [ + { + "bbox": [ + 106, + 194, + 504, + 206 + ], + "score": 1.0, + "content": "networks (one for each configuration of dropped units) while sharing the same weights/parameters.", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 6, + "bbox_fs": [ + 105, + 150, + 505, + 206 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 210, + 505, + 244 + ], + "lines": [ + { + "bbox": [ + 105, + 210, + 506, + 224 + ], + "spans": [ + { + "bbox": [ + 105, + 210, + 506, + 224 + ], + "score": 1.0, + "content": "The goal of the stochastic training procedure of dropout can be understood as minimizing an expected", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 220, + 507, + 235 + ], + "spans": [ + { + "bbox": [ + 105, + 220, + 507, + 235 + ], + "score": 1.0, + "content": "loss function, after marginalizing out the dropout variables (Srivastava, 2013; Wang & Manning,", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 106, + 232, + 484, + 245 + ], + "spans": [ + { + "bbox": [ + 106, + 232, + 484, + 245 + ], + "score": 1.0, + "content": "2013). In the context of maximal likelihood estimation, dropout training can be formulated as:", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 10, + "bbox_fs": [ + 105, + 210, + 507, + 245 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 150, + 248, + 460, + 283 + ], + "lines": [ + { + "bbox": [ + 150, + 248, + 460, + 283 + ], + "spans": [ + { + "bbox": [ + 150, + 248, + 460, + 283 + ], + "score": 0.94, + "content": "\\theta ^ { * } = \\underset { \\theta } { \\operatorname { a r g m i n } } \\operatorname { E } _ { S _ { D } } [ - l ( D , S _ { D } ; \\theta ) ] = \\underset { \\theta } { \\operatorname { a r g m i n } } \\operatorname { E } _ { S _ { D } } \\Big [ - \\sum _ { i = 1 } ^ { N } \\log p ( y _ { i } | x _ { i } , S _ { i } ; \\theta ) \\Big ] ,", + "type": "interline_equation", + "image_path": "e299a72c16fd2259f80a8af3a744f89b890a742d73f9f01c61a959ee62a11992.jpg" + } + ] + } + ], + "index": 13, + "virtual_lines": [ + { + "bbox": [ + 150, + 248, + 460, + 259.6666666666667 + ], + "spans": [], + "index": 12 + }, + { + "bbox": [ + 150, + 259.6666666666667, + 460, + 271.33333333333337 + ], + "spans": [], + "index": 13 + }, + { + "bbox": [ + 150, + 271.33333333333337, + 460, + 283.00000000000006 + ], + "spans": [], + "index": 14 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 286, + 505, + 343 + ], + "lines": [ + { + "bbox": [ + 106, + 287, + 506, + 300 + ], + "spans": [ + { + "bbox": [ + 106, + 287, + 178, + 300 + ], + "score": 1.0, + "content": "where recall that", + "type": "text" + }, + { + "bbox": [ + 178, + 288, + 188, + 297 + ], + "score": 0.83, + "content": "D", + "type": "inline_equation" + }, + { + "bbox": [ + 189, + 287, + 285, + 300 + ], + "score": 1.0, + "content": "is the training sample,", + "type": "text" + }, + { + "bbox": [ + 285, + 287, + 372, + 299 + ], + "score": 0.93, + "content": "{ { S } _ { D } } = \\left\\{ { { S } _ { 1 } } , \\ldots , { { S } _ { N } } \\right\\}", + "type": "inline_equation" + }, + { + "bbox": [ + 372, + 287, + 506, + 300 + ], + "score": 1.0, + "content": "is the dropout variable (one for", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 106, + 298, + 505, + 311 + ], + "spans": [ + { + "bbox": [ + 106, + 298, + 221, + 311 + ], + "score": 1.0, + "content": "each training instance), and", + "type": "text" + }, + { + "bbox": [ + 221, + 298, + 268, + 310 + ], + "score": 0.93, + "content": "l ( D , S _ { D } ; \\theta )", + "type": "inline_equation" + }, + { + "bbox": [ + 268, + 298, + 505, + 311 + ], + "score": 1.0, + "content": "is the (conditional) log-likelihood function defined by the", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 106, + 309, + 505, + 322 + ], + "spans": [ + { + "bbox": [ + 106, + 309, + 200, + 322 + ], + "score": 1.0, + "content": "conditional distribution", + "type": "text" + }, + { + "bbox": [ + 200, + 309, + 246, + 321 + ], + "score": 0.93, + "content": "p ( \\boldsymbol { y } | \\boldsymbol { x } , s ; \\theta )", + "type": "inline_equation" + }, + { + "bbox": [ + 246, + 309, + 285, + 322 + ], + "score": 1.0, + "content": "of output", + "type": "text" + }, + { + "bbox": [ + 285, + 311, + 292, + 321 + ], + "score": 0.8, + "content": "y", + "type": "inline_equation" + }, + { + "bbox": [ + 292, + 309, + 338, + 322 + ], + "score": 1.0, + "content": "given input", + "type": "text" + }, + { + "bbox": [ + 339, + 311, + 345, + 319 + ], + "score": 0.77, + "content": "x", + "type": "inline_equation" + }, + { + "bbox": [ + 345, + 309, + 415, + 322 + ], + "score": 1.0, + "content": ", under parameter", + "type": "text" + }, + { + "bbox": [ + 415, + 310, + 421, + 319 + ], + "score": 0.79, + "content": "\\theta", + "type": "inline_equation" + }, + { + "bbox": [ + 422, + 309, + 505, + 322 + ], + "score": 1.0, + "content": "and dropout variable", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 107, + 320, + 505, + 333 + ], + "spans": [ + { + "bbox": [ + 107, + 322, + 112, + 330 + ], + "score": 0.47, + "content": "s", + "type": "inline_equation" + }, + { + "bbox": [ + 113, + 320, + 255, + 333 + ], + "score": 1.0, + "content": ". Throughout we use the notation", + "type": "text" + }, + { + "bbox": [ + 256, + 321, + 270, + 331 + ], + "score": 0.89, + "content": "\\mathrm { E } _ { Z }", + "type": "inline_equation" + }, + { + "bbox": [ + 271, + 320, + 505, + 333 + ], + "score": 1.0, + "content": "to denote the conditional expectation where all random", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 106, + 331, + 261, + 343 + ], + "spans": [ + { + "bbox": [ + 106, + 331, + 173, + 343 + ], + "score": 1.0, + "content": "variables except", + "type": "text" + }, + { + "bbox": [ + 173, + 331, + 182, + 341 + ], + "score": 0.79, + "content": "Z", + "type": "inline_equation" + }, + { + "bbox": [ + 182, + 331, + 261, + 343 + ], + "score": 1.0, + "content": "are conditioned on.", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 17, + "bbox_fs": [ + 106, + 287, + 506, + 343 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 347, + 505, + 403 + ], + "lines": [ + { + "bbox": [ + 106, + 347, + 506, + 361 + ], + "spans": [ + { + "bbox": [ + 106, + 347, + 506, + 361 + ], + "score": 1.0, + "content": "Dropout has also been shown to work well with regularization, such as L2 weight decay (Tikhonov,", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 358, + 506, + 372 + ], + "spans": [ + { + "bbox": [ + 105, + 358, + 506, + 372 + ], + "score": 1.0, + "content": "1943), Lasso (Tibshirani, 1996), KL-sparsity(Bradley & Bagnell, 2008; Hinton, 2010), and max-norm", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 104, + 369, + 506, + 383 + ], + "spans": [ + { + "bbox": [ + 104, + 369, + 506, + 383 + ], + "score": 1.0, + "content": "regularization (Srebro et al., 2004), among which the max-norm regularization — that constrains the", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 380, + 505, + 394 + ], + "spans": [ + { + "bbox": [ + 105, + 380, + 505, + 394 + ], + "score": 1.0, + "content": "norm of the incoming weight matrix to be bounded by some constant — was found to be especially", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 392, + 350, + 405 + ], + "spans": [ + { + "bbox": [ + 105, + 392, + 350, + 405 + ], + "score": 1.0, + "content": "useful for dropout (Srivastava, 2013; Srivastava et al., 2014).", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 22, + "bbox_fs": [ + 104, + 347, + 506, + 405 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 416, + 268, + 428 + ], + "lines": [ + { + "bbox": [ + 106, + 416, + 269, + 429 + ], + "spans": [ + { + "bbox": [ + 106, + 416, + 269, + 429 + ], + "score": 1.0, + "content": "2.3 DROPOUT INFERENCE AND GAP", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 25 + }, + { + "type": "text", + "bbox": [ + 106, + 436, + 505, + 492 + ], + "lines": [ + { + "bbox": [ + 105, + 436, + 506, + 450 + ], + "spans": [ + { + "bbox": [ + 105, + 436, + 506, + 450 + ], + "score": 1.0, + "content": "As mentioned before, dropout is effectively training an ensemble of neural networks with weight", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 106, + 448, + 505, + 460 + ], + "spans": [ + { + "bbox": [ + 106, + 448, + 505, + 460 + ], + "score": 1.0, + "content": "sharing. Consequently, at test time, the output of each network in the ensemble should be averaged to", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 457, + 506, + 473 + ], + "spans": [ + { + "bbox": [ + 105, + 457, + 506, + 473 + ], + "score": 1.0, + "content": "deliver the final prediction. This averaging over exponentially many sub-networks is, however, in-", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 106, + 470, + 505, + 483 + ], + "spans": [ + { + "bbox": [ + 106, + 470, + 505, + 483 + ], + "score": 1.0, + "content": "tractable, and standard dropout typically implements an approximation by introducing a deterministic", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 106, + 482, + 379, + 493 + ], + "spans": [ + { + "bbox": [ + 106, + 482, + 379, + 493 + ], + "score": 1.0, + "content": "scaling factor for each layer to replace the random dropout variable:", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 28, + "bbox_fs": [ + 105, + 436, + 506, + 493 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 227, + 497, + 383, + 515 + ], + "lines": [ + { + "bbox": [ + 227, + 497, + 383, + 515 + ], + "spans": [ + { + "bbox": [ + 227, + 497, + 383, + 515 + ], + "score": 0.93, + "content": "\\mathrm { E } _ { S } [ \\mathbf { H } ^ { ( L ) } ( x , S ; \\theta ) ] \\stackrel { ? } { \\approx } \\mathbf { h } ^ { ( L ) } ( x , \\mathrm { E } [ S ] ; \\theta ) ,", + "type": "interline_equation", + "image_path": "ee3fbd9b09d59a5cceb17f087426e4c3c0b50cf81c315bd8d8ea21cb2b2fafd5.jpg" + } + ] + } + ], + "index": 31, + "virtual_lines": [ + { + "bbox": [ + 227, + 497, + 383, + 515 + ], + "spans": [], + "index": 31 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 519, + 505, + 554 + ], + "lines": [ + { + "bbox": [ + 105, + 519, + 505, + 533 + ], + "spans": [ + { + "bbox": [ + 105, + 519, + 505, + 533 + ], + "score": 1.0, + "content": "where the right-hand side is the output of a single deterministic neural network whose weights are", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 530, + 505, + 544 + ], + "spans": [ + { + "bbox": [ + 105, + 530, + 505, + 544 + ], + "score": 1.0, + "content": "scaled to match the expected number of active hidden units on the left-hand side. Importantly, the", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 542, + 477, + 555 + ], + "spans": [ + { + "bbox": [ + 105, + 542, + 477, + 555 + ], + "score": 1.0, + "content": "right-hand side can be easily computed since it only involves a single deterministic network.", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 33, + "bbox_fs": [ + 105, + 519, + 505, + 555 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 558, + 505, + 636 + ], + "lines": [ + { + "bbox": [ + 106, + 559, + 506, + 571 + ], + "spans": [ + { + "bbox": [ + 106, + 559, + 506, + 571 + ], + "score": 1.0, + "content": "Bulò et al. (2016) combined dropout with knowledge distillation methods (Hinton et al., 2015) to better", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 570, + 506, + 582 + ], + "spans": [ + { + "bbox": [ + 105, + 570, + 506, + 582 + ], + "score": 1.0, + "content": "approximate the averaging processing of the left-hand side. However, the quality of the approximation", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 106, + 581, + 505, + 594 + ], + "spans": [ + { + "bbox": [ + 106, + 581, + 505, + 594 + ], + "score": 1.0, + "content": "in (3) is largely unknown, and to our best knowledge, no attempt has been made to explicitly control", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 106, + 592, + 505, + 604 + ], + "spans": [ + { + "bbox": [ + 106, + 592, + 505, + 604 + ], + "score": 1.0, + "content": "this inference gap. The main goal of this work is to explicitly quantify, algorithmically control, and", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 603, + 506, + 616 + ], + "spans": [ + { + "bbox": [ + 105, + 603, + 506, + 616 + ], + "score": 1.0, + "content": "experimentally demonstrate the inference gap in (3), in the hope of improving the generalization", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 613, + 506, + 626 + ], + "spans": [ + { + "bbox": [ + 105, + 613, + 506, + 626 + ], + "score": 1.0, + "content": "performance of DNNs eventually. To this end, in the next section we first present a latent variable", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 106, + 625, + 466, + 637 + ], + "spans": [ + { + "bbox": [ + 106, + 625, + 466, + 637 + ], + "score": 1.0, + "content": "model interpretation of dropout, which will greatly facilitate our later theoretical analysis.", + "type": "text" + } + ], + "index": 41 + } + ], + "index": 38, + "bbox_fs": [ + 105, + 559, + 506, + 637 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 651, + 342, + 664 + ], + "lines": [ + { + "bbox": [ + 104, + 650, + 343, + 666 + ], + "spans": [ + { + "bbox": [ + 104, + 650, + 343, + 666 + ], + "score": 1.0, + "content": "3 DROPOUT AS LATENT VARIABLE MODELS", + "type": "text" + } + ], + "index": 42 + } + ], + "index": 42 + }, + { + "type": "text", + "bbox": [ + 107, + 676, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 677, + 505, + 689 + ], + "spans": [ + { + "bbox": [ + 106, + 677, + 505, + 689 + ], + "score": 1.0, + "content": "With the end goal of studying the inference gap in (3) in mind, in this section, we first formulate", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 106, + 687, + 505, + 699 + ], + "spans": [ + { + "bbox": [ + 106, + 687, + 353, + 699 + ], + "score": 1.0, + "content": "dropout neural networks as a latent variable model (LVM) in", + "type": "text" + }, + { + "bbox": [ + 353, + 688, + 374, + 699 + ], + "score": 0.87, + "content": "\\ S \\ 3 . 1", + "type": "inline_equation" + }, + { + "bbox": [ + 374, + 687, + 505, + 699 + ], + "score": 1.0, + "content": ". Then, we point out the relation", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 699, + 506, + 712 + ], + "spans": [ + { + "bbox": [ + 105, + 699, + 403, + 712 + ], + "score": 1.0, + "content": "between the training procedure of LVM and that of standard dropout in", + "type": "text" + }, + { + "bbox": [ + 403, + 699, + 425, + 710 + ], + "score": 0.85, + "content": "\\ S \\ 3 . 2", + "type": "inline_equation" + }, + { + "bbox": [ + 426, + 699, + 506, + 712 + ], + "score": 1.0, + "content": ". The advantage of", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 106, + 710, + 506, + 722 + ], + "spans": [ + { + "bbox": [ + 106, + 710, + 506, + 722 + ], + "score": 1.0, + "content": "formulating dropout as a LVM is that we need only deal with a single model (with latent structure),", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 106, + 721, + 505, + 733 + ], + "spans": [ + { + "bbox": [ + 106, + 721, + 505, + 733 + ], + "score": 1.0, + "content": "instead of an ensemble of exponentially many different models (with weight sharing). This much", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 106, + 82, + 505, + 95 + ], + "spans": [ + { + "bbox": [ + 106, + 82, + 455, + 95 + ], + "score": 1.0, + "content": "simplified view of dropout enables us to understand and analyze the model parameter", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 455, + 83, + 461, + 92 + ], + "score": 0.77, + "content": "\\theta", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 462, + 82, + 505, + 95 + ], + "score": 1.0, + "content": "in a much", + "type": "text", + "cross_page": true + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 93, + 267, + 107 + ], + "spans": [ + { + "bbox": [ + 105, + 93, + 267, + 107 + ], + "score": 1.0, + "content": "more straightforward and intuitive way.", + "type": "text", + "cross_page": true + } + ], + "index": 1 + } + ], + "index": 45, + "bbox_fs": [ + 105, + 677, + 506, + 733 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 106, + 82, + 504, + 105 + ], + "lines": [ + { + "bbox": [ + 106, + 82, + 505, + 95 + ], + "spans": [ + { + "bbox": [ + 106, + 82, + 455, + 95 + ], + "score": 1.0, + "content": "simplified view of dropout enables us to understand and analyze the model parameter", + "type": "text" + }, + { + "bbox": [ + 455, + 83, + 461, + 92 + ], + "score": 0.77, + "content": "\\theta", + "type": "inline_equation" + }, + { + "bbox": [ + 462, + 82, + 505, + 95 + ], + "score": 1.0, + "content": "in a much", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 93, + 267, + 107 + ], + "spans": [ + { + "bbox": [ + 105, + 93, + 267, + 107 + ], + "score": 1.0, + "content": "more straightforward and intuitive way.", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5 + }, + { + "type": "title", + "bbox": [ + 108, + 117, + 295, + 129 + ], + "lines": [ + { + "bbox": [ + 106, + 118, + 297, + 131 + ], + "spans": [ + { + "bbox": [ + 106, + 118, + 297, + 131 + ], + "score": 1.0, + "content": "3.1 AN LVM FORMULATION OF DROPOUT", + "type": "text" + } + ], + "index": 2 + } + ], + "index": 2 + }, + { + "type": "text", + "bbox": [ + 106, + 138, + 506, + 205 + ], + "lines": [ + { + "bbox": [ + 105, + 139, + 505, + 150 + ], + "spans": [ + { + "bbox": [ + 105, + 139, + 505, + 150 + ], + "score": 1.0, + "content": "A latent variable model consists of two types of variables: the observed variables that represent the", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 149, + 507, + 162 + ], + "spans": [ + { + "bbox": [ + 105, + 149, + 507, + 162 + ], + "score": 1.0, + "content": "empirical (observed) data and the latent variables that characterize the hidden (unobserved) structure.", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 160, + 506, + 173 + ], + "spans": [ + { + "bbox": [ + 105, + 160, + 341, + 173 + ], + "score": 1.0, + "content": "To formulate dropout as a latent variable model, the input", + "type": "text" + }, + { + "bbox": [ + 342, + 163, + 348, + 171 + ], + "score": 0.77, + "content": "x", + "type": "inline_equation" + }, + { + "bbox": [ + 348, + 160, + 395, + 173 + ], + "score": 1.0, + "content": "and output", + "type": "text" + }, + { + "bbox": [ + 395, + 163, + 402, + 172 + ], + "score": 0.81, + "content": "y", + "type": "inline_equation" + }, + { + "bbox": [ + 402, + 160, + 506, + 173 + ], + "score": 1.0, + "content": "are regarded as observed", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 106, + 172, + 506, + 183 + ], + "spans": [ + { + "bbox": [ + 106, + 172, + 260, + 183 + ], + "score": 1.0, + "content": "variables, while the dropout variable", + "type": "text" + }, + { + "bbox": [ + 261, + 174, + 266, + 181 + ], + "score": 0.73, + "content": "s", + "type": "inline_equation" + }, + { + "bbox": [ + 266, + 172, + 506, + 183 + ], + "score": 1.0, + "content": ", representing the sub-network structure, is hidden. Then,", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 182, + 506, + 195 + ], + "spans": [ + { + "bbox": [ + 105, + 182, + 217, + 195 + ], + "score": 1.0, + "content": "upon fixing the input space", + "type": "text" + }, + { + "bbox": [ + 218, + 183, + 227, + 192 + ], + "score": 0.84, + "content": "\\mathcal { X }", + "type": "inline_equation" + }, + { + "bbox": [ + 227, + 182, + 298, + 195 + ], + "score": 1.0, + "content": ", the output space", + "type": "text" + }, + { + "bbox": [ + 299, + 183, + 307, + 193 + ], + "score": 0.8, + "content": "\\mathcal { V }", + "type": "inline_equation" + }, + { + "bbox": [ + 308, + 182, + 392, + 195 + ], + "score": 1.0, + "content": ", and the latent space", + "type": "text" + }, + { + "bbox": [ + 392, + 183, + 400, + 192 + ], + "score": 0.83, + "content": "s", + "type": "inline_equation" + }, + { + "bbox": [ + 401, + 182, + 506, + 195 + ], + "score": 1.0, + "content": "for dropout variables, the", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 194, + 396, + 206 + ], + "spans": [ + { + "bbox": [ + 105, + 194, + 211, + 206 + ], + "score": 1.0, + "content": "conditional probability of", + "type": "text" + }, + { + "bbox": [ + 211, + 195, + 218, + 205 + ], + "score": 0.81, + "content": "y", + "type": "inline_equation" + }, + { + "bbox": [ + 218, + 194, + 243, + 206 + ], + "score": 1.0, + "content": "given", + "type": "text" + }, + { + "bbox": [ + 243, + 196, + 250, + 203 + ], + "score": 0.78, + "content": "x", + "type": "inline_equation" + }, + { + "bbox": [ + 250, + 194, + 318, + 206 + ], + "score": 1.0, + "content": "under parameter", + "type": "text" + }, + { + "bbox": [ + 319, + 194, + 325, + 203 + ], + "score": 0.81, + "content": "\\theta", + "type": "inline_equation" + }, + { + "bbox": [ + 325, + 194, + 396, + 206 + ], + "score": 1.0, + "content": "can be written as", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 5.5 + }, + { + "type": "interline_equation", + "bbox": [ + 228, + 208, + 381, + 234 + ], + "lines": [ + { + "bbox": [ + 228, + 208, + 381, + 234 + ], + "spans": [ + { + "bbox": [ + 228, + 208, + 381, + 234 + ], + "score": 0.94, + "content": "p ( y | x ; \\theta ) = \\int _ { S } p ( y | x , s ; \\theta ) p ( s ) d \\mu ( s ) ,", + "type": "interline_equation", + "image_path": "9125b0d58b9e8ff60d38e252eaa326687f60496445c52721abd1df2e477fbbbc.jpg" + } + ] + } + ], + "index": 9, + "virtual_lines": [ + { + "bbox": [ + 228, + 208, + 381, + 234 + ], + "spans": [], + "index": 9 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 237, + 505, + 271 + ], + "lines": [ + { + "bbox": [ + 105, + 236, + 504, + 250 + ], + "spans": [ + { + "bbox": [ + 105, + 236, + 132, + 250 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 133, + 237, + 178, + 249 + ], + "score": 0.92, + "content": "p ( \\boldsymbol { y } | \\boldsymbol { x } , s ; \\theta )", + "type": "inline_equation" + }, + { + "bbox": [ + 178, + 236, + 498, + 250 + ], + "score": 1.0, + "content": "is the conditional distribution modeled by the neutral network with configuration", + "type": "text" + }, + { + "bbox": [ + 498, + 240, + 504, + 247 + ], + "score": 0.59, + "content": "s", + "type": "inline_equation" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 248, + 505, + 260 + ], + "spans": [ + { + "bbox": [ + 105, + 248, + 190, + 260 + ], + "score": 1.0, + "content": "(same as in Eq. (2)),", + "type": "text" + }, + { + "bbox": [ + 190, + 248, + 208, + 260 + ], + "score": 0.91, + "content": "p ( s )", + "type": "inline_equation" + }, + { + "bbox": [ + 209, + 248, + 361, + 260 + ], + "score": 1.0, + "content": "is the distribution of dropout variable", + "type": "text" + }, + { + "bbox": [ + 362, + 249, + 369, + 258 + ], + "score": 0.81, + "content": "S", + "type": "inline_equation" + }, + { + "bbox": [ + 370, + 248, + 505, + 260 + ], + "score": 1.0, + "content": "(e.g. Bernoulli), here assumed to", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 259, + 410, + 271 + ], + "spans": [ + { + "bbox": [ + 105, + 259, + 218, + 271 + ], + "score": 1.0, + "content": "be independent of the input", + "type": "text" + }, + { + "bbox": [ + 218, + 261, + 225, + 269 + ], + "score": 0.76, + "content": "x", + "type": "inline_equation" + }, + { + "bbox": [ + 225, + 259, + 245, + 271 + ], + "score": 1.0, + "content": ", and", + "type": "text" + }, + { + "bbox": [ + 246, + 259, + 265, + 271 + ], + "score": 0.92, + "content": "\\mu ( s )", + "type": "inline_equation" + }, + { + "bbox": [ + 266, + 259, + 398, + 271 + ], + "score": 1.0, + "content": "is the base measure on the space", + "type": "text" + }, + { + "bbox": [ + 398, + 260, + 406, + 269 + ], + "score": 0.83, + "content": "s", + "type": "inline_equation" + }, + { + "bbox": [ + 406, + 259, + 410, + 271 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 11 + }, + { + "type": "title", + "bbox": [ + 108, + 283, + 402, + 295 + ], + "lines": [ + { + "bbox": [ + 105, + 283, + 403, + 297 + ], + "spans": [ + { + "bbox": [ + 105, + 283, + 403, + 297 + ], + "score": 1.0, + "content": "3.2 LVM DROPOUT TRAINING VS. STANDARD DROPOUT TRAINING", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 13 + }, + { + "type": "text", + "bbox": [ + 107, + 304, + 505, + 348 + ], + "lines": [ + { + "bbox": [ + 105, + 304, + 505, + 316 + ], + "spans": [ + { + "bbox": [ + 105, + 304, + 505, + 316 + ], + "score": 1.0, + "content": "Building on the above latent variable model formulation (4) of dropout, we are now ready to point", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 106, + 316, + 506, + 327 + ], + "spans": [ + { + "bbox": [ + 106, + 316, + 506, + 327 + ], + "score": 1.0, + "content": "out a simple relation between the training procedure of LVM and that of standard dropout. Given an", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 104, + 325, + 506, + 340 + ], + "spans": [ + { + "bbox": [ + 104, + 325, + 190, + 340 + ], + "score": 1.0, + "content": "i.i.d. training sample", + "type": "text" + }, + { + "bbox": [ + 191, + 327, + 200, + 336 + ], + "score": 0.82, + "content": "D", + "type": "inline_equation" + }, + { + "bbox": [ + 200, + 325, + 506, + 340 + ], + "score": 1.0, + "content": ", the maximum likelihood estimate for the LVM formulation of dropout in (4)", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 338, + 407, + 349 + ], + "spans": [ + { + "bbox": [ + 105, + 338, + 407, + 349 + ], + "score": 1.0, + "content": "is equivalent to minimizing the following negative log-likelihood function:", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 15.5 + }, + { + "type": "interline_equation", + "bbox": [ + 192, + 351, + 417, + 386 + ], + "lines": [ + { + "bbox": [ + 192, + 351, + 417, + 386 + ], + "spans": [ + { + "bbox": [ + 192, + 351, + 417, + 386 + ], + "score": 0.94, + "content": "\\theta ^ { * } = \\underset { \\theta } { \\operatorname { a r g m i n } } - l ( D ; \\theta ) = \\underset { \\theta } { \\operatorname { a r g m i n } } - \\sum _ { i = 1 } ^ { N } \\log p ( y _ { i } | x _ { i } ; \\theta ) ,", + "type": "interline_equation", + "image_path": "eb8cbc943c7b98a44cdf7ca2a6b1a42d864d0be3747e701808f6dd0b97cbdc9b.jpg" + } + ] + } + ], + "index": 18.5, + "virtual_lines": [ + { + "bbox": [ + 192, + 351, + 417, + 368.5 + ], + "spans": [], + "index": 18 + }, + { + "bbox": [ + 192, + 368.5, + 417, + 386.0 + ], + "spans": [], + "index": 19 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 389, + 505, + 423 + ], + "lines": [ + { + "bbox": [ + 105, + 387, + 506, + 403 + ], + "spans": [ + { + "bbox": [ + 105, + 387, + 134, + 403 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 135, + 389, + 171, + 401 + ], + "score": 0.93, + "content": "p ( \\boldsymbol { y } | \\boldsymbol { x } ; \\boldsymbol { \\theta } )", + "type": "inline_equation" + }, + { + "bbox": [ + 172, + 387, + 413, + 403 + ], + "score": 1.0, + "content": "is given in Eq. (4). Recall the dropout training objective", + "type": "text" + }, + { + "bbox": [ + 414, + 389, + 492, + 401 + ], + "score": 0.91, + "content": "\\operatorname { E } _ { S _ { D } } [ - l ( D , S _ { D } ; \\theta ) ]", + "type": "inline_equation" + }, + { + "bbox": [ + 492, + 387, + 506, + 403 + ], + "score": 1.0, + "content": "in", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 399, + 505, + 413 + ], + "spans": [ + { + "bbox": [ + 105, + 399, + 505, + 413 + ], + "score": 1.0, + "content": "Eq. (2). We have the following theorem as a simple consequence of Jensen’s inequality (details in", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 411, + 164, + 425 + ], + "spans": [ + { + "bbox": [ + 105, + 411, + 164, + 425 + ], + "score": 1.0, + "content": "Appendix A):", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 21 + }, + { + "type": "text", + "bbox": [ + 105, + 425, + 504, + 447 + ], + "lines": [ + { + "bbox": [ + 105, + 424, + 505, + 439 + ], + "spans": [ + { + "bbox": [ + 105, + 424, + 505, + 439 + ], + "score": 1.0, + "content": "Theorem 1. The expected loss function of standard dropout (Eq. (2)) is an upper bound of the", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 106, + 436, + 306, + 449 + ], + "spans": [ + { + "bbox": [ + 106, + 436, + 306, + 449 + ], + "score": 1.0, + "content": "negative log-likelihood of LVM dropout (Eq. (5)):", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 23.5 + }, + { + "type": "interline_equation", + "bbox": [ + 237, + 451, + 372, + 465 + ], + "lines": [ + { + "bbox": [ + 237, + 451, + 372, + 465 + ], + "spans": [ + { + "bbox": [ + 237, + 451, + 372, + 465 + ], + "score": 0.91, + "content": "- l ( D ; \\theta ) \\leq \\mathrm { E } _ { S _ { D } } [ - l ( D , S _ { D } ; \\theta ) ] .", + "type": "interline_equation", + "image_path": "a9a5b4f36e7b1d7532233f14f8d9943c84c8b97f88c469f63ea025f8fed33ceb.jpg" + } + ] + } + ], + "index": 25, + "virtual_lines": [ + { + "bbox": [ + 237, + 451, + 372, + 465 + ], + "spans": [], + "index": 25 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 473, + 506, + 562 + ], + "lines": [ + { + "bbox": [ + 105, + 473, + 505, + 486 + ], + "spans": [ + { + "bbox": [ + 105, + 473, + 505, + 486 + ], + "score": 1.0, + "content": "Theorem 1, in a rigorous sense, justifies dropout training as a convenient and tractable approximation", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 482, + 506, + 498 + ], + "spans": [ + { + "bbox": [ + 105, + 482, + 506, + 498 + ], + "score": 1.0, + "content": "of the LVM formulation in (4). Indeed, since directly minimizing the marginalized negative log-", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 495, + 506, + 508 + ], + "spans": [ + { + "bbox": [ + 105, + 495, + 506, + 508 + ], + "score": 1.0, + "content": "likelihood in (5) may not be easy, a standard practice is to replace the marginalized (conditional)", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 506, + 506, + 519 + ], + "spans": [ + { + "bbox": [ + 105, + 506, + 149, + 519 + ], + "score": 1.0, + "content": "likelihood", + "type": "text" + }, + { + "bbox": [ + 149, + 507, + 186, + 518 + ], + "score": 0.92, + "content": "p ( \\boldsymbol { y } | \\boldsymbol { x } ; \\boldsymbol { \\theta } )", + "type": "inline_equation" + }, + { + "bbox": [ + 186, + 506, + 506, + 519 + ], + "score": 1.0, + "content": "in (4) with its empirical Monte carlo average through drawing samples from the", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 517, + 506, + 531 + ], + "spans": [ + { + "bbox": [ + 105, + 517, + 176, + 531 + ], + "score": 1.0, + "content": "dropout variable", + "type": "text" + }, + { + "bbox": [ + 176, + 519, + 184, + 527 + ], + "score": 0.81, + "content": "S", + "type": "inline_equation" + }, + { + "bbox": [ + 184, + 517, + 506, + 531 + ], + "score": 1.0, + "content": ". The dropout training objective in (2) corresponds exactly to this Monte carlo", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 528, + 506, + 542 + ], + "spans": [ + { + "bbox": [ + 105, + 528, + 259, + 542 + ], + "score": 1.0, + "content": "approximation when a single sample", + "type": "text" + }, + { + "bbox": [ + 260, + 529, + 271, + 539 + ], + "score": 0.88, + "content": "S _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 271, + 528, + 417, + 542 + ], + "score": 1.0, + "content": "is drawn for each training instance", + "type": "text" + }, + { + "bbox": [ + 418, + 528, + 448, + 540 + ], + "score": 0.92, + "content": "( x _ { i } , y _ { i } )", + "type": "inline_equation" + }, + { + "bbox": [ + 448, + 528, + 506, + 542 + ], + "score": 1.0, + "content": ". Importantly,", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 540, + 505, + 552 + ], + "spans": [ + { + "bbox": [ + 105, + 540, + 438, + 552 + ], + "score": 1.0, + "content": "we note that the above LVM formulation involves only a single network parameter", + "type": "text" + }, + { + "bbox": [ + 439, + 541, + 444, + 549 + ], + "score": 0.82, + "content": "\\theta", + "type": "inline_equation" + }, + { + "bbox": [ + 445, + 540, + 505, + 552 + ], + "score": 1.0, + "content": ", which largely", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 106, + 551, + 351, + 563 + ], + "spans": [ + { + "bbox": [ + 106, + 551, + 351, + 563 + ], + "score": 1.0, + "content": "simplifies the picture and facilitates our subsequent analysis.", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 29.5 + }, + { + "type": "title", + "bbox": [ + 107, + 576, + 406, + 590 + ], + "lines": [ + { + "bbox": [ + 105, + 576, + 407, + 592 + ], + "spans": [ + { + "bbox": [ + 105, + 576, + 407, + 592 + ], + "score": 1.0, + "content": "4 EXPECTATION-LINEAR DROPOUT NEURAL NETWORKS", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 34 + }, + { + "type": "text", + "bbox": [ + 107, + 601, + 505, + 646 + ], + "lines": [ + { + "bbox": [ + 105, + 602, + 505, + 614 + ], + "spans": [ + { + "bbox": [ + 105, + 602, + 325, + 614 + ], + "score": 1.0, + "content": "Building on the latent variable model formulation in", + "type": "text" + }, + { + "bbox": [ + 325, + 603, + 340, + 613 + ], + "score": 0.85, + "content": "\\ S \\ O 3", + "type": "inline_equation" + }, + { + "bbox": [ + 340, + 602, + 505, + 614 + ], + "score": 1.0, + "content": ", we introduce in this section the notion", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 613, + 506, + 625 + ], + "spans": [ + { + "bbox": [ + 105, + 613, + 506, + 625 + ], + "score": 1.0, + "content": "of expectation-linearity that essentially measures the inference gap in (3). We then characterize a", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 623, + 505, + 637 + ], + "spans": [ + { + "bbox": [ + 105, + 623, + 505, + 637 + ], + "score": 1.0, + "content": "general class of neural networks that exhibit expectation-linearity, either exactly or approximately", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 635, + 279, + 648 + ], + "spans": [ + { + "bbox": [ + 105, + 635, + 181, + 648 + ], + "score": 1.0, + "content": "over a distribution", + "type": "text" + }, + { + "bbox": [ + 182, + 635, + 201, + 647 + ], + "score": 0.91, + "content": "p ( x )", + "type": "inline_equation" + }, + { + "bbox": [ + 201, + 635, + 279, + 648 + ], + "score": 1.0, + "content": "on the input space.", + "type": "text" + } + ], + "index": 38 + } + ], + "index": 36.5 + }, + { + "type": "text", + "bbox": [ + 106, + 651, + 503, + 674 + ], + "lines": [ + { + "bbox": [ + 105, + 650, + 505, + 665 + ], + "spans": [ + { + "bbox": [ + 105, + 650, + 505, + 665 + ], + "score": 1.0, + "content": "We start with defining expectation-linearity in the simplest single-layer neural network, then we", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 106, + 662, + 356, + 676 + ], + "spans": [ + { + "bbox": [ + 106, + 662, + 356, + 676 + ], + "score": 1.0, + "content": "extend the notion into general deep networks in a natural way.", + "type": "text" + } + ], + "index": 40 + } + ], + "index": 39.5 + }, + { + "type": "text", + "bbox": [ + 106, + 676, + 504, + 699 + ], + "lines": [ + { + "bbox": [ + 105, + 675, + 505, + 690 + ], + "spans": [ + { + "bbox": [ + 105, + 675, + 335, + 690 + ], + "score": 1.0, + "content": "Definition 1 (Expectation-linear Layer). A network layer", + "type": "text" + }, + { + "bbox": [ + 335, + 677, + 401, + 689 + ], + "score": 0.93, + "content": "\\mathbf { h } = f ( x \\odot \\gamma ; \\theta )", + "type": "inline_equation" + }, + { + "bbox": [ + 402, + 675, + 505, + 690 + ], + "score": 1.0, + "content": "is expectation-linear with", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 686, + 309, + 701 + ], + "spans": [ + { + "bbox": [ + 105, + 686, + 168, + 701 + ], + "score": 1.0, + "content": "respect to a set", + "type": "text" + }, + { + "bbox": [ + 168, + 688, + 202, + 699 + ], + "score": 0.91, + "content": "{ { \\mathcal { X } } ^ { \\prime } } \\subseteq { { \\mathcal { X } } }", + "type": "inline_equation" + }, + { + "bbox": [ + 203, + 686, + 241, + 701 + ], + "score": 1.0, + "content": ", if for all", + "type": "text" + }, + { + "bbox": [ + 242, + 689, + 271, + 698 + ], + "score": 0.89, + "content": "x \\in \\mathcal { X } ^ { \\prime }", + "type": "inline_equation" + }, + { + "bbox": [ + 272, + 686, + 309, + 701 + ], + "score": 1.0, + "content": "we have", + "type": "text" + } + ], + "index": 42 + } + ], + "index": 41.5 + }, + { + "type": "interline_equation", + "bbox": [ + 220, + 702, + 391, + 717 + ], + "lines": [ + { + "bbox": [ + 220, + 702, + 391, + 717 + ], + "spans": [ + { + "bbox": [ + 220, + 702, + 391, + 717 + ], + "score": 0.91, + "content": "\\left\\| \\operatorname { E } [ f ( x \\odot \\Gamma ; \\theta ) ] - f ( x \\odot \\operatorname { E } [ \\Gamma ] ; \\theta ) \\right\\| _ { 2 } = 0 .", + "type": "interline_equation", + "image_path": "0c42ed1c9bb683289927cae7f9fbd9aecdd9fa3027ff76e935fb755bf7c8cb7a.jpg" + } + ] + } + ], + "index": 43, + "virtual_lines": [ + { + "bbox": [ + 220, + 702, + 391, + 717 + ], + "spans": [], + "index": 43 + } + ] + }, + { + "type": "text", + "bbox": [ + 104, + 720, + 487, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 719, + 486, + 733 + ], + "spans": [ + { + "bbox": [ + 105, + 719, + 201, + 733 + ], + "score": 1.0, + "content": "In this case we say that", + "type": "text" + }, + { + "bbox": [ + 201, + 721, + 213, + 730 + ], + "score": 0.86, + "content": "\\mathcal { X } ^ { \\prime }", + "type": "inline_equation" + }, + { + "bbox": [ + 214, + 719, + 343, + 733 + ], + "score": 1.0, + "content": "is expectation-linearizable, and", + "type": "text" + }, + { + "bbox": [ + 343, + 721, + 349, + 730 + ], + "score": 0.82, + "content": "\\theta", + "type": "inline_equation" + }, + { + "bbox": [ + 349, + 719, + 474, + 733 + ], + "score": 1.0, + "content": "is expectation-linearizing w.r.t", + "type": "text" + }, + { + "bbox": [ + 474, + 722, + 486, + 730 + ], + "score": 0.85, + "content": "\\mathcal { X } ^ { \\prime }", + "type": "inline_equation" + } + ], + "index": 44 + } + ], + "index": 44 + } + ], + "page_idx": 3, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 26, + 293, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 25, + 294, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 25, + 294, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2017", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 302, + 751, + 308, + 759 + ], + "lines": [ + { + "bbox": [ + 301, + 750, + 309, + 762 + ], + "spans": [ + { + "bbox": [ + 301, + 750, + 309, + 762 + ], + "score": 1.0, + "content": "", + "type": "text", + "height": 12, + "width": 8 + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 106, + 82, + 504, + 105 + ], + "lines": [], + "index": 0.5, + "bbox_fs": [ + 105, + 82, + 505, + 107 + ], + "lines_deleted": true + }, + { + "type": "title", + "bbox": [ + 108, + 117, + 295, + 129 + ], + "lines": [ + { + "bbox": [ + 106, + 118, + 297, + 131 + ], + "spans": [ + { + "bbox": [ + 106, + 118, + 297, + 131 + ], + "score": 1.0, + "content": "3.1 AN LVM FORMULATION OF DROPOUT", + "type": "text" + } + ], + "index": 2 + } + ], + "index": 2 + }, + { + "type": "text", + "bbox": [ + 106, + 138, + 506, + 205 + ], + "lines": [ + { + "bbox": [ + 105, + 139, + 505, + 150 + ], + "spans": [ + { + "bbox": [ + 105, + 139, + 505, + 150 + ], + "score": 1.0, + "content": "A latent variable model consists of two types of variables: the observed variables that represent the", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 149, + 507, + 162 + ], + "spans": [ + { + "bbox": [ + 105, + 149, + 507, + 162 + ], + "score": 1.0, + "content": "empirical (observed) data and the latent variables that characterize the hidden (unobserved) structure.", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 160, + 506, + 173 + ], + "spans": [ + { + "bbox": [ + 105, + 160, + 341, + 173 + ], + "score": 1.0, + "content": "To formulate dropout as a latent variable model, the input", + "type": "text" + }, + { + "bbox": [ + 342, + 163, + 348, + 171 + ], + "score": 0.77, + "content": "x", + "type": "inline_equation" + }, + { + "bbox": [ + 348, + 160, + 395, + 173 + ], + "score": 1.0, + "content": "and output", + "type": "text" + }, + { + "bbox": [ + 395, + 163, + 402, + 172 + ], + "score": 0.81, + "content": "y", + "type": "inline_equation" + }, + { + "bbox": [ + 402, + 160, + 506, + 173 + ], + "score": 1.0, + "content": "are regarded as observed", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 106, + 172, + 506, + 183 + ], + "spans": [ + { + "bbox": [ + 106, + 172, + 260, + 183 + ], + "score": 1.0, + "content": "variables, while the dropout variable", + "type": "text" + }, + { + "bbox": [ + 261, + 174, + 266, + 181 + ], + "score": 0.73, + "content": "s", + "type": "inline_equation" + }, + { + "bbox": [ + 266, + 172, + 506, + 183 + ], + "score": 1.0, + "content": ", representing the sub-network structure, is hidden. Then,", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 182, + 506, + 195 + ], + "spans": [ + { + "bbox": [ + 105, + 182, + 217, + 195 + ], + "score": 1.0, + "content": "upon fixing the input space", + "type": "text" + }, + { + "bbox": [ + 218, + 183, + 227, + 192 + ], + "score": 0.84, + "content": "\\mathcal { X }", + "type": "inline_equation" + }, + { + "bbox": [ + 227, + 182, + 298, + 195 + ], + "score": 1.0, + "content": ", the output space", + "type": "text" + }, + { + "bbox": [ + 299, + 183, + 307, + 193 + ], + "score": 0.8, + "content": "\\mathcal { V }", + "type": "inline_equation" + }, + { + "bbox": [ + 308, + 182, + 392, + 195 + ], + "score": 1.0, + "content": ", and the latent space", + "type": "text" + }, + { + "bbox": [ + 392, + 183, + 400, + 192 + ], + "score": 0.83, + "content": "s", + "type": "inline_equation" + }, + { + "bbox": [ + 401, + 182, + 506, + 195 + ], + "score": 1.0, + "content": "for dropout variables, the", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 194, + 396, + 206 + ], + "spans": [ + { + "bbox": [ + 105, + 194, + 211, + 206 + ], + "score": 1.0, + "content": "conditional probability of", + "type": "text" + }, + { + "bbox": [ + 211, + 195, + 218, + 205 + ], + "score": 0.81, + "content": "y", + "type": "inline_equation" + }, + { + "bbox": [ + 218, + 194, + 243, + 206 + ], + "score": 1.0, + "content": "given", + "type": "text" + }, + { + "bbox": [ + 243, + 196, + 250, + 203 + ], + "score": 0.78, + "content": "x", + "type": "inline_equation" + }, + { + "bbox": [ + 250, + 194, + 318, + 206 + ], + "score": 1.0, + "content": "under parameter", + "type": "text" + }, + { + "bbox": [ + 319, + 194, + 325, + 203 + ], + "score": 0.81, + "content": "\\theta", + "type": "inline_equation" + }, + { + "bbox": [ + 325, + 194, + 396, + 206 + ], + "score": 1.0, + "content": "can be written as", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 5.5, + "bbox_fs": [ + 105, + 139, + 507, + 206 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 228, + 208, + 381, + 234 + ], + "lines": [ + { + "bbox": [ + 228, + 208, + 381, + 234 + ], + "spans": [ + { + "bbox": [ + 228, + 208, + 381, + 234 + ], + "score": 0.94, + "content": "p ( y | x ; \\theta ) = \\int _ { S } p ( y | x , s ; \\theta ) p ( s ) d \\mu ( s ) ,", + "type": "interline_equation", + "image_path": "9125b0d58b9e8ff60d38e252eaa326687f60496445c52721abd1df2e477fbbbc.jpg" + } + ] + } + ], + "index": 9, + "virtual_lines": [ + { + "bbox": [ + 228, + 208, + 381, + 234 + ], + "spans": [], + "index": 9 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 237, + 505, + 271 + ], + "lines": [ + { + "bbox": [ + 105, + 236, + 504, + 250 + ], + "spans": [ + { + "bbox": [ + 105, + 236, + 132, + 250 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 133, + 237, + 178, + 249 + ], + "score": 0.92, + "content": "p ( \\boldsymbol { y } | \\boldsymbol { x } , s ; \\theta )", + "type": "inline_equation" + }, + { + "bbox": [ + 178, + 236, + 498, + 250 + ], + "score": 1.0, + "content": "is the conditional distribution modeled by the neutral network with configuration", + "type": "text" + }, + { + "bbox": [ + 498, + 240, + 504, + 247 + ], + "score": 0.59, + "content": "s", + "type": "inline_equation" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 248, + 505, + 260 + ], + "spans": [ + { + "bbox": [ + 105, + 248, + 190, + 260 + ], + "score": 1.0, + "content": "(same as in Eq. (2)),", + "type": "text" + }, + { + "bbox": [ + 190, + 248, + 208, + 260 + ], + "score": 0.91, + "content": "p ( s )", + "type": "inline_equation" + }, + { + "bbox": [ + 209, + 248, + 361, + 260 + ], + "score": 1.0, + "content": "is the distribution of dropout variable", + "type": "text" + }, + { + "bbox": [ + 362, + 249, + 369, + 258 + ], + "score": 0.81, + "content": "S", + "type": "inline_equation" + }, + { + "bbox": [ + 370, + 248, + 505, + 260 + ], + "score": 1.0, + "content": "(e.g. Bernoulli), here assumed to", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 259, + 410, + 271 + ], + "spans": [ + { + "bbox": [ + 105, + 259, + 218, + 271 + ], + "score": 1.0, + "content": "be independent of the input", + "type": "text" + }, + { + "bbox": [ + 218, + 261, + 225, + 269 + ], + "score": 0.76, + "content": "x", + "type": "inline_equation" + }, + { + "bbox": [ + 225, + 259, + 245, + 271 + ], + "score": 1.0, + "content": ", and", + "type": "text" + }, + { + "bbox": [ + 246, + 259, + 265, + 271 + ], + "score": 0.92, + "content": "\\mu ( s )", + "type": "inline_equation" + }, + { + "bbox": [ + 266, + 259, + 398, + 271 + ], + "score": 1.0, + "content": "is the base measure on the space", + "type": "text" + }, + { + "bbox": [ + 398, + 260, + 406, + 269 + ], + "score": 0.83, + "content": "s", + "type": "inline_equation" + }, + { + "bbox": [ + 406, + 259, + 410, + 271 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 11, + "bbox_fs": [ + 105, + 236, + 505, + 271 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 283, + 402, + 295 + ], + "lines": [ + { + "bbox": [ + 105, + 283, + 403, + 297 + ], + "spans": [ + { + "bbox": [ + 105, + 283, + 403, + 297 + ], + "score": 1.0, + "content": "3.2 LVM DROPOUT TRAINING VS. STANDARD DROPOUT TRAINING", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 13 + }, + { + "type": "text", + "bbox": [ + 107, + 304, + 505, + 348 + ], + "lines": [ + { + "bbox": [ + 105, + 304, + 505, + 316 + ], + "spans": [ + { + "bbox": [ + 105, + 304, + 505, + 316 + ], + "score": 1.0, + "content": "Building on the above latent variable model formulation (4) of dropout, we are now ready to point", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 106, + 316, + 506, + 327 + ], + "spans": [ + { + "bbox": [ + 106, + 316, + 506, + 327 + ], + "score": 1.0, + "content": "out a simple relation between the training procedure of LVM and that of standard dropout. Given an", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 104, + 325, + 506, + 340 + ], + "spans": [ + { + "bbox": [ + 104, + 325, + 190, + 340 + ], + "score": 1.0, + "content": "i.i.d. training sample", + "type": "text" + }, + { + "bbox": [ + 191, + 327, + 200, + 336 + ], + "score": 0.82, + "content": "D", + "type": "inline_equation" + }, + { + "bbox": [ + 200, + 325, + 506, + 340 + ], + "score": 1.0, + "content": ", the maximum likelihood estimate for the LVM formulation of dropout in (4)", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 338, + 407, + 349 + ], + "spans": [ + { + "bbox": [ + 105, + 338, + 407, + 349 + ], + "score": 1.0, + "content": "is equivalent to minimizing the following negative log-likelihood function:", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 15.5, + "bbox_fs": [ + 104, + 304, + 506, + 349 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 192, + 351, + 417, + 386 + ], + "lines": [ + { + "bbox": [ + 192, + 351, + 417, + 386 + ], + "spans": [ + { + "bbox": [ + 192, + 351, + 417, + 386 + ], + "score": 0.94, + "content": "\\theta ^ { * } = \\underset { \\theta } { \\operatorname { a r g m i n } } - l ( D ; \\theta ) = \\underset { \\theta } { \\operatorname { a r g m i n } } - \\sum _ { i = 1 } ^ { N } \\log p ( y _ { i } | x _ { i } ; \\theta ) ,", + "type": "interline_equation", + "image_path": "eb8cbc943c7b98a44cdf7ca2a6b1a42d864d0be3747e701808f6dd0b97cbdc9b.jpg" + } + ] + } + ], + "index": 18.5, + "virtual_lines": [ + { + "bbox": [ + 192, + 351, + 417, + 368.5 + ], + "spans": [], + "index": 18 + }, + { + "bbox": [ + 192, + 368.5, + 417, + 386.0 + ], + "spans": [], + "index": 19 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 389, + 505, + 423 + ], + "lines": [ + { + "bbox": [ + 105, + 387, + 506, + 403 + ], + "spans": [ + { + "bbox": [ + 105, + 387, + 134, + 403 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 135, + 389, + 171, + 401 + ], + "score": 0.93, + "content": "p ( \\boldsymbol { y } | \\boldsymbol { x } ; \\boldsymbol { \\theta } )", + "type": "inline_equation" + }, + { + "bbox": [ + 172, + 387, + 413, + 403 + ], + "score": 1.0, + "content": "is given in Eq. (4). Recall the dropout training objective", + "type": "text" + }, + { + "bbox": [ + 414, + 389, + 492, + 401 + ], + "score": 0.91, + "content": "\\operatorname { E } _ { S _ { D } } [ - l ( D , S _ { D } ; \\theta ) ]", + "type": "inline_equation" + }, + { + "bbox": [ + 492, + 387, + 506, + 403 + ], + "score": 1.0, + "content": "in", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 399, + 505, + 413 + ], + "spans": [ + { + "bbox": [ + 105, + 399, + 505, + 413 + ], + "score": 1.0, + "content": "Eq. (2). We have the following theorem as a simple consequence of Jensen’s inequality (details in", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 411, + 164, + 425 + ], + "spans": [ + { + "bbox": [ + 105, + 411, + 164, + 425 + ], + "score": 1.0, + "content": "Appendix A):", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 21, + "bbox_fs": [ + 105, + 387, + 506, + 425 + ] + }, + { + "type": "text", + "bbox": [ + 105, + 425, + 504, + 447 + ], + "lines": [ + { + "bbox": [ + 105, + 424, + 505, + 439 + ], + "spans": [ + { + "bbox": [ + 105, + 424, + 505, + 439 + ], + "score": 1.0, + "content": "Theorem 1. The expected loss function of standard dropout (Eq. (2)) is an upper bound of the", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 106, + 436, + 306, + 449 + ], + "spans": [ + { + "bbox": [ + 106, + 436, + 306, + 449 + ], + "score": 1.0, + "content": "negative log-likelihood of LVM dropout (Eq. (5)):", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 23.5, + "bbox_fs": [ + 105, + 424, + 505, + 449 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 237, + 451, + 372, + 465 + ], + "lines": [ + { + "bbox": [ + 237, + 451, + 372, + 465 + ], + "spans": [ + { + "bbox": [ + 237, + 451, + 372, + 465 + ], + "score": 0.91, + "content": "- l ( D ; \\theta ) \\leq \\mathrm { E } _ { S _ { D } } [ - l ( D , S _ { D } ; \\theta ) ] .", + "type": "interline_equation", + "image_path": "a9a5b4f36e7b1d7532233f14f8d9943c84c8b97f88c469f63ea025f8fed33ceb.jpg" + } + ] + } + ], + "index": 25, + "virtual_lines": [ + { + "bbox": [ + 237, + 451, + 372, + 465 + ], + "spans": [], + "index": 25 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 473, + 506, + 562 + ], + "lines": [ + { + "bbox": [ + 105, + 473, + 505, + 486 + ], + "spans": [ + { + "bbox": [ + 105, + 473, + 505, + 486 + ], + "score": 1.0, + "content": "Theorem 1, in a rigorous sense, justifies dropout training as a convenient and tractable approximation", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 482, + 506, + 498 + ], + "spans": [ + { + "bbox": [ + 105, + 482, + 506, + 498 + ], + "score": 1.0, + "content": "of the LVM formulation in (4). Indeed, since directly minimizing the marginalized negative log-", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 495, + 506, + 508 + ], + "spans": [ + { + "bbox": [ + 105, + 495, + 506, + 508 + ], + "score": 1.0, + "content": "likelihood in (5) may not be easy, a standard practice is to replace the marginalized (conditional)", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 506, + 506, + 519 + ], + "spans": [ + { + "bbox": [ + 105, + 506, + 149, + 519 + ], + "score": 1.0, + "content": "likelihood", + "type": "text" + }, + { + "bbox": [ + 149, + 507, + 186, + 518 + ], + "score": 0.92, + "content": "p ( \\boldsymbol { y } | \\boldsymbol { x } ; \\boldsymbol { \\theta } )", + "type": "inline_equation" + }, + { + "bbox": [ + 186, + 506, + 506, + 519 + ], + "score": 1.0, + "content": "in (4) with its empirical Monte carlo average through drawing samples from the", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 517, + 506, + 531 + ], + "spans": [ + { + "bbox": [ + 105, + 517, + 176, + 531 + ], + "score": 1.0, + "content": "dropout variable", + "type": "text" + }, + { + "bbox": [ + 176, + 519, + 184, + 527 + ], + "score": 0.81, + "content": "S", + "type": "inline_equation" + }, + { + "bbox": [ + 184, + 517, + 506, + 531 + ], + "score": 1.0, + "content": ". The dropout training objective in (2) corresponds exactly to this Monte carlo", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 528, + 506, + 542 + ], + "spans": [ + { + "bbox": [ + 105, + 528, + 259, + 542 + ], + "score": 1.0, + "content": "approximation when a single sample", + "type": "text" + }, + { + "bbox": [ + 260, + 529, + 271, + 539 + ], + "score": 0.88, + "content": "S _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 271, + 528, + 417, + 542 + ], + "score": 1.0, + "content": "is drawn for each training instance", + "type": "text" + }, + { + "bbox": [ + 418, + 528, + 448, + 540 + ], + "score": 0.92, + "content": "( x _ { i } , y _ { i } )", + "type": "inline_equation" + }, + { + "bbox": [ + 448, + 528, + 506, + 542 + ], + "score": 1.0, + "content": ". Importantly,", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 540, + 505, + 552 + ], + "spans": [ + { + "bbox": [ + 105, + 540, + 438, + 552 + ], + "score": 1.0, + "content": "we note that the above LVM formulation involves only a single network parameter", + "type": "text" + }, + { + "bbox": [ + 439, + 541, + 444, + 549 + ], + "score": 0.82, + "content": "\\theta", + "type": "inline_equation" + }, + { + "bbox": [ + 445, + 540, + 505, + 552 + ], + "score": 1.0, + "content": ", which largely", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 106, + 551, + 351, + 563 + ], + "spans": [ + { + "bbox": [ + 106, + 551, + 351, + 563 + ], + "score": 1.0, + "content": "simplifies the picture and facilitates our subsequent analysis.", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 29.5, + "bbox_fs": [ + 105, + 473, + 506, + 563 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 576, + 406, + 590 + ], + "lines": [ + { + "bbox": [ + 105, + 576, + 407, + 592 + ], + "spans": [ + { + "bbox": [ + 105, + 576, + 407, + 592 + ], + "score": 1.0, + "content": "4 EXPECTATION-LINEAR DROPOUT NEURAL NETWORKS", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 34 + }, + { + "type": "text", + "bbox": [ + 107, + 601, + 505, + 646 + ], + "lines": [ + { + "bbox": [ + 105, + 602, + 505, + 614 + ], + "spans": [ + { + "bbox": [ + 105, + 602, + 325, + 614 + ], + "score": 1.0, + "content": "Building on the latent variable model formulation in", + "type": "text" + }, + { + "bbox": [ + 325, + 603, + 340, + 613 + ], + "score": 0.85, + "content": "\\ S \\ O 3", + "type": "inline_equation" + }, + { + "bbox": [ + 340, + 602, + 505, + 614 + ], + "score": 1.0, + "content": ", we introduce in this section the notion", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 613, + 506, + 625 + ], + "spans": [ + { + "bbox": [ + 105, + 613, + 506, + 625 + ], + "score": 1.0, + "content": "of expectation-linearity that essentially measures the inference gap in (3). We then characterize a", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 623, + 505, + 637 + ], + "spans": [ + { + "bbox": [ + 105, + 623, + 505, + 637 + ], + "score": 1.0, + "content": "general class of neural networks that exhibit expectation-linearity, either exactly or approximately", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 635, + 279, + 648 + ], + "spans": [ + { + "bbox": [ + 105, + 635, + 181, + 648 + ], + "score": 1.0, + "content": "over a distribution", + "type": "text" + }, + { + "bbox": [ + 182, + 635, + 201, + 647 + ], + "score": 0.91, + "content": "p ( x )", + "type": "inline_equation" + }, + { + "bbox": [ + 201, + 635, + 279, + 648 + ], + "score": 1.0, + "content": "on the input space.", + "type": "text" + } + ], + "index": 38 + } + ], + "index": 36.5, + "bbox_fs": [ + 105, + 602, + 506, + 648 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 651, + 503, + 674 + ], + "lines": [ + { + "bbox": [ + 105, + 650, + 505, + 665 + ], + "spans": [ + { + "bbox": [ + 105, + 650, + 505, + 665 + ], + "score": 1.0, + "content": "We start with defining expectation-linearity in the simplest single-layer neural network, then we", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 106, + 662, + 356, + 676 + ], + "spans": [ + { + "bbox": [ + 106, + 662, + 356, + 676 + ], + "score": 1.0, + "content": "extend the notion into general deep networks in a natural way.", + "type": "text" + } + ], + "index": 40 + } + ], + "index": 39.5, + "bbox_fs": [ + 105, + 650, + 505, + 676 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 676, + 504, + 699 + ], + "lines": [ + { + "bbox": [ + 105, + 675, + 505, + 690 + ], + "spans": [ + { + "bbox": [ + 105, + 675, + 335, + 690 + ], + "score": 1.0, + "content": "Definition 1 (Expectation-linear Layer). A network layer", + "type": "text" + }, + { + "bbox": [ + 335, + 677, + 401, + 689 + ], + "score": 0.93, + "content": "\\mathbf { h } = f ( x \\odot \\gamma ; \\theta )", + "type": "inline_equation" + }, + { + "bbox": [ + 402, + 675, + 505, + 690 + ], + "score": 1.0, + "content": "is expectation-linear with", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 686, + 309, + 701 + ], + "spans": [ + { + "bbox": [ + 105, + 686, + 168, + 701 + ], + "score": 1.0, + "content": "respect to a set", + "type": "text" + }, + { + "bbox": [ + 168, + 688, + 202, + 699 + ], + "score": 0.91, + "content": "{ { \\mathcal { X } } ^ { \\prime } } \\subseteq { { \\mathcal { X } } }", + "type": "inline_equation" + }, + { + "bbox": [ + 203, + 686, + 241, + 701 + ], + "score": 1.0, + "content": ", if for all", + "type": "text" + }, + { + "bbox": [ + 242, + 689, + 271, + 698 + ], + "score": 0.89, + "content": "x \\in \\mathcal { X } ^ { \\prime }", + "type": "inline_equation" + }, + { + "bbox": [ + 272, + 686, + 309, + 701 + ], + "score": 1.0, + "content": "we have", + "type": "text" + } + ], + "index": 42 + } + ], + "index": 41.5, + "bbox_fs": [ + 105, + 675, + 505, + 701 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 220, + 702, + 391, + 717 + ], + "lines": [ + { + "bbox": [ + 220, + 702, + 391, + 717 + ], + "spans": [ + { + "bbox": [ + 220, + 702, + 391, + 717 + ], + "score": 0.91, + "content": "\\left\\| \\operatorname { E } [ f ( x \\odot \\Gamma ; \\theta ) ] - f ( x \\odot \\operatorname { E } [ \\Gamma ] ; \\theta ) \\right\\| _ { 2 } = 0 .", + "type": "interline_equation", + "image_path": "0c42ed1c9bb683289927cae7f9fbd9aecdd9fa3027ff76e935fb755bf7c8cb7a.jpg" + } + ] + } + ], + "index": 43, + "virtual_lines": [ + { + "bbox": [ + 220, + 702, + 391, + 717 + ], + "spans": [], + "index": 43 + } + ] + }, + { + "type": "text", + "bbox": [ + 104, + 720, + 487, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 719, + 486, + 733 + ], + "spans": [ + { + "bbox": [ + 105, + 719, + 201, + 733 + ], + "score": 1.0, + "content": "In this case we say that", + "type": "text" + }, + { + "bbox": [ + 201, + 721, + 213, + 730 + ], + "score": 0.86, + "content": "\\mathcal { X } ^ { \\prime }", + "type": "inline_equation" + }, + { + "bbox": [ + 214, + 719, + 343, + 733 + ], + "score": 1.0, + "content": "is expectation-linearizable, and", + "type": "text" + }, + { + "bbox": [ + 343, + 721, + 349, + 730 + ], + "score": 0.82, + "content": "\\theta", + "type": "inline_equation" + }, + { + "bbox": [ + 349, + 719, + 474, + 733 + ], + "score": 1.0, + "content": "is expectation-linearizing w.r.t", + "type": "text" + }, + { + "bbox": [ + 474, + 722, + 486, + 730 + ], + "score": 0.85, + "content": "\\mathcal { X } ^ { \\prime }", + "type": "inline_equation" + } + ], + "index": 44 + } + ], + "index": 44, + "bbox_fs": [ + 105, + 719, + 486, + 733 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 107, + 82, + 504, + 127 + ], + "lines": [ + { + "bbox": [ + 105, + 82, + 506, + 96 + ], + "spans": [ + { + "bbox": [ + 105, + 82, + 506, + 96 + ], + "score": 1.0, + "content": "Obviously, the condition in (7) will guarantee no gap in the dropout inference approximation (3)—an", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 106, + 94, + 505, + 106 + ], + "spans": [ + { + "bbox": [ + 106, + 94, + 362, + 106 + ], + "score": 1.0, + "content": "admittedly strong condition that we will relax below. Clearly, if", + "type": "text" + }, + { + "bbox": [ + 362, + 94, + 370, + 105 + ], + "score": 0.86, + "content": "f", + "type": "inline_equation" + }, + { + "bbox": [ + 370, + 94, + 505, + 106 + ], + "score": 1.0, + "content": "is an affine function, then we can", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 104, + 505, + 117 + ], + "spans": [ + { + "bbox": [ + 105, + 104, + 137, + 117 + ], + "score": 1.0, + "content": "choose", + "type": "text" + }, + { + "bbox": [ + 137, + 105, + 172, + 114 + ], + "score": 0.9, + "content": "\\mathcal { X } ^ { \\prime } = \\mathcal { X }", + "type": "inline_equation" + }, + { + "bbox": [ + 172, + 104, + 505, + 117 + ], + "score": 1.0, + "content": "and expectation-linearity is trivial. Note that expectation-linearity depends on the", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 115, + 316, + 127 + ], + "spans": [ + { + "bbox": [ + 105, + 115, + 183, + 127 + ], + "score": 1.0, + "content": "network parameter", + "type": "text" + }, + { + "bbox": [ + 184, + 116, + 190, + 125 + ], + "score": 0.81, + "content": "\\theta", + "type": "inline_equation" + }, + { + "bbox": [ + 191, + 115, + 304, + 127 + ], + "score": 1.0, + "content": "and the dropout distribution", + "type": "text" + }, + { + "bbox": [ + 305, + 116, + 312, + 125 + ], + "score": 0.55, + "content": "\\Gamma", + "type": "inline_equation" + }, + { + "bbox": [ + 312, + 115, + 316, + 127 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 1.5 + }, + { + "type": "text", + "bbox": [ + 106, + 131, + 505, + 232 + ], + "lines": [ + { + "bbox": [ + 106, + 131, + 506, + 145 + ], + "spans": [ + { + "bbox": [ + 106, + 131, + 506, + 145 + ], + "score": 1.0, + "content": "Expectation-linearity, as defined in (7), is overly strong: under standard regularity conditions,", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 106, + 143, + 506, + 156 + ], + "spans": [ + { + "bbox": [ + 106, + 143, + 263, + 156 + ], + "score": 1.0, + "content": "essentially the transformation function", + "type": "text" + }, + { + "bbox": [ + 263, + 144, + 270, + 155 + ], + "score": 0.86, + "content": "f", + "type": "inline_equation" + }, + { + "bbox": [ + 271, + 143, + 383, + 156 + ], + "score": 1.0, + "content": "has to be affine over the set", + "type": "text" + }, + { + "bbox": [ + 383, + 144, + 395, + 153 + ], + "score": 0.87, + "content": "\\mathcal { X } ^ { \\prime }", + "type": "inline_equation" + }, + { + "bbox": [ + 396, + 143, + 506, + 156 + ], + "score": 1.0, + "content": ", ruling out for instance the", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 154, + 506, + 167 + ], + "spans": [ + { + "bbox": [ + 105, + 154, + 506, + 167 + ], + "score": 1.0, + "content": "popular sigmoid or tanh activation functions. Moreover, in practice, downstream use of DNNs are", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 165, + 505, + 178 + ], + "spans": [ + { + "bbox": [ + 105, + 165, + 505, + 178 + ], + "score": 1.0, + "content": "usually robust to small errors resulting from approximate expectation-linearity (hence the empirical", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 176, + 505, + 188 + ], + "spans": [ + { + "bbox": [ + 105, + 176, + 505, + 188 + ], + "score": 1.0, + "content": "success of dropout), so it makes sense to define an inexact extension. We note also that the definition", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 106, + 187, + 505, + 200 + ], + "spans": [ + { + "bbox": [ + 106, + 187, + 223, + 200 + ], + "score": 1.0, + "content": "in (7) is uniform over the set", + "type": "text" + }, + { + "bbox": [ + 223, + 187, + 235, + 198 + ], + "score": 0.86, + "content": "\\mathcal { X } ^ { \\prime }", + "type": "inline_equation" + }, + { + "bbox": [ + 236, + 187, + 505, + 200 + ], + "score": 1.0, + "content": ", while in a statistical setting it is perhaps more meaningful to have", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 106, + 198, + 505, + 211 + ], + "spans": [ + { + "bbox": [ + 106, + 198, + 505, + 211 + ], + "score": 1.0, + "content": "expectation-linearity “on average,” since inputs from lower density regions are not going to play", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 209, + 505, + 221 + ], + "spans": [ + { + "bbox": [ + 105, + 209, + 505, + 221 + ], + "score": 1.0, + "content": "a significant role anyway. Taking into account the aforementioned motivations, we arrive at the", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 220, + 222, + 233 + ], + "spans": [ + { + "bbox": [ + 105, + 220, + 222, + 233 + ], + "score": 1.0, + "content": "following inexact extension:", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 8 + }, + { + "type": "text", + "bbox": [ + 106, + 234, + 504, + 257 + ], + "lines": [ + { + "bbox": [ + 105, + 233, + 506, + 247 + ], + "spans": [ + { + "bbox": [ + 105, + 233, + 417, + 247 + ], + "score": 1.0, + "content": "Definition 2 (Approximately Expectation-linear Layer). A network layer", + "type": "text" + }, + { + "bbox": [ + 417, + 234, + 493, + 246 + ], + "score": 0.91, + "content": "\\mathbf { h } \\ = \\ f ( x \\odot \\gamma ; \\theta )", + "type": "inline_equation" + }, + { + "bbox": [ + 493, + 233, + 506, + 247 + ], + "score": 1.0, + "content": "is", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 107, + 245, + 427, + 257 + ], + "spans": [ + { + "bbox": [ + 107, + 246, + 112, + 255 + ], + "score": 0.76, + "content": "\\delta", + "type": "inline_equation" + }, + { + "bbox": [ + 113, + 245, + 365, + 257 + ], + "score": 1.0, + "content": "-approximately expectation-linear with respect to a distribution", + "type": "text" + }, + { + "bbox": [ + 366, + 245, + 385, + 257 + ], + "score": 0.92, + "content": "p ( x )", + "type": "inline_equation" + }, + { + "bbox": [ + 385, + 245, + 406, + 257 + ], + "score": 1.0, + "content": "over", + "type": "text" + }, + { + "bbox": [ + 407, + 246, + 416, + 255 + ], + "score": 0.84, + "content": "\\mathcal { X }", + "type": "inline_equation" + }, + { + "bbox": [ + 416, + 245, + 427, + 257 + ], + "score": 1.0, + "content": "if", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 13.5 + }, + { + "type": "interline_equation", + "bbox": [ + 195, + 261, + 415, + 282 + ], + "lines": [ + { + "bbox": [ + 195, + 261, + 415, + 282 + ], + "spans": [ + { + "bbox": [ + 195, + 261, + 415, + 282 + ], + "score": 0.92, + "content": "\\mathbb { E } _ { X } \\Big [ \\big \\| \\mathbb { E } _ { \\Gamma } \\big [ f ( X \\odot \\Gamma ; \\theta ) | X \\big ] - f ( X \\odot \\mathbb { E } [ \\Gamma ] ; \\theta ) \\big \\| _ { 2 } \\Big ] < \\delta .", + "type": "interline_equation", + "image_path": "003089e0b28e69a7d975008386ef9d4b25e7031f280c15a542d2525bb85004a9.jpg" + } + ] + } + ], + "index": 15, + "virtual_lines": [ + { + "bbox": [ + 195, + 261, + 415, + 282 + ], + "spans": [], + "index": 15 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 286, + 504, + 309 + ], + "lines": [ + { + "bbox": [ + 105, + 285, + 505, + 300 + ], + "spans": [ + { + "bbox": [ + 105, + 285, + 201, + 300 + ], + "score": 1.0, + "content": "In this case we say that", + "type": "text" + }, + { + "bbox": [ + 202, + 286, + 221, + 299 + ], + "score": 0.92, + "content": "p ( x )", + "type": "inline_equation" + }, + { + "bbox": [ + 222, + 285, + 232, + 300 + ], + "score": 1.0, + "content": "is", + "type": "text" + }, + { + "bbox": [ + 232, + 287, + 238, + 297 + ], + "score": 0.77, + "content": "\\delta", + "type": "inline_equation" + }, + { + "bbox": [ + 239, + 285, + 420, + 300 + ], + "score": 1.0, + "content": "-approximately expectation-linearizable, and", + "type": "text" + }, + { + "bbox": [ + 420, + 287, + 426, + 297 + ], + "score": 0.83, + "content": "\\theta", + "type": "inline_equation" + }, + { + "bbox": [ + 426, + 285, + 437, + 300 + ], + "score": 1.0, + "content": "is", + "type": "text" + }, + { + "bbox": [ + 437, + 287, + 443, + 297 + ], + "score": 0.79, + "content": "\\delta", + "type": "inline_equation" + }, + { + "bbox": [ + 443, + 285, + 505, + 300 + ], + "score": 1.0, + "content": "-approximately", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 297, + 204, + 311 + ], + "spans": [ + { + "bbox": [ + 105, + 297, + 204, + 311 + ], + "score": 1.0, + "content": "expectation-linearizing.", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 16.5 + }, + { + "type": "text", + "bbox": [ + 106, + 317, + 505, + 385 + ], + "lines": [ + { + "bbox": [ + 106, + 317, + 506, + 330 + ], + "spans": [ + { + "bbox": [ + 106, + 317, + 506, + 330 + ], + "score": 1.0, + "content": "To appreciate the power of cutting some slack from exact expectation-linearity, we remark that", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 106, + 329, + 504, + 341 + ], + "spans": [ + { + "bbox": [ + 106, + 329, + 504, + 341 + ], + "score": 1.0, + "content": "even non-affine activation functions often have approximately linear regions. For example, the", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 339, + 506, + 353 + ], + "spans": [ + { + "bbox": [ + 105, + 339, + 506, + 353 + ], + "score": 1.0, + "content": "logistic function, a commonly used non-linear activation function in DNNs, is approximately linear", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 106, + 351, + 504, + 363 + ], + "spans": [ + { + "bbox": [ + 106, + 351, + 461, + 363 + ], + "score": 1.0, + "content": "around the origin. Naturally, we can ask whether it is sufficient for a target distribution", + "type": "text" + }, + { + "bbox": [ + 462, + 351, + 481, + 363 + ], + "score": 0.93, + "content": "p ( x )", + "type": "inline_equation" + }, + { + "bbox": [ + 481, + 351, + 504, + 363 + ], + "score": 1.0, + "content": "to be", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 362, + 505, + 375 + ], + "spans": [ + { + "bbox": [ + 105, + 362, + 505, + 375 + ], + "score": 1.0, + "content": "well-approximated by an approximately expectation-linearizable one. We begin by providing an", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 106, + 373, + 356, + 385 + ], + "spans": [ + { + "bbox": [ + 106, + 373, + 356, + 385 + ], + "score": 1.0, + "content": "appropriate measurement of the quality of this approximation.", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 20.5 + }, + { + "type": "text", + "bbox": [ + 108, + 387, + 501, + 399 + ], + "lines": [ + { + "bbox": [ + 106, + 385, + 503, + 401 + ], + "spans": [ + { + "bbox": [ + 106, + 385, + 362, + 401 + ], + "score": 1.0, + "content": "Definition 3 (Closeness, (Andreas et al., 2015)). A distribution", + "type": "text" + }, + { + "bbox": [ + 362, + 387, + 381, + 399 + ], + "score": 0.92, + "content": "p ( x )", + "type": "inline_equation" + }, + { + "bbox": [ + 382, + 385, + 392, + 401 + ], + "score": 1.0, + "content": "is", + "type": "text" + }, + { + "bbox": [ + 392, + 388, + 401, + 397 + ], + "score": 0.85, + "content": "C", + "type": "inline_equation" + }, + { + "bbox": [ + 401, + 385, + 457, + 401 + ], + "score": 1.0, + "content": "-close to a set", + "type": "text" + }, + { + "bbox": [ + 457, + 387, + 491, + 398 + ], + "score": 0.91, + "content": "{ { \\mathcal { X } } ^ { \\prime } } \\subseteq { { \\mathcal { X } } }", + "type": "inline_equation" + }, + { + "bbox": [ + 491, + 385, + 503, + 401 + ], + "score": 1.0, + "content": "if", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 24 + }, + { + "type": "interline_equation", + "bbox": [ + 221, + 403, + 389, + 428 + ], + "lines": [ + { + "bbox": [ + 221, + 403, + 389, + 428 + ], + "spans": [ + { + "bbox": [ + 221, + 403, + 389, + 428 + ], + "score": 0.94, + "content": "\\operatorname { E } \\Big [ \\operatorname* { i n f } _ { x ^ { * } \\in \\mathcal { X } ^ { \\prime } } \\operatorname* { s u p } _ { \\gamma \\in S } \\| X \\odot \\gamma - x ^ { * } \\odot \\gamma \\| _ { 2 } \\Big ] \\leq C ,", + "type": "interline_equation", + "image_path": "ae073ead6ebe820bbd1f1216f30532a289f081e1615217c6a207a9b6c963c8ff.jpg" + } + ] + } + ], + "index": 25, + "virtual_lines": [ + { + "bbox": [ + 221, + 403, + 389, + 428 + ], + "spans": [], + "index": 25 + } + ] + }, + { + "type": "text", + "bbox": [ + 108, + 432, + 409, + 444 + ], + "lines": [ + { + "bbox": [ + 106, + 431, + 410, + 445 + ], + "spans": [ + { + "bbox": [ + 106, + 431, + 175, + 445 + ], + "score": 1.0, + "content": "where recall that", + "type": "text" + }, + { + "bbox": [ + 175, + 433, + 183, + 442 + ], + "score": 0.82, + "content": "s", + "type": "inline_equation" + }, + { + "bbox": [ + 183, + 431, + 410, + 445 + ], + "score": 1.0, + "content": "is the (bounded) space that the dropout variable lives in.", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 26 + }, + { + "type": "text", + "bbox": [ + 107, + 451, + 505, + 507 + ], + "lines": [ + { + "bbox": [ + 106, + 452, + 504, + 464 + ], + "spans": [ + { + "bbox": [ + 106, + 452, + 154, + 464 + ], + "score": 1.0, + "content": "Intuitively,", + "type": "text" + }, + { + "bbox": [ + 154, + 452, + 173, + 464 + ], + "score": 0.92, + "content": "p ( x )", + "type": "inline_equation" + }, + { + "bbox": [ + 173, + 452, + 185, + 464 + ], + "score": 1.0, + "content": "is", + "type": "text" + }, + { + "bbox": [ + 185, + 453, + 194, + 462 + ], + "score": 0.82, + "content": "C", + "type": "inline_equation" + }, + { + "bbox": [ + 195, + 452, + 253, + 464 + ], + "score": 1.0, + "content": "-close to a set", + "type": "text" + }, + { + "bbox": [ + 254, + 452, + 266, + 462 + ], + "score": 0.86, + "content": "\\mathcal { X } ^ { \\prime }", + "type": "inline_equation" + }, + { + "bbox": [ + 267, + 452, + 374, + 464 + ], + "score": 1.0, + "content": "if a random sample from", + "type": "text" + }, + { + "bbox": [ + 374, + 455, + 381, + 464 + ], + "score": 0.8, + "content": "p", + "type": "inline_equation" + }, + { + "bbox": [ + 381, + 452, + 495, + 464 + ], + "score": 1.0, + "content": "is no more than a distance", + "type": "text" + }, + { + "bbox": [ + 495, + 452, + 504, + 462 + ], + "score": 0.78, + "content": "C", + "type": "inline_equation" + } + ], + "index": 27 + }, + { + "bbox": [ + 106, + 463, + 505, + 475 + ], + "spans": [ + { + "bbox": [ + 106, + 463, + 128, + 475 + ], + "score": 1.0, + "content": "from", + "type": "text" + }, + { + "bbox": [ + 129, + 464, + 141, + 473 + ], + "score": 0.84, + "content": "\\mathcal { X } ^ { \\prime }", + "type": "inline_equation" + }, + { + "bbox": [ + 141, + 463, + 505, + 475 + ], + "score": 1.0, + "content": "in expectation and under the worst “dropout perturbation”. For example, a standard normal", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 473, + 506, + 487 + ], + "spans": [ + { + "bbox": [ + 105, + 473, + 316, + 487 + ], + "score": 1.0, + "content": "distribution is close to an interval centering at origin", + "type": "text" + }, + { + "bbox": [ + 316, + 474, + 353, + 486 + ], + "score": 0.91, + "content": "( [ - \\alpha , \\alpha ] )", + "type": "inline_equation" + }, + { + "bbox": [ + 354, + 473, + 433, + 487 + ], + "score": 1.0, + "content": "with some constant", + "type": "text" + }, + { + "bbox": [ + 434, + 475, + 442, + 484 + ], + "score": 0.82, + "content": "C", + "type": "inline_equation" + }, + { + "bbox": [ + 443, + 473, + 506, + 487 + ], + "score": 1.0, + "content": ". Our definition", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 106, + 485, + 505, + 497 + ], + "spans": [ + { + "bbox": [ + 106, + 485, + 505, + 497 + ], + "score": 1.0, + "content": "of closeness is similar to that in Andreas et al. (2015), who used this notion to analyze self-normalized", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 496, + 181, + 509 + ], + "spans": [ + { + "bbox": [ + 105, + 496, + 181, + 509 + ], + "score": 1.0, + "content": "log-linear models.", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 29 + }, + { + "type": "text", + "bbox": [ + 107, + 513, + 503, + 536 + ], + "lines": [ + { + "bbox": [ + 105, + 512, + 505, + 525 + ], + "spans": [ + { + "bbox": [ + 105, + 512, + 505, + 525 + ], + "score": 1.0, + "content": "We are now ready to state our first major result that quantifies approximate expectation-linearity of a", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 106, + 524, + 303, + 537 + ], + "spans": [ + { + "bbox": [ + 106, + 524, + 303, + 537 + ], + "score": 1.0, + "content": "single-layered network (proof in Appendix B.1):", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 32.5 + }, + { + "type": "text", + "bbox": [ + 107, + 538, + 505, + 573 + ], + "lines": [ + { + "bbox": [ + 106, + 538, + 506, + 551 + ], + "spans": [ + { + "bbox": [ + 106, + 538, + 247, + 551 + ], + "score": 1.0, + "content": "Theorem 2. Given a network layer", + "type": "text" + }, + { + "bbox": [ + 247, + 538, + 311, + 550 + ], + "score": 0.91, + "content": "\\mathbf { h } = f ( x \\odot \\gamma ; \\theta )", + "type": "inline_equation" + }, + { + "bbox": [ + 311, + 538, + 339, + 551 + ], + "score": 1.0, + "content": ", where", + "type": "text" + }, + { + "bbox": [ + 340, + 539, + 346, + 549 + ], + "score": 0.74, + "content": "\\theta", + "type": "inline_equation" + }, + { + "bbox": [ + 346, + 538, + 468, + 551 + ], + "score": 1.0, + "content": "is expectation-linearizing w.r.t.", + "type": "text" + }, + { + "bbox": [ + 469, + 538, + 503, + 550 + ], + "score": 0.9, + "content": "{ { \\mathcal { X } } ^ { \\prime } } \\subseteq { { \\mathcal { X } } }", + "type": "inline_equation" + }, + { + "bbox": [ + 503, + 538, + 506, + 551 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 106, + 548, + 506, + 562 + ], + "spans": [ + { + "bbox": [ + 106, + 548, + 143, + 562 + ], + "score": 1.0, + "content": "Suppose", + "type": "text" + }, + { + "bbox": [ + 143, + 550, + 163, + 561 + ], + "score": 0.91, + "content": "p ( x )", + "type": "inline_equation" + }, + { + "bbox": [ + 163, + 548, + 175, + 562 + ], + "score": 1.0, + "content": "is", + "type": "text" + }, + { + "bbox": [ + 175, + 550, + 184, + 560 + ], + "score": 0.8, + "content": "C", + "type": "inline_equation" + }, + { + "bbox": [ + 185, + 548, + 221, + 562 + ], + "score": 1.0, + "content": "-close to", + "type": "text" + }, + { + "bbox": [ + 222, + 550, + 234, + 559 + ], + "score": 0.87, + "content": "\\mathcal { X } ^ { \\prime }", + "type": "inline_equation" + }, + { + "bbox": [ + 235, + 548, + 283, + 562 + ], + "score": 1.0, + "content": "and for all", + "type": "text" + }, + { + "bbox": [ + 284, + 550, + 393, + 561 + ], + "score": 0.78, + "content": "x \\in \\mathcal { X } , \\| \\nabla _ { x } f ( x ) \\| _ { \\mathsf { o p } } \\leq B ,", + "type": "inline_equation" + }, + { + "bbox": [ + 394, + 548, + 425, + 562 + ], + "score": 1.0, + "content": ", where", + "type": "text" + }, + { + "bbox": [ + 426, + 550, + 453, + 562 + ], + "score": 0.91, + "content": "\\| \\cdot \\| _ { \\mathsf { o p } }", + "type": "inline_equation" + }, + { + "bbox": [ + 453, + 548, + 506, + 562 + ], + "score": 1.0, + "content": "is the usual", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 560, + 411, + 573 + ], + "spans": [ + { + "bbox": [ + 105, + 560, + 195, + 573 + ], + "score": 1.0, + "content": "operator norm. Then,", + "type": "text" + }, + { + "bbox": [ + 195, + 560, + 214, + 573 + ], + "score": 0.9, + "content": "p ( x )", + "type": "inline_equation" + }, + { + "bbox": [ + 215, + 560, + 225, + 573 + ], + "score": 1.0, + "content": "is", + "type": "text" + }, + { + "bbox": [ + 226, + 561, + 247, + 571 + ], + "score": 0.78, + "content": "2 B C", + "type": "inline_equation" + }, + { + "bbox": [ + 248, + 560, + 411, + 573 + ], + "score": 1.0, + "content": "-approximately expectation-linearizable.", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 35 + }, + { + "type": "text", + "bbox": [ + 106, + 580, + 505, + 648 + ], + "lines": [ + { + "bbox": [ + 106, + 580, + 505, + 593 + ], + "spans": [ + { + "bbox": [ + 106, + 580, + 326, + 593 + ], + "score": 1.0, + "content": "Roughly, Theorem 2 states that the input distribution", + "type": "text" + }, + { + "bbox": [ + 326, + 581, + 346, + 593 + ], + "score": 0.91, + "content": "p ( x )", + "type": "inline_equation" + }, + { + "bbox": [ + 346, + 580, + 505, + 593 + ], + "score": 1.0, + "content": "that place most of its mass on regions", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 591, + 506, + 604 + ], + "spans": [ + { + "bbox": [ + 105, + 591, + 506, + 604 + ], + "score": 1.0, + "content": "close to expectation-linearizable sets are approximately expectation-linearizable on a similar scale.", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 602, + 506, + 615 + ], + "spans": [ + { + "bbox": [ + 105, + 602, + 342, + 615 + ], + "score": 1.0, + "content": "The bounded operator norm assumption on the derivative", + "type": "text" + }, + { + "bbox": [ + 342, + 603, + 358, + 614 + ], + "score": 0.9, + "content": "\\nabla f", + "type": "inline_equation" + }, + { + "bbox": [ + 358, + 602, + 506, + 615 + ], + "score": 1.0, + "content": "is satisfied in most commonly used", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 106, + 614, + 505, + 626 + ], + "spans": [ + { + "bbox": [ + 106, + 614, + 376, + 626 + ], + "score": 1.0, + "content": "layers. For example, for a fully connected layer with weight matrix", + "type": "text" + }, + { + "bbox": [ + 376, + 614, + 388, + 624 + ], + "score": 0.67, + "content": "W", + "type": "inline_equation" + }, + { + "bbox": [ + 388, + 614, + 438, + 626 + ], + "score": 1.0, + "content": ", bias vector", + "type": "text" + }, + { + "bbox": [ + 438, + 614, + 443, + 624 + ], + "score": 0.76, + "content": "b", + "type": "inline_equation" + }, + { + "bbox": [ + 443, + 614, + 505, + 626 + ], + "score": 1.0, + "content": ", and activation", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 623, + 506, + 638 + ], + "spans": [ + { + "bbox": [ + 105, + 623, + 143, + 638 + ], + "score": 1.0, + "content": "function", + "type": "text" + }, + { + "bbox": [ + 144, + 627, + 150, + 635 + ], + "score": 0.66, + "content": "\\sigma", + "type": "inline_equation" + }, + { + "bbox": [ + 151, + 623, + 155, + 638 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 155, + 624, + 275, + 637 + ], + "score": 0.91, + "content": "\\| \\nabla \\bar { f ( \\cdot ) } \\| _ { \\mathsf { o p } } = | \\sigma ^ { \\prime } \\bar { ( \\cdot ) } | \\cdot \\| W \\| _ { \\mathsf { o p } }", + "type": "inline_equation" + }, + { + "bbox": [ + 275, + 623, + 337, + 638 + ], + "score": 1.0, + "content": "is bounded by", + "type": "text" + }, + { + "bbox": [ + 337, + 625, + 367, + 637 + ], + "score": 0.92, + "content": "\\| W \\| _ { \\mathsf { o p } }", + "type": "inline_equation" + }, + { + "bbox": [ + 367, + 623, + 459, + 638 + ], + "score": 1.0, + "content": "and the supremum of", + "type": "text" + }, + { + "bbox": [ + 459, + 625, + 484, + 637 + ], + "score": 0.91, + "content": "| \\sigma ^ { \\prime } ( \\cdot ) |", + "type": "inline_equation" + }, + { + "bbox": [ + 485, + 623, + 506, + 638 + ], + "score": 1.0, + "content": "(1/4", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 106, + 636, + 274, + 648 + ], + "spans": [ + { + "bbox": [ + 106, + 636, + 130, + 648 + ], + "score": 1.0, + "content": "when", + "type": "text" + }, + { + "bbox": [ + 130, + 638, + 137, + 646 + ], + "score": 0.76, + "content": "\\sigma", + "type": "inline_equation" + }, + { + "bbox": [ + 138, + 636, + 231, + 648 + ], + "score": 1.0, + "content": "is sigmoid and 1 when", + "type": "text" + }, + { + "bbox": [ + 231, + 638, + 238, + 646 + ], + "score": 0.76, + "content": "\\sigma", + "type": "inline_equation" + }, + { + "bbox": [ + 239, + 636, + 274, + 648 + ], + "score": 1.0, + "content": "is tanh).", + "type": "text" + } + ], + "index": 42 + } + ], + "index": 39.5 + }, + { + "type": "text", + "bbox": [ + 105, + 652, + 496, + 664 + ], + "lines": [ + { + "bbox": [ + 106, + 652, + 497, + 666 + ], + "spans": [ + { + "bbox": [ + 106, + 652, + 497, + 666 + ], + "score": 1.0, + "content": "Next, we extend the notion of approximate expectation-linearity to deep dropout neural networks.", + "type": "text" + } + ], + "index": 43 + } + ], + "index": 43 + }, + { + "type": "text", + "bbox": [ + 105, + 667, + 504, + 690 + ], + "lines": [ + { + "bbox": [ + 106, + 667, + 506, + 680 + ], + "spans": [ + { + "bbox": [ + 106, + 667, + 456, + 680 + ], + "score": 1.0, + "content": "Definition 4 (Approximately Expectation-linear Network). A deep neural network with", + "type": "text" + }, + { + "bbox": [ + 456, + 668, + 464, + 677 + ], + "score": 0.79, + "content": "L", + "type": "inline_equation" + }, + { + "bbox": [ + 464, + 667, + 506, + 680 + ], + "score": 1.0, + "content": "layers (cf.", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 677, + 415, + 691 + ], + "spans": [ + { + "bbox": [ + 105, + 677, + 149, + 691 + ], + "score": 1.0, + "content": "Eq. (1)) is", + "type": "text" + }, + { + "bbox": [ + 149, + 678, + 155, + 688 + ], + "score": 0.79, + "content": "\\delta", + "type": "inline_equation" + }, + { + "bbox": [ + 155, + 677, + 353, + 691 + ], + "score": 1.0, + "content": "-approximately expectation-linear with respect to", + "type": "text" + }, + { + "bbox": [ + 353, + 679, + 372, + 690 + ], + "score": 0.91, + "content": "p ( x )", + "type": "inline_equation" + }, + { + "bbox": [ + 373, + 677, + 394, + 691 + ], + "score": 1.0, + "content": "over", + "type": "text" + }, + { + "bbox": [ + 394, + 680, + 403, + 687 + ], + "score": 0.85, + "content": "\\mathcal { X }", + "type": "inline_equation" + }, + { + "bbox": [ + 403, + 677, + 415, + 691 + ], + "score": 1.0, + "content": "if", + "type": "text" + } + ], + "index": 45 + } + ], + "index": 44.5 + }, + { + "type": "interline_equation", + "bbox": [ + 189, + 694, + 422, + 715 + ], + "lines": [ + { + "bbox": [ + 189, + 694, + 422, + 715 + ], + "spans": [ + { + "bbox": [ + 189, + 694, + 422, + 715 + ], + "score": 0.92, + "content": "\\mathrm { E } _ { X } \\Big [ \\big \\| \\mathrm { E } _ { S } \\big [ \\mathbf { H } ^ { ( L ) } ( X , S ; \\theta ) | X \\big ] - \\mathbf { h } ^ { ( L ) } ( X , \\mathrm { E } [ S ] ; \\theta ) \\big \\| _ { 2 } \\Big ] < \\delta .", + "type": "interline_equation", + "image_path": "5af0cabdc2935582c521db4f18e2e969ecaff536fc35e64fdef4944db071731a.jpg" + } + ] + } + ], + "index": 46, + "virtual_lines": [ + { + "bbox": [ + 189, + 694, + 422, + 715 + ], + "spans": [], + "index": 46 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 720, + 478, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 718, + 480, + 734 + ], + "spans": [ + { + "bbox": [ + 106, + 718, + 133, + 734 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 133, + 719, + 201, + 732 + ], + "score": 0.93, + "content": "\\mathbf { h } ^ { ( L ) } ( X , \\operatorname { E } [ S ] ; \\theta )", + "type": "inline_equation" + }, + { + "bbox": [ + 202, + 718, + 480, + 734 + ], + "score": 1.0, + "content": "is the output of the deterministic neural network in standard dropout.", + "type": "text" + } + ], + "index": 47 + } + ], + "index": 47 + } + ], + "page_idx": 4, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 108, + 27, + 293, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 26, + 293, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 26, + 293, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2017", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 302, + 751, + 309, + 760 + ], + "lines": [ + { + "bbox": [ + 301, + 750, + 310, + 762 + ], + "spans": [ + { + "bbox": [ + 301, + 750, + 310, + 762 + ], + "score": 1.0, + "content": "5", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 107, + 82, + 504, + 127 + ], + "lines": [ + { + "bbox": [ + 105, + 82, + 506, + 96 + ], + "spans": [ + { + "bbox": [ + 105, + 82, + 506, + 96 + ], + "score": 1.0, + "content": "Obviously, the condition in (7) will guarantee no gap in the dropout inference approximation (3)—an", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 106, + 94, + 505, + 106 + ], + "spans": [ + { + "bbox": [ + 106, + 94, + 362, + 106 + ], + "score": 1.0, + "content": "admittedly strong condition that we will relax below. Clearly, if", + "type": "text" + }, + { + "bbox": [ + 362, + 94, + 370, + 105 + ], + "score": 0.86, + "content": "f", + "type": "inline_equation" + }, + { + "bbox": [ + 370, + 94, + 505, + 106 + ], + "score": 1.0, + "content": "is an affine function, then we can", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 104, + 505, + 117 + ], + "spans": [ + { + "bbox": [ + 105, + 104, + 137, + 117 + ], + "score": 1.0, + "content": "choose", + "type": "text" + }, + { + "bbox": [ + 137, + 105, + 172, + 114 + ], + "score": 0.9, + "content": "\\mathcal { X } ^ { \\prime } = \\mathcal { X }", + "type": "inline_equation" + }, + { + "bbox": [ + 172, + 104, + 505, + 117 + ], + "score": 1.0, + "content": "and expectation-linearity is trivial. Note that expectation-linearity depends on the", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 115, + 316, + 127 + ], + "spans": [ + { + "bbox": [ + 105, + 115, + 183, + 127 + ], + "score": 1.0, + "content": "network parameter", + "type": "text" + }, + { + "bbox": [ + 184, + 116, + 190, + 125 + ], + "score": 0.81, + "content": "\\theta", + "type": "inline_equation" + }, + { + "bbox": [ + 191, + 115, + 304, + 127 + ], + "score": 1.0, + "content": "and the dropout distribution", + "type": "text" + }, + { + "bbox": [ + 305, + 116, + 312, + 125 + ], + "score": 0.55, + "content": "\\Gamma", + "type": "inline_equation" + }, + { + "bbox": [ + 312, + 115, + 316, + 127 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 1.5, + "bbox_fs": [ + 105, + 82, + 506, + 127 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 131, + 505, + 232 + ], + "lines": [ + { + "bbox": [ + 106, + 131, + 506, + 145 + ], + "spans": [ + { + "bbox": [ + 106, + 131, + 506, + 145 + ], + "score": 1.0, + "content": "Expectation-linearity, as defined in (7), is overly strong: under standard regularity conditions,", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 106, + 143, + 506, + 156 + ], + "spans": [ + { + "bbox": [ + 106, + 143, + 263, + 156 + ], + "score": 1.0, + "content": "essentially the transformation function", + "type": "text" + }, + { + "bbox": [ + 263, + 144, + 270, + 155 + ], + "score": 0.86, + "content": "f", + "type": "inline_equation" + }, + { + "bbox": [ + 271, + 143, + 383, + 156 + ], + "score": 1.0, + "content": "has to be affine over the set", + "type": "text" + }, + { + "bbox": [ + 383, + 144, + 395, + 153 + ], + "score": 0.87, + "content": "\\mathcal { X } ^ { \\prime }", + "type": "inline_equation" + }, + { + "bbox": [ + 396, + 143, + 506, + 156 + ], + "score": 1.0, + "content": ", ruling out for instance the", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 154, + 506, + 167 + ], + "spans": [ + { + "bbox": [ + 105, + 154, + 506, + 167 + ], + "score": 1.0, + "content": "popular sigmoid or tanh activation functions. Moreover, in practice, downstream use of DNNs are", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 165, + 505, + 178 + ], + "spans": [ + { + "bbox": [ + 105, + 165, + 505, + 178 + ], + "score": 1.0, + "content": "usually robust to small errors resulting from approximate expectation-linearity (hence the empirical", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 176, + 505, + 188 + ], + "spans": [ + { + "bbox": [ + 105, + 176, + 505, + 188 + ], + "score": 1.0, + "content": "success of dropout), so it makes sense to define an inexact extension. We note also that the definition", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 106, + 187, + 505, + 200 + ], + "spans": [ + { + "bbox": [ + 106, + 187, + 223, + 200 + ], + "score": 1.0, + "content": "in (7) is uniform over the set", + "type": "text" + }, + { + "bbox": [ + 223, + 187, + 235, + 198 + ], + "score": 0.86, + "content": "\\mathcal { X } ^ { \\prime }", + "type": "inline_equation" + }, + { + "bbox": [ + 236, + 187, + 505, + 200 + ], + "score": 1.0, + "content": ", while in a statistical setting it is perhaps more meaningful to have", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 106, + 198, + 505, + 211 + ], + "spans": [ + { + "bbox": [ + 106, + 198, + 505, + 211 + ], + "score": 1.0, + "content": "expectation-linearity “on average,” since inputs from lower density regions are not going to play", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 209, + 505, + 221 + ], + "spans": [ + { + "bbox": [ + 105, + 209, + 505, + 221 + ], + "score": 1.0, + "content": "a significant role anyway. Taking into account the aforementioned motivations, we arrive at the", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 220, + 222, + 233 + ], + "spans": [ + { + "bbox": [ + 105, + 220, + 222, + 233 + ], + "score": 1.0, + "content": "following inexact extension:", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 8, + "bbox_fs": [ + 105, + 131, + 506, + 233 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 234, + 504, + 257 + ], + "lines": [ + { + "bbox": [ + 105, + 233, + 506, + 247 + ], + "spans": [ + { + "bbox": [ + 105, + 233, + 417, + 247 + ], + "score": 1.0, + "content": "Definition 2 (Approximately Expectation-linear Layer). A network layer", + "type": "text" + }, + { + "bbox": [ + 417, + 234, + 493, + 246 + ], + "score": 0.91, + "content": "\\mathbf { h } \\ = \\ f ( x \\odot \\gamma ; \\theta )", + "type": "inline_equation" + }, + { + "bbox": [ + 493, + 233, + 506, + 247 + ], + "score": 1.0, + "content": "is", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 107, + 245, + 427, + 257 + ], + "spans": [ + { + "bbox": [ + 107, + 246, + 112, + 255 + ], + "score": 0.76, + "content": "\\delta", + "type": "inline_equation" + }, + { + "bbox": [ + 113, + 245, + 365, + 257 + ], + "score": 1.0, + "content": "-approximately expectation-linear with respect to a distribution", + "type": "text" + }, + { + "bbox": [ + 366, + 245, + 385, + 257 + ], + "score": 0.92, + "content": "p ( x )", + "type": "inline_equation" + }, + { + "bbox": [ + 385, + 245, + 406, + 257 + ], + "score": 1.0, + "content": "over", + "type": "text" + }, + { + "bbox": [ + 407, + 246, + 416, + 255 + ], + "score": 0.84, + "content": "\\mathcal { X }", + "type": "inline_equation" + }, + { + "bbox": [ + 416, + 245, + 427, + 257 + ], + "score": 1.0, + "content": "if", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 13.5, + "bbox_fs": [ + 105, + 233, + 506, + 257 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 195, + 261, + 415, + 282 + ], + "lines": [ + { + "bbox": [ + 195, + 261, + 415, + 282 + ], + "spans": [ + { + "bbox": [ + 195, + 261, + 415, + 282 + ], + "score": 0.92, + "content": "\\mathbb { E } _ { X } \\Big [ \\big \\| \\mathbb { E } _ { \\Gamma } \\big [ f ( X \\odot \\Gamma ; \\theta ) | X \\big ] - f ( X \\odot \\mathbb { E } [ \\Gamma ] ; \\theta ) \\big \\| _ { 2 } \\Big ] < \\delta .", + "type": "interline_equation", + "image_path": "003089e0b28e69a7d975008386ef9d4b25e7031f280c15a542d2525bb85004a9.jpg" + } + ] + } + ], + "index": 15, + "virtual_lines": [ + { + "bbox": [ + 195, + 261, + 415, + 282 + ], + "spans": [], + "index": 15 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 286, + 504, + 309 + ], + "lines": [ + { + "bbox": [ + 105, + 285, + 505, + 300 + ], + "spans": [ + { + "bbox": [ + 105, + 285, + 201, + 300 + ], + "score": 1.0, + "content": "In this case we say that", + "type": "text" + }, + { + "bbox": [ + 202, + 286, + 221, + 299 + ], + "score": 0.92, + "content": "p ( x )", + "type": "inline_equation" + }, + { + "bbox": [ + 222, + 285, + 232, + 300 + ], + "score": 1.0, + "content": "is", + "type": "text" + }, + { + "bbox": [ + 232, + 287, + 238, + 297 + ], + "score": 0.77, + "content": "\\delta", + "type": "inline_equation" + }, + { + "bbox": [ + 239, + 285, + 420, + 300 + ], + "score": 1.0, + "content": "-approximately expectation-linearizable, and", + "type": "text" + }, + { + "bbox": [ + 420, + 287, + 426, + 297 + ], + "score": 0.83, + "content": "\\theta", + "type": "inline_equation" + }, + { + "bbox": [ + 426, + 285, + 437, + 300 + ], + "score": 1.0, + "content": "is", + "type": "text" + }, + { + "bbox": [ + 437, + 287, + 443, + 297 + ], + "score": 0.79, + "content": "\\delta", + "type": "inline_equation" + }, + { + "bbox": [ + 443, + 285, + 505, + 300 + ], + "score": 1.0, + "content": "-approximately", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 297, + 204, + 311 + ], + "spans": [ + { + "bbox": [ + 105, + 297, + 204, + 311 + ], + "score": 1.0, + "content": "expectation-linearizing.", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 16.5, + "bbox_fs": [ + 105, + 285, + 505, + 311 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 317, + 505, + 385 + ], + "lines": [ + { + "bbox": [ + 106, + 317, + 506, + 330 + ], + "spans": [ + { + "bbox": [ + 106, + 317, + 506, + 330 + ], + "score": 1.0, + "content": "To appreciate the power of cutting some slack from exact expectation-linearity, we remark that", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 106, + 329, + 504, + 341 + ], + "spans": [ + { + "bbox": [ + 106, + 329, + 504, + 341 + ], + "score": 1.0, + "content": "even non-affine activation functions often have approximately linear regions. For example, the", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 339, + 506, + 353 + ], + "spans": [ + { + "bbox": [ + 105, + 339, + 506, + 353 + ], + "score": 1.0, + "content": "logistic function, a commonly used non-linear activation function in DNNs, is approximately linear", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 106, + 351, + 504, + 363 + ], + "spans": [ + { + "bbox": [ + 106, + 351, + 461, + 363 + ], + "score": 1.0, + "content": "around the origin. Naturally, we can ask whether it is sufficient for a target distribution", + "type": "text" + }, + { + "bbox": [ + 462, + 351, + 481, + 363 + ], + "score": 0.93, + "content": "p ( x )", + "type": "inline_equation" + }, + { + "bbox": [ + 481, + 351, + 504, + 363 + ], + "score": 1.0, + "content": "to be", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 362, + 505, + 375 + ], + "spans": [ + { + "bbox": [ + 105, + 362, + 505, + 375 + ], + "score": 1.0, + "content": "well-approximated by an approximately expectation-linearizable one. We begin by providing an", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 106, + 373, + 356, + 385 + ], + "spans": [ + { + "bbox": [ + 106, + 373, + 356, + 385 + ], + "score": 1.0, + "content": "appropriate measurement of the quality of this approximation.", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 20.5, + "bbox_fs": [ + 105, + 317, + 506, + 385 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 387, + 501, + 399 + ], + "lines": [ + { + "bbox": [ + 106, + 385, + 503, + 401 + ], + "spans": [ + { + "bbox": [ + 106, + 385, + 362, + 401 + ], + "score": 1.0, + "content": "Definition 3 (Closeness, (Andreas et al., 2015)). A distribution", + "type": "text" + }, + { + "bbox": [ + 362, + 387, + 381, + 399 + ], + "score": 0.92, + "content": "p ( x )", + "type": "inline_equation" + }, + { + "bbox": [ + 382, + 385, + 392, + 401 + ], + "score": 1.0, + "content": "is", + "type": "text" + }, + { + "bbox": [ + 392, + 388, + 401, + 397 + ], + "score": 0.85, + "content": "C", + "type": "inline_equation" + }, + { + "bbox": [ + 401, + 385, + 457, + 401 + ], + "score": 1.0, + "content": "-close to a set", + "type": "text" + }, + { + "bbox": [ + 457, + 387, + 491, + 398 + ], + "score": 0.91, + "content": "{ { \\mathcal { X } } ^ { \\prime } } \\subseteq { { \\mathcal { X } } }", + "type": "inline_equation" + }, + { + "bbox": [ + 491, + 385, + 503, + 401 + ], + "score": 1.0, + "content": "if", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 24, + "bbox_fs": [ + 106, + 385, + 503, + 401 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 221, + 403, + 389, + 428 + ], + "lines": [ + { + "bbox": [ + 221, + 403, + 389, + 428 + ], + "spans": [ + { + "bbox": [ + 221, + 403, + 389, + 428 + ], + "score": 0.94, + "content": "\\operatorname { E } \\Big [ \\operatorname* { i n f } _ { x ^ { * } \\in \\mathcal { X } ^ { \\prime } } \\operatorname* { s u p } _ { \\gamma \\in S } \\| X \\odot \\gamma - x ^ { * } \\odot \\gamma \\| _ { 2 } \\Big ] \\leq C ,", + "type": "interline_equation", + "image_path": "ae073ead6ebe820bbd1f1216f30532a289f081e1615217c6a207a9b6c963c8ff.jpg" + } + ] + } + ], + "index": 25, + "virtual_lines": [ + { + "bbox": [ + 221, + 403, + 389, + 428 + ], + "spans": [], + "index": 25 + } + ] + }, + { + "type": "text", + "bbox": [ + 108, + 432, + 409, + 444 + ], + "lines": [ + { + "bbox": [ + 106, + 431, + 410, + 445 + ], + "spans": [ + { + "bbox": [ + 106, + 431, + 175, + 445 + ], + "score": 1.0, + "content": "where recall that", + "type": "text" + }, + { + "bbox": [ + 175, + 433, + 183, + 442 + ], + "score": 0.82, + "content": "s", + "type": "inline_equation" + }, + { + "bbox": [ + 183, + 431, + 410, + 445 + ], + "score": 1.0, + "content": "is the (bounded) space that the dropout variable lives in.", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 26, + "bbox_fs": [ + 106, + 431, + 410, + 445 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 451, + 505, + 507 + ], + "lines": [ + { + "bbox": [ + 106, + 452, + 504, + 464 + ], + "spans": [ + { + "bbox": [ + 106, + 452, + 154, + 464 + ], + "score": 1.0, + "content": "Intuitively,", + "type": "text" + }, + { + "bbox": [ + 154, + 452, + 173, + 464 + ], + "score": 0.92, + "content": "p ( x )", + "type": "inline_equation" + }, + { + "bbox": [ + 173, + 452, + 185, + 464 + ], + "score": 1.0, + "content": "is", + "type": "text" + }, + { + "bbox": [ + 185, + 453, + 194, + 462 + ], + "score": 0.82, + "content": "C", + "type": "inline_equation" + }, + { + "bbox": [ + 195, + 452, + 253, + 464 + ], + "score": 1.0, + "content": "-close to a set", + "type": "text" + }, + { + "bbox": [ + 254, + 452, + 266, + 462 + ], + "score": 0.86, + "content": "\\mathcal { X } ^ { \\prime }", + "type": "inline_equation" + }, + { + "bbox": [ + 267, + 452, + 374, + 464 + ], + "score": 1.0, + "content": "if a random sample from", + "type": "text" + }, + { + "bbox": [ + 374, + 455, + 381, + 464 + ], + "score": 0.8, + "content": "p", + "type": "inline_equation" + }, + { + "bbox": [ + 381, + 452, + 495, + 464 + ], + "score": 1.0, + "content": "is no more than a distance", + "type": "text" + }, + { + "bbox": [ + 495, + 452, + 504, + 462 + ], + "score": 0.78, + "content": "C", + "type": "inline_equation" + } + ], + "index": 27 + }, + { + "bbox": [ + 106, + 463, + 505, + 475 + ], + "spans": [ + { + "bbox": [ + 106, + 463, + 128, + 475 + ], + "score": 1.0, + "content": "from", + "type": "text" + }, + { + "bbox": [ + 129, + 464, + 141, + 473 + ], + "score": 0.84, + "content": "\\mathcal { X } ^ { \\prime }", + "type": "inline_equation" + }, + { + "bbox": [ + 141, + 463, + 505, + 475 + ], + "score": 1.0, + "content": "in expectation and under the worst “dropout perturbation”. For example, a standard normal", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 473, + 506, + 487 + ], + "spans": [ + { + "bbox": [ + 105, + 473, + 316, + 487 + ], + "score": 1.0, + "content": "distribution is close to an interval centering at origin", + "type": "text" + }, + { + "bbox": [ + 316, + 474, + 353, + 486 + ], + "score": 0.91, + "content": "( [ - \\alpha , \\alpha ] )", + "type": "inline_equation" + }, + { + "bbox": [ + 354, + 473, + 433, + 487 + ], + "score": 1.0, + "content": "with some constant", + "type": "text" + }, + { + "bbox": [ + 434, + 475, + 442, + 484 + ], + "score": 0.82, + "content": "C", + "type": "inline_equation" + }, + { + "bbox": [ + 443, + 473, + 506, + 487 + ], + "score": 1.0, + "content": ". Our definition", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 106, + 485, + 505, + 497 + ], + "spans": [ + { + "bbox": [ + 106, + 485, + 505, + 497 + ], + "score": 1.0, + "content": "of closeness is similar to that in Andreas et al. (2015), who used this notion to analyze self-normalized", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 496, + 181, + 509 + ], + "spans": [ + { + "bbox": [ + 105, + 496, + 181, + 509 + ], + "score": 1.0, + "content": "log-linear models.", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 29, + "bbox_fs": [ + 105, + 452, + 506, + 509 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 513, + 503, + 536 + ], + "lines": [ + { + "bbox": [ + 105, + 512, + 505, + 525 + ], + "spans": [ + { + "bbox": [ + 105, + 512, + 505, + 525 + ], + "score": 1.0, + "content": "We are now ready to state our first major result that quantifies approximate expectation-linearity of a", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 106, + 524, + 303, + 537 + ], + "spans": [ + { + "bbox": [ + 106, + 524, + 303, + 537 + ], + "score": 1.0, + "content": "single-layered network (proof in Appendix B.1):", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 32.5, + "bbox_fs": [ + 105, + 512, + 505, + 537 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 538, + 505, + 573 + ], + "lines": [ + { + "bbox": [ + 106, + 538, + 506, + 551 + ], + "spans": [ + { + "bbox": [ + 106, + 538, + 247, + 551 + ], + "score": 1.0, + "content": "Theorem 2. Given a network layer", + "type": "text" + }, + { + "bbox": [ + 247, + 538, + 311, + 550 + ], + "score": 0.91, + "content": "\\mathbf { h } = f ( x \\odot \\gamma ; \\theta )", + "type": "inline_equation" + }, + { + "bbox": [ + 311, + 538, + 339, + 551 + ], + "score": 1.0, + "content": ", where", + "type": "text" + }, + { + "bbox": [ + 340, + 539, + 346, + 549 + ], + "score": 0.74, + "content": "\\theta", + "type": "inline_equation" + }, + { + "bbox": [ + 346, + 538, + 468, + 551 + ], + "score": 1.0, + "content": "is expectation-linearizing w.r.t.", + "type": "text" + }, + { + "bbox": [ + 469, + 538, + 503, + 550 + ], + "score": 0.9, + "content": "{ { \\mathcal { X } } ^ { \\prime } } \\subseteq { { \\mathcal { X } } }", + "type": "inline_equation" + }, + { + "bbox": [ + 503, + 538, + 506, + 551 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 106, + 548, + 506, + 562 + ], + "spans": [ + { + "bbox": [ + 106, + 548, + 143, + 562 + ], + "score": 1.0, + "content": "Suppose", + "type": "text" + }, + { + "bbox": [ + 143, + 550, + 163, + 561 + ], + "score": 0.91, + "content": "p ( x )", + "type": "inline_equation" + }, + { + "bbox": [ + 163, + 548, + 175, + 562 + ], + "score": 1.0, + "content": "is", + "type": "text" + }, + { + "bbox": [ + 175, + 550, + 184, + 560 + ], + "score": 0.8, + "content": "C", + "type": "inline_equation" + }, + { + "bbox": [ + 185, + 548, + 221, + 562 + ], + "score": 1.0, + "content": "-close to", + "type": "text" + }, + { + "bbox": [ + 222, + 550, + 234, + 559 + ], + "score": 0.87, + "content": "\\mathcal { X } ^ { \\prime }", + "type": "inline_equation" + }, + { + "bbox": [ + 235, + 548, + 283, + 562 + ], + "score": 1.0, + "content": "and for all", + "type": "text" + }, + { + "bbox": [ + 284, + 550, + 393, + 561 + ], + "score": 0.78, + "content": "x \\in \\mathcal { X } , \\| \\nabla _ { x } f ( x ) \\| _ { \\mathsf { o p } } \\leq B ,", + "type": "inline_equation" + }, + { + "bbox": [ + 394, + 548, + 425, + 562 + ], + "score": 1.0, + "content": ", where", + "type": "text" + }, + { + "bbox": [ + 426, + 550, + 453, + 562 + ], + "score": 0.91, + "content": "\\| \\cdot \\| _ { \\mathsf { o p } }", + "type": "inline_equation" + }, + { + "bbox": [ + 453, + 548, + 506, + 562 + ], + "score": 1.0, + "content": "is the usual", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 560, + 411, + 573 + ], + "spans": [ + { + "bbox": [ + 105, + 560, + 195, + 573 + ], + "score": 1.0, + "content": "operator norm. Then,", + "type": "text" + }, + { + "bbox": [ + 195, + 560, + 214, + 573 + ], + "score": 0.9, + "content": "p ( x )", + "type": "inline_equation" + }, + { + "bbox": [ + 215, + 560, + 225, + 573 + ], + "score": 1.0, + "content": "is", + "type": "text" + }, + { + "bbox": [ + 226, + 561, + 247, + 571 + ], + "score": 0.78, + "content": "2 B C", + "type": "inline_equation" + }, + { + "bbox": [ + 248, + 560, + 411, + 573 + ], + "score": 1.0, + "content": "-approximately expectation-linearizable.", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 35, + "bbox_fs": [ + 105, + 538, + 506, + 573 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 580, + 505, + 648 + ], + "lines": [ + { + "bbox": [ + 106, + 580, + 505, + 593 + ], + "spans": [ + { + "bbox": [ + 106, + 580, + 326, + 593 + ], + "score": 1.0, + "content": "Roughly, Theorem 2 states that the input distribution", + "type": "text" + }, + { + "bbox": [ + 326, + 581, + 346, + 593 + ], + "score": 0.91, + "content": "p ( x )", + "type": "inline_equation" + }, + { + "bbox": [ + 346, + 580, + 505, + 593 + ], + "score": 1.0, + "content": "that place most of its mass on regions", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 591, + 506, + 604 + ], + "spans": [ + { + "bbox": [ + 105, + 591, + 506, + 604 + ], + "score": 1.0, + "content": "close to expectation-linearizable sets are approximately expectation-linearizable on a similar scale.", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 602, + 506, + 615 + ], + "spans": [ + { + "bbox": [ + 105, + 602, + 342, + 615 + ], + "score": 1.0, + "content": "The bounded operator norm assumption on the derivative", + "type": "text" + }, + { + "bbox": [ + 342, + 603, + 358, + 614 + ], + "score": 0.9, + "content": "\\nabla f", + "type": "inline_equation" + }, + { + "bbox": [ + 358, + 602, + 506, + 615 + ], + "score": 1.0, + "content": "is satisfied in most commonly used", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 106, + 614, + 505, + 626 + ], + "spans": [ + { + "bbox": [ + 106, + 614, + 376, + 626 + ], + "score": 1.0, + "content": "layers. For example, for a fully connected layer with weight matrix", + "type": "text" + }, + { + "bbox": [ + 376, + 614, + 388, + 624 + ], + "score": 0.67, + "content": "W", + "type": "inline_equation" + }, + { + "bbox": [ + 388, + 614, + 438, + 626 + ], + "score": 1.0, + "content": ", bias vector", + "type": "text" + }, + { + "bbox": [ + 438, + 614, + 443, + 624 + ], + "score": 0.76, + "content": "b", + "type": "inline_equation" + }, + { + "bbox": [ + 443, + 614, + 505, + 626 + ], + "score": 1.0, + "content": ", and activation", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 623, + 506, + 638 + ], + "spans": [ + { + "bbox": [ + 105, + 623, + 143, + 638 + ], + "score": 1.0, + "content": "function", + "type": "text" + }, + { + "bbox": [ + 144, + 627, + 150, + 635 + ], + "score": 0.66, + "content": "\\sigma", + "type": "inline_equation" + }, + { + "bbox": [ + 151, + 623, + 155, + 638 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 155, + 624, + 275, + 637 + ], + "score": 0.91, + "content": "\\| \\nabla \\bar { f ( \\cdot ) } \\| _ { \\mathsf { o p } } = | \\sigma ^ { \\prime } \\bar { ( \\cdot ) } | \\cdot \\| W \\| _ { \\mathsf { o p } }", + "type": "inline_equation" + }, + { + "bbox": [ + 275, + 623, + 337, + 638 + ], + "score": 1.0, + "content": "is bounded by", + "type": "text" + }, + { + "bbox": [ + 337, + 625, + 367, + 637 + ], + "score": 0.92, + "content": "\\| W \\| _ { \\mathsf { o p } }", + "type": "inline_equation" + }, + { + "bbox": [ + 367, + 623, + 459, + 638 + ], + "score": 1.0, + "content": "and the supremum of", + "type": "text" + }, + { + "bbox": [ + 459, + 625, + 484, + 637 + ], + "score": 0.91, + "content": "| \\sigma ^ { \\prime } ( \\cdot ) |", + "type": "inline_equation" + }, + { + "bbox": [ + 485, + 623, + 506, + 638 + ], + "score": 1.0, + "content": "(1/4", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 106, + 636, + 274, + 648 + ], + "spans": [ + { + "bbox": [ + 106, + 636, + 130, + 648 + ], + "score": 1.0, + "content": "when", + "type": "text" + }, + { + "bbox": [ + 130, + 638, + 137, + 646 + ], + "score": 0.76, + "content": "\\sigma", + "type": "inline_equation" + }, + { + "bbox": [ + 138, + 636, + 231, + 648 + ], + "score": 1.0, + "content": "is sigmoid and 1 when", + "type": "text" + }, + { + "bbox": [ + 231, + 638, + 238, + 646 + ], + "score": 0.76, + "content": "\\sigma", + "type": "inline_equation" + }, + { + "bbox": [ + 239, + 636, + 274, + 648 + ], + "score": 1.0, + "content": "is tanh).", + "type": "text" + } + ], + "index": 42 + } + ], + "index": 39.5, + "bbox_fs": [ + 105, + 580, + 506, + 648 + ] + }, + { + "type": "text", + "bbox": [ + 105, + 652, + 496, + 664 + ], + "lines": [ + { + "bbox": [ + 106, + 652, + 497, + 666 + ], + "spans": [ + { + "bbox": [ + 106, + 652, + 497, + 666 + ], + "score": 1.0, + "content": "Next, we extend the notion of approximate expectation-linearity to deep dropout neural networks.", + "type": "text" + } + ], + "index": 43 + } + ], + "index": 43, + "bbox_fs": [ + 106, + 652, + 497, + 666 + ] + }, + { + "type": "text", + "bbox": [ + 105, + 667, + 504, + 690 + ], + "lines": [ + { + "bbox": [ + 106, + 667, + 506, + 680 + ], + "spans": [ + { + "bbox": [ + 106, + 667, + 456, + 680 + ], + "score": 1.0, + "content": "Definition 4 (Approximately Expectation-linear Network). A deep neural network with", + "type": "text" + }, + { + "bbox": [ + 456, + 668, + 464, + 677 + ], + "score": 0.79, + "content": "L", + "type": "inline_equation" + }, + { + "bbox": [ + 464, + 667, + 506, + 680 + ], + "score": 1.0, + "content": "layers (cf.", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 677, + 415, + 691 + ], + "spans": [ + { + "bbox": [ + 105, + 677, + 149, + 691 + ], + "score": 1.0, + "content": "Eq. (1)) is", + "type": "text" + }, + { + "bbox": [ + 149, + 678, + 155, + 688 + ], + "score": 0.79, + "content": "\\delta", + "type": "inline_equation" + }, + { + "bbox": [ + 155, + 677, + 353, + 691 + ], + "score": 1.0, + "content": "-approximately expectation-linear with respect to", + "type": "text" + }, + { + "bbox": [ + 353, + 679, + 372, + 690 + ], + "score": 0.91, + "content": "p ( x )", + "type": "inline_equation" + }, + { + "bbox": [ + 373, + 677, + 394, + 691 + ], + "score": 1.0, + "content": "over", + "type": "text" + }, + { + "bbox": [ + 394, + 680, + 403, + 687 + ], + "score": 0.85, + "content": "\\mathcal { X }", + "type": "inline_equation" + }, + { + "bbox": [ + 403, + 677, + 415, + 691 + ], + "score": 1.0, + "content": "if", + "type": "text" + } + ], + "index": 45 + } + ], + "index": 44.5, + "bbox_fs": [ + 105, + 667, + 506, + 691 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 189, + 694, + 422, + 715 + ], + "lines": [ + { + "bbox": [ + 189, + 694, + 422, + 715 + ], + "spans": [ + { + "bbox": [ + 189, + 694, + 422, + 715 + ], + "score": 0.92, + "content": "\\mathrm { E } _ { X } \\Big [ \\big \\| \\mathrm { E } _ { S } \\big [ \\mathbf { H } ^ { ( L ) } ( X , S ; \\theta ) | X \\big ] - \\mathbf { h } ^ { ( L ) } ( X , \\mathrm { E } [ S ] ; \\theta ) \\big \\| _ { 2 } \\Big ] < \\delta .", + "type": "interline_equation", + "image_path": "5af0cabdc2935582c521db4f18e2e969ecaff536fc35e64fdef4944db071731a.jpg" + } + ] + } + ], + "index": 46, + "virtual_lines": [ + { + "bbox": [ + 189, + 694, + 422, + 715 + ], + "spans": [], + "index": 46 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 720, + 478, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 718, + 480, + 734 + ], + "spans": [ + { + "bbox": [ + 106, + 718, + 133, + 734 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 133, + 719, + 201, + 732 + ], + "score": 0.93, + "content": "\\mathbf { h } ^ { ( L ) } ( X , \\operatorname { E } [ S ] ; \\theta )", + "type": "inline_equation" + }, + { + "bbox": [ + 202, + 718, + 480, + 734 + ], + "score": 1.0, + "content": "is the output of the deterministic neural network in standard dropout.", + "type": "text" + } + ], + "index": 47 + } + ], + "index": 47, + "bbox_fs": [ + 106, + 718, + 480, + 734 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 105, + 82, + 504, + 105 + ], + "lines": [ + { + "bbox": [ + 106, + 82, + 505, + 95 + ], + "spans": [ + { + "bbox": [ + 106, + 82, + 505, + 95 + ], + "score": 1.0, + "content": "Lastly, we relate the level of approximate expectation-linearity of a deep neural network to the level", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 106, + 93, + 337, + 106 + ], + "spans": [ + { + "bbox": [ + 106, + 93, + 337, + 106 + ], + "score": 1.0, + "content": "of approximate expectation-linearity of each of its layers:", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5 + }, + { + "type": "text", + "bbox": [ + 106, + 107, + 506, + 144 + ], + "lines": [ + { + "bbox": [ + 105, + 106, + 505, + 120 + ], + "spans": [ + { + "bbox": [ + 105, + 106, + 203, + 120 + ], + "score": 1.0, + "content": "Theorem 3. Given an", + "type": "text" + }, + { + "bbox": [ + 204, + 108, + 212, + 118 + ], + "score": 0.7, + "content": "L", + "type": "inline_equation" + }, + { + "bbox": [ + 212, + 106, + 487, + 120 + ], + "score": 1.0, + "content": "-layer neural network as in Eq. (1), and suppose that each layer", + "type": "text" + }, + { + "bbox": [ + 488, + 108, + 505, + 118 + ], + "score": 0.85, + "content": "l \\in", + "type": "inline_equation" + } + ], + "index": 2 + }, + { + "bbox": [ + 107, + 117, + 506, + 132 + ], + "spans": [ + { + "bbox": [ + 107, + 118, + 151, + 131 + ], + "score": 0.91, + "content": "\\{ 1 , \\ldots , L \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 152, + 117, + 162, + 132 + ], + "score": 1.0, + "content": "is", + "type": "text" + }, + { + "bbox": [ + 162, + 119, + 168, + 128 + ], + "score": 0.72, + "content": "\\delta", + "type": "inline_equation" + }, + { + "bbox": [ + 168, + 117, + 325, + 132 + ], + "score": 1.0, + "content": "-approximately expectation-linear w.r.t.", + "type": "text" + }, + { + "bbox": [ + 326, + 118, + 503, + 131 + ], + "score": 0.75, + "content": "\\begin{array} { r } { p ( \\hat { \\mathbf { h } } ^ { ( l ) } ) , \\mathrm { E } [ \\Gamma ^ { ( l ) } ] \\stackrel { } { \\leq } \\gamma , \\operatorname* { s u p } _ { x } \\| \\nabla f _ { l } ( x ) \\| _ { \\mathrm { o p } } \\leq B } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 503, + 117, + 506, + 132 + ], + "score": 1.0, + "content": ",", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 129, + 467, + 145 + ], + "spans": [ + { + "bbox": [ + 105, + 129, + 124, + 145 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 124, + 130, + 214, + 144 + ], + "score": 0.92, + "content": "\\mathrm { E } \\big [ \\mathrm { V a r } [ \\mathbf { H } ^ { ( l ) } | X ] \\big ] \\leq \\sigma ^ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 215, + 129, + 300, + 145 + ], + "score": 1.0, + "content": ". Then the network is", + "type": "text" + }, + { + "bbox": [ + 301, + 132, + 310, + 141 + ], + "score": 0.79, + "content": "\\Delta", + "type": "inline_equation" + }, + { + "bbox": [ + 310, + 129, + 467, + 145 + ], + "score": 1.0, + "content": "-approximately expectation-linear with", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 3 + }, + { + "type": "interline_equation", + "bbox": [ + 206, + 147, + 405, + 176 + ], + "lines": [ + { + "bbox": [ + 206, + 147, + 405, + 176 + ], + "spans": [ + { + "bbox": [ + 206, + 147, + 405, + 176 + ], + "score": 0.93, + "content": "\\Delta = ( B \\gamma ) ^ { L - 1 } \\delta + ( \\delta + B \\gamma \\sigma ) \\Bigg ( \\frac { 1 - ( B \\gamma ) ^ { L - 1 } } { 1 - B \\gamma } \\Bigg ) .", + "type": "interline_equation", + "image_path": "1fae799a5674707cc01a67dda99dd186725fafdf16f02c0457adc7a0544bc16e.jpg" + } + ] + } + ], + "index": 5.5, + "virtual_lines": [ + { + "bbox": [ + 206, + 147, + 405, + 161.5 + ], + "spans": [], + "index": 5 + }, + { + "bbox": [ + 206, + 161.5, + 405, + 176.0 + ], + "spans": [], + "index": 6 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 183, + 505, + 240 + ], + "lines": [ + { + "bbox": [ + 106, + 184, + 506, + 197 + ], + "spans": [ + { + "bbox": [ + 106, + 184, + 506, + 197 + ], + "score": 1.0, + "content": "From Theorem 3 (proof in Appendix B.2) we observe that the level of approximate expectation-", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 106, + 195, + 506, + 208 + ], + "spans": [ + { + "bbox": [ + 106, + 195, + 506, + 208 + ], + "score": 1.0, + "content": "linearity of the network mainly depends on four factors: the level of approximate expecatation-", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 106, + 206, + 506, + 219 + ], + "spans": [ + { + "bbox": [ + 106, + 206, + 194, + 219 + ], + "score": 1.0, + "content": "linearity of each layer", + "type": "text" + }, + { + "bbox": [ + 195, + 207, + 207, + 218 + ], + "score": 0.68, + "content": "( \\delta )", + "type": "inline_equation" + }, + { + "bbox": [ + 207, + 206, + 349, + 219 + ], + "score": 1.0, + "content": ", the expected variance of each layer", + "type": "text" + }, + { + "bbox": [ + 350, + 207, + 363, + 218 + ], + "score": 0.74, + "content": "( \\sigma )", + "type": "inline_equation" + }, + { + "bbox": [ + 363, + 206, + 506, + 219 + ], + "score": 1.0, + "content": ", the operator norm of the derivative", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 217, + 505, + 231 + ], + "spans": [ + { + "bbox": [ + 105, + 217, + 267, + 231 + ], + "score": 1.0, + "content": "of each layer’s transformation function", + "type": "text" + }, + { + "bbox": [ + 268, + 218, + 283, + 228 + ], + "score": 0.78, + "content": "( B )", + "type": "inline_equation" + }, + { + "bbox": [ + 284, + 217, + 475, + 231 + ], + "score": 1.0, + "content": ", and the mean of each layer’s dropout variable", + "type": "text" + }, + { + "bbox": [ + 476, + 218, + 489, + 229 + ], + "score": 0.78, + "content": "( \\gamma )", + "type": "inline_equation" + }, + { + "bbox": [ + 489, + 217, + 505, + 231 + ], + "score": 1.0, + "content": ". In", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 227, + 503, + 243 + ], + "spans": [ + { + "bbox": [ + 105, + 227, + 142, + 243 + ], + "score": 1.0, + "content": "practice,", + "type": "text" + }, + { + "bbox": [ + 143, + 230, + 150, + 240 + ], + "score": 0.8, + "content": "\\gamma", + "type": "inline_equation" + }, + { + "bbox": [ + 150, + 227, + 381, + 243 + ], + "score": 1.0, + "content": "is often a constant less than or equal to 1. For example, if", + "type": "text" + }, + { + "bbox": [ + 381, + 228, + 454, + 240 + ], + "score": 0.85, + "content": "\\Gamma \\sim \\mathrm { B e r n o u l l i } ( p )", + "type": "inline_equation" + }, + { + "bbox": [ + 455, + 227, + 477, + 243 + ], + "score": 1.0, + "content": ", then", + "type": "text" + }, + { + "bbox": [ + 478, + 230, + 503, + 240 + ], + "score": 0.89, + "content": "\\gamma = p", + "type": "inline_equation" + } + ], + "index": 11 + } + ], + "index": 9 + }, + { + "type": "text", + "bbox": [ + 106, + 245, + 505, + 312 + ], + "lines": [ + { + "bbox": [ + 106, + 245, + 504, + 257 + ], + "spans": [ + { + "bbox": [ + 106, + 245, + 504, + 257 + ], + "score": 1.0, + "content": "According to the theorem, the operator norm of the derivative of each layer’s transformation function", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 104, + 255, + 505, + 269 + ], + "spans": [ + { + "bbox": [ + 104, + 255, + 505, + 269 + ], + "score": 1.0, + "content": "is an important factor in the level of approximate expectation-linearity: the smaller the operator norm", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 267, + 505, + 280 + ], + "spans": [ + { + "bbox": [ + 105, + 267, + 505, + 280 + ], + "score": 1.0, + "content": "is, the better the approximation. Interestingly, the operator norm of a layer often depends on the norm", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 277, + 506, + 291 + ], + "spans": [ + { + "bbox": [ + 105, + 277, + 506, + 291 + ], + "score": 1.0, + "content": "of the layer’s weight (e.g. for fully connected layers). Therefore, adding max-norm constraints to", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 289, + 506, + 302 + ], + "spans": [ + { + "bbox": [ + 105, + 289, + 506, + 302 + ], + "score": 1.0, + "content": "regularize dropout neural networks can lead to better approximate expectation-linearity hence smaller", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 299, + 340, + 313 + ], + "spans": [ + { + "bbox": [ + 105, + 299, + 340, + 313 + ], + "score": 1.0, + "content": "inference gap and the often improved model performance.", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 14.5 + }, + { + "type": "text", + "bbox": [ + 106, + 316, + 505, + 361 + ], + "lines": [ + { + "bbox": [ + 105, + 317, + 505, + 329 + ], + "spans": [ + { + "bbox": [ + 105, + 317, + 237, + 329 + ], + "score": 1.0, + "content": "It should also be noted that when", + "type": "text" + }, + { + "bbox": [ + 238, + 317, + 271, + 328 + ], + "score": 0.91, + "content": "B \\gamma < 1", + "type": "inline_equation" + }, + { + "bbox": [ + 271, + 317, + 370, + 329 + ], + "score": 1.0, + "content": ", the approximation error", + "type": "text" + }, + { + "bbox": [ + 370, + 317, + 379, + 327 + ], + "score": 0.82, + "content": "\\Delta", + "type": "inline_equation" + }, + { + "bbox": [ + 380, + 317, + 505, + 329 + ], + "score": 1.0, + "content": "tends to be a constant when the", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 328, + 505, + 340 + ], + "spans": [ + { + "bbox": [ + 105, + 328, + 239, + 340 + ], + "score": 1.0, + "content": "network becomes deeper. When", + "type": "text" + }, + { + "bbox": [ + 239, + 329, + 272, + 339 + ], + "score": 0.88, + "content": "B \\gamma = 1", + "type": "inline_equation" + }, + { + "bbox": [ + 273, + 328, + 276, + 340 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 276, + 329, + 286, + 338 + ], + "score": 0.69, + "content": "\\Delta", + "type": "inline_equation" + }, + { + "bbox": [ + 286, + 328, + 368, + 340 + ], + "score": 1.0, + "content": "grows linearly with", + "type": "text" + }, + { + "bbox": [ + 369, + 329, + 376, + 338 + ], + "score": 0.78, + "content": "L", + "type": "inline_equation" + }, + { + "bbox": [ + 377, + 328, + 422, + 340 + ], + "score": 1.0, + "content": ", and when", + "type": "text" + }, + { + "bbox": [ + 422, + 328, + 455, + 339 + ], + "score": 0.92, + "content": "B \\gamma > 1", + "type": "inline_equation" + }, + { + "bbox": [ + 455, + 328, + 505, + 340 + ], + "score": 1.0, + "content": ", the growth", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 338, + 506, + 352 + ], + "spans": [ + { + "bbox": [ + 105, + 338, + 118, + 352 + ], + "score": 1.0, + "content": "of", + "type": "text" + }, + { + "bbox": [ + 118, + 339, + 128, + 349 + ], + "score": 0.81, + "content": "\\Delta", + "type": "inline_equation" + }, + { + "bbox": [ + 128, + 338, + 337, + 352 + ], + "score": 1.0, + "content": "becomes exponential. Thus, it is essential to keep", + "type": "text" + }, + { + "bbox": [ + 338, + 339, + 372, + 350 + ], + "score": 0.92, + "content": "B \\gamma < 1", + "type": "inline_equation" + }, + { + "bbox": [ + 373, + 338, + 506, + 352 + ], + "score": 1.0, + "content": "to achieve good approximation,", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 351, + 259, + 362 + ], + "spans": [ + { + "bbox": [ + 105, + 351, + 259, + 362 + ], + "score": 1.0, + "content": "particularly for deep neural networks.", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 19.5 + }, + { + "type": "title", + "bbox": [ + 107, + 377, + 375, + 390 + ], + "lines": [ + { + "bbox": [ + 105, + 376, + 376, + 391 + ], + "spans": [ + { + "bbox": [ + 105, + 376, + 376, + 391 + ], + "score": 1.0, + "content": "5 EXPECTATION-LINEAR REGULARIZED DROPOUT", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 22 + }, + { + "type": "text", + "bbox": [ + 106, + 401, + 506, + 479 + ], + "lines": [ + { + "bbox": [ + 105, + 401, + 505, + 415 + ], + "spans": [ + { + "bbox": [ + 105, + 401, + 505, + 415 + ], + "score": 1.0, + "content": "In the previous section we have managed to bound the approximate expectation-linearity, hence the", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 106, + 413, + 506, + 425 + ], + "spans": [ + { + "bbox": [ + 106, + 413, + 506, + 425 + ], + "score": 1.0, + "content": "inference gap in (3), of dropout neural networks. In this section, we first prove a uniform deviation", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 106, + 424, + 506, + 437 + ], + "spans": [ + { + "bbox": [ + 106, + 424, + 506, + 437 + ], + "score": 1.0, + "content": "bound of the sampled approximate expectation-linearity measure from its mean, which motivates", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 106, + 435, + 505, + 447 + ], + "spans": [ + { + "bbox": [ + 106, + 435, + 505, + 447 + ], + "score": 1.0, + "content": "adding the sampled (hence computable) expectation-linearity measure as a regularization scheme to", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 106, + 446, + 506, + 458 + ], + "spans": [ + { + "bbox": [ + 106, + 446, + 506, + 458 + ], + "score": 1.0, + "content": "standard dropout, with the goal of explicitly controlling the inference gap of the learned parameter,", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 457, + 505, + 469 + ], + "spans": [ + { + "bbox": [ + 105, + 457, + 505, + 469 + ], + "score": 1.0, + "content": "hence potentially improving the performance. Then we give the upper bounds on the loss in accuracy", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 466, + 506, + 481 + ], + "spans": [ + { + "bbox": [ + 105, + 466, + 506, + 481 + ], + "score": 1.0, + "content": "due to expectation-linearization, and describe classes of distributions that expectation-linearize easily.", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 26 + }, + { + "type": "text", + "bbox": [ + 106, + 491, + 496, + 504 + ], + "lines": [ + { + "bbox": [ + 105, + 491, + 498, + 505 + ], + "spans": [ + { + "bbox": [ + 105, + 491, + 498, + 505 + ], + "score": 1.0, + "content": "5.1 A UNIFORM DEVIATION BOUND FOR THE SAMPLED EXPECTATION-LINEAR MEASURE", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 30 + }, + { + "type": "text", + "bbox": [ + 107, + 512, + 505, + 546 + ], + "lines": [ + { + "bbox": [ + 105, + 512, + 506, + 525 + ], + "spans": [ + { + "bbox": [ + 105, + 512, + 506, + 525 + ], + "score": 1.0, + "content": "We now show that an expectation-linear network can be found by expectation-linearizing the network", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 106, + 524, + 505, + 535 + ], + "spans": [ + { + "bbox": [ + 106, + 524, + 505, + 535 + ], + "score": 1.0, + "content": "on the training sample. To this end, we prove a uniform deviation bound between the empirical", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 535, + 462, + 547 + ], + "spans": [ + { + "bbox": [ + 105, + 535, + 462, + 547 + ], + "score": 1.0, + "content": "expectation-linearization measure using i.i.d. samples (Eq. (12)) and its mean (Eq. (13)).", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 32 + }, + { + "type": "text", + "bbox": [ + 106, + 548, + 505, + 600 + ], + "lines": [ + { + "bbox": [ + 105, + 548, + 506, + 563 + ], + "spans": [ + { + "bbox": [ + 105, + 548, + 176, + 563 + ], + "score": 1.0, + "content": "Theorem 4. Let", + "type": "text" + }, + { + "bbox": [ + 176, + 548, + 294, + 563 + ], + "score": 0.92, + "content": "\\mathcal { H } = \\left\\{ \\mathbf { h } ^ { ( L ) } ( x , s ; \\theta ) : \\theta \\in \\Theta \\right\\}", + "type": "inline_equation" + }, + { + "bbox": [ + 294, + 548, + 369, + 563 + ], + "score": 1.0, + "content": "denote a space of", + "type": "text" + }, + { + "bbox": [ + 369, + 550, + 377, + 560 + ], + "score": 0.66, + "content": "L", + "type": "inline_equation" + }, + { + "bbox": [ + 377, + 548, + 506, + 563 + ], + "score": 1.0, + "content": "-layer dropout neural networks", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 561, + 506, + 576 + ], + "spans": [ + { + "bbox": [ + 105, + 561, + 159, + 576 + ], + "score": 1.0, + "content": "indexed with", + "type": "text" + }, + { + "bbox": [ + 159, + 564, + 164, + 573 + ], + "score": 0.73, + "content": "\\theta", + "type": "inline_equation" + }, + { + "bbox": [ + 165, + 561, + 194, + 576 + ], + "score": 1.0, + "content": ", where", + "type": "text" + }, + { + "bbox": [ + 195, + 563, + 274, + 574 + ], + "score": 0.79, + "content": "\\mathbf { h } ^ { ( L ) } : \\mathcal { X } \\times \\mathcal { S } \\mathcal { R }", + "type": "inline_equation" + }, + { + "bbox": [ + 275, + 561, + 293, + 576 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 293, + 563, + 302, + 573 + ], + "score": 0.78, + "content": "\\Theta", + "type": "inline_equation" + }, + { + "bbox": [ + 302, + 561, + 369, + 576 + ], + "score": 1.0, + "content": "is the space that", + "type": "text" + }, + { + "bbox": [ + 369, + 563, + 375, + 573 + ], + "score": 0.7, + "content": "\\theta", + "type": "inline_equation" + }, + { + "bbox": [ + 375, + 561, + 506, + 576 + ], + "score": 1.0, + "content": "lives in. Suppose that the neural", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 574, + 506, + 588 + ], + "spans": [ + { + "bbox": [ + 105, + 574, + 156, + 588 + ], + "score": 1.0, + "content": "networks in", + "type": "text" + }, + { + "bbox": [ + 156, + 576, + 166, + 585 + ], + "score": 0.81, + "content": "\\mathcal { H }", + "type": "inline_equation" + }, + { + "bbox": [ + 166, + 574, + 268, + 588 + ], + "score": 1.0, + "content": "satisfy the constraints: 1", + "type": "text" + }, + { + "bbox": [ + 268, + 575, + 433, + 587 + ], + "score": 0.79, + "content": ") \\forall x \\in \\mathcal { X } , \\| x \\| _ { 2 } \\leq \\alpha ; 2 ) \\forall l \\in \\{ 1 , \\ldots , L \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 433, + 574, + 436, + 588 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 436, + 574, + 486, + 587 + ], + "score": 0.86, + "content": "\\mathrm { E } ( \\Gamma ^ { ( l ) } ) \\le \\gamma", + "type": "inline_equation" + }, + { + "bbox": [ + 487, + 574, + 506, + 588 + ], + "score": 1.0, + "content": "and", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 107, + 586, + 507, + 601 + ], + "spans": [ + { + "bbox": [ + 107, + 586, + 228, + 600 + ], + "score": 0.73, + "content": "\\| \\nabla f _ { l } \\| _ { o p } \\leq B ; 3 ) \\| \\mathbf { h } ^ { ( L ) } \\| \\leq \\beta", + "type": "inline_equation" + }, + { + "bbox": [ + 228, + 586, + 507, + 601 + ], + "score": 1.0, + "content": ". Denote empirical expectation-linearization measure and its mean as:", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 35.5 + }, + { + "type": "interline_equation", + "bbox": [ + 192, + 603, + 417, + 653 + ], + "lines": [ + { + "bbox": [ + 192, + 603, + 417, + 653 + ], + "spans": [ + { + "bbox": [ + 192, + 603, + 417, + 653 + ], + "score": 0.93, + "content": "\\begin{array} { l } { \\displaystyle \\hat { \\Delta } = \\frac { 1 } { n } \\sum _ { i = 1 } ^ { n } \\big \\| \\mathrm { E } _ { S _ { i } } \\big [ \\mathbf { H } ^ { ( L ) } ( X _ { i } , S _ { i } ; \\theta ) \\big ] - \\mathbf { h } ^ { ( L ) } ( X _ { i } , \\mathrm { E } [ S _ { i } ] ; \\theta ) \\big \\| _ { 2 } , } \\\\ { \\displaystyle \\Delta = \\mathrm { E } _ { X } \\Big [ \\big \\| \\mathrm { E } _ { S } \\big [ \\mathbf { H } ^ { ( L ) } ( X , S ; \\theta ) \\big ] - \\mathbf { h } ^ { ( L ) } ( X , \\mathrm { E } [ S ] ; \\theta ) \\big \\| _ { 2 } \\Big ] . } \\end{array}", + "type": "interline_equation", + "image_path": "e94e23d82460c5f4f17c181cf128771a414d820a025e55d729e807754c937c07.jpg" + } + ] + } + ], + "index": 39, + "virtual_lines": [ + { + "bbox": [ + 192, + 603, + 417, + 619.6666666666666 + ], + "spans": [], + "index": 38 + }, + { + "bbox": [ + 192, + 619.6666666666666, + 417, + 636.3333333333333 + ], + "spans": [], + "index": 39 + }, + { + "bbox": [ + 192, + 636.3333333333333, + 417, + 652.9999999999999 + ], + "spans": [], + "index": 40 + } + ] + }, + { + "type": "text", + "bbox": [ + 109, + 655, + 293, + 667 + ], + "lines": [ + { + "bbox": [ + 108, + 654, + 294, + 669 + ], + "spans": [ + { + "bbox": [ + 108, + 654, + 231, + 669 + ], + "score": 1.0, + "content": "Then, with probability at least", + "type": "text" + }, + { + "bbox": [ + 232, + 657, + 255, + 666 + ], + "score": 0.87, + "content": "1 - \\nu", + "type": "inline_equation" + }, + { + "bbox": [ + 256, + 654, + 294, + 669 + ], + "score": 1.0, + "content": ", we have", + "type": "text" + } + ], + "index": 41 + } + ], + "index": 41 + }, + { + "type": "interline_equation", + "bbox": [ + 199, + 671, + 410, + 700 + ], + "lines": [ + { + "bbox": [ + 199, + 671, + 410, + 700 + ], + "spans": [ + { + "bbox": [ + 199, + 671, + 410, + 700 + ], + "score": 0.92, + "content": "\\operatorname* { s u p } _ { \\theta \\in \\Theta } | \\Delta - \\hat { \\Delta } | < \\frac { 2 \\alpha B ^ { L } ( \\gamma ^ { L / 2 } + 1 ) } { \\sqrt { n } } + \\beta \\sqrt { \\frac { \\log ( 1 / \\nu ) } { n } } .", + "type": "interline_equation", + "image_path": "fd78b1ca5baddc6db6bc317599e95e14b35ca6fe1e8aaaa42dc53d1feebf6027.jpg" + } + ] + } + ], + "index": 42.5, + "virtual_lines": [ + { + "bbox": [ + 199, + 671, + 410, + 685.5 + ], + "spans": [], + "index": 42 + }, + { + "bbox": [ + 199, + 685.5, + 410, + 700.0 + ], + "spans": [], + "index": 43 + } + ] + }, + { + "type": "text", + "bbox": [ + 108, + 709, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 709, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 106, + 709, + 505, + 722 + ], + "score": 1.0, + "content": "From Theorem 4 (proof in Appendix C.1) we observe that the deviation bound decreases exponentially", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 106, + 720, + 505, + 734 + ], + "spans": [ + { + "bbox": [ + 106, + 720, + 210, + 734 + ], + "score": 1.0, + "content": "with the number of layers", + "type": "text" + }, + { + "bbox": [ + 211, + 722, + 218, + 730 + ], + "score": 0.81, + "content": "L", + "type": "inline_equation" + }, + { + "bbox": [ + 219, + 720, + 505, + 734 + ], + "score": 1.0, + "content": "when the operator norm of the derivative of each layer’s transformation", + "type": "text" + } + ], + "index": 45 + } + ], + "index": 44.5 + } + ], + "page_idx": 5, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 27, + 293, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 26, + 293, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 26, + 293, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2017", + "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": "text", + "bbox": [ + 105, + 82, + 504, + 105 + ], + "lines": [ + { + "bbox": [ + 106, + 82, + 505, + 95 + ], + "spans": [ + { + "bbox": [ + 106, + 82, + 505, + 95 + ], + "score": 1.0, + "content": "Lastly, we relate the level of approximate expectation-linearity of a deep neural network to the level", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 106, + 93, + 337, + 106 + ], + "spans": [ + { + "bbox": [ + 106, + 93, + 337, + 106 + ], + "score": 1.0, + "content": "of approximate expectation-linearity of each of its layers:", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5, + "bbox_fs": [ + 106, + 82, + 505, + 106 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 107, + 506, + 144 + ], + "lines": [ + { + "bbox": [ + 105, + 106, + 505, + 120 + ], + "spans": [ + { + "bbox": [ + 105, + 106, + 203, + 120 + ], + "score": 1.0, + "content": "Theorem 3. Given an", + "type": "text" + }, + { + "bbox": [ + 204, + 108, + 212, + 118 + ], + "score": 0.7, + "content": "L", + "type": "inline_equation" + }, + { + "bbox": [ + 212, + 106, + 487, + 120 + ], + "score": 1.0, + "content": "-layer neural network as in Eq. (1), and suppose that each layer", + "type": "text" + }, + { + "bbox": [ + 488, + 108, + 505, + 118 + ], + "score": 0.85, + "content": "l \\in", + "type": "inline_equation" + } + ], + "index": 2 + }, + { + "bbox": [ + 107, + 117, + 506, + 132 + ], + "spans": [ + { + "bbox": [ + 107, + 118, + 151, + 131 + ], + "score": 0.91, + "content": "\\{ 1 , \\ldots , L \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 152, + 117, + 162, + 132 + ], + "score": 1.0, + "content": "is", + "type": "text" + }, + { + "bbox": [ + 162, + 119, + 168, + 128 + ], + "score": 0.72, + "content": "\\delta", + "type": "inline_equation" + }, + { + "bbox": [ + 168, + 117, + 325, + 132 + ], + "score": 1.0, + "content": "-approximately expectation-linear w.r.t.", + "type": "text" + }, + { + "bbox": [ + 326, + 118, + 503, + 131 + ], + "score": 0.75, + "content": "\\begin{array} { r } { p ( \\hat { \\mathbf { h } } ^ { ( l ) } ) , \\mathrm { E } [ \\Gamma ^ { ( l ) } ] \\stackrel { } { \\leq } \\gamma , \\operatorname* { s u p } _ { x } \\| \\nabla f _ { l } ( x ) \\| _ { \\mathrm { o p } } \\leq B } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 503, + 117, + 506, + 132 + ], + "score": 1.0, + "content": ",", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 129, + 467, + 145 + ], + "spans": [ + { + "bbox": [ + 105, + 129, + 124, + 145 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 124, + 130, + 214, + 144 + ], + "score": 0.92, + "content": "\\mathrm { E } \\big [ \\mathrm { V a r } [ \\mathbf { H } ^ { ( l ) } | X ] \\big ] \\leq \\sigma ^ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 215, + 129, + 300, + 145 + ], + "score": 1.0, + "content": ". Then the network is", + "type": "text" + }, + { + "bbox": [ + 301, + 132, + 310, + 141 + ], + "score": 0.79, + "content": "\\Delta", + "type": "inline_equation" + }, + { + "bbox": [ + 310, + 129, + 467, + 145 + ], + "score": 1.0, + "content": "-approximately expectation-linear with", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 3, + "bbox_fs": [ + 105, + 106, + 506, + 145 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 206, + 147, + 405, + 176 + ], + "lines": [ + { + "bbox": [ + 206, + 147, + 405, + 176 + ], + "spans": [ + { + "bbox": [ + 206, + 147, + 405, + 176 + ], + "score": 0.93, + "content": "\\Delta = ( B \\gamma ) ^ { L - 1 } \\delta + ( \\delta + B \\gamma \\sigma ) \\Bigg ( \\frac { 1 - ( B \\gamma ) ^ { L - 1 } } { 1 - B \\gamma } \\Bigg ) .", + "type": "interline_equation", + "image_path": "1fae799a5674707cc01a67dda99dd186725fafdf16f02c0457adc7a0544bc16e.jpg" + } + ] + } + ], + "index": 5.5, + "virtual_lines": [ + { + "bbox": [ + 206, + 147, + 405, + 161.5 + ], + "spans": [], + "index": 5 + }, + { + "bbox": [ + 206, + 161.5, + 405, + 176.0 + ], + "spans": [], + "index": 6 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 183, + 505, + 240 + ], + "lines": [ + { + "bbox": [ + 106, + 184, + 506, + 197 + ], + "spans": [ + { + "bbox": [ + 106, + 184, + 506, + 197 + ], + "score": 1.0, + "content": "From Theorem 3 (proof in Appendix B.2) we observe that the level of approximate expectation-", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 106, + 195, + 506, + 208 + ], + "spans": [ + { + "bbox": [ + 106, + 195, + 506, + 208 + ], + "score": 1.0, + "content": "linearity of the network mainly depends on four factors: the level of approximate expecatation-", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 106, + 206, + 506, + 219 + ], + "spans": [ + { + "bbox": [ + 106, + 206, + 194, + 219 + ], + "score": 1.0, + "content": "linearity of each layer", + "type": "text" + }, + { + "bbox": [ + 195, + 207, + 207, + 218 + ], + "score": 0.68, + "content": "( \\delta )", + "type": "inline_equation" + }, + { + "bbox": [ + 207, + 206, + 349, + 219 + ], + "score": 1.0, + "content": ", the expected variance of each layer", + "type": "text" + }, + { + "bbox": [ + 350, + 207, + 363, + 218 + ], + "score": 0.74, + "content": "( \\sigma )", + "type": "inline_equation" + }, + { + "bbox": [ + 363, + 206, + 506, + 219 + ], + "score": 1.0, + "content": ", the operator norm of the derivative", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 217, + 505, + 231 + ], + "spans": [ + { + "bbox": [ + 105, + 217, + 267, + 231 + ], + "score": 1.0, + "content": "of each layer’s transformation function", + "type": "text" + }, + { + "bbox": [ + 268, + 218, + 283, + 228 + ], + "score": 0.78, + "content": "( B )", + "type": "inline_equation" + }, + { + "bbox": [ + 284, + 217, + 475, + 231 + ], + "score": 1.0, + "content": ", and the mean of each layer’s dropout variable", + "type": "text" + }, + { + "bbox": [ + 476, + 218, + 489, + 229 + ], + "score": 0.78, + "content": "( \\gamma )", + "type": "inline_equation" + }, + { + "bbox": [ + 489, + 217, + 505, + 231 + ], + "score": 1.0, + "content": ". In", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 227, + 503, + 243 + ], + "spans": [ + { + "bbox": [ + 105, + 227, + 142, + 243 + ], + "score": 1.0, + "content": "practice,", + "type": "text" + }, + { + "bbox": [ + 143, + 230, + 150, + 240 + ], + "score": 0.8, + "content": "\\gamma", + "type": "inline_equation" + }, + { + "bbox": [ + 150, + 227, + 381, + 243 + ], + "score": 1.0, + "content": "is often a constant less than or equal to 1. For example, if", + "type": "text" + }, + { + "bbox": [ + 381, + 228, + 454, + 240 + ], + "score": 0.85, + "content": "\\Gamma \\sim \\mathrm { B e r n o u l l i } ( p )", + "type": "inline_equation" + }, + { + "bbox": [ + 455, + 227, + 477, + 243 + ], + "score": 1.0, + "content": ", then", + "type": "text" + }, + { + "bbox": [ + 478, + 230, + 503, + 240 + ], + "score": 0.89, + "content": "\\gamma = p", + "type": "inline_equation" + } + ], + "index": 11 + } + ], + "index": 9, + "bbox_fs": [ + 105, + 184, + 506, + 243 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 245, + 505, + 312 + ], + "lines": [ + { + "bbox": [ + 106, + 245, + 504, + 257 + ], + "spans": [ + { + "bbox": [ + 106, + 245, + 504, + 257 + ], + "score": 1.0, + "content": "According to the theorem, the operator norm of the derivative of each layer’s transformation function", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 104, + 255, + 505, + 269 + ], + "spans": [ + { + "bbox": [ + 104, + 255, + 505, + 269 + ], + "score": 1.0, + "content": "is an important factor in the level of approximate expectation-linearity: the smaller the operator norm", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 267, + 505, + 280 + ], + "spans": [ + { + "bbox": [ + 105, + 267, + 505, + 280 + ], + "score": 1.0, + "content": "is, the better the approximation. Interestingly, the operator norm of a layer often depends on the norm", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 277, + 506, + 291 + ], + "spans": [ + { + "bbox": [ + 105, + 277, + 506, + 291 + ], + "score": 1.0, + "content": "of the layer’s weight (e.g. for fully connected layers). Therefore, adding max-norm constraints to", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 289, + 506, + 302 + ], + "spans": [ + { + "bbox": [ + 105, + 289, + 506, + 302 + ], + "score": 1.0, + "content": "regularize dropout neural networks can lead to better approximate expectation-linearity hence smaller", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 299, + 340, + 313 + ], + "spans": [ + { + "bbox": [ + 105, + 299, + 340, + 313 + ], + "score": 1.0, + "content": "inference gap and the often improved model performance.", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 14.5, + "bbox_fs": [ + 104, + 245, + 506, + 313 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 316, + 505, + 361 + ], + "lines": [ + { + "bbox": [ + 105, + 317, + 505, + 329 + ], + "spans": [ + { + "bbox": [ + 105, + 317, + 237, + 329 + ], + "score": 1.0, + "content": "It should also be noted that when", + "type": "text" + }, + { + "bbox": [ + 238, + 317, + 271, + 328 + ], + "score": 0.91, + "content": "B \\gamma < 1", + "type": "inline_equation" + }, + { + "bbox": [ + 271, + 317, + 370, + 329 + ], + "score": 1.0, + "content": ", the approximation error", + "type": "text" + }, + { + "bbox": [ + 370, + 317, + 379, + 327 + ], + "score": 0.82, + "content": "\\Delta", + "type": "inline_equation" + }, + { + "bbox": [ + 380, + 317, + 505, + 329 + ], + "score": 1.0, + "content": "tends to be a constant when the", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 328, + 505, + 340 + ], + "spans": [ + { + "bbox": [ + 105, + 328, + 239, + 340 + ], + "score": 1.0, + "content": "network becomes deeper. When", + "type": "text" + }, + { + "bbox": [ + 239, + 329, + 272, + 339 + ], + "score": 0.88, + "content": "B \\gamma = 1", + "type": "inline_equation" + }, + { + "bbox": [ + 273, + 328, + 276, + 340 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 276, + 329, + 286, + 338 + ], + "score": 0.69, + "content": "\\Delta", + "type": "inline_equation" + }, + { + "bbox": [ + 286, + 328, + 368, + 340 + ], + "score": 1.0, + "content": "grows linearly with", + "type": "text" + }, + { + "bbox": [ + 369, + 329, + 376, + 338 + ], + "score": 0.78, + "content": "L", + "type": "inline_equation" + }, + { + "bbox": [ + 377, + 328, + 422, + 340 + ], + "score": 1.0, + "content": ", and when", + "type": "text" + }, + { + "bbox": [ + 422, + 328, + 455, + 339 + ], + "score": 0.92, + "content": "B \\gamma > 1", + "type": "inline_equation" + }, + { + "bbox": [ + 455, + 328, + 505, + 340 + ], + "score": 1.0, + "content": ", the growth", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 338, + 506, + 352 + ], + "spans": [ + { + "bbox": [ + 105, + 338, + 118, + 352 + ], + "score": 1.0, + "content": "of", + "type": "text" + }, + { + "bbox": [ + 118, + 339, + 128, + 349 + ], + "score": 0.81, + "content": "\\Delta", + "type": "inline_equation" + }, + { + "bbox": [ + 128, + 338, + 337, + 352 + ], + "score": 1.0, + "content": "becomes exponential. Thus, it is essential to keep", + "type": "text" + }, + { + "bbox": [ + 338, + 339, + 372, + 350 + ], + "score": 0.92, + "content": "B \\gamma < 1", + "type": "inline_equation" + }, + { + "bbox": [ + 373, + 338, + 506, + 352 + ], + "score": 1.0, + "content": "to achieve good approximation,", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 351, + 259, + 362 + ], + "spans": [ + { + "bbox": [ + 105, + 351, + 259, + 362 + ], + "score": 1.0, + "content": "particularly for deep neural networks.", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 19.5, + "bbox_fs": [ + 105, + 317, + 506, + 362 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 377, + 375, + 390 + ], + "lines": [ + { + "bbox": [ + 105, + 376, + 376, + 391 + ], + "spans": [ + { + "bbox": [ + 105, + 376, + 376, + 391 + ], + "score": 1.0, + "content": "5 EXPECTATION-LINEAR REGULARIZED DROPOUT", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 22 + }, + { + "type": "text", + "bbox": [ + 106, + 401, + 506, + 479 + ], + "lines": [ + { + "bbox": [ + 105, + 401, + 505, + 415 + ], + "spans": [ + { + "bbox": [ + 105, + 401, + 505, + 415 + ], + "score": 1.0, + "content": "In the previous section we have managed to bound the approximate expectation-linearity, hence the", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 106, + 413, + 506, + 425 + ], + "spans": [ + { + "bbox": [ + 106, + 413, + 506, + 425 + ], + "score": 1.0, + "content": "inference gap in (3), of dropout neural networks. In this section, we first prove a uniform deviation", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 106, + 424, + 506, + 437 + ], + "spans": [ + { + "bbox": [ + 106, + 424, + 506, + 437 + ], + "score": 1.0, + "content": "bound of the sampled approximate expectation-linearity measure from its mean, which motivates", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 106, + 435, + 505, + 447 + ], + "spans": [ + { + "bbox": [ + 106, + 435, + 505, + 447 + ], + "score": 1.0, + "content": "adding the sampled (hence computable) expectation-linearity measure as a regularization scheme to", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 106, + 446, + 506, + 458 + ], + "spans": [ + { + "bbox": [ + 106, + 446, + 506, + 458 + ], + "score": 1.0, + "content": "standard dropout, with the goal of explicitly controlling the inference gap of the learned parameter,", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 457, + 505, + 469 + ], + "spans": [ + { + "bbox": [ + 105, + 457, + 505, + 469 + ], + "score": 1.0, + "content": "hence potentially improving the performance. Then we give the upper bounds on the loss in accuracy", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 466, + 506, + 481 + ], + "spans": [ + { + "bbox": [ + 105, + 466, + 506, + 481 + ], + "score": 1.0, + "content": "due to expectation-linearization, and describe classes of distributions that expectation-linearize easily.", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 26, + "bbox_fs": [ + 105, + 401, + 506, + 481 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 491, + 496, + 504 + ], + "lines": [ + { + "bbox": [ + 105, + 491, + 498, + 505 + ], + "spans": [ + { + "bbox": [ + 105, + 491, + 498, + 505 + ], + "score": 1.0, + "content": "5.1 A UNIFORM DEVIATION BOUND FOR THE SAMPLED EXPECTATION-LINEAR MEASURE", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 30, + "bbox_fs": [ + 105, + 491, + 498, + 505 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 512, + 505, + 546 + ], + "lines": [ + { + "bbox": [ + 105, + 512, + 506, + 525 + ], + "spans": [ + { + "bbox": [ + 105, + 512, + 506, + 525 + ], + "score": 1.0, + "content": "We now show that an expectation-linear network can be found by expectation-linearizing the network", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 106, + 524, + 505, + 535 + ], + "spans": [ + { + "bbox": [ + 106, + 524, + 505, + 535 + ], + "score": 1.0, + "content": "on the training sample. To this end, we prove a uniform deviation bound between the empirical", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 535, + 462, + 547 + ], + "spans": [ + { + "bbox": [ + 105, + 535, + 462, + 547 + ], + "score": 1.0, + "content": "expectation-linearization measure using i.i.d. samples (Eq. (12)) and its mean (Eq. (13)).", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 32, + "bbox_fs": [ + 105, + 512, + 506, + 547 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 548, + 505, + 600 + ], + "lines": [ + { + "bbox": [ + 105, + 548, + 506, + 563 + ], + "spans": [ + { + "bbox": [ + 105, + 548, + 176, + 563 + ], + "score": 1.0, + "content": "Theorem 4. Let", + "type": "text" + }, + { + "bbox": [ + 176, + 548, + 294, + 563 + ], + "score": 0.92, + "content": "\\mathcal { H } = \\left\\{ \\mathbf { h } ^ { ( L ) } ( x , s ; \\theta ) : \\theta \\in \\Theta \\right\\}", + "type": "inline_equation" + }, + { + "bbox": [ + 294, + 548, + 369, + 563 + ], + "score": 1.0, + "content": "denote a space of", + "type": "text" + }, + { + "bbox": [ + 369, + 550, + 377, + 560 + ], + "score": 0.66, + "content": "L", + "type": "inline_equation" + }, + { + "bbox": [ + 377, + 548, + 506, + 563 + ], + "score": 1.0, + "content": "-layer dropout neural networks", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 561, + 506, + 576 + ], + "spans": [ + { + "bbox": [ + 105, + 561, + 159, + 576 + ], + "score": 1.0, + "content": "indexed with", + "type": "text" + }, + { + "bbox": [ + 159, + 564, + 164, + 573 + ], + "score": 0.73, + "content": "\\theta", + "type": "inline_equation" + }, + { + "bbox": [ + 165, + 561, + 194, + 576 + ], + "score": 1.0, + "content": ", where", + "type": "text" + }, + { + "bbox": [ + 195, + 563, + 274, + 574 + ], + "score": 0.79, + "content": "\\mathbf { h } ^ { ( L ) } : \\mathcal { X } \\times \\mathcal { S } \\mathcal { R }", + "type": "inline_equation" + }, + { + "bbox": [ + 275, + 561, + 293, + 576 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 293, + 563, + 302, + 573 + ], + "score": 0.78, + "content": "\\Theta", + "type": "inline_equation" + }, + { + "bbox": [ + 302, + 561, + 369, + 576 + ], + "score": 1.0, + "content": "is the space that", + "type": "text" + }, + { + "bbox": [ + 369, + 563, + 375, + 573 + ], + "score": 0.7, + "content": "\\theta", + "type": "inline_equation" + }, + { + "bbox": [ + 375, + 561, + 506, + 576 + ], + "score": 1.0, + "content": "lives in. Suppose that the neural", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 574, + 506, + 588 + ], + "spans": [ + { + "bbox": [ + 105, + 574, + 156, + 588 + ], + "score": 1.0, + "content": "networks in", + "type": "text" + }, + { + "bbox": [ + 156, + 576, + 166, + 585 + ], + "score": 0.81, + "content": "\\mathcal { H }", + "type": "inline_equation" + }, + { + "bbox": [ + 166, + 574, + 268, + 588 + ], + "score": 1.0, + "content": "satisfy the constraints: 1", + "type": "text" + }, + { + "bbox": [ + 268, + 575, + 433, + 587 + ], + "score": 0.79, + "content": ") \\forall x \\in \\mathcal { X } , \\| x \\| _ { 2 } \\leq \\alpha ; 2 ) \\forall l \\in \\{ 1 , \\ldots , L \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 433, + 574, + 436, + 588 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 436, + 574, + 486, + 587 + ], + "score": 0.86, + "content": "\\mathrm { E } ( \\Gamma ^ { ( l ) } ) \\le \\gamma", + "type": "inline_equation" + }, + { + "bbox": [ + 487, + 574, + 506, + 588 + ], + "score": 1.0, + "content": "and", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 107, + 586, + 507, + 601 + ], + "spans": [ + { + "bbox": [ + 107, + 586, + 228, + 600 + ], + "score": 0.73, + "content": "\\| \\nabla f _ { l } \\| _ { o p } \\leq B ; 3 ) \\| \\mathbf { h } ^ { ( L ) } \\| \\leq \\beta", + "type": "inline_equation" + }, + { + "bbox": [ + 228, + 586, + 507, + 601 + ], + "score": 1.0, + "content": ". Denote empirical expectation-linearization measure and its mean as:", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 35.5, + "bbox_fs": [ + 105, + 548, + 507, + 601 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 192, + 603, + 417, + 653 + ], + "lines": [ + { + "bbox": [ + 192, + 603, + 417, + 653 + ], + "spans": [ + { + "bbox": [ + 192, + 603, + 417, + 653 + ], + "score": 0.93, + "content": "\\begin{array} { l } { \\displaystyle \\hat { \\Delta } = \\frac { 1 } { n } \\sum _ { i = 1 } ^ { n } \\big \\| \\mathrm { E } _ { S _ { i } } \\big [ \\mathbf { H } ^ { ( L ) } ( X _ { i } , S _ { i } ; \\theta ) \\big ] - \\mathbf { h } ^ { ( L ) } ( X _ { i } , \\mathrm { E } [ S _ { i } ] ; \\theta ) \\big \\| _ { 2 } , } \\\\ { \\displaystyle \\Delta = \\mathrm { E } _ { X } \\Big [ \\big \\| \\mathrm { E } _ { S } \\big [ \\mathbf { H } ^ { ( L ) } ( X , S ; \\theta ) \\big ] - \\mathbf { h } ^ { ( L ) } ( X , \\mathrm { E } [ S ] ; \\theta ) \\big \\| _ { 2 } \\Big ] . } \\end{array}", + "type": "interline_equation", + "image_path": "e94e23d82460c5f4f17c181cf128771a414d820a025e55d729e807754c937c07.jpg" + } + ] + } + ], + "index": 39, + "virtual_lines": [ + { + "bbox": [ + 192, + 603, + 417, + 619.6666666666666 + ], + "spans": [], + "index": 38 + }, + { + "bbox": [ + 192, + 619.6666666666666, + 417, + 636.3333333333333 + ], + "spans": [], + "index": 39 + }, + { + "bbox": [ + 192, + 636.3333333333333, + 417, + 652.9999999999999 + ], + "spans": [], + "index": 40 + } + ] + }, + { + "type": "text", + "bbox": [ + 109, + 655, + 293, + 667 + ], + "lines": [ + { + "bbox": [ + 108, + 654, + 294, + 669 + ], + "spans": [ + { + "bbox": [ + 108, + 654, + 231, + 669 + ], + "score": 1.0, + "content": "Then, with probability at least", + "type": "text" + }, + { + "bbox": [ + 232, + 657, + 255, + 666 + ], + "score": 0.87, + "content": "1 - \\nu", + "type": "inline_equation" + }, + { + "bbox": [ + 256, + 654, + 294, + 669 + ], + "score": 1.0, + "content": ", we have", + "type": "text" + } + ], + "index": 41 + } + ], + "index": 41, + "bbox_fs": [ + 108, + 654, + 294, + 669 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 199, + 671, + 410, + 700 + ], + "lines": [ + { + "bbox": [ + 199, + 671, + 410, + 700 + ], + "spans": [ + { + "bbox": [ + 199, + 671, + 410, + 700 + ], + "score": 0.92, + "content": "\\operatorname* { s u p } _ { \\theta \\in \\Theta } | \\Delta - \\hat { \\Delta } | < \\frac { 2 \\alpha B ^ { L } ( \\gamma ^ { L / 2 } + 1 ) } { \\sqrt { n } } + \\beta \\sqrt { \\frac { \\log ( 1 / \\nu ) } { n } } .", + "type": "interline_equation", + "image_path": "fd78b1ca5baddc6db6bc317599e95e14b35ca6fe1e8aaaa42dc53d1feebf6027.jpg" + } + ] + } + ], + "index": 42.5, + "virtual_lines": [ + { + "bbox": [ + 199, + 671, + 410, + 685.5 + ], + "spans": [], + "index": 42 + }, + { + "bbox": [ + 199, + 685.5, + 410, + 700.0 + ], + "spans": [], + "index": 43 + } + ] + }, + { + "type": "text", + "bbox": [ + 108, + 709, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 709, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 106, + 709, + 505, + 722 + ], + "score": 1.0, + "content": "From Theorem 4 (proof in Appendix C.1) we observe that the deviation bound decreases exponentially", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 106, + 720, + 505, + 734 + ], + "spans": [ + { + "bbox": [ + 106, + 720, + 210, + 734 + ], + "score": 1.0, + "content": "with the number of layers", + "type": "text" + }, + { + "bbox": [ + 211, + 722, + 218, + 730 + ], + "score": 0.81, + "content": "L", + "type": "inline_equation" + }, + { + "bbox": [ + 219, + 720, + 505, + 734 + ], + "score": 1.0, + "content": "when the operator norm of the derivative of each layer’s transformation", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 105, + 81, + 505, + 95 + ], + "spans": [ + { + "bbox": [ + 105, + 81, + 143, + 95 + ], + "score": 1.0, + "content": "function", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 144, + 83, + 159, + 94 + ], + "score": 0.74, + "content": "( B )", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 160, + 81, + 299, + 95 + ], + "score": 1.0, + "content": "is less than 1 (and the contrary if", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 300, + 83, + 329, + 94 + ], + "score": 0.92, + "content": "B \\geq 1 ", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 330, + 81, + 505, + 95 + ], + "score": 1.0, + "content": "). Importantly, the square root dependence", + "type": "text", + "cross_page": true + } + ], + "index": 0 + }, + { + "bbox": [ + 106, + 93, + 505, + 106 + ], + "spans": [ + { + "bbox": [ + 106, + 93, + 217, + 106 + ], + "score": 1.0, + "content": "on the number of samples", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 217, + 94, + 231, + 105 + ], + "score": 0.73, + "content": "( n )", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 231, + 93, + 505, + 106 + ], + "score": 1.0, + "content": "is standard and cannot be improved without significantly stronger", + "type": "text", + "cross_page": true + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 105, + 161, + 117 + ], + "spans": [ + { + "bbox": [ + 105, + 105, + 161, + 117 + ], + "score": 1.0, + "content": "assumptions.", + "type": "text", + "cross_page": true + } + ], + "index": 2 + } + ], + "index": 44.5, + "bbox_fs": [ + 106, + 709, + 505, + 734 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 108, + 82, + 504, + 116 + ], + "lines": [ + { + "bbox": [ + 105, + 81, + 505, + 95 + ], + "spans": [ + { + "bbox": [ + 105, + 81, + 143, + 95 + ], + "score": 1.0, + "content": "function", + "type": "text" + }, + { + "bbox": [ + 144, + 83, + 159, + 94 + ], + "score": 0.74, + "content": "( B )", + "type": "inline_equation" + }, + { + "bbox": [ + 160, + 81, + 299, + 95 + ], + "score": 1.0, + "content": "is less than 1 (and the contrary if", + "type": "text" + }, + { + "bbox": [ + 300, + 83, + 329, + 94 + ], + "score": 0.92, + "content": "B \\geq 1 ", + "type": "inline_equation" + }, + { + "bbox": [ + 330, + 81, + 505, + 95 + ], + "score": 1.0, + "content": "). Importantly, the square root dependence", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 106, + 93, + 505, + 106 + ], + "spans": [ + { + "bbox": [ + 106, + 93, + 217, + 106 + ], + "score": 1.0, + "content": "on the number of samples", + "type": "text" + }, + { + "bbox": [ + 217, + 94, + 231, + 105 + ], + "score": 0.73, + "content": "( n )", + "type": "inline_equation" + }, + { + "bbox": [ + 231, + 93, + 505, + 106 + ], + "score": 1.0, + "content": "is standard and cannot be improved without significantly stronger", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 105, + 161, + 117 + ], + "spans": [ + { + "bbox": [ + 105, + 105, + 161, + 117 + ], + "score": 1.0, + "content": "assumptions.", + "type": "text" + } + ], + "index": 2 + } + ], + "index": 1 + }, + { + "type": "text", + "bbox": [ + 106, + 121, + 505, + 177 + ], + "lines": [ + { + "bbox": [ + 106, + 121, + 504, + 133 + ], + "spans": [ + { + "bbox": [ + 106, + 121, + 504, + 133 + ], + "score": 1.0, + "content": "It should be noted that Theorem 4 per se does not imply anything between expectation-linearization", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 106, + 132, + 504, + 144 + ], + "spans": [ + { + "bbox": [ + 106, + 132, + 504, + 144 + ], + "score": 1.0, + "content": "and the model accuracy (i.e. how well the expectation-linearized neural network actually achieves", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 143, + 505, + 156 + ], + "spans": [ + { + "bbox": [ + 105, + 143, + 383, + 156 + ], + "score": 1.0, + "content": "on modeling the data). Formally studying this relation is provided in", + "type": "text" + }, + { + "bbox": [ + 384, + 144, + 405, + 155 + ], + "score": 0.86, + "content": "\\ S 5 . 3", + "type": "inline_equation" + }, + { + "bbox": [ + 405, + 143, + 505, + 156 + ], + "score": 1.0, + "content": ". In addition, we provide", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 154, + 505, + 168 + ], + "spans": [ + { + "bbox": [ + 105, + 154, + 232, + 168 + ], + "score": 1.0, + "content": "some experimental evidences in", + "type": "text" + }, + { + "bbox": [ + 233, + 154, + 247, + 165 + ], + "score": 0.85, + "content": "\\ S 6", + "type": "inline_equation" + }, + { + "bbox": [ + 247, + 154, + 505, + 168 + ], + "score": 1.0, + "content": "on how improved approximate expectation-linearity (equivalently", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 106, + 165, + 372, + 179 + ], + "spans": [ + { + "bbox": [ + 106, + 165, + 372, + 179 + ], + "score": 1.0, + "content": "smaller inference gap) does lead to better empirical performances.", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 5 + }, + { + "type": "title", + "bbox": [ + 106, + 189, + 358, + 200 + ], + "lines": [ + { + "bbox": [ + 105, + 188, + 359, + 203 + ], + "spans": [ + { + "bbox": [ + 105, + 188, + 359, + 203 + ], + "score": 1.0, + "content": "5.2 EXPECTATION-LINEARIZATION AS REGULARIZATION", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 8 + }, + { + "type": "text", + "bbox": [ + 107, + 209, + 506, + 243 + ], + "lines": [ + { + "bbox": [ + 105, + 208, + 506, + 223 + ], + "spans": [ + { + "bbox": [ + 105, + 208, + 506, + 223 + ], + "score": 1.0, + "content": "The uniform deviation bound in Theorem 4 motivates the possibility of obtaining an approximately", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 106, + 222, + 507, + 234 + ], + "spans": [ + { + "bbox": [ + 106, + 222, + 507, + 234 + ], + "score": 1.0, + "content": "expectation-linear dropout neural networks through adding the empirical measure (12) as a regular-", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 106, + 232, + 384, + 244 + ], + "spans": [ + { + "bbox": [ + 106, + 232, + 384, + 244 + ], + "score": 1.0, + "content": "ization scheme to the standard dropout training objective, as follows:", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 10 + }, + { + "type": "interline_equation", + "bbox": [ + 231, + 245, + 380, + 258 + ], + "lines": [ + { + "bbox": [ + 231, + 245, + 380, + 258 + ], + "spans": [ + { + "bbox": [ + 231, + 245, + 380, + 258 + ], + "score": 0.92, + "content": "l o s s ( D ; \\theta ) = - l ( D ; \\theta ) + \\lambda V ( D ; \\theta ) ,", + "type": "interline_equation", + "image_path": "2fe41bbe5146298942d0f6462657a019d1ec625d6a3406d799eb2315d14cd083.jpg" + } + ] + } + ], + "index": 12, + "virtual_lines": [ + { + "bbox": [ + 231, + 245, + 380, + 258 + ], + "spans": [], + "index": 12 + } + ] + }, + { + "type": "text", + "bbox": [ + 105, + 260, + 505, + 283 + ], + "lines": [ + { + "bbox": [ + 105, + 259, + 506, + 274 + ], + "spans": [ + { + "bbox": [ + 105, + 259, + 133, + 274 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 134, + 260, + 171, + 272 + ], + "score": 0.92, + "content": "- l ( D ; \\theta )", + "type": "inline_equation" + }, + { + "bbox": [ + 171, + 259, + 366, + 274 + ], + "score": 1.0, + "content": "is the negative log-likelihood defined in Eq. (5),", + "type": "text" + }, + { + "bbox": [ + 367, + 261, + 392, + 271 + ], + "score": 0.88, + "content": "\\lambda > 0", + "type": "inline_equation" + }, + { + "bbox": [ + 393, + 259, + 506, + 274 + ], + "score": 1.0, + "content": "is a regularization constant,", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 106, + 271, + 385, + 284 + ], + "spans": [ + { + "bbox": [ + 106, + 271, + 123, + 284 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 124, + 272, + 158, + 283 + ], + "score": 0.92, + "content": "V ( D ; \\theta )", + "type": "inline_equation" + }, + { + "bbox": [ + 158, + 271, + 385, + 284 + ], + "score": 1.0, + "content": "measures the level of approximate expectation-linearity:", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 13.5 + }, + { + "type": "interline_equation", + "bbox": [ + 173, + 284, + 438, + 319 + ], + "lines": [ + { + "bbox": [ + 173, + 284, + 438, + 319 + ], + "spans": [ + { + "bbox": [ + 173, + 284, + 438, + 319 + ], + "score": 0.94, + "content": "V ( D ; \\theta ) = \\frac { 1 } { N } \\sum _ { i = 1 } ^ { N } \\big \\| \\mathrm { E } _ { S _ { i } } \\big [ \\mathbf { H } ^ { ( L ) } ( x _ { i } , S _ { i } ; \\theta ) \\big ] - \\mathbf { h } ^ { ( L ) } ( x _ { i } , \\mathrm { E } [ S _ { i } ] ; \\theta ) \\big \\| _ { 2 } ^ { 2 } .", + "type": "interline_equation", + "image_path": "628a8dc47eaefe0b5f120b3c22b7891b14e13af5bd491df137fd49fcaa984d83.jpg" + } + ] + } + ], + "index": 16, + "virtual_lines": [ + { + "bbox": [ + 173, + 284, + 438, + 295.6666666666667 + ], + "spans": [], + "index": 15 + }, + { + "bbox": [ + 173, + 295.6666666666667, + 438, + 307.33333333333337 + ], + "spans": [], + "index": 16 + }, + { + "bbox": [ + 173, + 307.33333333333337, + 438, + 319.00000000000006 + ], + "spans": [], + "index": 17 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 320, + 504, + 343 + ], + "lines": [ + { + "bbox": [ + 105, + 318, + 506, + 334 + ], + "spans": [ + { + "bbox": [ + 105, + 318, + 238, + 334 + ], + "score": 1.0, + "content": "To solve (15), we can minimize", + "type": "text" + }, + { + "bbox": [ + 238, + 321, + 282, + 333 + ], + "score": 0.91, + "content": "l o s s ( D ; \\theta )", + "type": "inline_equation" + }, + { + "bbox": [ + 282, + 318, + 506, + 334 + ], + "score": 1.0, + "content": "via stochastic gradient descent as in standard dropout,", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 106, + 331, + 289, + 344 + ], + "spans": [ + { + "bbox": [ + 106, + 331, + 176, + 344 + ], + "score": 1.0, + "content": "and approximate", + "type": "text" + }, + { + "bbox": [ + 176, + 332, + 210, + 344 + ], + "score": 0.93, + "content": "V ( D ; \\theta )", + "type": "inline_equation" + }, + { + "bbox": [ + 210, + 331, + 289, + 344 + ], + "score": 1.0, + "content": "using Monte carlo:", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 18.5 + }, + { + "type": "interline_equation", + "bbox": [ + 186, + 345, + 424, + 379 + ], + "lines": [ + { + "bbox": [ + 186, + 345, + 424, + 379 + ], + "spans": [ + { + "bbox": [ + 186, + 345, + 424, + 379 + ], + "score": 0.94, + "content": "V ( D ; \\theta ) \\approx \\frac { 1 } { N } \\sum _ { i = 1 } ^ { N } \\big \\| \\mathbf { h } ^ { ( L ) } ( x _ { i } , s _ { i } ; \\theta ) - \\mathbf { h } ^ { ( L ) } ( x _ { i } , \\mathrm { E } [ S _ { i } ] ; \\theta ) \\big \\| _ { 2 } ^ { 2 } ,", + "type": "interline_equation", + "image_path": "0d97fad7b90fc7032740b84d3223ad873ed399fbcf7799a37354b6c99dbb2086.jpg" + } + ] + } + ], + "index": 20.5, + "virtual_lines": [ + { + "bbox": [ + 186, + 345, + 424, + 362.0 + ], + "spans": [], + "index": 20 + }, + { + "bbox": [ + 186, + 362.0, + 424, + 379.0 + ], + "spans": [], + "index": 21 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 380, + 506, + 427 + ], + "lines": [ + { + "bbox": [ + 105, + 380, + 507, + 394 + ], + "spans": [ + { + "bbox": [ + 105, + 380, + 133, + 394 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 133, + 382, + 142, + 392 + ], + "score": 0.85, + "content": "s _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 143, + 380, + 278, + 394 + ], + "score": 1.0, + "content": "is the same dropout sample as in", + "type": "text" + }, + { + "bbox": [ + 278, + 381, + 307, + 393 + ], + "score": 0.92, + "content": "l ( D ; \\theta )", + "type": "inline_equation" + }, + { + "bbox": [ + 308, + 380, + 507, + 394 + ], + "score": 1.0, + "content": "for each training instance in a mini-batch. Thus,", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 391, + 506, + 406 + ], + "spans": [ + { + "bbox": [ + 105, + 391, + 396, + 406 + ], + "score": 1.0, + "content": "the only additional computational cost comes from the deterministic term", + "type": "text" + }, + { + "bbox": [ + 396, + 392, + 468, + 405 + ], + "score": 0.91, + "content": "\\mathbf { h } ^ { ( L ) } ( x _ { i } , \\mathrm { E } [ S _ { i } ] ; \\theta )", + "type": "inline_equation" + }, + { + "bbox": [ + 468, + 391, + 506, + 406 + ], + "score": 1.0, + "content": ". Overall,", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 404, + 506, + 417 + ], + "spans": [ + { + "bbox": [ + 105, + 404, + 506, + 417 + ], + "score": 1.0, + "content": "our regularized dropout (15), in its Monte carlo approximate form, is as simple and efficient as the", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 106, + 416, + 178, + 427 + ], + "spans": [ + { + "bbox": [ + 106, + 416, + 178, + 427 + ], + "score": 1.0, + "content": "standard dropout.", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 23.5 + }, + { + "type": "title", + "bbox": [ + 107, + 438, + 388, + 451 + ], + "lines": [ + { + "bbox": [ + 105, + 438, + 389, + 452 + ], + "spans": [ + { + "bbox": [ + 105, + 438, + 389, + 452 + ], + "score": 1.0, + "content": "5.3 ON THE ACCURACY OF EXPECTATION-LINEARIZED MODELS", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 26 + }, + { + "type": "text", + "bbox": [ + 107, + 459, + 506, + 504 + ], + "lines": [ + { + "bbox": [ + 105, + 460, + 506, + 473 + ], + "spans": [ + { + "bbox": [ + 105, + 460, + 506, + 473 + ], + "score": 1.0, + "content": "So far our discussion has concentrated on the problem of finding expectation-linear neural network", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 106, + 471, + 506, + 483 + ], + "spans": [ + { + "bbox": [ + 106, + 471, + 506, + 483 + ], + "score": 1.0, + "content": "models, without any concerns on how well they actually perform at modeling the data. In this section,", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 481, + 507, + 495 + ], + "spans": [ + { + "bbox": [ + 105, + 481, + 507, + 495 + ], + "score": 1.0, + "content": "we characterize the trade-off between maximizing “data likelihood” and satisfying an expectation-", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 106, + 493, + 202, + 504 + ], + "spans": [ + { + "bbox": [ + 106, + 493, + 202, + 504 + ], + "score": 1.0, + "content": "linearization constraint.", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 28.5 + }, + { + "type": "text", + "bbox": [ + 107, + 509, + 506, + 543 + ], + "lines": [ + { + "bbox": [ + 105, + 509, + 505, + 522 + ], + "spans": [ + { + "bbox": [ + 105, + 509, + 505, + 522 + ], + "score": 1.0, + "content": "To achieve the characterization, we measure the likelihood gap between the classical maximum", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 520, + 506, + 533 + ], + "spans": [ + { + "bbox": [ + 105, + 520, + 506, + 533 + ], + "score": 1.0, + "content": "likelihood estimator (MLE) and the MLE subject to a expectation-linearization constraint. Formally,", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 532, + 349, + 544 + ], + "spans": [ + { + "bbox": [ + 105, + 532, + 183, + 544 + ], + "score": 1.0, + "content": "given training data", + "type": "text" + }, + { + "bbox": [ + 184, + 532, + 304, + 543 + ], + "score": 0.9, + "content": "D = \\{ ( x _ { 1 } , y _ { 1 } ) , \\dotsc , ( x _ { n } , y _ { n } ) \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 304, + 532, + 349, + 544 + ], + "score": 1.0, + "content": ", we define", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 32 + }, + { + "type": "interline_equation", + "bbox": [ + 247, + 545, + 365, + 592 + ], + "lines": [ + { + "bbox": [ + 247, + 545, + 365, + 592 + ], + "spans": [ + { + "bbox": [ + 247, + 545, + 365, + 592 + ], + "score": 0.87, + "content": "\\begin{array} { r l } { \\hat { \\theta } = } & { \\underset { \\theta \\in \\Theta } { \\mathrm { a r g m i n } } \\quad - l ( D ; \\theta ) } \\\\ { \\hat { \\theta } _ { \\delta } = } & { \\underset { \\theta \\in \\Theta , V ( D ; \\theta ) \\leq \\delta } { \\mathrm { a r g m i n } } - l ( D ; \\theta ) } \\end{array}", + "type": "interline_equation", + "image_path": "78c1dfcc518d011061d4ade782173fbd6731c11ea0500d1eca9b8c008f74ff00.jpg" + } + ] + } + ], + "index": 34.5, + "virtual_lines": [ + { + "bbox": [ + 247, + 545, + 365, + 568.5 + ], + "spans": [], + "index": 34 + }, + { + "bbox": [ + 247, + 568.5, + 365, + 592.0 + ], + "spans": [], + "index": 35 + } + ] + }, + { + "type": "text", + "bbox": [ + 108, + 594, + 505, + 617 + ], + "lines": [ + { + "bbox": [ + 106, + 594, + 506, + 607 + ], + "spans": [ + { + "bbox": [ + 106, + 594, + 133, + 607 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 133, + 594, + 170, + 606 + ], + "score": 0.93, + "content": "- l ( D ; \\theta )", + "type": "inline_equation" + }, + { + "bbox": [ + 171, + 594, + 379, + 607 + ], + "score": 1.0, + "content": "is the negative log-likelihood defined in Eq. (5), and", + "type": "text" + }, + { + "bbox": [ + 380, + 594, + 414, + 606 + ], + "score": 0.93, + "content": "V ( D ; \\theta )", + "type": "inline_equation" + }, + { + "bbox": [ + 414, + 594, + 506, + 607 + ], + "score": 1.0, + "content": "is the level of approxi-", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 106, + 605, + 261, + 619 + ], + "spans": [ + { + "bbox": [ + 106, + 605, + 261, + 619 + ], + "score": 1.0, + "content": "mate expectation-linearity in Eq. (16).", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 36.5 + }, + { + "type": "text", + "bbox": [ + 107, + 622, + 504, + 643 + ], + "lines": [ + { + "bbox": [ + 105, + 621, + 505, + 636 + ], + "spans": [ + { + "bbox": [ + 105, + 621, + 505, + 636 + ], + "score": 1.0, + "content": "We would like to control the loss of model accuracy by obtaining a bound on the likelihood gap", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 632, + 153, + 646 + ], + "spans": [ + { + "bbox": [ + 105, + 632, + 153, + 646 + ], + "score": 1.0, + "content": "defined as:", + "type": "text" + } + ], + "index": 39 + } + ], + "index": 38.5 + }, + { + "type": "interline_equation", + "bbox": [ + 234, + 641, + 377, + 664 + ], + "lines": [ + { + "bbox": [ + 234, + 641, + 377, + 664 + ], + "spans": [ + { + "bbox": [ + 234, + 641, + 377, + 664 + ], + "score": 0.95, + "content": "\\Delta _ { l } ( \\hat { \\theta } , \\hat { \\theta } _ { \\delta } ) = \\frac { 1 } { n } ( l ( D ; \\hat { \\theta } ) - l ( D ; \\hat { \\theta } _ { \\delta } ) )", + "type": "interline_equation", + "image_path": "d2429883a542162566fed0a788d74d4bc29ce3f8d8aca6fff95739c4ff90e591.jpg" + } + ] + } + ], + "index": 40, + "virtual_lines": [ + { + "bbox": [ + 234, + 641, + 377, + 664 + ], + "spans": [], + "index": 40 + } + ] + }, + { + "type": "text", + "bbox": [ + 108, + 664, + 487, + 676 + ], + "lines": [ + { + "bbox": [ + 105, + 663, + 488, + 677 + ], + "spans": [ + { + "bbox": [ + 105, + 663, + 488, + 677 + ], + "score": 1.0, + "content": "In the following, we focus on neural networks with softmax output layer for classification tasks.", + "type": "text" + } + ], + "index": 41 + } + ], + "index": 41 + }, + { + "type": "interline_equation", + "bbox": [ + 155, + 676, + 453, + 719 + ], + "lines": [ + { + "bbox": [ + 155, + 676, + 453, + 719 + ], + "spans": [ + { + "bbox": [ + 155, + 676, + 453, + 719 + ], + "score": 0.93, + "content": "p ( \\boldsymbol { y } | \\boldsymbol { x } , s ; \\theta ) = \\mathbf { h } _ { \\boldsymbol { y } } ^ { ( L ) } ( \\boldsymbol { x } , s ; \\theta ) = f _ { L } \\big ( \\mathbf { h } ^ { ( L - 1 ) } ( \\boldsymbol { x } , s ) ; \\eta \\big ) = \\frac { e ^ { \\eta _ { \\boldsymbol { y } } ^ { T } \\mathbf { h } ^ { ( L - 1 ) } ( \\boldsymbol { x } , s ) } } { \\displaystyle \\sum _ { \\boldsymbol { y ^ { \\prime } } \\in \\boldsymbol { y } } e ^ { \\eta _ { \\boldsymbol { y ^ { \\prime } } } ^ { T } \\mathbf { h } ^ { ( L - 1 ) } ( \\boldsymbol { x } , s ) } }", + "type": "interline_equation", + "image_path": "b912baf9528084078f933a3840f2f9b16079616382c40f8361ab3f95c33a9efe.jpg" + } + ] + } + ], + "index": 43, + "virtual_lines": [ + { + "bbox": [ + 155, + 676, + 453, + 690.3333333333334 + ], + "spans": [], + "index": 42 + }, + { + "bbox": [ + 155, + 690.3333333333334, + 453, + 704.6666666666667 + ], + "spans": [], + "index": 43 + }, + { + "bbox": [ + 155, + 704.6666666666667, + 453, + 719.0000000000001 + ], + "spans": [], + "index": 44 + } + ] + }, + { + "type": "text", + "bbox": [ + 105, + 720, + 430, + 734 + ], + "lines": [ + { + "bbox": [ + 105, + 718, + 431, + 735 + ], + "spans": [ + { + "bbox": [ + 105, + 718, + 133, + 735 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 133, + 720, + 293, + 733 + ], + "score": 0.76, + "content": "\\boldsymbol { \\theta } = \\{ \\theta _ { 1 } , \\ldots , \\theta _ { L - 1 } , \\eta \\} , \\mathcal { V } = \\{ 1 , \\ldots , k \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 293, + 718, + 311, + 735 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 311, + 720, + 383, + 733 + ], + "score": 0.92, + "content": "\\eta = \\{ \\eta _ { y } : y \\in \\mathcal { V } \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 383, + 718, + 431, + 735 + ], + "score": 1.0, + "content": ". We claim:", + "type": "text" + } + ], + "index": 45 + } + ], + "index": 45 + } + ], + "page_idx": 6, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 108, + 27, + 293, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 26, + 293, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 26, + 293, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2017", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 302, + 751, + 308, + 759 + ], + "lines": [ + { + "bbox": [ + 302, + 750, + 309, + 762 + ], + "spans": [ + { + "bbox": [ + 302, + 750, + 309, + 762 + ], + "score": 1.0, + "content": "7", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 108, + 82, + 504, + 116 + ], + "lines": [], + "index": 1, + "bbox_fs": [ + 105, + 81, + 505, + 117 + ], + "lines_deleted": true + }, + { + "type": "text", + "bbox": [ + 106, + 121, + 505, + 177 + ], + "lines": [ + { + "bbox": [ + 106, + 121, + 504, + 133 + ], + "spans": [ + { + "bbox": [ + 106, + 121, + 504, + 133 + ], + "score": 1.0, + "content": "It should be noted that Theorem 4 per se does not imply anything between expectation-linearization", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 106, + 132, + 504, + 144 + ], + "spans": [ + { + "bbox": [ + 106, + 132, + 504, + 144 + ], + "score": 1.0, + "content": "and the model accuracy (i.e. how well the expectation-linearized neural network actually achieves", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 143, + 505, + 156 + ], + "spans": [ + { + "bbox": [ + 105, + 143, + 383, + 156 + ], + "score": 1.0, + "content": "on modeling the data). Formally studying this relation is provided in", + "type": "text" + }, + { + "bbox": [ + 384, + 144, + 405, + 155 + ], + "score": 0.86, + "content": "\\ S 5 . 3", + "type": "inline_equation" + }, + { + "bbox": [ + 405, + 143, + 505, + 156 + ], + "score": 1.0, + "content": ". In addition, we provide", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 154, + 505, + 168 + ], + "spans": [ + { + "bbox": [ + 105, + 154, + 232, + 168 + ], + "score": 1.0, + "content": "some experimental evidences in", + "type": "text" + }, + { + "bbox": [ + 233, + 154, + 247, + 165 + ], + "score": 0.85, + "content": "\\ S 6", + "type": "inline_equation" + }, + { + "bbox": [ + 247, + 154, + 505, + 168 + ], + "score": 1.0, + "content": "on how improved approximate expectation-linearity (equivalently", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 106, + 165, + 372, + 179 + ], + "spans": [ + { + "bbox": [ + 106, + 165, + 372, + 179 + ], + "score": 1.0, + "content": "smaller inference gap) does lead to better empirical performances.", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 5, + "bbox_fs": [ + 105, + 121, + 505, + 179 + ] + }, + { + "type": "title", + "bbox": [ + 106, + 189, + 358, + 200 + ], + "lines": [ + { + "bbox": [ + 105, + 188, + 359, + 203 + ], + "spans": [ + { + "bbox": [ + 105, + 188, + 359, + 203 + ], + "score": 1.0, + "content": "5.2 EXPECTATION-LINEARIZATION AS REGULARIZATION", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 8 + }, + { + "type": "text", + "bbox": [ + 107, + 209, + 506, + 243 + ], + "lines": [ + { + "bbox": [ + 105, + 208, + 506, + 223 + ], + "spans": [ + { + "bbox": [ + 105, + 208, + 506, + 223 + ], + "score": 1.0, + "content": "The uniform deviation bound in Theorem 4 motivates the possibility of obtaining an approximately", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 106, + 222, + 507, + 234 + ], + "spans": [ + { + "bbox": [ + 106, + 222, + 507, + 234 + ], + "score": 1.0, + "content": "expectation-linear dropout neural networks through adding the empirical measure (12) as a regular-", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 106, + 232, + 384, + 244 + ], + "spans": [ + { + "bbox": [ + 106, + 232, + 384, + 244 + ], + "score": 1.0, + "content": "ization scheme to the standard dropout training objective, as follows:", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 10, + "bbox_fs": [ + 105, + 208, + 507, + 244 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 231, + 245, + 380, + 258 + ], + "lines": [ + { + "bbox": [ + 231, + 245, + 380, + 258 + ], + "spans": [ + { + "bbox": [ + 231, + 245, + 380, + 258 + ], + "score": 0.92, + "content": "l o s s ( D ; \\theta ) = - l ( D ; \\theta ) + \\lambda V ( D ; \\theta ) ,", + "type": "interline_equation", + "image_path": "2fe41bbe5146298942d0f6462657a019d1ec625d6a3406d799eb2315d14cd083.jpg" + } + ] + } + ], + "index": 12, + "virtual_lines": [ + { + "bbox": [ + 231, + 245, + 380, + 258 + ], + "spans": [], + "index": 12 + } + ] + }, + { + "type": "text", + "bbox": [ + 105, + 260, + 505, + 283 + ], + "lines": [ + { + "bbox": [ + 105, + 259, + 506, + 274 + ], + "spans": [ + { + "bbox": [ + 105, + 259, + 133, + 274 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 134, + 260, + 171, + 272 + ], + "score": 0.92, + "content": "- l ( D ; \\theta )", + "type": "inline_equation" + }, + { + "bbox": [ + 171, + 259, + 366, + 274 + ], + "score": 1.0, + "content": "is the negative log-likelihood defined in Eq. (5),", + "type": "text" + }, + { + "bbox": [ + 367, + 261, + 392, + 271 + ], + "score": 0.88, + "content": "\\lambda > 0", + "type": "inline_equation" + }, + { + "bbox": [ + 393, + 259, + 506, + 274 + ], + "score": 1.0, + "content": "is a regularization constant,", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 106, + 271, + 385, + 284 + ], + "spans": [ + { + "bbox": [ + 106, + 271, + 123, + 284 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 124, + 272, + 158, + 283 + ], + "score": 0.92, + "content": "V ( D ; \\theta )", + "type": "inline_equation" + }, + { + "bbox": [ + 158, + 271, + 385, + 284 + ], + "score": 1.0, + "content": "measures the level of approximate expectation-linearity:", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 13.5, + "bbox_fs": [ + 105, + 259, + 506, + 284 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 173, + 284, + 438, + 319 + ], + "lines": [ + { + "bbox": [ + 173, + 284, + 438, + 319 + ], + "spans": [ + { + "bbox": [ + 173, + 284, + 438, + 319 + ], + "score": 0.94, + "content": "V ( D ; \\theta ) = \\frac { 1 } { N } \\sum _ { i = 1 } ^ { N } \\big \\| \\mathrm { E } _ { S _ { i } } \\big [ \\mathbf { H } ^ { ( L ) } ( x _ { i } , S _ { i } ; \\theta ) \\big ] - \\mathbf { h } ^ { ( L ) } ( x _ { i } , \\mathrm { E } [ S _ { i } ] ; \\theta ) \\big \\| _ { 2 } ^ { 2 } .", + "type": "interline_equation", + "image_path": "628a8dc47eaefe0b5f120b3c22b7891b14e13af5bd491df137fd49fcaa984d83.jpg" + } + ] + } + ], + "index": 16, + "virtual_lines": [ + { + "bbox": [ + 173, + 284, + 438, + 295.6666666666667 + ], + "spans": [], + "index": 15 + }, + { + "bbox": [ + 173, + 295.6666666666667, + 438, + 307.33333333333337 + ], + "spans": [], + "index": 16 + }, + { + "bbox": [ + 173, + 307.33333333333337, + 438, + 319.00000000000006 + ], + "spans": [], + "index": 17 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 320, + 504, + 343 + ], + "lines": [ + { + "bbox": [ + 105, + 318, + 506, + 334 + ], + "spans": [ + { + "bbox": [ + 105, + 318, + 238, + 334 + ], + "score": 1.0, + "content": "To solve (15), we can minimize", + "type": "text" + }, + { + "bbox": [ + 238, + 321, + 282, + 333 + ], + "score": 0.91, + "content": "l o s s ( D ; \\theta )", + "type": "inline_equation" + }, + { + "bbox": [ + 282, + 318, + 506, + 334 + ], + "score": 1.0, + "content": "via stochastic gradient descent as in standard dropout,", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 106, + 331, + 289, + 344 + ], + "spans": [ + { + "bbox": [ + 106, + 331, + 176, + 344 + ], + "score": 1.0, + "content": "and approximate", + "type": "text" + }, + { + "bbox": [ + 176, + 332, + 210, + 344 + ], + "score": 0.93, + "content": "V ( D ; \\theta )", + "type": "inline_equation" + }, + { + "bbox": [ + 210, + 331, + 289, + 344 + ], + "score": 1.0, + "content": "using Monte carlo:", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 18.5, + "bbox_fs": [ + 105, + 318, + 506, + 344 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 186, + 345, + 424, + 379 + ], + "lines": [ + { + "bbox": [ + 186, + 345, + 424, + 379 + ], + "spans": [ + { + "bbox": [ + 186, + 345, + 424, + 379 + ], + "score": 0.94, + "content": "V ( D ; \\theta ) \\approx \\frac { 1 } { N } \\sum _ { i = 1 } ^ { N } \\big \\| \\mathbf { h } ^ { ( L ) } ( x _ { i } , s _ { i } ; \\theta ) - \\mathbf { h } ^ { ( L ) } ( x _ { i } , \\mathrm { E } [ S _ { i } ] ; \\theta ) \\big \\| _ { 2 } ^ { 2 } ,", + "type": "interline_equation", + "image_path": "0d97fad7b90fc7032740b84d3223ad873ed399fbcf7799a37354b6c99dbb2086.jpg" + } + ] + } + ], + "index": 20.5, + "virtual_lines": [ + { + "bbox": [ + 186, + 345, + 424, + 362.0 + ], + "spans": [], + "index": 20 + }, + { + "bbox": [ + 186, + 362.0, + 424, + 379.0 + ], + "spans": [], + "index": 21 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 380, + 506, + 427 + ], + "lines": [ + { + "bbox": [ + 105, + 380, + 507, + 394 + ], + "spans": [ + { + "bbox": [ + 105, + 380, + 133, + 394 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 133, + 382, + 142, + 392 + ], + "score": 0.85, + "content": "s _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 143, + 380, + 278, + 394 + ], + "score": 1.0, + "content": "is the same dropout sample as in", + "type": "text" + }, + { + "bbox": [ + 278, + 381, + 307, + 393 + ], + "score": 0.92, + "content": "l ( D ; \\theta )", + "type": "inline_equation" + }, + { + "bbox": [ + 308, + 380, + 507, + 394 + ], + "score": 1.0, + "content": "for each training instance in a mini-batch. Thus,", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 391, + 506, + 406 + ], + "spans": [ + { + "bbox": [ + 105, + 391, + 396, + 406 + ], + "score": 1.0, + "content": "the only additional computational cost comes from the deterministic term", + "type": "text" + }, + { + "bbox": [ + 396, + 392, + 468, + 405 + ], + "score": 0.91, + "content": "\\mathbf { h } ^ { ( L ) } ( x _ { i } , \\mathrm { E } [ S _ { i } ] ; \\theta )", + "type": "inline_equation" + }, + { + "bbox": [ + 468, + 391, + 506, + 406 + ], + "score": 1.0, + "content": ". Overall,", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 404, + 506, + 417 + ], + "spans": [ + { + "bbox": [ + 105, + 404, + 506, + 417 + ], + "score": 1.0, + "content": "our regularized dropout (15), in its Monte carlo approximate form, is as simple and efficient as the", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 106, + 416, + 178, + 427 + ], + "spans": [ + { + "bbox": [ + 106, + 416, + 178, + 427 + ], + "score": 1.0, + "content": "standard dropout.", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 23.5, + "bbox_fs": [ + 105, + 380, + 507, + 427 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 438, + 388, + 451 + ], + "lines": [ + { + "bbox": [ + 105, + 438, + 389, + 452 + ], + "spans": [ + { + "bbox": [ + 105, + 438, + 389, + 452 + ], + "score": 1.0, + "content": "5.3 ON THE ACCURACY OF EXPECTATION-LINEARIZED MODELS", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 26 + }, + { + "type": "text", + "bbox": [ + 107, + 459, + 506, + 504 + ], + "lines": [ + { + "bbox": [ + 105, + 460, + 506, + 473 + ], + "spans": [ + { + "bbox": [ + 105, + 460, + 506, + 473 + ], + "score": 1.0, + "content": "So far our discussion has concentrated on the problem of finding expectation-linear neural network", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 106, + 471, + 506, + 483 + ], + "spans": [ + { + "bbox": [ + 106, + 471, + 506, + 483 + ], + "score": 1.0, + "content": "models, without any concerns on how well they actually perform at modeling the data. In this section,", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 481, + 507, + 495 + ], + "spans": [ + { + "bbox": [ + 105, + 481, + 507, + 495 + ], + "score": 1.0, + "content": "we characterize the trade-off between maximizing “data likelihood” and satisfying an expectation-", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 106, + 493, + 202, + 504 + ], + "spans": [ + { + "bbox": [ + 106, + 493, + 202, + 504 + ], + "score": 1.0, + "content": "linearization constraint.", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 28.5, + "bbox_fs": [ + 105, + 460, + 507, + 504 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 509, + 506, + 543 + ], + "lines": [ + { + "bbox": [ + 105, + 509, + 505, + 522 + ], + "spans": [ + { + "bbox": [ + 105, + 509, + 505, + 522 + ], + "score": 1.0, + "content": "To achieve the characterization, we measure the likelihood gap between the classical maximum", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 520, + 506, + 533 + ], + "spans": [ + { + "bbox": [ + 105, + 520, + 506, + 533 + ], + "score": 1.0, + "content": "likelihood estimator (MLE) and the MLE subject to a expectation-linearization constraint. Formally,", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 532, + 349, + 544 + ], + "spans": [ + { + "bbox": [ + 105, + 532, + 183, + 544 + ], + "score": 1.0, + "content": "given training data", + "type": "text" + }, + { + "bbox": [ + 184, + 532, + 304, + 543 + ], + "score": 0.9, + "content": "D = \\{ ( x _ { 1 } , y _ { 1 } ) , \\dotsc , ( x _ { n } , y _ { n } ) \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 304, + 532, + 349, + 544 + ], + "score": 1.0, + "content": ", we define", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 32, + "bbox_fs": [ + 105, + 509, + 506, + 544 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 247, + 545, + 365, + 592 + ], + "lines": [ + { + "bbox": [ + 247, + 545, + 365, + 592 + ], + "spans": [ + { + "bbox": [ + 247, + 545, + 365, + 592 + ], + "score": 0.87, + "content": "\\begin{array} { r l } { \\hat { \\theta } = } & { \\underset { \\theta \\in \\Theta } { \\mathrm { a r g m i n } } \\quad - l ( D ; \\theta ) } \\\\ { \\hat { \\theta } _ { \\delta } = } & { \\underset { \\theta \\in \\Theta , V ( D ; \\theta ) \\leq \\delta } { \\mathrm { a r g m i n } } - l ( D ; \\theta ) } \\end{array}", + "type": "interline_equation", + "image_path": "78c1dfcc518d011061d4ade782173fbd6731c11ea0500d1eca9b8c008f74ff00.jpg" + } + ] + } + ], + "index": 34.5, + "virtual_lines": [ + { + "bbox": [ + 247, + 545, + 365, + 568.5 + ], + "spans": [], + "index": 34 + }, + { + "bbox": [ + 247, + 568.5, + 365, + 592.0 + ], + "spans": [], + "index": 35 + } + ] + }, + { + "type": "text", + "bbox": [ + 108, + 594, + 505, + 617 + ], + "lines": [ + { + "bbox": [ + 106, + 594, + 506, + 607 + ], + "spans": [ + { + "bbox": [ + 106, + 594, + 133, + 607 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 133, + 594, + 170, + 606 + ], + "score": 0.93, + "content": "- l ( D ; \\theta )", + "type": "inline_equation" + }, + { + "bbox": [ + 171, + 594, + 379, + 607 + ], + "score": 1.0, + "content": "is the negative log-likelihood defined in Eq. (5), and", + "type": "text" + }, + { + "bbox": [ + 380, + 594, + 414, + 606 + ], + "score": 0.93, + "content": "V ( D ; \\theta )", + "type": "inline_equation" + }, + { + "bbox": [ + 414, + 594, + 506, + 607 + ], + "score": 1.0, + "content": "is the level of approxi-", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 106, + 605, + 261, + 619 + ], + "spans": [ + { + "bbox": [ + 106, + 605, + 261, + 619 + ], + "score": 1.0, + "content": "mate expectation-linearity in Eq. (16).", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 36.5, + "bbox_fs": [ + 106, + 594, + 506, + 619 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 622, + 504, + 643 + ], + "lines": [ + { + "bbox": [ + 105, + 621, + 505, + 636 + ], + "spans": [ + { + "bbox": [ + 105, + 621, + 505, + 636 + ], + "score": 1.0, + "content": "We would like to control the loss of model accuracy by obtaining a bound on the likelihood gap", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 632, + 153, + 646 + ], + "spans": [ + { + "bbox": [ + 105, + 632, + 153, + 646 + ], + "score": 1.0, + "content": "defined as:", + "type": "text" + } + ], + "index": 39 + } + ], + "index": 38.5, + "bbox_fs": [ + 105, + 621, + 505, + 646 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 234, + 641, + 377, + 664 + ], + "lines": [ + { + "bbox": [ + 234, + 641, + 377, + 664 + ], + "spans": [ + { + "bbox": [ + 234, + 641, + 377, + 664 + ], + "score": 0.95, + "content": "\\Delta _ { l } ( \\hat { \\theta } , \\hat { \\theta } _ { \\delta } ) = \\frac { 1 } { n } ( l ( D ; \\hat { \\theta } ) - l ( D ; \\hat { \\theta } _ { \\delta } ) )", + "type": "interline_equation", + "image_path": "d2429883a542162566fed0a788d74d4bc29ce3f8d8aca6fff95739c4ff90e591.jpg" + } + ] + } + ], + "index": 40, + "virtual_lines": [ + { + "bbox": [ + 234, + 641, + 377, + 664 + ], + "spans": [], + "index": 40 + } + ] + }, + { + "type": "text", + "bbox": [ + 108, + 664, + 487, + 676 + ], + "lines": [ + { + "bbox": [ + 105, + 663, + 488, + 677 + ], + "spans": [ + { + "bbox": [ + 105, + 663, + 488, + 677 + ], + "score": 1.0, + "content": "In the following, we focus on neural networks with softmax output layer for classification tasks.", + "type": "text" + } + ], + "index": 41 + } + ], + "index": 41, + "bbox_fs": [ + 105, + 663, + 488, + 677 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 155, + 676, + 453, + 719 + ], + "lines": [ + { + "bbox": [ + 155, + 676, + 453, + 719 + ], + "spans": [ + { + "bbox": [ + 155, + 676, + 453, + 719 + ], + "score": 0.93, + "content": "p ( \\boldsymbol { y } | \\boldsymbol { x } , s ; \\theta ) = \\mathbf { h } _ { \\boldsymbol { y } } ^ { ( L ) } ( \\boldsymbol { x } , s ; \\theta ) = f _ { L } \\big ( \\mathbf { h } ^ { ( L - 1 ) } ( \\boldsymbol { x } , s ) ; \\eta \\big ) = \\frac { e ^ { \\eta _ { \\boldsymbol { y } } ^ { T } \\mathbf { h } ^ { ( L - 1 ) } ( \\boldsymbol { x } , s ) } } { \\displaystyle \\sum _ { \\boldsymbol { y ^ { \\prime } } \\in \\boldsymbol { y } } e ^ { \\eta _ { \\boldsymbol { y ^ { \\prime } } } ^ { T } \\mathbf { h } ^ { ( L - 1 ) } ( \\boldsymbol { x } , s ) } }", + "type": "interline_equation", + "image_path": "b912baf9528084078f933a3840f2f9b16079616382c40f8361ab3f95c33a9efe.jpg" + } + ] + } + ], + "index": 43, + "virtual_lines": [ + { + "bbox": [ + 155, + 676, + 453, + 690.3333333333334 + ], + "spans": [], + "index": 42 + }, + { + "bbox": [ + 155, + 690.3333333333334, + 453, + 704.6666666666667 + ], + "spans": [], + "index": 43 + }, + { + "bbox": [ + 155, + 704.6666666666667, + 453, + 719.0000000000001 + ], + "spans": [], + "index": 44 + } + ] + }, + { + "type": "text", + "bbox": [ + 105, + 720, + 430, + 734 + ], + "lines": [ + { + "bbox": [ + 105, + 718, + 431, + 735 + ], + "spans": [ + { + "bbox": [ + 105, + 718, + 133, + 735 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 133, + 720, + 293, + 733 + ], + "score": 0.76, + "content": "\\boldsymbol { \\theta } = \\{ \\theta _ { 1 } , \\ldots , \\theta _ { L - 1 } , \\eta \\} , \\mathcal { V } = \\{ 1 , \\ldots , k \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 293, + 718, + 311, + 735 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 311, + 720, + 383, + 733 + ], + "score": 0.92, + "content": "\\eta = \\{ \\eta _ { y } : y \\in \\mathcal { V } \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 383, + 718, + 431, + 735 + ], + "score": 1.0, + "content": ". We claim:", + "type": "text" + } + ], + "index": 45 + } + ], + "index": 45, + "bbox_fs": [ + 105, + 718, + 431, + 735 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 106, + 81, + 505, + 145 + ], + "lines": [ + { + "bbox": [ + 105, + 81, + 505, + 95 + ], + "spans": [ + { + "bbox": [ + 105, + 81, + 198, + 95 + ], + "score": 1.0, + "content": "Theorem 5. Given an", + "type": "text" + }, + { + "bbox": [ + 198, + 83, + 205, + 92 + ], + "score": 0.65, + "content": "L", + "type": "inline_equation" + }, + { + "bbox": [ + 206, + 81, + 292, + 95 + ], + "score": 1.0, + "content": "-layer neural network", + "type": "text" + }, + { + "bbox": [ + 292, + 81, + 344, + 95 + ], + "score": 0.91, + "content": "\\mathbf { h } ^ { ( L ) } ( x , s ; \\theta )", + "type": "inline_equation" + }, + { + "bbox": [ + 344, + 81, + 505, + 95 + ], + "score": 1.0, + "content": "with softmax output layer in (21), where", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 93, + 505, + 107 + ], + "spans": [ + { + "bbox": [ + 105, + 93, + 151, + 107 + ], + "score": 1.0, + "content": "parameter", + "type": "text" + }, + { + "bbox": [ + 151, + 94, + 178, + 104 + ], + "score": 0.88, + "content": "\\theta \\in \\Theta", + "type": "inline_equation" + }, + { + "bbox": [ + 178, + 93, + 253, + 107 + ], + "score": 1.0, + "content": ", dropout variable", + "type": "text" + }, + { + "bbox": [ + 253, + 94, + 278, + 104 + ], + "score": 0.89, + "content": "s \\in S", + "type": "inline_equation" + }, + { + "bbox": [ + 279, + 93, + 306, + 107 + ], + "score": 1.0, + "content": ", input", + "type": "text" + }, + { + "bbox": [ + 306, + 95, + 334, + 104 + ], + "score": 0.88, + "content": "x \\in \\mathcal { X }", + "type": "inline_equation" + }, + { + "bbox": [ + 334, + 93, + 379, + 107 + ], + "score": 1.0, + "content": "and target", + "type": "text" + }, + { + "bbox": [ + 380, + 94, + 406, + 105 + ], + "score": 0.9, + "content": "y \\in \\mathcal { V }", + "type": "inline_equation" + }, + { + "bbox": [ + 406, + 93, + 505, + 107 + ], + "score": 1.0, + "content": ". Suppose that for every", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 106, + 105, + 506, + 118 + ], + "spans": [ + { + "bbox": [ + 106, + 108, + 114, + 116 + ], + "score": 0.51, + "content": "x", + "type": "inline_equation" + }, + { + "bbox": [ + 114, + 106, + 142, + 118 + ], + "score": 1.0, + "content": "and s,", + "type": "text" + }, + { + "bbox": [ + 142, + 105, + 188, + 118 + ], + "score": 0.92, + "content": "p ( \\boldsymbol { y } | \\boldsymbol { x } , s ; \\hat { \\theta } )", + "type": "inline_equation" + }, + { + "bbox": [ + 188, + 106, + 390, + 118 + ], + "score": 1.0, + "content": "makes a unique best prediction—that is, for each", + "type": "text" + }, + { + "bbox": [ + 390, + 106, + 446, + 118 + ], + "score": 0.91, + "content": "x \\in \\mathcal { X } , s \\in \\mathcal { S }", + "type": "inline_equation" + }, + { + "bbox": [ + 446, + 106, + 506, + 118 + ], + "score": 1.0, + "content": ", there exists a", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 117, + 506, + 132 + ], + "spans": [ + { + "bbox": [ + 105, + 117, + 137, + 132 + ], + "score": 1.0, + "content": "unique", + "type": "text" + }, + { + "bbox": [ + 137, + 119, + 169, + 130 + ], + "score": 0.9, + "content": "y ^ { \\ast } \\in \\mathcal { V }", + "type": "inline_equation" + }, + { + "bbox": [ + 169, + 117, + 209, + 132 + ], + "score": 1.0, + "content": "such that", + "type": "text" + }, + { + "bbox": [ + 209, + 118, + 245, + 131 + ], + "score": 0.89, + "content": "\\forall y \\ne y ^ { * }", + "type": "inline_equation" + }, + { + "bbox": [ + 245, + 117, + 250, + 132 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 250, + 117, + 393, + 132 + ], + "score": 0.92, + "content": "\\hat { \\eta } _ { y } ^ { T } \\mathbf { h } ^ { ( L - 1 ) } ( x , s ) < \\hat { \\eta } _ { y ^ { \\ast } } ^ { T } \\mathbf { h } ^ { ( L - 1 ) } ( x , s )", + "type": "inline_equation" + }, + { + "bbox": [ + 393, + 117, + 506, + 132 + ], + "score": 1.0, + "content": ". Suppose additionally that", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 106, + 131, + 343, + 145 + ], + "spans": [ + { + "bbox": [ + 106, + 133, + 128, + 144 + ], + "score": 0.64, + "content": "\\forall x , s", + "type": "inline_equation" + }, + { + "bbox": [ + 128, + 131, + 133, + 145 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 133, + 131, + 223, + 145 + ], + "score": 0.78, + "content": "\\| \\mathbf { h } ^ { ( L - 1 ) } ( x , s ; \\hat { \\theta } ) \\| \\leq \\beta", + "type": "inline_equation" + }, + { + "bbox": [ + 224, + 131, + 245, + 145 + ], + "score": 1.0, + "content": ", and", + "type": "text" + }, + { + "bbox": [ + 245, + 131, + 316, + 145 + ], + "score": 0.91, + "content": "\\forall y , p ( y | x ; \\hat { \\theta } ) > 0", + "type": "inline_equation" + }, + { + "bbox": [ + 316, + 131, + 343, + 145 + ], + "score": 1.0, + "content": ". Then", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 2 + }, + { + "type": "interline_equation", + "bbox": [ + 217, + 147, + 393, + 176 + ], + "lines": [ + { + "bbox": [ + 217, + 147, + 393, + 176 + ], + "spans": [ + { + "bbox": [ + 217, + 147, + 393, + 176 + ], + "score": 0.94, + "content": "\\Delta _ { l } ( \\hat { \\theta } , \\hat { \\theta } _ { \\delta } ) \\leq c _ { 1 } \\beta ^ { 2 } \\left( \\| \\hat { \\eta } \\| _ { 2 } - \\frac { \\delta } { 4 \\beta } \\right) ^ { 2 } e ^ { - c _ { 2 } \\delta / 4 \\beta }", + "type": "interline_equation", + "image_path": "5bb9cf8aaa682c95af711751cff637aad2e0efe2a281dedd2b41899bf9749e2f.jpg" + } + ] + } + ], + "index": 5.5, + "virtual_lines": [ + { + "bbox": [ + 217, + 147, + 393, + 161.5 + ], + "spans": [], + "index": 5 + }, + { + "bbox": [ + 217, + 161.5, + 393, + 176.0 + ], + "spans": [], + "index": 6 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 177, + 323, + 189 + ], + "lines": [ + { + "bbox": [ + 106, + 176, + 324, + 191 + ], + "spans": [ + { + "bbox": [ + 106, + 176, + 133, + 191 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 133, + 179, + 143, + 188 + ], + "score": 0.85, + "content": "c _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 143, + 176, + 162, + 191 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 162, + 179, + 172, + 188 + ], + "score": 0.83, + "content": "c _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 172, + 176, + 324, + 191 + ], + "score": 1.0, + "content": "are distribution-dependent constants.", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 7 + }, + { + "type": "text", + "bbox": [ + 107, + 196, + 505, + 219 + ], + "lines": [ + { + "bbox": [ + 106, + 196, + 505, + 209 + ], + "spans": [ + { + "bbox": [ + 106, + 196, + 505, + 209 + ], + "score": 1.0, + "content": "From Theorem 5 (proof in Appendix C.2) we observe that, at one extreme, distributions closed to", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 106, + 208, + 394, + 219 + ], + "spans": [ + { + "bbox": [ + 106, + 208, + 394, + 219 + ], + "score": 1.0, + "content": "deterministic can be expectation-linearized with little loss of likelihood.", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 8.5 + }, + { + "type": "text", + "bbox": [ + 107, + 224, + 505, + 260 + ], + "lines": [ + { + "bbox": [ + 106, + 224, + 505, + 237 + ], + "spans": [ + { + "bbox": [ + 106, + 224, + 505, + 237 + ], + "score": 1.0, + "content": "What about the other extreme — distributions “as close to uniform distribution as possible”? With", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 236, + 505, + 250 + ], + "spans": [ + { + "bbox": [ + 105, + 236, + 267, + 250 + ], + "score": 1.0, + "content": "suitable assumptions about the form of", + "type": "text" + }, + { + "bbox": [ + 267, + 236, + 313, + 249 + ], + "score": 0.93, + "content": "p ( \\boldsymbol { y } | \\boldsymbol { x } , s ; \\hat { \\theta } )", + "type": "inline_equation" + }, + { + "bbox": [ + 313, + 236, + 331, + 250 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 331, + 236, + 368, + 249 + ], + "score": 0.93, + "content": "p ( \\boldsymbol { y } | \\boldsymbol { x } ; \\hat { \\boldsymbol { \\theta } } )", + "type": "inline_equation" + }, + { + "bbox": [ + 368, + 236, + 505, + 250 + ], + "score": 1.0, + "content": ", we can achieve an accuracy loss", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 106, + 249, + 303, + 260 + ], + "spans": [ + { + "bbox": [ + 106, + 249, + 303, + 260 + ], + "score": 1.0, + "content": "bound for distributions that are close to uniform:", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 11 + }, + { + "type": "text", + "bbox": [ + 106, + 261, + 505, + 295 + ], + "lines": [ + { + "bbox": [ + 104, + 258, + 503, + 276 + ], + "spans": [ + { + "bbox": [ + 104, + 258, + 213, + 276 + ], + "score": 1.0, + "content": "Theorem 6. Suppose that", + "type": "text" + }, + { + "bbox": [ + 213, + 262, + 235, + 273 + ], + "score": 0.7, + "content": "\\forall x , s", + "type": "inline_equation" + }, + { + "bbox": [ + 235, + 258, + 240, + 276 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 240, + 260, + 331, + 274 + ], + "score": 0.88, + "content": "\\| \\mathbf { h } ^ { ( L - 1 ) } ( x , s ; \\hat { \\theta } ) \\| \\leq \\beta", + "type": "inline_equation" + }, + { + "bbox": [ + 331, + 258, + 424, + 276 + ], + "score": 1.0, + "content": ". Additionally, for each", + "type": "text" + }, + { + "bbox": [ + 424, + 262, + 503, + 274 + ], + "score": 0.93, + "content": "( x _ { i } , y _ { i } ) \\in D , s \\in \\mathcal { S } ", + "type": "inline_equation" + } + ], + "index": 13 + }, + { + "bbox": [ + 108, + 273, + 447, + 295 + ], + "spans": [ + { + "bbox": [ + 108, + 273, + 309, + 295 + ], + "score": 0.83, + "content": "\\log \\frac { 1 } { k } \\le \\log p ( y _ { i } | x _ { i } , s ; \\hat { \\theta } ) \\le \\frac { 1 } { k } \\sum _ { y \\in \\mathcal { V } } \\log p ( y | x _ { i } , s ; \\hat { \\theta } )", + "type": "inline_equation" + }, + { + "bbox": [ + 309, + 273, + 408, + 289 + ], + "score": 1.0, + "content": ". Then asymptotically as", + "type": "text" + }, + { + "bbox": [ + 409, + 277, + 441, + 285 + ], + "score": 0.86, + "content": "n \\to \\infty", + "type": "inline_equation" + }, + { + "bbox": [ + 441, + 273, + 447, + 289 + ], + "score": 1.0, + "content": ":", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 13.5 + }, + { + "type": "interline_equation", + "bbox": [ + 187, + 298, + 423, + 325 + ], + "lines": [ + { + "bbox": [ + 187, + 298, + 423, + 325 + ], + "spans": [ + { + "bbox": [ + 187, + 298, + 423, + 325 + ], + "score": 0.9, + "content": "\\Delta _ { l } ( \\hat { \\theta } , \\hat { \\theta } _ { \\delta } ) \\leq \\left( 1 - \\frac { \\delta } { 4 \\beta \\| \\hat { \\eta } \\| _ { 2 } } \\right) \\mathrm { E } \\left[ \\mathrm { K L } \\left( p ( \\cdot | X ; \\theta ) \\| \\mathrm { U n i f } ( \\mathcal { V } ) \\right) \\right]", + "type": "interline_equation", + "image_path": "65fab427ea00ef91ffdb3e514baa2078356e2eb5b0f466bd77db37fa85cacff4.jpg" + } + ] + } + ], + "index": 15.5, + "virtual_lines": [ + { + "bbox": [ + 187, + 298, + 423, + 311.5 + ], + "spans": [], + "index": 15 + }, + { + "bbox": [ + 187, + 311.5, + 423, + 325.0 + ], + "spans": [], + "index": 16 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 332, + 504, + 355 + ], + "lines": [ + { + "bbox": [ + 105, + 330, + 505, + 345 + ], + "spans": [ + { + "bbox": [ + 105, + 330, + 505, + 345 + ], + "score": 1.0, + "content": "Theorem 6 (proof in Appendix C.3) indicates that uniform distributions are also an easy class for", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 106, + 343, + 210, + 355 + ], + "spans": [ + { + "bbox": [ + 106, + 343, + 210, + 355 + ], + "score": 1.0, + "content": "expectation-linearization.", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 17.5 + }, + { + "type": "text", + "bbox": [ + 108, + 360, + 504, + 393 + ], + "lines": [ + { + "bbox": [ + 106, + 360, + 505, + 372 + ], + "spans": [ + { + "bbox": [ + 106, + 360, + 423, + 372 + ], + "score": 1.0, + "content": "The next question is whether there exist any classes of conditional distributions", + "type": "text" + }, + { + "bbox": [ + 423, + 360, + 450, + 372 + ], + "score": 0.92, + "content": "p ( y | x )", + "type": "inline_equation" + }, + { + "bbox": [ + 451, + 360, + 505, + 372 + ], + "score": 1.0, + "content": "for which all", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 106, + 370, + 505, + 384 + ], + "spans": [ + { + "bbox": [ + 106, + 370, + 505, + 384 + ], + "score": 1.0, + "content": "distributions are provably hard to expectation-linearize. It remains an open problem and might be an", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 106, + 383, + 254, + 393 + ], + "spans": [ + { + "bbox": [ + 106, + 383, + 254, + 393 + ], + "score": 1.0, + "content": "interesting direction for future work.", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 20 + }, + { + "type": "title", + "bbox": [ + 107, + 409, + 200, + 421 + ], + "lines": [ + { + "bbox": [ + 105, + 407, + 201, + 424 + ], + "spans": [ + { + "bbox": [ + 105, + 407, + 201, + 424 + ], + "score": 1.0, + "content": "6 EXPERIMENTS", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 22 + }, + { + "type": "text", + "bbox": [ + 106, + 433, + 506, + 598 + ], + "lines": [ + { + "bbox": [ + 105, + 433, + 505, + 446 + ], + "spans": [ + { + "bbox": [ + 105, + 433, + 505, + 446 + ], + "score": 1.0, + "content": "In this section, we evaluate the empirical performance of the proposed regularized dropout in (15) on", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 444, + 506, + 456 + ], + "spans": [ + { + "bbox": [ + 105, + 444, + 506, + 456 + ], + "score": 1.0, + "content": "a variety of network architectures for the classification task on three benchmark datasets—MNIST,", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 455, + 507, + 468 + ], + "spans": [ + { + "bbox": [ + 105, + 455, + 507, + 468 + ], + "score": 1.0, + "content": "CIFAR-10 and CIFAR-100. We applied the same data preprocessing procedure as in Srivastava et al.", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 106, + 466, + 507, + 479 + ], + "spans": [ + { + "bbox": [ + 106, + 466, + 507, + 479 + ], + "score": 1.0, + "content": "(2014). To make a thorough comparison and provide experimental evidence on how the expectation-", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 106, + 477, + 506, + 490 + ], + "spans": [ + { + "bbox": [ + 106, + 477, + 506, + 490 + ], + "score": 1.0, + "content": "linearization interacts with the predictive power of the learned model, we perform experiments of", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 488, + 506, + 501 + ], + "spans": [ + { + "bbox": [ + 105, + 488, + 506, + 501 + ], + "score": 1.0, + "content": "Monte Carlo (MC) dropout, which approximately computes the final prediction (left-hand side of", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 498, + 506, + 513 + ], + "spans": [ + { + "bbox": [ + 105, + 498, + 506, + 513 + ], + "score": 1.0, + "content": "(3)) via Monte Carlo sampling, w/o the proposed regularizer. In the case of MC dropout, we average", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 106, + 510, + 506, + 523 + ], + "spans": [ + { + "bbox": [ + 106, + 510, + 145, + 521 + ], + "score": 0.89, + "content": "m = 1 0 0", + "type": "inline_equation" + }, + { + "bbox": [ + 145, + 510, + 506, + 523 + ], + "score": 1.0, + "content": "predictions using randomly sampled configurations. In addition, the network architectures", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 106, + 521, + 506, + 534 + ], + "spans": [ + { + "bbox": [ + 106, + 521, + 506, + 534 + ], + "score": 1.0, + "content": "and hyper-parameters for each experiment setup are the same as those in Srivastava et al. (2014),", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 532, + 506, + 545 + ], + "spans": [ + { + "bbox": [ + 105, + 532, + 506, + 545 + ], + "score": 1.0, + "content": "unless we explicitly claim to use different ones. Following previous works, for each data set We", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 542, + 504, + 556 + ], + "spans": [ + { + "bbox": [ + 105, + 542, + 496, + 556 + ], + "score": 1.0, + "content": "held out 10,000 random training images for validation to tune the hyper-parameters, including", + "type": "text" + }, + { + "bbox": [ + 497, + 543, + 504, + 553 + ], + "score": 0.62, + "content": "\\lambda", + "type": "inline_equation" + } + ], + "index": 33 + }, + { + "bbox": [ + 104, + 554, + 506, + 568 + ], + "spans": [ + { + "bbox": [ + 104, + 554, + 506, + 568 + ], + "score": 1.0, + "content": "in Eq. (15). When the hyper-parameters are fixed, we train the final models with all the training", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 106, + 565, + 505, + 577 + ], + "spans": [ + { + "bbox": [ + 106, + 565, + 505, + 577 + ], + "score": 1.0, + "content": "data, including the validation data. A more detailed description of the conducted experiments can be", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 104, + 576, + 506, + 590 + ], + "spans": [ + { + "bbox": [ + 104, + 576, + 506, + 590 + ], + "score": 1.0, + "content": "provided in Appendix D. For each experiment, we report the mean test errors with corresponding", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 106, + 588, + 259, + 599 + ], + "spans": [ + { + "bbox": [ + 106, + 588, + 259, + 599 + ], + "score": 1.0, + "content": "standard deviations over 5 repetitions.", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 30 + }, + { + "type": "title", + "bbox": [ + 107, + 611, + 165, + 622 + ], + "lines": [ + { + "bbox": [ + 105, + 610, + 167, + 624 + ], + "spans": [ + { + "bbox": [ + 105, + 610, + 167, + 624 + ], + "score": 1.0, + "content": "6.1 MNIST", + "type": "text" + } + ], + "index": 38 + } + ], + "index": 38 + }, + { + "type": "text", + "bbox": [ + 107, + 631, + 505, + 676 + ], + "lines": [ + { + "bbox": [ + 106, + 632, + 506, + 644 + ], + "spans": [ + { + "bbox": [ + 106, + 632, + 473, + 644 + ], + "score": 1.0, + "content": "The MNIST dataset (LeCun et al., 1998) consists of 70,000 handwritten digit images of size", + "type": "text" + }, + { + "bbox": [ + 474, + 632, + 502, + 643 + ], + "score": 0.87, + "content": "2 8 \\times 2 8", + "type": "inline_equation" + }, + { + "bbox": [ + 503, + 632, + 506, + 644 + ], + "score": 1.0, + "content": ",", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 642, + 505, + 655 + ], + "spans": [ + { + "bbox": [ + 105, + 642, + 505, + 655 + ], + "score": 1.0, + "content": "where 60,000 images are used for training and the rest for testing. This task is to classify the images", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 106, + 654, + 506, + 667 + ], + "spans": [ + { + "bbox": [ + 106, + 654, + 506, + 667 + ], + "score": 1.0, + "content": "into 10 digit classes. For the purpose of comparison, we train 6 neural networks with different", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 106, + 665, + 352, + 677 + ], + "spans": [ + { + "bbox": [ + 106, + 665, + 352, + 677 + ], + "score": 1.0, + "content": "architectures. The experimental results are shown in Table 1.", + "type": "text" + } + ], + "index": 42 + } + ], + "index": 40.5 + }, + { + "type": "title", + "bbox": [ + 108, + 689, + 253, + 700 + ], + "lines": [ + { + "bbox": [ + 106, + 688, + 254, + 702 + ], + "spans": [ + { + "bbox": [ + 106, + 688, + 254, + 702 + ], + "score": 1.0, + "content": "6.2 CIFAR-10 AND CIFAR-100", + "type": "text" + } + ], + "index": 43 + } + ], + "index": 43 + }, + { + "type": "text", + "bbox": [ + 106, + 709, + 504, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 708, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 105, + 708, + 505, + 722 + ], + "score": 1.0, + "content": "The CIFAR-10 and CIFAR-100 datasets (Krizhevsky, 2009) consist of 60,000 color images of size", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 106, + 720, + 505, + 733 + ], + "spans": [ + { + "bbox": [ + 106, + 721, + 139, + 731 + ], + "score": 0.89, + "content": "3 2 \\times 3 2", + "type": "inline_equation" + }, + { + "bbox": [ + 140, + 720, + 505, + 733 + ], + "score": 1.0, + "content": ", drawn from 10 and 100 categories, respectively. 50,000 images are used for training and the", + "type": "text" + } + ], + "index": 45 + } + ], + "index": 44.5 + } + ], + "page_idx": 7, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 27, + 293, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 26, + 293, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 26, + 293, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2017", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 302, + 751, + 308, + 760 + ], + "lines": [ + { + "bbox": [ + 300, + 750, + 309, + 761 + ], + "spans": [ + { + "bbox": [ + 300, + 750, + 309, + 761 + ], + "score": 1.0, + "content": "8", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 106, + 81, + 505, + 145 + ], + "lines": [ + { + "bbox": [ + 105, + 81, + 505, + 95 + ], + "spans": [ + { + "bbox": [ + 105, + 81, + 198, + 95 + ], + "score": 1.0, + "content": "Theorem 5. Given an", + "type": "text" + }, + { + "bbox": [ + 198, + 83, + 205, + 92 + ], + "score": 0.65, + "content": "L", + "type": "inline_equation" + }, + { + "bbox": [ + 206, + 81, + 292, + 95 + ], + "score": 1.0, + "content": "-layer neural network", + "type": "text" + }, + { + "bbox": [ + 292, + 81, + 344, + 95 + ], + "score": 0.91, + "content": "\\mathbf { h } ^ { ( L ) } ( x , s ; \\theta )", + "type": "inline_equation" + }, + { + "bbox": [ + 344, + 81, + 505, + 95 + ], + "score": 1.0, + "content": "with softmax output layer in (21), where", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 93, + 505, + 107 + ], + "spans": [ + { + "bbox": [ + 105, + 93, + 151, + 107 + ], + "score": 1.0, + "content": "parameter", + "type": "text" + }, + { + "bbox": [ + 151, + 94, + 178, + 104 + ], + "score": 0.88, + "content": "\\theta \\in \\Theta", + "type": "inline_equation" + }, + { + "bbox": [ + 178, + 93, + 253, + 107 + ], + "score": 1.0, + "content": ", dropout variable", + "type": "text" + }, + { + "bbox": [ + 253, + 94, + 278, + 104 + ], + "score": 0.89, + "content": "s \\in S", + "type": "inline_equation" + }, + { + "bbox": [ + 279, + 93, + 306, + 107 + ], + "score": 1.0, + "content": ", input", + "type": "text" + }, + { + "bbox": [ + 306, + 95, + 334, + 104 + ], + "score": 0.88, + "content": "x \\in \\mathcal { X }", + "type": "inline_equation" + }, + { + "bbox": [ + 334, + 93, + 379, + 107 + ], + "score": 1.0, + "content": "and target", + "type": "text" + }, + { + "bbox": [ + 380, + 94, + 406, + 105 + ], + "score": 0.9, + "content": "y \\in \\mathcal { V }", + "type": "inline_equation" + }, + { + "bbox": [ + 406, + 93, + 505, + 107 + ], + "score": 1.0, + "content": ". Suppose that for every", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 106, + 105, + 506, + 118 + ], + "spans": [ + { + "bbox": [ + 106, + 108, + 114, + 116 + ], + "score": 0.51, + "content": "x", + "type": "inline_equation" + }, + { + "bbox": [ + 114, + 106, + 142, + 118 + ], + "score": 1.0, + "content": "and s,", + "type": "text" + }, + { + "bbox": [ + 142, + 105, + 188, + 118 + ], + "score": 0.92, + "content": "p ( \\boldsymbol { y } | \\boldsymbol { x } , s ; \\hat { \\theta } )", + "type": "inline_equation" + }, + { + "bbox": [ + 188, + 106, + 390, + 118 + ], + "score": 1.0, + "content": "makes a unique best prediction—that is, for each", + "type": "text" + }, + { + "bbox": [ + 390, + 106, + 446, + 118 + ], + "score": 0.91, + "content": "x \\in \\mathcal { X } , s \\in \\mathcal { S }", + "type": "inline_equation" + }, + { + "bbox": [ + 446, + 106, + 506, + 118 + ], + "score": 1.0, + "content": ", there exists a", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 117, + 506, + 132 + ], + "spans": [ + { + "bbox": [ + 105, + 117, + 137, + 132 + ], + "score": 1.0, + "content": "unique", + "type": "text" + }, + { + "bbox": [ + 137, + 119, + 169, + 130 + ], + "score": 0.9, + "content": "y ^ { \\ast } \\in \\mathcal { V }", + "type": "inline_equation" + }, + { + "bbox": [ + 169, + 117, + 209, + 132 + ], + "score": 1.0, + "content": "such that", + "type": "text" + }, + { + "bbox": [ + 209, + 118, + 245, + 131 + ], + "score": 0.89, + "content": "\\forall y \\ne y ^ { * }", + "type": "inline_equation" + }, + { + "bbox": [ + 245, + 117, + 250, + 132 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 250, + 117, + 393, + 132 + ], + "score": 0.92, + "content": "\\hat { \\eta } _ { y } ^ { T } \\mathbf { h } ^ { ( L - 1 ) } ( x , s ) < \\hat { \\eta } _ { y ^ { \\ast } } ^ { T } \\mathbf { h } ^ { ( L - 1 ) } ( x , s )", + "type": "inline_equation" + }, + { + "bbox": [ + 393, + 117, + 506, + 132 + ], + "score": 1.0, + "content": ". Suppose additionally that", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 106, + 131, + 343, + 145 + ], + "spans": [ + { + "bbox": [ + 106, + 133, + 128, + 144 + ], + "score": 0.64, + "content": "\\forall x , s", + "type": "inline_equation" + }, + { + "bbox": [ + 128, + 131, + 133, + 145 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 133, + 131, + 223, + 145 + ], + "score": 0.78, + "content": "\\| \\mathbf { h } ^ { ( L - 1 ) } ( x , s ; \\hat { \\theta } ) \\| \\leq \\beta", + "type": "inline_equation" + }, + { + "bbox": [ + 224, + 131, + 245, + 145 + ], + "score": 1.0, + "content": ", and", + "type": "text" + }, + { + "bbox": [ + 245, + 131, + 316, + 145 + ], + "score": 0.91, + "content": "\\forall y , p ( y | x ; \\hat { \\theta } ) > 0", + "type": "inline_equation" + }, + { + "bbox": [ + 316, + 131, + 343, + 145 + ], + "score": 1.0, + "content": ". Then", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 2, + "bbox_fs": [ + 105, + 81, + 506, + 145 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 217, + 147, + 393, + 176 + ], + "lines": [ + { + "bbox": [ + 217, + 147, + 393, + 176 + ], + "spans": [ + { + "bbox": [ + 217, + 147, + 393, + 176 + ], + "score": 0.94, + "content": "\\Delta _ { l } ( \\hat { \\theta } , \\hat { \\theta } _ { \\delta } ) \\leq c _ { 1 } \\beta ^ { 2 } \\left( \\| \\hat { \\eta } \\| _ { 2 } - \\frac { \\delta } { 4 \\beta } \\right) ^ { 2 } e ^ { - c _ { 2 } \\delta / 4 \\beta }", + "type": "interline_equation", + "image_path": "5bb9cf8aaa682c95af711751cff637aad2e0efe2a281dedd2b41899bf9749e2f.jpg" + } + ] + } + ], + "index": 5.5, + "virtual_lines": [ + { + "bbox": [ + 217, + 147, + 393, + 161.5 + ], + "spans": [], + "index": 5 + }, + { + "bbox": [ + 217, + 161.5, + 393, + 176.0 + ], + "spans": [], + "index": 6 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 177, + 323, + 189 + ], + "lines": [ + { + "bbox": [ + 106, + 176, + 324, + 191 + ], + "spans": [ + { + "bbox": [ + 106, + 176, + 133, + 191 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 133, + 179, + 143, + 188 + ], + "score": 0.85, + "content": "c _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 143, + 176, + 162, + 191 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 162, + 179, + 172, + 188 + ], + "score": 0.83, + "content": "c _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 172, + 176, + 324, + 191 + ], + "score": 1.0, + "content": "are distribution-dependent constants.", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 7, + "bbox_fs": [ + 106, + 176, + 324, + 191 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 196, + 505, + 219 + ], + "lines": [ + { + "bbox": [ + 106, + 196, + 505, + 209 + ], + "spans": [ + { + "bbox": [ + 106, + 196, + 505, + 209 + ], + "score": 1.0, + "content": "From Theorem 5 (proof in Appendix C.2) we observe that, at one extreme, distributions closed to", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 106, + 208, + 394, + 219 + ], + "spans": [ + { + "bbox": [ + 106, + 208, + 394, + 219 + ], + "score": 1.0, + "content": "deterministic can be expectation-linearized with little loss of likelihood.", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 8.5, + "bbox_fs": [ + 106, + 196, + 505, + 219 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 224, + 505, + 260 + ], + "lines": [ + { + "bbox": [ + 106, + 224, + 505, + 237 + ], + "spans": [ + { + "bbox": [ + 106, + 224, + 505, + 237 + ], + "score": 1.0, + "content": "What about the other extreme — distributions “as close to uniform distribution as possible”? With", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 236, + 505, + 250 + ], + "spans": [ + { + "bbox": [ + 105, + 236, + 267, + 250 + ], + "score": 1.0, + "content": "suitable assumptions about the form of", + "type": "text" + }, + { + "bbox": [ + 267, + 236, + 313, + 249 + ], + "score": 0.93, + "content": "p ( \\boldsymbol { y } | \\boldsymbol { x } , s ; \\hat { \\theta } )", + "type": "inline_equation" + }, + { + "bbox": [ + 313, + 236, + 331, + 250 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 331, + 236, + 368, + 249 + ], + "score": 0.93, + "content": "p ( \\boldsymbol { y } | \\boldsymbol { x } ; \\hat { \\boldsymbol { \\theta } } )", + "type": "inline_equation" + }, + { + "bbox": [ + 368, + 236, + 505, + 250 + ], + "score": 1.0, + "content": ", we can achieve an accuracy loss", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 106, + 249, + 303, + 260 + ], + "spans": [ + { + "bbox": [ + 106, + 249, + 303, + 260 + ], + "score": 1.0, + "content": "bound for distributions that are close to uniform:", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 11, + "bbox_fs": [ + 105, + 224, + 505, + 260 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 261, + 505, + 295 + ], + "lines": [ + { + "bbox": [ + 104, + 258, + 503, + 276 + ], + "spans": [ + { + "bbox": [ + 104, + 258, + 213, + 276 + ], + "score": 1.0, + "content": "Theorem 6. Suppose that", + "type": "text" + }, + { + "bbox": [ + 213, + 262, + 235, + 273 + ], + "score": 0.7, + "content": "\\forall x , s", + "type": "inline_equation" + }, + { + "bbox": [ + 235, + 258, + 240, + 276 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 240, + 260, + 331, + 274 + ], + "score": 0.88, + "content": "\\| \\mathbf { h } ^ { ( L - 1 ) } ( x , s ; \\hat { \\theta } ) \\| \\leq \\beta", + "type": "inline_equation" + }, + { + "bbox": [ + 331, + 258, + 424, + 276 + ], + "score": 1.0, + "content": ". Additionally, for each", + "type": "text" + }, + { + "bbox": [ + 424, + 262, + 503, + 274 + ], + "score": 0.93, + "content": "( x _ { i } , y _ { i } ) \\in D , s \\in \\mathcal { S } ", + "type": "inline_equation" + } + ], + "index": 13 + }, + { + "bbox": [ + 108, + 273, + 447, + 295 + ], + "spans": [ + { + "bbox": [ + 108, + 273, + 309, + 295 + ], + "score": 0.83, + "content": "\\log \\frac { 1 } { k } \\le \\log p ( y _ { i } | x _ { i } , s ; \\hat { \\theta } ) \\le \\frac { 1 } { k } \\sum _ { y \\in \\mathcal { V } } \\log p ( y | x _ { i } , s ; \\hat { \\theta } )", + "type": "inline_equation" + }, + { + "bbox": [ + 309, + 273, + 408, + 289 + ], + "score": 1.0, + "content": ". Then asymptotically as", + "type": "text" + }, + { + "bbox": [ + 409, + 277, + 441, + 285 + ], + "score": 0.86, + "content": "n \\to \\infty", + "type": "inline_equation" + }, + { + "bbox": [ + 441, + 273, + 447, + 289 + ], + "score": 1.0, + "content": ":", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 13.5, + "bbox_fs": [ + 104, + 258, + 503, + 295 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 187, + 298, + 423, + 325 + ], + "lines": [ + { + "bbox": [ + 187, + 298, + 423, + 325 + ], + "spans": [ + { + "bbox": [ + 187, + 298, + 423, + 325 + ], + "score": 0.9, + "content": "\\Delta _ { l } ( \\hat { \\theta } , \\hat { \\theta } _ { \\delta } ) \\leq \\left( 1 - \\frac { \\delta } { 4 \\beta \\| \\hat { \\eta } \\| _ { 2 } } \\right) \\mathrm { E } \\left[ \\mathrm { K L } \\left( p ( \\cdot | X ; \\theta ) \\| \\mathrm { U n i f } ( \\mathcal { V } ) \\right) \\right]", + "type": "interline_equation", + "image_path": "65fab427ea00ef91ffdb3e514baa2078356e2eb5b0f466bd77db37fa85cacff4.jpg" + } + ] + } + ], + "index": 15.5, + "virtual_lines": [ + { + "bbox": [ + 187, + 298, + 423, + 311.5 + ], + "spans": [], + "index": 15 + }, + { + "bbox": [ + 187, + 311.5, + 423, + 325.0 + ], + "spans": [], + "index": 16 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 332, + 504, + 355 + ], + "lines": [ + { + "bbox": [ + 105, + 330, + 505, + 345 + ], + "spans": [ + { + "bbox": [ + 105, + 330, + 505, + 345 + ], + "score": 1.0, + "content": "Theorem 6 (proof in Appendix C.3) indicates that uniform distributions are also an easy class for", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 106, + 343, + 210, + 355 + ], + "spans": [ + { + "bbox": [ + 106, + 343, + 210, + 355 + ], + "score": 1.0, + "content": "expectation-linearization.", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 17.5, + "bbox_fs": [ + 105, + 330, + 505, + 355 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 360, + 504, + 393 + ], + "lines": [ + { + "bbox": [ + 106, + 360, + 505, + 372 + ], + "spans": [ + { + "bbox": [ + 106, + 360, + 423, + 372 + ], + "score": 1.0, + "content": "The next question is whether there exist any classes of conditional distributions", + "type": "text" + }, + { + "bbox": [ + 423, + 360, + 450, + 372 + ], + "score": 0.92, + "content": "p ( y | x )", + "type": "inline_equation" + }, + { + "bbox": [ + 451, + 360, + 505, + 372 + ], + "score": 1.0, + "content": "for which all", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 106, + 370, + 505, + 384 + ], + "spans": [ + { + "bbox": [ + 106, + 370, + 505, + 384 + ], + "score": 1.0, + "content": "distributions are provably hard to expectation-linearize. It remains an open problem and might be an", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 106, + 383, + 254, + 393 + ], + "spans": [ + { + "bbox": [ + 106, + 383, + 254, + 393 + ], + "score": 1.0, + "content": "interesting direction for future work.", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 20, + "bbox_fs": [ + 106, + 360, + 505, + 393 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 409, + 200, + 421 + ], + "lines": [ + { + "bbox": [ + 105, + 407, + 201, + 424 + ], + "spans": [ + { + "bbox": [ + 105, + 407, + 201, + 424 + ], + "score": 1.0, + "content": "6 EXPERIMENTS", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 22 + }, + { + "type": "text", + "bbox": [ + 106, + 433, + 506, + 598 + ], + "lines": [ + { + "bbox": [ + 105, + 433, + 505, + 446 + ], + "spans": [ + { + "bbox": [ + 105, + 433, + 505, + 446 + ], + "score": 1.0, + "content": "In this section, we evaluate the empirical performance of the proposed regularized dropout in (15) on", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 444, + 506, + 456 + ], + "spans": [ + { + "bbox": [ + 105, + 444, + 506, + 456 + ], + "score": 1.0, + "content": "a variety of network architectures for the classification task on three benchmark datasets—MNIST,", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 455, + 507, + 468 + ], + "spans": [ + { + "bbox": [ + 105, + 455, + 507, + 468 + ], + "score": 1.0, + "content": "CIFAR-10 and CIFAR-100. We applied the same data preprocessing procedure as in Srivastava et al.", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 106, + 466, + 507, + 479 + ], + "spans": [ + { + "bbox": [ + 106, + 466, + 507, + 479 + ], + "score": 1.0, + "content": "(2014). To make a thorough comparison and provide experimental evidence on how the expectation-", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 106, + 477, + 506, + 490 + ], + "spans": [ + { + "bbox": [ + 106, + 477, + 506, + 490 + ], + "score": 1.0, + "content": "linearization interacts with the predictive power of the learned model, we perform experiments of", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 488, + 506, + 501 + ], + "spans": [ + { + "bbox": [ + 105, + 488, + 506, + 501 + ], + "score": 1.0, + "content": "Monte Carlo (MC) dropout, which approximately computes the final prediction (left-hand side of", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 498, + 506, + 513 + ], + "spans": [ + { + "bbox": [ + 105, + 498, + 506, + 513 + ], + "score": 1.0, + "content": "(3)) via Monte Carlo sampling, w/o the proposed regularizer. In the case of MC dropout, we average", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 106, + 510, + 506, + 523 + ], + "spans": [ + { + "bbox": [ + 106, + 510, + 145, + 521 + ], + "score": 0.89, + "content": "m = 1 0 0", + "type": "inline_equation" + }, + { + "bbox": [ + 145, + 510, + 506, + 523 + ], + "score": 1.0, + "content": "predictions using randomly sampled configurations. In addition, the network architectures", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 106, + 521, + 506, + 534 + ], + "spans": [ + { + "bbox": [ + 106, + 521, + 506, + 534 + ], + "score": 1.0, + "content": "and hyper-parameters for each experiment setup are the same as those in Srivastava et al. (2014),", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 532, + 506, + 545 + ], + "spans": [ + { + "bbox": [ + 105, + 532, + 506, + 545 + ], + "score": 1.0, + "content": "unless we explicitly claim to use different ones. Following previous works, for each data set We", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 542, + 504, + 556 + ], + "spans": [ + { + "bbox": [ + 105, + 542, + 496, + 556 + ], + "score": 1.0, + "content": "held out 10,000 random training images for validation to tune the hyper-parameters, including", + "type": "text" + }, + { + "bbox": [ + 497, + 543, + 504, + 553 + ], + "score": 0.62, + "content": "\\lambda", + "type": "inline_equation" + } + ], + "index": 33 + }, + { + "bbox": [ + 104, + 554, + 506, + 568 + ], + "spans": [ + { + "bbox": [ + 104, + 554, + 506, + 568 + ], + "score": 1.0, + "content": "in Eq. (15). When the hyper-parameters are fixed, we train the final models with all the training", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 106, + 565, + 505, + 577 + ], + "spans": [ + { + "bbox": [ + 106, + 565, + 505, + 577 + ], + "score": 1.0, + "content": "data, including the validation data. A more detailed description of the conducted experiments can be", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 104, + 576, + 506, + 590 + ], + "spans": [ + { + "bbox": [ + 104, + 576, + 506, + 590 + ], + "score": 1.0, + "content": "provided in Appendix D. For each experiment, we report the mean test errors with corresponding", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 106, + 588, + 259, + 599 + ], + "spans": [ + { + "bbox": [ + 106, + 588, + 259, + 599 + ], + "score": 1.0, + "content": "standard deviations over 5 repetitions.", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 30, + "bbox_fs": [ + 104, + 433, + 507, + 599 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 611, + 165, + 622 + ], + "lines": [ + { + "bbox": [ + 105, + 610, + 167, + 624 + ], + "spans": [ + { + "bbox": [ + 105, + 610, + 167, + 624 + ], + "score": 1.0, + "content": "6.1 MNIST", + "type": "text" + } + ], + "index": 38 + } + ], + "index": 38 + }, + { + "type": "text", + "bbox": [ + 107, + 631, + 505, + 676 + ], + "lines": [ + { + "bbox": [ + 106, + 632, + 506, + 644 + ], + "spans": [ + { + "bbox": [ + 106, + 632, + 473, + 644 + ], + "score": 1.0, + "content": "The MNIST dataset (LeCun et al., 1998) consists of 70,000 handwritten digit images of size", + "type": "text" + }, + { + "bbox": [ + 474, + 632, + 502, + 643 + ], + "score": 0.87, + "content": "2 8 \\times 2 8", + "type": "inline_equation" + }, + { + "bbox": [ + 503, + 632, + 506, + 644 + ], + "score": 1.0, + "content": ",", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 642, + 505, + 655 + ], + "spans": [ + { + "bbox": [ + 105, + 642, + 505, + 655 + ], + "score": 1.0, + "content": "where 60,000 images are used for training and the rest for testing. This task is to classify the images", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 106, + 654, + 506, + 667 + ], + "spans": [ + { + "bbox": [ + 106, + 654, + 506, + 667 + ], + "score": 1.0, + "content": "into 10 digit classes. For the purpose of comparison, we train 6 neural networks with different", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 106, + 665, + 352, + 677 + ], + "spans": [ + { + "bbox": [ + 106, + 665, + 352, + 677 + ], + "score": 1.0, + "content": "architectures. The experimental results are shown in Table 1.", + "type": "text" + } + ], + "index": 42 + } + ], + "index": 40.5, + "bbox_fs": [ + 105, + 632, + 506, + 677 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 689, + 253, + 700 + ], + "lines": [ + { + "bbox": [ + 106, + 688, + 254, + 702 + ], + "spans": [ + { + "bbox": [ + 106, + 688, + 254, + 702 + ], + "score": 1.0, + "content": "6.2 CIFAR-10 AND CIFAR-100", + "type": "text" + } + ], + "index": 43 + } + ], + "index": 43 + }, + { + "type": "text", + "bbox": [ + 106, + 709, + 504, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 708, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 105, + 708, + 505, + 722 + ], + "score": 1.0, + "content": "The CIFAR-10 and CIFAR-100 datasets (Krizhevsky, 2009) consist of 60,000 color images of size", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 106, + 720, + 505, + 733 + ], + "spans": [ + { + "bbox": [ + 106, + 721, + 139, + 731 + ], + "score": 0.89, + "content": "3 2 \\times 3 2", + "type": "inline_equation" + }, + { + "bbox": [ + 140, + 720, + 505, + 733 + ], + "score": 1.0, + "content": ", drawn from 10 and 100 categories, respectively. 50,000 images are used for training and the", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 105, + 393, + 505, + 406 + ], + "spans": [ + { + "bbox": [ + 105, + 393, + 505, + 406 + ], + "score": 1.0, + "content": "rest for testing. The neural network architecture we used for these two datasets has 3 convolutional", + "type": "text", + "cross_page": true + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 405, + 507, + 416 + ], + "spans": [ + { + "bbox": [ + 105, + 405, + 507, + 416 + ], + "score": 1.0, + "content": "layers, followed by two fully-connected (dense) hidden layers (again, same as that in Srivastava et al.", + "type": "text", + "cross_page": true + } + ], + "index": 11 + }, + { + "bbox": [ + 106, + 416, + 357, + 428 + ], + "spans": [ + { + "bbox": [ + 106, + 416, + 357, + 428 + ], + "score": 1.0, + "content": "(2014)). The experimental results are recorded in Table 1, too.", + "type": "text", + "cross_page": true + } + ], + "index": 12 + } + ], + "index": 44.5, + "bbox_fs": [ + 105, + 708, + 505, + 733 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "table", + "bbox": [ + 106, + 123, + 509, + 227 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 106, + 80, + 506, + 114 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 79, + 506, + 93 + ], + "spans": [ + { + "bbox": [ + 105, + 79, + 506, + 93 + ], + "score": 1.0, + "content": "Table 1: Comparison of classification error percentage on test data with and without using expectation-", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 106, + 90, + 505, + 102 + ], + "spans": [ + { + "bbox": [ + 106, + 90, + 505, + 102 + ], + "score": 1.0, + "content": "linearization on MNIST, CIFAR-10 and CIFAR-100, under different network architectures (with", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 106, + 102, + 257, + 115 + ], + "spans": [ + { + "bbox": [ + 106, + 102, + 257, + 115 + ], + "score": 1.0, + "content": "standard deviations for 5 repetitions).", + "type": "text" + } + ], + "index": 2 + } + ], + "index": 1 + }, + { + "type": "table_body", + "bbox": [ + 106, + 123, + 509, + 227 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 123, + 509, + 227 + ], + "spans": [ + { + "bbox": [ + 106, + 123, + 509, + 227 + ], + "score": 0.968, + "html": "
DataArchitecturew.0. ELw. EL
StandardMCStandardMC
MNIST3 dense,1024,logistic1.23±0.031.06±0.021.07±0.021.06±0.03
3 dense,1024,relu1.19±0.021.04±0.021.03±0.021.05±0.03
3 dense,1024,relu+max-norm1.05±0.031.02±0.020.98±0.031.02±0.02
3 dense,2048,relu+max-norm1.07±0.021.00±0.020.94±0.020.97±0.03
2 dense,4096,relu+max-norm1.03±0.020.92±0.030.90±0.020.93±0.02
CIFAR-102 dense,8192,relu+max-norm0.99±0.020.96±0.020.87±0.020.92±0.03
3 conv+2 dense,relu+max-norm12.82±0.1012.16±0.1212.20±0.1412.21±0.15
CIFAR-1003 conv+2 dense,relu+max-norm37.22±0.2236.01±0.2136.25±0.1236.10±0.18
", + "type": "table", + "image_path": "175f7773109b3f4f6cc7cd73466847018998be500721e237fb5993740b91fa9b.jpg" + } + ] + } + ], + "index": 4, + "virtual_lines": [ + { + "bbox": [ + 106, + 123, + 509, + 157.66666666666666 + ], + "spans": [], + "index": 3 + }, + { + "bbox": [ + 106, + 157.66666666666666, + 509, + 192.33333333333331 + ], + "spans": [], + "index": 4 + }, + { + "bbox": [ + 106, + 192.33333333333331, + 509, + 226.99999999999997 + ], + "spans": [], + "index": 5 + } + ] + } + ], + "index": 2.5 + }, + { + "type": "image", + "bbox": [ + 109, + 242, + 510, + 354 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 109, + 242, + 510, + 354 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 109, + 242, + 510, + 354 + ], + "spans": [ + { + "bbox": [ + 109, + 242, + 510, + 354 + ], + "score": 0.964, + "type": "image", + "image_path": "c49daebdcab4221015f37caba68dea112f6c0b6488108175b3f185757fd7ca95.jpg" + } + ] + } + ], + "index": 7, + "virtual_lines": [ + { + "bbox": [ + 109, + 242, + 510, + 279.3333333333333 + ], + "spans": [], + "index": 6 + }, + { + "bbox": [ + 109, + 279.3333333333333, + 510, + 316.66666666666663 + ], + "spans": [], + "index": 7 + }, + { + "bbox": [ + 109, + 316.66666666666663, + 510, + 353.99999999999994 + ], + "spans": [], + "index": 8 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 151, + 362, + 459, + 374 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 150, + 361, + 460, + 375 + ], + "spans": [ + { + "bbox": [ + 150, + 361, + 449, + 375 + ], + "score": 1.0, + "content": "Figure 1: Error rate and empirical expectation-linearization risk relative to", + "type": "text" + }, + { + "bbox": [ + 450, + 362, + 456, + 372 + ], + "score": 0.71, + "content": "\\lambda", + "type": "inline_equation" + }, + { + "bbox": [ + 457, + 361, + 460, + 375 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 9 + } + ], + "index": 8.0 + }, + { + "type": "text", + "bbox": [ + 107, + 394, + 506, + 427 + ], + "lines": [ + { + "bbox": [ + 105, + 393, + 505, + 406 + ], + "spans": [ + { + "bbox": [ + 105, + 393, + 505, + 406 + ], + "score": 1.0, + "content": "rest for testing. The neural network architecture we used for these two datasets has 3 convolutional", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 405, + 507, + 416 + ], + "spans": [ + { + "bbox": [ + 105, + 405, + 507, + 416 + ], + "score": 1.0, + "content": "layers, followed by two fully-connected (dense) hidden layers (again, same as that in Srivastava et al.", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 106, + 416, + 357, + 428 + ], + "spans": [ + { + "bbox": [ + 106, + 416, + 357, + 428 + ], + "score": 1.0, + "content": "(2014)). The experimental results are recorded in Table 1, too.", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 11 + }, + { + "type": "text", + "bbox": [ + 107, + 433, + 505, + 477 + ], + "lines": [ + { + "bbox": [ + 105, + 433, + 505, + 445 + ], + "spans": [ + { + "bbox": [ + 105, + 433, + 505, + 445 + ], + "score": 1.0, + "content": "From Table 1 we can see that on MNIST data, dropout network training with expectation-linearization", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 106, + 444, + 505, + 456 + ], + "spans": [ + { + "bbox": [ + 106, + 444, + 505, + 456 + ], + "score": 1.0, + "content": "outperforms standard dropout on all 6 neural architectures. On CIFAR data, expectation-linearization", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 106, + 455, + 505, + 466 + ], + "spans": [ + { + "bbox": [ + 106, + 456, + 207, + 466 + ], + "score": 1.0, + "content": "reduces error rate from", + "type": "text" + }, + { + "bbox": [ + 207, + 455, + 240, + 465 + ], + "score": 0.87, + "content": "1 2 . 8 2 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 240, + 456, + 253, + 466 + ], + "score": 1.0, + "content": "to", + "type": "text" + }, + { + "bbox": [ + 254, + 455, + 286, + 465 + ], + "score": 0.88, + "content": "1 2 . 2 0 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 286, + 456, + 396, + 466 + ], + "score": 1.0, + "content": "for CIFAR-10, achieving", + "type": "text" + }, + { + "bbox": [ + 396, + 455, + 424, + 465 + ], + "score": 0.86, + "content": "0 . 6 2 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 424, + 456, + 505, + 466 + ], + "score": 1.0, + "content": "improvement. For", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 106, + 465, + 506, + 477 + ], + "spans": [ + { + "bbox": [ + 106, + 465, + 319, + 477 + ], + "score": 1.0, + "content": "CIFAR-100, the improvement in terms of error rate is", + "type": "text" + }, + { + "bbox": [ + 320, + 466, + 347, + 476 + ], + "score": 0.87, + "content": "0 . 9 7 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 347, + 465, + 428, + 477 + ], + "score": 1.0, + "content": "with reduction from", + "type": "text" + }, + { + "bbox": [ + 429, + 466, + 460, + 476 + ], + "score": 0.87, + "content": "3 7 . 2 2 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 461, + 465, + 471, + 477 + ], + "score": 1.0, + "content": "to", + "type": "text" + }, + { + "bbox": [ + 471, + 466, + 503, + 476 + ], + "score": 0.88, + "content": "3 6 . 2 5 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 503, + 465, + 506, + 477 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 14.5 + }, + { + "type": "text", + "bbox": [ + 107, + 482, + 505, + 582 + ], + "lines": [ + { + "bbox": [ + 106, + 482, + 505, + 495 + ], + "spans": [ + { + "bbox": [ + 106, + 482, + 505, + 495 + ], + "score": 1.0, + "content": "From the results we see that with or without expectation-linearization, the MC dropout networks", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 106, + 493, + 504, + 505 + ], + "spans": [ + { + "bbox": [ + 106, + 493, + 504, + 505 + ], + "score": 1.0, + "content": "achieve similar results. It illustrates that by achieving expectation-linear neural networks, the", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 504, + 506, + 518 + ], + "spans": [ + { + "bbox": [ + 105, + 504, + 506, + 518 + ], + "score": 1.0, + "content": "predictive power of the learned models has not degraded significantly. Moreover, it is interesting to", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 106, + 515, + 506, + 528 + ], + "spans": [ + { + "bbox": [ + 106, + 515, + 506, + 528 + ], + "score": 1.0, + "content": "see that with the regularization, on MNIST dataset, standard dropout networks achieve even better", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 526, + 506, + 540 + ], + "spans": [ + { + "bbox": [ + 105, + 526, + 506, + 540 + ], + "score": 1.0, + "content": "accuracy than MC dropout. It may be because that with expectation-linearization, standard dropout", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 537, + 505, + 550 + ], + "spans": [ + { + "bbox": [ + 105, + 537, + 505, + 550 + ], + "score": 1.0, + "content": "inference achieves better approximation of the final prediction than MC dropout with (only) 100", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 547, + 506, + 561 + ], + "spans": [ + { + "bbox": [ + 105, + 547, + 506, + 561 + ], + "score": 1.0, + "content": "samples. On CIFAR datasets, MC dropout networks achieve better accuracy than the ones with", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 106, + 559, + 506, + 572 + ], + "spans": [ + { + "bbox": [ + 106, + 559, + 506, + 572 + ], + "score": 1.0, + "content": "the regularization. But, obviously, MC dropout requires much more inference time than standard", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 106, + 570, + 506, + 583 + ], + "spans": [ + { + "bbox": [ + 106, + 570, + 212, + 583 + ], + "score": 1.0, + "content": "dropout (MC dropout with", + "type": "text" + }, + { + "bbox": [ + 212, + 572, + 222, + 580 + ], + "score": 0.74, + "content": "m", + "type": "inline_equation" + }, + { + "bbox": [ + 223, + 570, + 315, + 583 + ], + "score": 1.0, + "content": "samples requires about", + "type": "text" + }, + { + "bbox": [ + 315, + 572, + 325, + 581 + ], + "score": 0.76, + "content": "m", + "type": "inline_equation" + }, + { + "bbox": [ + 326, + 570, + 506, + 583 + ], + "score": 1.0, + "content": "times the inference time of standard dropout).", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 21 + }, + { + "type": "title", + "bbox": [ + 107, + 600, + 316, + 611 + ], + "lines": [ + { + "bbox": [ + 106, + 599, + 316, + 612 + ], + "spans": [ + { + "bbox": [ + 106, + 599, + 308, + 612 + ], + "score": 1.0, + "content": "6.3 EFFECT OF REGULARIZATION CONSTANT", + "type": "text" + }, + { + "bbox": [ + 308, + 600, + 316, + 610 + ], + "score": 0.47, + "content": "\\lambda", + "type": "inline_equation" + } + ], + "index": 26 + } + ], + "index": 26 + }, + { + "type": "text", + "bbox": [ + 106, + 622, + 505, + 691 + ], + "lines": [ + { + "bbox": [ + 105, + 621, + 505, + 635 + ], + "spans": [ + { + "bbox": [ + 105, + 621, + 505, + 635 + ], + "score": 1.0, + "content": "In this section, we explore the effect of varying the hyper-parameter for the expectation-linearization", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 106, + 633, + 506, + 645 + ], + "spans": [ + { + "bbox": [ + 106, + 633, + 124, + 645 + ], + "score": 1.0, + "content": "rate", + "type": "text" + }, + { + "bbox": [ + 125, + 633, + 132, + 643 + ], + "score": 0.77, + "content": "\\lambda", + "type": "inline_equation" + }, + { + "bbox": [ + 132, + 633, + 365, + 645 + ], + "score": 1.0, + "content": ". We train the network architectures in Table 1 with the", + "type": "text" + }, + { + "bbox": [ + 366, + 633, + 373, + 643 + ], + "score": 0.77, + "content": "\\lambda", + "type": "inline_equation" + }, + { + "bbox": [ + 374, + 633, + 506, + 645 + ], + "score": 1.0, + "content": "value ranging from 0.1 to 10.0.", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 106, + 644, + 506, + 656 + ], + "spans": [ + { + "bbox": [ + 106, + 644, + 334, + 656 + ], + "score": 1.0, + "content": "Figure 1 shows the test errors obtained as a function of", + "type": "text" + }, + { + "bbox": [ + 334, + 645, + 341, + 654 + ], + "score": 0.79, + "content": "\\lambda", + "type": "inline_equation" + }, + { + "bbox": [ + 342, + 644, + 506, + 656 + ], + "score": 1.0, + "content": "on three datasets. In addition, Figure 1,", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 106, + 655, + 506, + 669 + ], + "spans": [ + { + "bbox": [ + 106, + 656, + 447, + 669 + ], + "score": 1.0, + "content": "middle and right panels, also measures the empirical expectation-linearization risk", + "type": "text" + }, + { + "bbox": [ + 447, + 655, + 457, + 667 + ], + "score": 0.84, + "content": "\\hat { \\Delta }", + "type": "inline_equation" + }, + { + "bbox": [ + 457, + 656, + 506, + 669 + ], + "score": 1.0, + "content": "of Eq. (12)", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 106, + 667, + 505, + 682 + ], + "spans": [ + { + "bbox": [ + 106, + 668, + 160, + 682 + ], + "score": 1.0, + "content": "with varying", + "type": "text" + }, + { + "bbox": [ + 160, + 669, + 168, + 679 + ], + "score": 0.73, + "content": "\\lambda", + "type": "inline_equation" + }, + { + "bbox": [ + 168, + 668, + 326, + 682 + ], + "score": 1.0, + "content": "on CIFAR-10 and CIFAR-100, where", + "type": "text" + }, + { + "bbox": [ + 326, + 667, + 335, + 679 + ], + "score": 0.87, + "content": "\\hat { \\Delta }", + "type": "inline_equation" + }, + { + "bbox": [ + 336, + 668, + 505, + 682 + ], + "score": 1.0, + "content": "is computed using Monte carlo with 100", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 679, + 195, + 694 + ], + "spans": [ + { + "bbox": [ + 105, + 679, + 195, + 694 + ], + "score": 1.0, + "content": "independent samples.", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 29.5 + }, + { + "type": "text", + "bbox": [ + 108, + 699, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 697, + 504, + 711 + ], + "spans": [ + { + "bbox": [ + 105, + 697, + 261, + 711 + ], + "score": 1.0, + "content": "From Figure 1 we can see that when", + "type": "text" + }, + { + "bbox": [ + 261, + 700, + 267, + 709 + ], + "score": 0.81, + "content": "\\lambda", + "type": "inline_equation" + }, + { + "bbox": [ + 268, + 697, + 494, + 711 + ], + "score": 1.0, + "content": "increases, better expectation-linearity is achieved (i.e.", + "type": "text" + }, + { + "bbox": [ + 494, + 697, + 504, + 709 + ], + "score": 0.79, + "content": "\\hat { \\Delta }", + "type": "inline_equation" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 709, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 105, + 709, + 430, + 722 + ], + "score": 1.0, + "content": "decreases). The model accuracy, however, has not kept growing with increasing", + "type": "text" + }, + { + "bbox": [ + 430, + 710, + 437, + 720 + ], + "score": 0.74, + "content": "\\lambda", + "type": "inline_equation" + }, + { + "bbox": [ + 437, + 709, + 505, + 722 + ], + "score": 1.0, + "content": ", showing that in", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 720, + 507, + 733 + ], + "spans": [ + { + "bbox": [ + 105, + 720, + 507, + 733 + ], + "score": 1.0, + "content": "practice considerations on the trade-off between model expectation-linearity and accuracy are needed.", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 34 + } + ], + "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 2017", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 302, + 751, + 308, + 759 + ], + "lines": [ + { + "bbox": [ + 302, + 751, + 309, + 762 + ], + "spans": [ + { + "bbox": [ + 302, + 751, + 309, + 762 + ], + "score": 1.0, + "content": "9", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "table", + "bbox": [ + 106, + 123, + 509, + 227 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 106, + 80, + 506, + 114 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 79, + 506, + 93 + ], + "spans": [ + { + "bbox": [ + 105, + 79, + 506, + 93 + ], + "score": 1.0, + "content": "Table 1: Comparison of classification error percentage on test data with and without using expectation-", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 106, + 90, + 505, + 102 + ], + "spans": [ + { + "bbox": [ + 106, + 90, + 505, + 102 + ], + "score": 1.0, + "content": "linearization on MNIST, CIFAR-10 and CIFAR-100, under different network architectures (with", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 106, + 102, + 257, + 115 + ], + "spans": [ + { + "bbox": [ + 106, + 102, + 257, + 115 + ], + "score": 1.0, + "content": "standard deviations for 5 repetitions).", + "type": "text" + } + ], + "index": 2 + } + ], + "index": 1 + }, + { + "type": "table_body", + "bbox": [ + 106, + 123, + 509, + 227 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 123, + 509, + 227 + ], + "spans": [ + { + "bbox": [ + 106, + 123, + 509, + 227 + ], + "score": 0.968, + "html": "
DataArchitecturew.0. ELw. EL
StandardMCStandardMC
MNIST3 dense,1024,logistic1.23±0.031.06±0.021.07±0.021.06±0.03
3 dense,1024,relu1.19±0.021.04±0.021.03±0.021.05±0.03
3 dense,1024,relu+max-norm1.05±0.031.02±0.020.98±0.031.02±0.02
3 dense,2048,relu+max-norm1.07±0.021.00±0.020.94±0.020.97±0.03
2 dense,4096,relu+max-norm1.03±0.020.92±0.030.90±0.020.93±0.02
CIFAR-102 dense,8192,relu+max-norm0.99±0.020.96±0.020.87±0.020.92±0.03
3 conv+2 dense,relu+max-norm12.82±0.1012.16±0.1212.20±0.1412.21±0.15
CIFAR-1003 conv+2 dense,relu+max-norm37.22±0.2236.01±0.2136.25±0.1236.10±0.18
", + "type": "table", + "image_path": "175f7773109b3f4f6cc7cd73466847018998be500721e237fb5993740b91fa9b.jpg" + } + ] + } + ], + "index": 4, + "virtual_lines": [ + { + "bbox": [ + 106, + 123, + 509, + 157.66666666666666 + ], + "spans": [], + "index": 3 + }, + { + "bbox": [ + 106, + 157.66666666666666, + 509, + 192.33333333333331 + ], + "spans": [], + "index": 4 + }, + { + "bbox": [ + 106, + 192.33333333333331, + 509, + 226.99999999999997 + ], + "spans": [], + "index": 5 + } + ] + } + ], + "index": 2.5 + }, + { + "type": "image", + "bbox": [ + 109, + 242, + 510, + 354 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 109, + 242, + 510, + 354 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 109, + 242, + 510, + 354 + ], + "spans": [ + { + "bbox": [ + 109, + 242, + 510, + 354 + ], + "score": 0.964, + "type": "image", + "image_path": "c49daebdcab4221015f37caba68dea112f6c0b6488108175b3f185757fd7ca95.jpg" + } + ] + } + ], + "index": 7, + "virtual_lines": [ + { + "bbox": [ + 109, + 242, + 510, + 279.3333333333333 + ], + "spans": [], + "index": 6 + }, + { + "bbox": [ + 109, + 279.3333333333333, + 510, + 316.66666666666663 + ], + "spans": [], + "index": 7 + }, + { + "bbox": [ + 109, + 316.66666666666663, + 510, + 353.99999999999994 + ], + "spans": [], + "index": 8 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 151, + 362, + 459, + 374 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 150, + 361, + 460, + 375 + ], + "spans": [ + { + "bbox": [ + 150, + 361, + 449, + 375 + ], + "score": 1.0, + "content": "Figure 1: Error rate and empirical expectation-linearization risk relative to", + "type": "text" + }, + { + "bbox": [ + 450, + 362, + 456, + 372 + ], + "score": 0.71, + "content": "\\lambda", + "type": "inline_equation" + }, + { + "bbox": [ + 457, + 361, + 460, + 375 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 9 + } + ], + "index": 8.0 + }, + { + "type": "text", + "bbox": [ + 107, + 394, + 506, + 427 + ], + "lines": [], + "index": 11, + "bbox_fs": [ + 105, + 393, + 507, + 428 + ], + "lines_deleted": true + }, + { + "type": "text", + "bbox": [ + 107, + 433, + 505, + 477 + ], + "lines": [ + { + "bbox": [ + 105, + 433, + 505, + 445 + ], + "spans": [ + { + "bbox": [ + 105, + 433, + 505, + 445 + ], + "score": 1.0, + "content": "From Table 1 we can see that on MNIST data, dropout network training with expectation-linearization", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 106, + 444, + 505, + 456 + ], + "spans": [ + { + "bbox": [ + 106, + 444, + 505, + 456 + ], + "score": 1.0, + "content": "outperforms standard dropout on all 6 neural architectures. On CIFAR data, expectation-linearization", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 106, + 455, + 505, + 466 + ], + "spans": [ + { + "bbox": [ + 106, + 456, + 207, + 466 + ], + "score": 1.0, + "content": "reduces error rate from", + "type": "text" + }, + { + "bbox": [ + 207, + 455, + 240, + 465 + ], + "score": 0.87, + "content": "1 2 . 8 2 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 240, + 456, + 253, + 466 + ], + "score": 1.0, + "content": "to", + "type": "text" + }, + { + "bbox": [ + 254, + 455, + 286, + 465 + ], + "score": 0.88, + "content": "1 2 . 2 0 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 286, + 456, + 396, + 466 + ], + "score": 1.0, + "content": "for CIFAR-10, achieving", + "type": "text" + }, + { + "bbox": [ + 396, + 455, + 424, + 465 + ], + "score": 0.86, + "content": "0 . 6 2 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 424, + 456, + 505, + 466 + ], + "score": 1.0, + "content": "improvement. For", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 106, + 465, + 506, + 477 + ], + "spans": [ + { + "bbox": [ + 106, + 465, + 319, + 477 + ], + "score": 1.0, + "content": "CIFAR-100, the improvement in terms of error rate is", + "type": "text" + }, + { + "bbox": [ + 320, + 466, + 347, + 476 + ], + "score": 0.87, + "content": "0 . 9 7 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 347, + 465, + 428, + 477 + ], + "score": 1.0, + "content": "with reduction from", + "type": "text" + }, + { + "bbox": [ + 429, + 466, + 460, + 476 + ], + "score": 0.87, + "content": "3 7 . 2 2 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 461, + 465, + 471, + 477 + ], + "score": 1.0, + "content": "to", + "type": "text" + }, + { + "bbox": [ + 471, + 466, + 503, + 476 + ], + "score": 0.88, + "content": "3 6 . 2 5 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 503, + 465, + 506, + 477 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 14.5, + "bbox_fs": [ + 105, + 433, + 506, + 477 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 482, + 505, + 582 + ], + "lines": [ + { + "bbox": [ + 106, + 482, + 505, + 495 + ], + "spans": [ + { + "bbox": [ + 106, + 482, + 505, + 495 + ], + "score": 1.0, + "content": "From the results we see that with or without expectation-linearization, the MC dropout networks", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 106, + 493, + 504, + 505 + ], + "spans": [ + { + "bbox": [ + 106, + 493, + 504, + 505 + ], + "score": 1.0, + "content": "achieve similar results. It illustrates that by achieving expectation-linear neural networks, the", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 504, + 506, + 518 + ], + "spans": [ + { + "bbox": [ + 105, + 504, + 506, + 518 + ], + "score": 1.0, + "content": "predictive power of the learned models has not degraded significantly. Moreover, it is interesting to", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 106, + 515, + 506, + 528 + ], + "spans": [ + { + "bbox": [ + 106, + 515, + 506, + 528 + ], + "score": 1.0, + "content": "see that with the regularization, on MNIST dataset, standard dropout networks achieve even better", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 526, + 506, + 540 + ], + "spans": [ + { + "bbox": [ + 105, + 526, + 506, + 540 + ], + "score": 1.0, + "content": "accuracy than MC dropout. It may be because that with expectation-linearization, standard dropout", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 537, + 505, + 550 + ], + "spans": [ + { + "bbox": [ + 105, + 537, + 505, + 550 + ], + "score": 1.0, + "content": "inference achieves better approximation of the final prediction than MC dropout with (only) 100", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 547, + 506, + 561 + ], + "spans": [ + { + "bbox": [ + 105, + 547, + 506, + 561 + ], + "score": 1.0, + "content": "samples. On CIFAR datasets, MC dropout networks achieve better accuracy than the ones with", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 106, + 559, + 506, + 572 + ], + "spans": [ + { + "bbox": [ + 106, + 559, + 506, + 572 + ], + "score": 1.0, + "content": "the regularization. But, obviously, MC dropout requires much more inference time than standard", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 106, + 570, + 506, + 583 + ], + "spans": [ + { + "bbox": [ + 106, + 570, + 212, + 583 + ], + "score": 1.0, + "content": "dropout (MC dropout with", + "type": "text" + }, + { + "bbox": [ + 212, + 572, + 222, + 580 + ], + "score": 0.74, + "content": "m", + "type": "inline_equation" + }, + { + "bbox": [ + 223, + 570, + 315, + 583 + ], + "score": 1.0, + "content": "samples requires about", + "type": "text" + }, + { + "bbox": [ + 315, + 572, + 325, + 581 + ], + "score": 0.76, + "content": "m", + "type": "inline_equation" + }, + { + "bbox": [ + 326, + 570, + 506, + 583 + ], + "score": 1.0, + "content": "times the inference time of standard dropout).", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 21, + "bbox_fs": [ + 105, + 482, + 506, + 583 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 600, + 316, + 611 + ], + "lines": [ + { + "bbox": [ + 106, + 599, + 316, + 612 + ], + "spans": [ + { + "bbox": [ + 106, + 599, + 308, + 612 + ], + "score": 1.0, + "content": "6.3 EFFECT OF REGULARIZATION CONSTANT", + "type": "text" + }, + { + "bbox": [ + 308, + 600, + 316, + 610 + ], + "score": 0.47, + "content": "\\lambda", + "type": "inline_equation" + } + ], + "index": 26 + } + ], + "index": 26 + }, + { + "type": "text", + "bbox": [ + 106, + 622, + 505, + 691 + ], + "lines": [ + { + "bbox": [ + 105, + 621, + 505, + 635 + ], + "spans": [ + { + "bbox": [ + 105, + 621, + 505, + 635 + ], + "score": 1.0, + "content": "In this section, we explore the effect of varying the hyper-parameter for the expectation-linearization", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 106, + 633, + 506, + 645 + ], + "spans": [ + { + "bbox": [ + 106, + 633, + 124, + 645 + ], + "score": 1.0, + "content": "rate", + "type": "text" + }, + { + "bbox": [ + 125, + 633, + 132, + 643 + ], + "score": 0.77, + "content": "\\lambda", + "type": "inline_equation" + }, + { + "bbox": [ + 132, + 633, + 365, + 645 + ], + "score": 1.0, + "content": ". We train the network architectures in Table 1 with the", + "type": "text" + }, + { + "bbox": [ + 366, + 633, + 373, + 643 + ], + "score": 0.77, + "content": "\\lambda", + "type": "inline_equation" + }, + { + "bbox": [ + 374, + 633, + 506, + 645 + ], + "score": 1.0, + "content": "value ranging from 0.1 to 10.0.", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 106, + 644, + 506, + 656 + ], + "spans": [ + { + "bbox": [ + 106, + 644, + 334, + 656 + ], + "score": 1.0, + "content": "Figure 1 shows the test errors obtained as a function of", + "type": "text" + }, + { + "bbox": [ + 334, + 645, + 341, + 654 + ], + "score": 0.79, + "content": "\\lambda", + "type": "inline_equation" + }, + { + "bbox": [ + 342, + 644, + 506, + 656 + ], + "score": 1.0, + "content": "on three datasets. In addition, Figure 1,", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 106, + 655, + 506, + 669 + ], + "spans": [ + { + "bbox": [ + 106, + 656, + 447, + 669 + ], + "score": 1.0, + "content": "middle and right panels, also measures the empirical expectation-linearization risk", + "type": "text" + }, + { + "bbox": [ + 447, + 655, + 457, + 667 + ], + "score": 0.84, + "content": "\\hat { \\Delta }", + "type": "inline_equation" + }, + { + "bbox": [ + 457, + 656, + 506, + 669 + ], + "score": 1.0, + "content": "of Eq. (12)", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 106, + 667, + 505, + 682 + ], + "spans": [ + { + "bbox": [ + 106, + 668, + 160, + 682 + ], + "score": 1.0, + "content": "with varying", + "type": "text" + }, + { + "bbox": [ + 160, + 669, + 168, + 679 + ], + "score": 0.73, + "content": "\\lambda", + "type": "inline_equation" + }, + { + "bbox": [ + 168, + 668, + 326, + 682 + ], + "score": 1.0, + "content": "on CIFAR-10 and CIFAR-100, where", + "type": "text" + }, + { + "bbox": [ + 326, + 667, + 335, + 679 + ], + "score": 0.87, + "content": "\\hat { \\Delta }", + "type": "inline_equation" + }, + { + "bbox": [ + 336, + 668, + 505, + 682 + ], + "score": 1.0, + "content": "is computed using Monte carlo with 100", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 679, + 195, + 694 + ], + "spans": [ + { + "bbox": [ + 105, + 679, + 195, + 694 + ], + "score": 1.0, + "content": "independent samples.", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 29.5, + "bbox_fs": [ + 105, + 621, + 506, + 694 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 699, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 697, + 504, + 711 + ], + "spans": [ + { + "bbox": [ + 105, + 697, + 261, + 711 + ], + "score": 1.0, + "content": "From Figure 1 we can see that when", + "type": "text" + }, + { + "bbox": [ + 261, + 700, + 267, + 709 + ], + "score": 0.81, + "content": "\\lambda", + "type": "inline_equation" + }, + { + "bbox": [ + 268, + 697, + 494, + 711 + ], + "score": 1.0, + "content": "increases, better expectation-linearity is achieved (i.e.", + "type": "text" + }, + { + "bbox": [ + 494, + 697, + 504, + 709 + ], + "score": 0.79, + "content": "\\hat { \\Delta }", + "type": "inline_equation" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 709, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 105, + 709, + 430, + 722 + ], + "score": 1.0, + "content": "decreases). The model accuracy, however, has not kept growing with increasing", + "type": "text" + }, + { + "bbox": [ + 430, + 710, + 437, + 720 + ], + "score": 0.74, + "content": "\\lambda", + "type": "inline_equation" + }, + { + "bbox": [ + 437, + 709, + 505, + 722 + ], + "score": 1.0, + "content": ", showing that in", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 720, + 507, + 733 + ], + "spans": [ + { + "bbox": [ + 105, + 720, + 507, + 733 + ], + "score": 1.0, + "content": "practice considerations on the trade-off between model expectation-linearity and accuracy are needed.", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 34, + "bbox_fs": [ + 105, + 697, + 507, + 733 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "table", + "bbox": [ + 131, + 123, + 480, + 159 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 106, + 80, + 505, + 114 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 104, + 79, + 506, + 93 + ], + "spans": [ + { + "bbox": [ + 104, + 79, + 506, + 93 + ], + "score": 1.0, + "content": "Table 2: Comparison of test data errors using standard dropout, Monte Carlo dropout, standard", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 91, + 506, + 104 + ], + "spans": [ + { + "bbox": [ + 105, + 91, + 506, + 104 + ], + "score": 1.0, + "content": "dropout with our proposed expectation-linearization, and recently proposed dropout distillation on", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 106, + 102, + 455, + 115 + ], + "spans": [ + { + "bbox": [ + 106, + 102, + 455, + 115 + ], + "score": 1.0, + "content": "CIFAR-10 and CIFAR-100 under AllConv, (with standard deviations for 5 repetitions).", + "type": "text" + } + ], + "index": 2 + } + ], + "index": 1 + }, + { + "type": "table_body", + "bbox": [ + 131, + 123, + 480, + 159 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 131, + 123, + 480, + 159 + ], + "spans": [ + { + "bbox": [ + 131, + 123, + 480, + 159 + ], + "score": 0.971, + "html": "
DataNetworkStandardMCw. ELDistillation
CIFAR-10AllConv11.18±0.1110.58±0.2110.86±0.0810.81±0.14
CIFAR-100AllConv35.50±0.2334.43±0.2535.10±0.1335.07±0.20
", + "type": "table", + "image_path": "e884ec4bffb7b346fbae22dd9b64b804623293e92aba47f61836441afa624e84.jpg" + } + ] + } + ], + "index": 4, + "virtual_lines": [ + { + "bbox": [ + 131, + 123, + 480, + 135.0 + ], + "spans": [], + "index": 3 + }, + { + "bbox": [ + 131, + 135.0, + 480, + 147.0 + ], + "spans": [], + "index": 4 + }, + { + "bbox": [ + 131, + 147.0, + 480, + 159.0 + ], + "spans": [], + "index": 5 + } + ] + } + ], + "index": 2.5 + }, + { + "type": "title", + "bbox": [ + 107, + 180, + 324, + 192 + ], + "lines": [ + { + "bbox": [ + 106, + 180, + 325, + 193 + ], + "spans": [ + { + "bbox": [ + 106, + 180, + 325, + 193 + ], + "score": 1.0, + "content": "6.4 COMPARISON WITH DROPOUT DISTILLATION", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 6 + }, + { + "type": "text", + "bbox": [ + 107, + 201, + 505, + 246 + ], + "lines": [ + { + "bbox": [ + 105, + 200, + 505, + 214 + ], + "spans": [ + { + "bbox": [ + 105, + 200, + 505, + 214 + ], + "score": 1.0, + "content": "To make a thorough empirical comparison with the recently proposed Dropout Distillation", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 213, + 505, + 224 + ], + "spans": [ + { + "bbox": [ + 105, + 213, + 505, + 224 + ], + "score": 1.0, + "content": "method (Bulò et al., 2016), we also evaluate our regularization method on CIFAR-10 and CIFAR-100", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 223, + 506, + 236 + ], + "spans": [ + { + "bbox": [ + 105, + 223, + 506, + 236 + ], + "score": 1.0, + "content": "datasets with the All Convolutional Network (Springenberg et al., 2014) (AllConv). To facilitate", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 235, + 488, + 248 + ], + "spans": [ + { + "bbox": [ + 105, + 235, + 488, + 248 + ], + "score": 1.0, + "content": "comparison, we adopt the originally reported hyper-parameters and the same setup for training.", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 8.5 + }, + { + "type": "text", + "bbox": [ + 107, + 251, + 505, + 306 + ], + "lines": [ + { + "bbox": [ + 105, + 250, + 505, + 264 + ], + "spans": [ + { + "bbox": [ + 105, + 250, + 505, + 264 + ], + "score": 1.0, + "content": "Table 2 gives the results comparison the classification error percentages on test data under AllConv", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 106, + 262, + 505, + 274 + ], + "spans": [ + { + "bbox": [ + 106, + 262, + 505, + 274 + ], + "score": 1.0, + "content": "using standard dropout, Monte Carlo dropout, standard dropout with our proposed expectation-", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 104, + 270, + 506, + 288 + ], + "spans": [ + { + "bbox": [ + 104, + 270, + 506, + 288 + ], + "score": 1.0, + "content": "linearization, and recently proposed dropout distillation on CIFAR-10 and CIFAR-100 1. According", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 284, + 505, + 298 + ], + "spans": [ + { + "bbox": [ + 105, + 284, + 505, + 298 + ], + "score": 1.0, + "content": "to Table 2, our proposed expectation-linear regularization method achieves comparable performance", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 295, + 198, + 308 + ], + "spans": [ + { + "bbox": [ + 105, + 295, + 198, + 308 + ], + "score": 1.0, + "content": "to dropout distillation.", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 13 + }, + { + "type": "title", + "bbox": [ + 108, + 324, + 201, + 336 + ], + "lines": [ + { + "bbox": [ + 104, + 321, + 203, + 340 + ], + "spans": [ + { + "bbox": [ + 104, + 321, + 203, + 340 + ], + "score": 1.0, + "content": "7 CONCLUSIONS", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 16 + }, + { + "type": "text", + "bbox": [ + 107, + 349, + 505, + 438 + ], + "lines": [ + { + "bbox": [ + 105, + 348, + 505, + 362 + ], + "spans": [ + { + "bbox": [ + 105, + 348, + 505, + 362 + ], + "score": 1.0, + "content": "In this work, we attempted to establish a theoretical basis for the understanding of dropout, motivated", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 360, + 505, + 372 + ], + "spans": [ + { + "bbox": [ + 105, + 360, + 505, + 372 + ], + "score": 1.0, + "content": "by controlling the gap between dropout’s training and inference phases. Through formulating dropout", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 371, + 505, + 384 + ], + "spans": [ + { + "bbox": [ + 105, + 371, + 505, + 384 + ], + "score": 1.0, + "content": "as a latent variable model and introducing the notion of (approximate) expectation-linearity, we have", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 381, + 505, + 396 + ], + "spans": [ + { + "bbox": [ + 105, + 381, + 505, + 396 + ], + "score": 1.0, + "content": "formally studied the inference gap of dropout, and introduced an empirical measure as a regularization", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 106, + 394, + 506, + 406 + ], + "spans": [ + { + "bbox": [ + 106, + 394, + 506, + 406 + ], + "score": 1.0, + "content": "scheme to explicitly control the gap. Experiments on three benchmark datasets demonstrate that", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 404, + 506, + 417 + ], + "spans": [ + { + "bbox": [ + 105, + 404, + 506, + 417 + ], + "score": 1.0, + "content": "reducing the inference gap can indeed improve the end performance. In the future, we intend", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 415, + 506, + 428 + ], + "spans": [ + { + "bbox": [ + 105, + 415, + 506, + 428 + ], + "score": 1.0, + "content": "to formally relate the inference gap to the generalization error of the underlying network, hence", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 426, + 321, + 439 + ], + "spans": [ + { + "bbox": [ + 105, + 426, + 321, + 439 + ], + "score": 1.0, + "content": "providing further justification of regularized dropout.", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 20.5 + }, + { + "type": "title", + "bbox": [ + 108, + 456, + 225, + 467 + ], + "lines": [ + { + "bbox": [ + 107, + 456, + 226, + 469 + ], + "spans": [ + { + "bbox": [ + 107, + 456, + 226, + 469 + ], + "score": 1.0, + "content": "ACKNOWLEDGEMENTS", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 25 + }, + { + "type": "text", + "bbox": [ + 107, + 480, + 505, + 514 + ], + "lines": [ + { + "bbox": [ + 105, + 480, + 506, + 493 + ], + "spans": [ + { + "bbox": [ + 105, + 480, + 506, + 493 + ], + "score": 1.0, + "content": "This research was supported in part by DARPA grant FA8750-12-2-0342 funded under the DEFT", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 492, + 505, + 504 + ], + "spans": [ + { + "bbox": [ + 105, + 492, + 505, + 504 + ], + "score": 1.0, + "content": "program. Any opinions, findings, and conclusions or recommendations expressed in this material are", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 106, + 503, + 394, + 514 + ], + "spans": [ + { + "bbox": [ + 106, + 503, + 394, + 514 + ], + "score": 1.0, + "content": "those of the authors and do not necessarily reflect the views of DARPA.", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 27 + }, + { + "type": "title", + "bbox": [ + 107, + 532, + 175, + 543 + ], + "lines": [ + { + "bbox": [ + 106, + 531, + 176, + 545 + ], + "spans": [ + { + "bbox": [ + 106, + 531, + 176, + 545 + ], + "score": 1.0, + "content": "REFERENCES", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 29 + }, + { + "type": "text", + "bbox": [ + 107, + 551, + 506, + 584 + ], + "lines": [ + { + "bbox": [ + 105, + 550, + 506, + 563 + ], + "spans": [ + { + "bbox": [ + 105, + 550, + 506, + 563 + ], + "score": 1.0, + "content": "Jacob Andreas, Maxim Rabinovich, Michael I Jordan, and Dan Klein. On the accuracy of self-", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 115, + 561, + 507, + 574 + ], + "spans": [ + { + "bbox": [ + 115, + 561, + 507, + 574 + ], + "score": 1.0, + "content": "normalized log-linear models. In Advances in Neural Information Processing Systems, pp. 1774–", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 115, + 572, + 166, + 585 + ], + "spans": [ + { + "bbox": [ + 115, + 572, + 166, + 585 + ], + "score": 1.0, + "content": "1782, 2015.", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 31 + }, + { + "type": "text", + "bbox": [ + 106, + 593, + 505, + 615 + ], + "lines": [ + { + "bbox": [ + 105, + 592, + 506, + 606 + ], + "spans": [ + { + "bbox": [ + 105, + 592, + 506, + 606 + ], + "score": 1.0, + "content": "Pierre Baldi and Peter Sadowski. The dropout learning algorithm. Artificial intelligence, 210:78–122,", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 114, + 603, + 143, + 617 + ], + "spans": [ + { + "bbox": [ + 114, + 603, + 143, + 617 + ], + "score": 1.0, + "content": "2014.", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 33.5 + }, + { + "type": "text", + "bbox": [ + 108, + 626, + 504, + 648 + ], + "lines": [ + { + "bbox": [ + 106, + 625, + 505, + 638 + ], + "spans": [ + { + "bbox": [ + 106, + 625, + 505, + 638 + ], + "score": 1.0, + "content": "Pierre Baldi and Peter J Sadowski. Understanding dropout. In Advances in Neural Information", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 115, + 636, + 289, + 649 + ], + "spans": [ + { + "bbox": [ + 115, + 636, + 289, + 649 + ], + "score": 1.0, + "content": "Processing Systems, pp. 2814–2822, 2013.", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 35.5 + }, + { + "type": "text", + "bbox": [ + 108, + 657, + 406, + 669 + ], + "lines": [ + { + "bbox": [ + 105, + 657, + 407, + 672 + ], + "spans": [ + { + "bbox": [ + 105, + 657, + 407, + 672 + ], + "score": 1.0, + "content": "David M Bradley and J Andrew Bagnell. Differential sparse coding. 2008.", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 37 + }, + { + "type": "text", + "bbox": [ + 109, + 678, + 505, + 701 + ], + "lines": [ + { + "bbox": [ + 106, + 677, + 506, + 692 + ], + "spans": [ + { + "bbox": [ + 106, + 677, + 506, + 692 + ], + "score": 1.0, + "content": "Samuel Rota Bulò, Lorenzo Porzi, and Peter Kontschieder. Dropout distillation. In Proceedings of", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 116, + 689, + 423, + 702 + ], + "spans": [ + { + "bbox": [ + 116, + 689, + 423, + 702 + ], + "score": 1.0, + "content": "The 33rd International Conference on Machine Learning, pp. 99–107, 2016.", + "type": "text" + } + ], + "index": 39 + } + ], + "index": 38.5 + } + ], + "page_idx": 9, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 105, + 712, + 506, + 731 + ], + "lines": [ + { + "bbox": [ + 119, + 710, + 506, + 723 + ], + "spans": [ + { + "bbox": [ + 119, + 710, + 506, + 723 + ], + "score": 1.0, + "content": "1We obtained similar results as that reported in Table 1 of Bulò et al. (2016) on CIFAR-10 corpus, while we", + "type": "text" + } + ] + }, + { + "bbox": [ + 105, + 721, + 367, + 733 + ], + "spans": [ + { + "bbox": [ + 105, + 721, + 326, + 733 + ], + "score": 1.0, + "content": "cannot reproduce comparable results on CIFAR-100 (around", + "type": "text" + }, + { + "bbox": [ + 326, + 722, + 339, + 731 + ], + "score": 0.79, + "content": "3 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 340, + 721, + 367, + 733 + ], + "score": 1.0, + "content": "worse)", + "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": [ + 300, + 751, + 311, + 760 + ], + "lines": [ + { + "bbox": [ + 299, + 750, + 312, + 764 + ], + "spans": [ + { + "bbox": [ + 299, + 750, + 312, + 764 + ], + "score": 1.0, + "content": "10", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "table", + "bbox": [ + 131, + 123, + 480, + 159 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 106, + 80, + 505, + 114 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 104, + 79, + 506, + 93 + ], + "spans": [ + { + "bbox": [ + 104, + 79, + 506, + 93 + ], + "score": 1.0, + "content": "Table 2: Comparison of test data errors using standard dropout, Monte Carlo dropout, standard", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 91, + 506, + 104 + ], + "spans": [ + { + "bbox": [ + 105, + 91, + 506, + 104 + ], + "score": 1.0, + "content": "dropout with our proposed expectation-linearization, and recently proposed dropout distillation on", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 106, + 102, + 455, + 115 + ], + "spans": [ + { + "bbox": [ + 106, + 102, + 455, + 115 + ], + "score": 1.0, + "content": "CIFAR-10 and CIFAR-100 under AllConv, (with standard deviations for 5 repetitions).", + "type": "text" + } + ], + "index": 2 + } + ], + "index": 1 + }, + { + "type": "table_body", + "bbox": [ + 131, + 123, + 480, + 159 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 131, + 123, + 480, + 159 + ], + "spans": [ + { + "bbox": [ + 131, + 123, + 480, + 159 + ], + "score": 0.971, + "html": "
DataNetworkStandardMCw. ELDistillation
CIFAR-10AllConv11.18±0.1110.58±0.2110.86±0.0810.81±0.14
CIFAR-100AllConv35.50±0.2334.43±0.2535.10±0.1335.07±0.20
", + "type": "table", + "image_path": "e884ec4bffb7b346fbae22dd9b64b804623293e92aba47f61836441afa624e84.jpg" + } + ] + } + ], + "index": 4, + "virtual_lines": [ + { + "bbox": [ + 131, + 123, + 480, + 135.0 + ], + "spans": [], + "index": 3 + }, + { + "bbox": [ + 131, + 135.0, + 480, + 147.0 + ], + "spans": [], + "index": 4 + }, + { + "bbox": [ + 131, + 147.0, + 480, + 159.0 + ], + "spans": [], + "index": 5 + } + ] + } + ], + "index": 2.5 + }, + { + "type": "title", + "bbox": [ + 107, + 180, + 324, + 192 + ], + "lines": [ + { + "bbox": [ + 106, + 180, + 325, + 193 + ], + "spans": [ + { + "bbox": [ + 106, + 180, + 325, + 193 + ], + "score": 1.0, + "content": "6.4 COMPARISON WITH DROPOUT DISTILLATION", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 6 + }, + { + "type": "text", + "bbox": [ + 107, + 201, + 505, + 246 + ], + "lines": [ + { + "bbox": [ + 105, + 200, + 505, + 214 + ], + "spans": [ + { + "bbox": [ + 105, + 200, + 505, + 214 + ], + "score": 1.0, + "content": "To make a thorough empirical comparison with the recently proposed Dropout Distillation", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 213, + 505, + 224 + ], + "spans": [ + { + "bbox": [ + 105, + 213, + 505, + 224 + ], + "score": 1.0, + "content": "method (Bulò et al., 2016), we also evaluate our regularization method on CIFAR-10 and CIFAR-100", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 223, + 506, + 236 + ], + "spans": [ + { + "bbox": [ + 105, + 223, + 506, + 236 + ], + "score": 1.0, + "content": "datasets with the All Convolutional Network (Springenberg et al., 2014) (AllConv). To facilitate", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 235, + 488, + 248 + ], + "spans": [ + { + "bbox": [ + 105, + 235, + 488, + 248 + ], + "score": 1.0, + "content": "comparison, we adopt the originally reported hyper-parameters and the same setup for training.", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 8.5, + "bbox_fs": [ + 105, + 200, + 506, + 248 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 251, + 505, + 306 + ], + "lines": [ + { + "bbox": [ + 105, + 250, + 505, + 264 + ], + "spans": [ + { + "bbox": [ + 105, + 250, + 505, + 264 + ], + "score": 1.0, + "content": "Table 2 gives the results comparison the classification error percentages on test data under AllConv", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 106, + 262, + 505, + 274 + ], + "spans": [ + { + "bbox": [ + 106, + 262, + 505, + 274 + ], + "score": 1.0, + "content": "using standard dropout, Monte Carlo dropout, standard dropout with our proposed expectation-", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 104, + 270, + 506, + 288 + ], + "spans": [ + { + "bbox": [ + 104, + 270, + 506, + 288 + ], + "score": 1.0, + "content": "linearization, and recently proposed dropout distillation on CIFAR-10 and CIFAR-100 1. According", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 284, + 505, + 298 + ], + "spans": [ + { + "bbox": [ + 105, + 284, + 505, + 298 + ], + "score": 1.0, + "content": "to Table 2, our proposed expectation-linear regularization method achieves comparable performance", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 295, + 198, + 308 + ], + "spans": [ + { + "bbox": [ + 105, + 295, + 198, + 308 + ], + "score": 1.0, + "content": "to dropout distillation.", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 13, + "bbox_fs": [ + 104, + 250, + 506, + 308 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 324, + 201, + 336 + ], + "lines": [ + { + "bbox": [ + 104, + 321, + 203, + 340 + ], + "spans": [ + { + "bbox": [ + 104, + 321, + 203, + 340 + ], + "score": 1.0, + "content": "7 CONCLUSIONS", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 16 + }, + { + "type": "text", + "bbox": [ + 107, + 349, + 505, + 438 + ], + "lines": [ + { + "bbox": [ + 105, + 348, + 505, + 362 + ], + "spans": [ + { + "bbox": [ + 105, + 348, + 505, + 362 + ], + "score": 1.0, + "content": "In this work, we attempted to establish a theoretical basis for the understanding of dropout, motivated", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 360, + 505, + 372 + ], + "spans": [ + { + "bbox": [ + 105, + 360, + 505, + 372 + ], + "score": 1.0, + "content": "by controlling the gap between dropout’s training and inference phases. Through formulating dropout", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 371, + 505, + 384 + ], + "spans": [ + { + "bbox": [ + 105, + 371, + 505, + 384 + ], + "score": 1.0, + "content": "as a latent variable model and introducing the notion of (approximate) expectation-linearity, we have", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 381, + 505, + 396 + ], + "spans": [ + { + "bbox": [ + 105, + 381, + 505, + 396 + ], + "score": 1.0, + "content": "formally studied the inference gap of dropout, and introduced an empirical measure as a regularization", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 106, + 394, + 506, + 406 + ], + "spans": [ + { + "bbox": [ + 106, + 394, + 506, + 406 + ], + "score": 1.0, + "content": "scheme to explicitly control the gap. Experiments on three benchmark datasets demonstrate that", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 404, + 506, + 417 + ], + "spans": [ + { + "bbox": [ + 105, + 404, + 506, + 417 + ], + "score": 1.0, + "content": "reducing the inference gap can indeed improve the end performance. In the future, we intend", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 415, + 506, + 428 + ], + "spans": [ + { + "bbox": [ + 105, + 415, + 506, + 428 + ], + "score": 1.0, + "content": "to formally relate the inference gap to the generalization error of the underlying network, hence", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 426, + 321, + 439 + ], + "spans": [ + { + "bbox": [ + 105, + 426, + 321, + 439 + ], + "score": 1.0, + "content": "providing further justification of regularized dropout.", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 20.5, + "bbox_fs": [ + 105, + 348, + 506, + 439 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 456, + 225, + 467 + ], + "lines": [ + { + "bbox": [ + 107, + 456, + 226, + 469 + ], + "spans": [ + { + "bbox": [ + 107, + 456, + 226, + 469 + ], + "score": 1.0, + "content": "ACKNOWLEDGEMENTS", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 25 + }, + { + "type": "text", + "bbox": [ + 107, + 480, + 505, + 514 + ], + "lines": [ + { + "bbox": [ + 105, + 480, + 506, + 493 + ], + "spans": [ + { + "bbox": [ + 105, + 480, + 506, + 493 + ], + "score": 1.0, + "content": "This research was supported in part by DARPA grant FA8750-12-2-0342 funded under the DEFT", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 492, + 505, + 504 + ], + "spans": [ + { + "bbox": [ + 105, + 492, + 505, + 504 + ], + "score": 1.0, + "content": "program. Any opinions, findings, and conclusions or recommendations expressed in this material are", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 106, + 503, + 394, + 514 + ], + "spans": [ + { + "bbox": [ + 106, + 503, + 394, + 514 + ], + "score": 1.0, + "content": "those of the authors and do not necessarily reflect the views of DARPA.", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 27, + "bbox_fs": [ + 105, + 480, + 506, + 514 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 532, + 175, + 543 + ], + "lines": [ + { + "bbox": [ + 106, + 531, + 176, + 545 + ], + "spans": [ + { + "bbox": [ + 106, + 531, + 176, + 545 + ], + "score": 1.0, + "content": "REFERENCES", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 29 + }, + { + "type": "text", + "bbox": [ + 107, + 551, + 506, + 584 + ], + "lines": [ + { + "bbox": [ + 105, + 550, + 506, + 563 + ], + "spans": [ + { + "bbox": [ + 105, + 550, + 506, + 563 + ], + "score": 1.0, + "content": "Jacob Andreas, Maxim Rabinovich, Michael I Jordan, and Dan Klein. On the accuracy of self-", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 115, + 561, + 507, + 574 + ], + "spans": [ + { + "bbox": [ + 115, + 561, + 507, + 574 + ], + "score": 1.0, + "content": "normalized log-linear models. In Advances in Neural Information Processing Systems, pp. 1774–", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 115, + 572, + 166, + 585 + ], + "spans": [ + { + "bbox": [ + 115, + 572, + 166, + 585 + ], + "score": 1.0, + "content": "1782, 2015.", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 31, + "bbox_fs": [ + 105, + 550, + 507, + 585 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 593, + 505, + 615 + ], + "lines": [ + { + "bbox": [ + 105, + 592, + 506, + 606 + ], + "spans": [ + { + "bbox": [ + 105, + 592, + 506, + 606 + ], + "score": 1.0, + "content": "Pierre Baldi and Peter Sadowski. The dropout learning algorithm. Artificial intelligence, 210:78–122,", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 114, + 603, + 143, + 617 + ], + "spans": [ + { + "bbox": [ + 114, + 603, + 143, + 617 + ], + "score": 1.0, + "content": "2014.", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 33.5, + "bbox_fs": [ + 105, + 592, + 506, + 617 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 626, + 504, + 648 + ], + "lines": [ + { + "bbox": [ + 106, + 625, + 505, + 638 + ], + "spans": [ + { + "bbox": [ + 106, + 625, + 505, + 638 + ], + "score": 1.0, + "content": "Pierre Baldi and Peter J Sadowski. Understanding dropout. In Advances in Neural Information", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 115, + 636, + 289, + 649 + ], + "spans": [ + { + "bbox": [ + 115, + 636, + 289, + 649 + ], + "score": 1.0, + "content": "Processing Systems, pp. 2814–2822, 2013.", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 35.5, + "bbox_fs": [ + 106, + 625, + 505, + 649 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 657, + 406, + 669 + ], + "lines": [ + { + "bbox": [ + 105, + 657, + 407, + 672 + ], + "spans": [ + { + "bbox": [ + 105, + 657, + 407, + 672 + ], + "score": 1.0, + "content": "David M Bradley and J Andrew Bagnell. Differential sparse coding. 2008.", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 37, + "bbox_fs": [ + 105, + 657, + 407, + 672 + ] + }, + { + "type": "text", + "bbox": [ + 109, + 678, + 505, + 701 + ], + "lines": [ + { + "bbox": [ + 106, + 677, + 506, + 692 + ], + "spans": [ + { + "bbox": [ + 106, + 677, + 506, + 692 + ], + "score": 1.0, + "content": "Samuel Rota Bulò, Lorenzo Porzi, and Peter Kontschieder. Dropout distillation. In Proceedings of", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 116, + 689, + 423, + 702 + ], + "spans": [ + { + "bbox": [ + 116, + 689, + 423, + 702 + ], + "score": 1.0, + "content": "The 33rd International Conference on Machine Learning, pp. 99–107, 2016.", + "type": "text" + } + ], + "index": 39 + } + ], + "index": 38.5, + "bbox_fs": [ + 106, + 677, + 506, + 702 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 105, + 82, + 504, + 106 + ], + "lines": [ + { + "bbox": [ + 106, + 82, + 505, + 95 + ], + "spans": [ + { + "bbox": [ + 106, + 82, + 505, + 95 + ], + "score": 1.0, + "content": "Ning Chen, Jun Zhu, Jianfei Chen, and Bo Zhang. Dropout training for support vector machines. In", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 115, + 93, + 428, + 106 + ], + "spans": [ + { + "bbox": [ + 115, + 93, + 428, + 106 + ], + "score": 1.0, + "content": "Proceedings Twenty-Eighth AAAI Conference on Artificial Intelligence, 2014.", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5 + }, + { + "type": "text", + "bbox": [ + 106, + 111, + 504, + 135 + ], + "lines": [ + { + "bbox": [ + 106, + 111, + 506, + 125 + ], + "spans": [ + { + "bbox": [ + 106, + 111, + 506, + 125 + ], + "score": 1.0, + "content": "Yarin Gal and Zoubin Ghahramani. Dropout as a bayesian approximation: Insights and applications.", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 116, + 123, + 289, + 136 + ], + "spans": [ + { + "bbox": [ + 116, + 123, + 289, + 136 + ], + "score": 1.0, + "content": "In Deep Learning Workshop, ICML, 2015.", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 2.5 + }, + { + "type": "text", + "bbox": [ + 106, + 141, + 504, + 165 + ], + "lines": [ + { + "bbox": [ + 106, + 141, + 505, + 155 + ], + "spans": [ + { + "bbox": [ + 106, + 141, + 505, + 155 + ], + "score": 1.0, + "content": "Yarin Gal and Zoubin Ghahramani. A theoretically grounded application of dropout in recurrent", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 115, + 153, + 437, + 165 + ], + "spans": [ + { + "bbox": [ + 115, + 153, + 437, + 165 + ], + "score": 1.0, + "content": "neural networks. In Advances in Neural Information Processing Systems, 2016.", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 4.5 + }, + { + "type": "text", + "bbox": [ + 107, + 171, + 505, + 195 + ], + "lines": [ + { + "bbox": [ + 106, + 172, + 505, + 185 + ], + "spans": [ + { + "bbox": [ + 106, + 172, + 505, + 185 + ], + "score": 1.0, + "content": "Wei Gao and Zhi-Hua Zhou. Dropout rademacher complexity of deep neural networks. arXiv preprint", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 115, + 183, + 214, + 194 + ], + "spans": [ + { + "bbox": [ + 115, + 183, + 214, + 194 + ], + "score": 1.0, + "content": "arXiv:1402.3811, 2014.", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 6.5 + }, + { + "type": "text", + "bbox": [ + 108, + 201, + 505, + 225 + ], + "lines": [ + { + "bbox": [ + 105, + 201, + 505, + 215 + ], + "spans": [ + { + "bbox": [ + 105, + 201, + 505, + 215 + ], + "score": 1.0, + "content": "David P Helmbold and Philip M Long. On the inductive bias of dropout. arXiv preprint", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 115, + 213, + 214, + 223 + ], + "spans": [ + { + "bbox": [ + 115, + 213, + 214, + 223 + ], + "score": 1.0, + "content": "arXiv:1412.4736, 2014.", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 8.5 + }, + { + "type": "text", + "bbox": [ + 105, + 231, + 505, + 255 + ], + "lines": [ + { + "bbox": [ + 105, + 230, + 505, + 246 + ], + "spans": [ + { + "bbox": [ + 105, + 230, + 505, + 246 + ], + "score": 1.0, + "content": "David P Helmbold and Philip M Long. Fundamental differences between dropout and weight decay", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 115, + 242, + 353, + 255 + ], + "spans": [ + { + "bbox": [ + 115, + 242, + 353, + 255 + ], + "score": 1.0, + "content": "in deep networks. arXiv preprint arXiv:1602.04484, 2016.", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 10.5 + }, + { + "type": "text", + "bbox": [ + 107, + 261, + 505, + 284 + ], + "lines": [ + { + "bbox": [ + 105, + 259, + 507, + 275 + ], + "spans": [ + { + "bbox": [ + 105, + 259, + 507, + 275 + ], + "score": 1.0, + "content": "Geoffrey Hinton. A practical guide to training restricted boltzmann machines. Momentum, 9(1):926,", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 115, + 271, + 143, + 285 + ], + "spans": [ + { + "bbox": [ + 115, + 271, + 143, + 285 + ], + "score": 1.0, + "content": "2010.", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 12.5 + }, + { + "type": "text", + "bbox": [ + 106, + 291, + 505, + 314 + ], + "lines": [ + { + "bbox": [ + 106, + 291, + 505, + 304 + ], + "spans": [ + { + "bbox": [ + 106, + 291, + 505, + 304 + ], + "score": 1.0, + "content": "Geoffrey Hinton, Oriol Vinyals, and Jeff Dean. Distilling the knowledge in a neural network. arXiv", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 115, + 303, + 254, + 315 + ], + "spans": [ + { + "bbox": [ + 115, + 303, + 254, + 315 + ], + "score": 1.0, + "content": "preprint arXiv:1503.02531, 2015.", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 14.5 + }, + { + "type": "text", + "bbox": [ + 107, + 321, + 504, + 355 + ], + "lines": [ + { + "bbox": [ + 106, + 321, + 506, + 334 + ], + "spans": [ + { + "bbox": [ + 106, + 321, + 506, + 334 + ], + "score": 1.0, + "content": "Geoffrey E Hinton, Nitish Srivastava, Alex Krizhevsky, Ilya Sutskever, and Ruslan R Salakhutdinov.", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 116, + 333, + 505, + 345 + ], + "spans": [ + { + "bbox": [ + 116, + 333, + 505, + 345 + ], + "score": 1.0, + "content": "Improving neural networks by preventing co-adaptation of feature detectors. arXiv preprint", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 115, + 344, + 214, + 354 + ], + "spans": [ + { + "bbox": [ + 115, + 344, + 214, + 354 + ], + "score": 1.0, + "content": "arXiv:1207.0580, 2012.", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 17 + }, + { + "type": "text", + "bbox": [ + 107, + 361, + 504, + 396 + ], + "lines": [ + { + "bbox": [ + 105, + 361, + 506, + 375 + ], + "spans": [ + { + "bbox": [ + 105, + 361, + 506, + 375 + ], + "score": 1.0, + "content": "Prateek Jain, Vivek Kulkarni, Abhradeep Thakurta, and Oliver Williams. To drop or not to", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 116, + 372, + 505, + 386 + ], + "spans": [ + { + "bbox": [ + 116, + 372, + 505, + 386 + ], + "score": 1.0, + "content": "drop: Robustness, consistency and differential privacy properties of dropout. arXiv preprint", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 116, + 384, + 219, + 395 + ], + "spans": [ + { + "bbox": [ + 116, + 384, + 219, + 395 + ], + "score": 1.0, + "content": "arXiv:1503.02031, 2015.", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 20 + }, + { + "type": "text", + "bbox": [ + 107, + 402, + 504, + 426 + ], + "lines": [ + { + "bbox": [ + 106, + 402, + 505, + 415 + ], + "spans": [ + { + "bbox": [ + 106, + 402, + 505, + 415 + ], + "score": 1.0, + "content": "Diederik P Kingma, Tim Salimans, and Max Welling. Variational dropout and the local reparameteri-", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 116, + 414, + 482, + 427 + ], + "spans": [ + { + "bbox": [ + 116, + 414, + 482, + 427 + ], + "score": 1.0, + "content": "zation trick. In Advances in Neural Information Processing Systems, pp. 2575–2583, 2015.", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 22.5 + }, + { + "type": "text", + "bbox": [ + 107, + 432, + 423, + 445 + ], + "lines": [ + { + "bbox": [ + 106, + 432, + 422, + 446 + ], + "spans": [ + { + "bbox": [ + 106, + 432, + 422, + 446 + ], + "score": 1.0, + "content": "Alex Krizhevsky. Learning multiple layers of features from tiny images, 2009.", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 24 + }, + { + "type": "text", + "bbox": [ + 106, + 451, + 501, + 475 + ], + "lines": [ + { + "bbox": [ + 106, + 451, + 503, + 464 + ], + "spans": [ + { + "bbox": [ + 106, + 451, + 503, + 464 + ], + "score": 1.0, + "content": "Yann LeCun, Léon Bottou, Yoshua Bengio, and Patrick Haffner. Gradient-based learning applied to", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 115, + 463, + 417, + 474 + ], + "spans": [ + { + "bbox": [ + 115, + 463, + 417, + 474 + ], + "score": 1.0, + "content": "document recognition. Proceedings of the IEEE, 86(11):2278–2324, 1998.", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 25.5 + }, + { + "type": "text", + "bbox": [ + 108, + 481, + 493, + 494 + ], + "lines": [ + { + "bbox": [ + 106, + 480, + 494, + 495 + ], + "spans": [ + { + "bbox": [ + 106, + 480, + 494, + 495 + ], + "score": 1.0, + "content": "Yann LeCun, Yoshua Bengio, and Geoffrey Hinton. Deep learning. Nature, 521:436–444, 2015.", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 27 + }, + { + "type": "text", + "bbox": [ + 107, + 500, + 503, + 524 + ], + "lines": [ + { + "bbox": [ + 106, + 500, + 505, + 513 + ], + "spans": [ + { + "bbox": [ + 106, + 500, + 505, + 513 + ], + "score": 1.0, + "content": "Xuezhe Ma and Eduard Hovy. End-to-end sequence labeling via bi-directional LSTM-CNNs-CRF.", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 116, + 511, + 428, + 524 + ], + "spans": [ + { + "bbox": [ + 116, + 511, + 428, + 524 + ], + "score": 1.0, + "content": "In Proceedings of ACL-2016, pp. 1064–1074, Berlin, Germany, August 2016.", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 28.5 + }, + { + "type": "text", + "bbox": [ + 107, + 530, + 504, + 553 + ], + "lines": [ + { + "bbox": [ + 105, + 529, + 507, + 543 + ], + "spans": [ + { + "bbox": [ + 105, + 529, + 507, + 543 + ], + "score": 1.0, + "content": "Jürgen Schmidhuber. Deep learning in neural networks: An overview. Neural Networks, 61:85–117,", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 114, + 540, + 143, + 554 + ], + "spans": [ + { + "bbox": [ + 114, + 540, + 143, + 554 + ], + "score": 1.0, + "content": "2015.", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 30.5 + }, + { + "type": "text", + "bbox": [ + 107, + 559, + 504, + 583 + ], + "lines": [ + { + "bbox": [ + 106, + 560, + 505, + 573 + ], + "spans": [ + { + "bbox": [ + 106, + 560, + 505, + 573 + ], + "score": 1.0, + "content": "Jost Tobias Springenberg, Alexey Dosovitskiy, Thomas Brox, and Martin Riedmiller. Striving for", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 116, + 572, + 425, + 583 + ], + "spans": [ + { + "bbox": [ + 116, + 572, + 425, + 583 + ], + "score": 1.0, + "content": "simplicity: The all convolutional net. arXiv preprint arXiv:1412.6806, 2014.", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 32.5 + }, + { + "type": "text", + "bbox": [ + 106, + 589, + 504, + 614 + ], + "lines": [ + { + "bbox": [ + 106, + 590, + 505, + 602 + ], + "spans": [ + { + "bbox": [ + 106, + 590, + 505, + 602 + ], + "score": 1.0, + "content": "Nathan Srebro, Jason Rennie, and Tommi S Jaakkola. Maximum-margin matrix factorization. In", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 114, + 601, + 415, + 614 + ], + "spans": [ + { + "bbox": [ + 114, + 601, + 415, + 614 + ], + "score": 1.0, + "content": "Advances in neural information processing systems, pp. 1329–1336, 2004.", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 34.5 + }, + { + "type": "text", + "bbox": [ + 105, + 619, + 505, + 632 + ], + "lines": [ + { + "bbox": [ + 105, + 619, + 506, + 633 + ], + "spans": [ + { + "bbox": [ + 105, + 619, + 506, + 633 + ], + "score": 1.0, + "content": "Nitish Srivastava. Improving neural networks with dropout. PhD thesis, University of Toronto, 2013.", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 36 + }, + { + "type": "text", + "bbox": [ + 109, + 638, + 504, + 673 + ], + "lines": [ + { + "bbox": [ + 106, + 638, + 506, + 652 + ], + "spans": [ + { + "bbox": [ + 106, + 638, + 506, + 652 + ], + "score": 1.0, + "content": "Nitish Srivastava, Geoffrey Hinton, Alex Krizhevsky, Ilya Sutskever, and Ruslan Salakhutdinov.", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 116, + 650, + 505, + 663 + ], + "spans": [ + { + "bbox": [ + 116, + 650, + 505, + 663 + ], + "score": 1.0, + "content": "Dropout: A simple way to prevent neural networks from overfitting. The Journal of Machine", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 116, + 661, + 297, + 673 + ], + "spans": [ + { + "bbox": [ + 116, + 661, + 297, + 673 + ], + "score": 1.0, + "content": "Learning Research, 15(1):1929–1958, 2014.", + "type": "text" + } + ], + "index": 39 + } + ], + "index": 38 + }, + { + "type": "text", + "bbox": [ + 106, + 679, + 503, + 703 + ], + "lines": [ + { + "bbox": [ + 106, + 679, + 505, + 692 + ], + "spans": [ + { + "bbox": [ + 106, + 679, + 505, + 692 + ], + "score": 1.0, + "content": "Robert Tibshirani. Regression shrinkage and selection via the lasso. Journal of the Royal Statistical", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 115, + 690, + 339, + 703 + ], + "spans": [ + { + "bbox": [ + 115, + 690, + 339, + 703 + ], + "score": 1.0, + "content": "Society. Series B (Methodological), pp. 267–288, 1996.", + "type": "text" + } + ], + "index": 41 + } + ], + "index": 40.5 + }, + { + "type": "text", + "bbox": [ + 106, + 709, + 504, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 708, + 506, + 723 + ], + "spans": [ + { + "bbox": [ + 106, + 708, + 506, + 723 + ], + "score": 1.0, + "content": "Andrey Nikolayevich Tikhonov. On the stability of inverse problems. In Dokl. Akad. Nauk SSSR,", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 115, + 720, + 243, + 732 + ], + "spans": [ + { + "bbox": [ + 115, + 720, + 243, + 732 + ], + "score": 1.0, + "content": "volume 39, pp. 195–198, 1943.", + "type": "text" + } + ], + "index": 43 + } + ], + "index": 42.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": [ + 105, + 82, + 504, + 106 + ], + "lines": [ + { + "bbox": [ + 106, + 82, + 505, + 95 + ], + "spans": [ + { + "bbox": [ + 106, + 82, + 505, + 95 + ], + "score": 1.0, + "content": "Ning Chen, Jun Zhu, Jianfei Chen, and Bo Zhang. Dropout training for support vector machines. In", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 115, + 93, + 428, + 106 + ], + "spans": [ + { + "bbox": [ + 115, + 93, + 428, + 106 + ], + "score": 1.0, + "content": "Proceedings Twenty-Eighth AAAI Conference on Artificial Intelligence, 2014.", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5, + "bbox_fs": [ + 106, + 82, + 505, + 106 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 111, + 504, + 135 + ], + "lines": [ + { + "bbox": [ + 106, + 111, + 506, + 125 + ], + "spans": [ + { + "bbox": [ + 106, + 111, + 506, + 125 + ], + "score": 1.0, + "content": "Yarin Gal and Zoubin Ghahramani. Dropout as a bayesian approximation: Insights and applications.", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 116, + 123, + 289, + 136 + ], + "spans": [ + { + "bbox": [ + 116, + 123, + 289, + 136 + ], + "score": 1.0, + "content": "In Deep Learning Workshop, ICML, 2015.", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 2.5, + "bbox_fs": [ + 106, + 111, + 506, + 136 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 141, + 504, + 165 + ], + "lines": [ + { + "bbox": [ + 106, + 141, + 505, + 155 + ], + "spans": [ + { + "bbox": [ + 106, + 141, + 505, + 155 + ], + "score": 1.0, + "content": "Yarin Gal and Zoubin Ghahramani. A theoretically grounded application of dropout in recurrent", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 115, + 153, + 437, + 165 + ], + "spans": [ + { + "bbox": [ + 115, + 153, + 437, + 165 + ], + "score": 1.0, + "content": "neural networks. In Advances in Neural Information Processing Systems, 2016.", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 4.5, + "bbox_fs": [ + 106, + 141, + 505, + 165 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 171, + 505, + 195 + ], + "lines": [ + { + "bbox": [ + 106, + 172, + 505, + 185 + ], + "spans": [ + { + "bbox": [ + 106, + 172, + 505, + 185 + ], + "score": 1.0, + "content": "Wei Gao and Zhi-Hua Zhou. Dropout rademacher complexity of deep neural networks. arXiv preprint", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 115, + 183, + 214, + 194 + ], + "spans": [ + { + "bbox": [ + 115, + 183, + 214, + 194 + ], + "score": 1.0, + "content": "arXiv:1402.3811, 2014.", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 6.5, + "bbox_fs": [ + 106, + 172, + 505, + 194 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 201, + 505, + 225 + ], + "lines": [ + { + "bbox": [ + 105, + 201, + 505, + 215 + ], + "spans": [ + { + "bbox": [ + 105, + 201, + 505, + 215 + ], + "score": 1.0, + "content": "David P Helmbold and Philip M Long. On the inductive bias of dropout. arXiv preprint", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 115, + 213, + 214, + 223 + ], + "spans": [ + { + "bbox": [ + 115, + 213, + 214, + 223 + ], + "score": 1.0, + "content": "arXiv:1412.4736, 2014.", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 8.5, + "bbox_fs": [ + 105, + 201, + 505, + 223 + ] + }, + { + "type": "text", + "bbox": [ + 105, + 231, + 505, + 255 + ], + "lines": [ + { + "bbox": [ + 105, + 230, + 505, + 246 + ], + "spans": [ + { + "bbox": [ + 105, + 230, + 505, + 246 + ], + "score": 1.0, + "content": "David P Helmbold and Philip M Long. Fundamental differences between dropout and weight decay", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 115, + 242, + 353, + 255 + ], + "spans": [ + { + "bbox": [ + 115, + 242, + 353, + 255 + ], + "score": 1.0, + "content": "in deep networks. arXiv preprint arXiv:1602.04484, 2016.", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 10.5, + "bbox_fs": [ + 105, + 230, + 505, + 255 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 261, + 505, + 284 + ], + "lines": [ + { + "bbox": [ + 105, + 259, + 507, + 275 + ], + "spans": [ + { + "bbox": [ + 105, + 259, + 507, + 275 + ], + "score": 1.0, + "content": "Geoffrey Hinton. A practical guide to training restricted boltzmann machines. Momentum, 9(1):926,", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 115, + 271, + 143, + 285 + ], + "spans": [ + { + "bbox": [ + 115, + 271, + 143, + 285 + ], + "score": 1.0, + "content": "2010.", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 12.5, + "bbox_fs": [ + 105, + 259, + 507, + 285 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 291, + 505, + 314 + ], + "lines": [ + { + "bbox": [ + 106, + 291, + 505, + 304 + ], + "spans": [ + { + "bbox": [ + 106, + 291, + 505, + 304 + ], + "score": 1.0, + "content": "Geoffrey Hinton, Oriol Vinyals, and Jeff Dean. Distilling the knowledge in a neural network. arXiv", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 115, + 303, + 254, + 315 + ], + "spans": [ + { + "bbox": [ + 115, + 303, + 254, + 315 + ], + "score": 1.0, + "content": "preprint arXiv:1503.02531, 2015.", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 14.5, + "bbox_fs": [ + 106, + 291, + 505, + 315 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 321, + 504, + 355 + ], + "lines": [ + { + "bbox": [ + 106, + 321, + 506, + 334 + ], + "spans": [ + { + "bbox": [ + 106, + 321, + 506, + 334 + ], + "score": 1.0, + "content": "Geoffrey E Hinton, Nitish Srivastava, Alex Krizhevsky, Ilya Sutskever, and Ruslan R Salakhutdinov.", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 116, + 333, + 505, + 345 + ], + "spans": [ + { + "bbox": [ + 116, + 333, + 505, + 345 + ], + "score": 1.0, + "content": "Improving neural networks by preventing co-adaptation of feature detectors. arXiv preprint", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 115, + 344, + 214, + 354 + ], + "spans": [ + { + "bbox": [ + 115, + 344, + 214, + 354 + ], + "score": 1.0, + "content": "arXiv:1207.0580, 2012.", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 17, + "bbox_fs": [ + 106, + 321, + 506, + 354 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 361, + 504, + 396 + ], + "lines": [ + { + "bbox": [ + 105, + 361, + 506, + 375 + ], + "spans": [ + { + "bbox": [ + 105, + 361, + 506, + 375 + ], + "score": 1.0, + "content": "Prateek Jain, Vivek Kulkarni, Abhradeep Thakurta, and Oliver Williams. To drop or not to", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 116, + 372, + 505, + 386 + ], + "spans": [ + { + "bbox": [ + 116, + 372, + 505, + 386 + ], + "score": 1.0, + "content": "drop: Robustness, consistency and differential privacy properties of dropout. arXiv preprint", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 116, + 384, + 219, + 395 + ], + "spans": [ + { + "bbox": [ + 116, + 384, + 219, + 395 + ], + "score": 1.0, + "content": "arXiv:1503.02031, 2015.", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 20, + "bbox_fs": [ + 105, + 361, + 506, + 395 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 402, + 504, + 426 + ], + "lines": [ + { + "bbox": [ + 106, + 402, + 505, + 415 + ], + "spans": [ + { + "bbox": [ + 106, + 402, + 505, + 415 + ], + "score": 1.0, + "content": "Diederik P Kingma, Tim Salimans, and Max Welling. Variational dropout and the local reparameteri-", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 116, + 414, + 482, + 427 + ], + "spans": [ + { + "bbox": [ + 116, + 414, + 482, + 427 + ], + "score": 1.0, + "content": "zation trick. In Advances in Neural Information Processing Systems, pp. 2575–2583, 2015.", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 22.5, + "bbox_fs": [ + 106, + 402, + 505, + 427 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 432, + 423, + 445 + ], + "lines": [ + { + "bbox": [ + 106, + 432, + 422, + 446 + ], + "spans": [ + { + "bbox": [ + 106, + 432, + 422, + 446 + ], + "score": 1.0, + "content": "Alex Krizhevsky. Learning multiple layers of features from tiny images, 2009.", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 24, + "bbox_fs": [ + 106, + 432, + 422, + 446 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 451, + 501, + 475 + ], + "lines": [ + { + "bbox": [ + 106, + 451, + 503, + 464 + ], + "spans": [ + { + "bbox": [ + 106, + 451, + 503, + 464 + ], + "score": 1.0, + "content": "Yann LeCun, Léon Bottou, Yoshua Bengio, and Patrick Haffner. Gradient-based learning applied to", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 115, + 463, + 417, + 474 + ], + "spans": [ + { + "bbox": [ + 115, + 463, + 417, + 474 + ], + "score": 1.0, + "content": "document recognition. Proceedings of the IEEE, 86(11):2278–2324, 1998.", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 25.5, + "bbox_fs": [ + 106, + 451, + 503, + 474 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 481, + 493, + 494 + ], + "lines": [ + { + "bbox": [ + 106, + 480, + 494, + 495 + ], + "spans": [ + { + "bbox": [ + 106, + 480, + 494, + 495 + ], + "score": 1.0, + "content": "Yann LeCun, Yoshua Bengio, and Geoffrey Hinton. Deep learning. Nature, 521:436–444, 2015.", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 27, + "bbox_fs": [ + 106, + 480, + 494, + 495 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 500, + 503, + 524 + ], + "lines": [ + { + "bbox": [ + 106, + 500, + 505, + 513 + ], + "spans": [ + { + "bbox": [ + 106, + 500, + 505, + 513 + ], + "score": 1.0, + "content": "Xuezhe Ma and Eduard Hovy. End-to-end sequence labeling via bi-directional LSTM-CNNs-CRF.", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 116, + 511, + 428, + 524 + ], + "spans": [ + { + "bbox": [ + 116, + 511, + 428, + 524 + ], + "score": 1.0, + "content": "In Proceedings of ACL-2016, pp. 1064–1074, Berlin, Germany, August 2016.", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 28.5, + "bbox_fs": [ + 106, + 500, + 505, + 524 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 530, + 504, + 553 + ], + "lines": [ + { + "bbox": [ + 105, + 529, + 507, + 543 + ], + "spans": [ + { + "bbox": [ + 105, + 529, + 507, + 543 + ], + "score": 1.0, + "content": "Jürgen Schmidhuber. Deep learning in neural networks: An overview. Neural Networks, 61:85–117,", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 114, + 540, + 143, + 554 + ], + "spans": [ + { + "bbox": [ + 114, + 540, + 143, + 554 + ], + "score": 1.0, + "content": "2015.", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 30.5, + "bbox_fs": [ + 105, + 529, + 507, + 554 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 559, + 504, + 583 + ], + "lines": [ + { + "bbox": [ + 106, + 560, + 505, + 573 + ], + "spans": [ + { + "bbox": [ + 106, + 560, + 505, + 573 + ], + "score": 1.0, + "content": "Jost Tobias Springenberg, Alexey Dosovitskiy, Thomas Brox, and Martin Riedmiller. Striving for", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 116, + 572, + 425, + 583 + ], + "spans": [ + { + "bbox": [ + 116, + 572, + 425, + 583 + ], + "score": 1.0, + "content": "simplicity: The all convolutional net. arXiv preprint arXiv:1412.6806, 2014.", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 32.5, + "bbox_fs": [ + 106, + 560, + 505, + 583 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 589, + 504, + 614 + ], + "lines": [ + { + "bbox": [ + 106, + 590, + 505, + 602 + ], + "spans": [ + { + "bbox": [ + 106, + 590, + 505, + 602 + ], + "score": 1.0, + "content": "Nathan Srebro, Jason Rennie, and Tommi S Jaakkola. Maximum-margin matrix factorization. In", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 114, + 601, + 415, + 614 + ], + "spans": [ + { + "bbox": [ + 114, + 601, + 415, + 614 + ], + "score": 1.0, + "content": "Advances in neural information processing systems, pp. 1329–1336, 2004.", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 34.5, + "bbox_fs": [ + 106, + 590, + 505, + 614 + ] + }, + { + "type": "text", + "bbox": [ + 105, + 619, + 505, + 632 + ], + "lines": [ + { + "bbox": [ + 105, + 619, + 506, + 633 + ], + "spans": [ + { + "bbox": [ + 105, + 619, + 506, + 633 + ], + "score": 1.0, + "content": "Nitish Srivastava. Improving neural networks with dropout. PhD thesis, University of Toronto, 2013.", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 36, + "bbox_fs": [ + 105, + 619, + 506, + 633 + ] + }, + { + "type": "text", + "bbox": [ + 109, + 638, + 504, + 673 + ], + "lines": [ + { + "bbox": [ + 106, + 638, + 506, + 652 + ], + "spans": [ + { + "bbox": [ + 106, + 638, + 506, + 652 + ], + "score": 1.0, + "content": "Nitish Srivastava, Geoffrey Hinton, Alex Krizhevsky, Ilya Sutskever, and Ruslan Salakhutdinov.", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 116, + 650, + 505, + 663 + ], + "spans": [ + { + "bbox": [ + 116, + 650, + 505, + 663 + ], + "score": 1.0, + "content": "Dropout: A simple way to prevent neural networks from overfitting. The Journal of Machine", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 116, + 661, + 297, + 673 + ], + "spans": [ + { + "bbox": [ + 116, + 661, + 297, + 673 + ], + "score": 1.0, + "content": "Learning Research, 15(1):1929–1958, 2014.", + "type": "text" + } + ], + "index": 39 + } + ], + "index": 38, + "bbox_fs": [ + 106, + 638, + 506, + 673 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 679, + 503, + 703 + ], + "lines": [ + { + "bbox": [ + 106, + 679, + 505, + 692 + ], + "spans": [ + { + "bbox": [ + 106, + 679, + 505, + 692 + ], + "score": 1.0, + "content": "Robert Tibshirani. Regression shrinkage and selection via the lasso. Journal of the Royal Statistical", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 115, + 690, + 339, + 703 + ], + "spans": [ + { + "bbox": [ + 115, + 690, + 339, + 703 + ], + "score": 1.0, + "content": "Society. Series B (Methodological), pp. 267–288, 1996.", + "type": "text" + } + ], + "index": 41 + } + ], + "index": 40.5, + "bbox_fs": [ + 106, + 679, + 505, + 703 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 709, + 504, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 708, + 506, + 723 + ], + "spans": [ + { + "bbox": [ + 106, + 708, + 506, + 723 + ], + "score": 1.0, + "content": "Andrey Nikolayevich Tikhonov. On the stability of inverse problems. In Dokl. Akad. Nauk SSSR,", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 115, + 720, + 243, + 732 + ], + "spans": [ + { + "bbox": [ + 115, + 720, + 243, + 732 + ], + "score": 1.0, + "content": "volume 39, pp. 195–198, 1943.", + "type": "text" + } + ], + "index": 43 + } + ], + "index": 42.5, + "bbox_fs": [ + 106, + 708, + 506, + 732 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 106, + 82, + 504, + 105 + ], + "lines": [ + { + "bbox": [ + 105, + 81, + 505, + 96 + ], + "spans": [ + { + "bbox": [ + 105, + 81, + 505, + 96 + ], + "score": 1.0, + "content": "Stefan Wager, Sida Wang, and Percy S Liang. Dropout training as adaptive regularization. In", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 114, + 93, + 405, + 106 + ], + "spans": [ + { + "bbox": [ + 114, + 93, + 405, + 106 + ], + "score": 1.0, + "content": "Advances in neural information processing systems, pp. 351–359, 2013.", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5 + }, + { + "type": "text", + "bbox": [ + 107, + 111, + 504, + 135 + ], + "lines": [ + { + "bbox": [ + 106, + 112, + 506, + 125 + ], + "spans": [ + { + "bbox": [ + 106, + 112, + 506, + 125 + ], + "score": 1.0, + "content": "Stefan Wager, William Fithian, Sida Wang, and Percy S Liang. Altitude training: Strong bounds for", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 116, + 123, + 506, + 136 + ], + "spans": [ + { + "bbox": [ + 116, + 123, + 506, + 136 + ], + "score": 1.0, + "content": "single-layer dropout. In Advances in Neural Information Processing Systems, pp. 100–108, 2014.", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 2.5 + }, + { + "type": "text", + "bbox": [ + 108, + 142, + 504, + 165 + ], + "lines": [ + { + "bbox": [ + 106, + 142, + 506, + 155 + ], + "spans": [ + { + "bbox": [ + 106, + 142, + 506, + 155 + ], + "score": 1.0, + "content": "Sida Wang and Christopher Manning. Fast dropout training. In Proceedings of the 30th International", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 116, + 153, + 336, + 165 + ], + "spans": [ + { + "bbox": [ + 116, + 153, + 336, + 165 + ], + "score": 1.0, + "content": "Conference on Machine Learning, pp. 118–126, 2013.", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 4.5 + } + ], + "page_idx": 11, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 27, + 293, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 26, + 294, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 26, + 294, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2017", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 300, + 751, + 311, + 760 + ], + "lines": [ + { + "bbox": [ + 299, + 750, + 312, + 764 + ], + "spans": [ + { + "bbox": [ + 299, + 750, + 312, + 764 + ], + "score": 1.0, + "content": "12", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 106, + 82, + 504, + 105 + ], + "lines": [ + { + "bbox": [ + 105, + 81, + 505, + 96 + ], + "spans": [ + { + "bbox": [ + 105, + 81, + 505, + 96 + ], + "score": 1.0, + "content": "Stefan Wager, Sida Wang, and Percy S Liang. Dropout training as adaptive regularization. In", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 114, + 93, + 405, + 106 + ], + "spans": [ + { + "bbox": [ + 114, + 93, + 405, + 106 + ], + "score": 1.0, + "content": "Advances in neural information processing systems, pp. 351–359, 2013.", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5, + "bbox_fs": [ + 105, + 81, + 505, + 106 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 111, + 504, + 135 + ], + "lines": [ + { + "bbox": [ + 106, + 112, + 506, + 125 + ], + "spans": [ + { + "bbox": [ + 106, + 112, + 506, + 125 + ], + "score": 1.0, + "content": "Stefan Wager, William Fithian, Sida Wang, and Percy S Liang. Altitude training: Strong bounds for", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 116, + 123, + 506, + 136 + ], + "spans": [ + { + "bbox": [ + 116, + 123, + 506, + 136 + ], + "score": 1.0, + "content": "single-layer dropout. In Advances in Neural Information Processing Systems, pp. 100–108, 2014.", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 2.5, + "bbox_fs": [ + 106, + 112, + 506, + 136 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 142, + 504, + 165 + ], + "lines": [ + { + "bbox": [ + 106, + 142, + 506, + 155 + ], + "spans": [ + { + "bbox": [ + 106, + 142, + 506, + 155 + ], + "score": 1.0, + "content": "Sida Wang and Christopher Manning. Fast dropout training. In Proceedings of the 30th International", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 116, + 153, + 336, + 165 + ], + "spans": [ + { + "bbox": [ + 116, + 153, + 336, + 165 + ], + "score": 1.0, + "content": "Conference on Machine Learning, pp. 118–126, 2013.", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 4.5, + "bbox_fs": [ + 106, + 142, + 506, + 165 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "title", + "bbox": [ + 104, + 80, + 465, + 95 + ], + "lines": [ + { + "bbox": [ + 106, + 81, + 465, + 96 + ], + "spans": [ + { + "bbox": [ + 106, + 81, + 465, + 96 + ], + "score": 1.0, + "content": "APPENDIX: DROPOUT WITH EXPECTATION-LINEAR REGULARIZATION", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "text", + "bbox": [ + 107, + 106, + 454, + 121 + ], + "lines": [ + { + "bbox": [ + 105, + 107, + 454, + 122 + ], + "spans": [ + { + "bbox": [ + 105, + 107, + 454, + 122 + ], + "score": 1.0, + "content": "A LVM DROPOUT TRAINING VS. STANDARD DROPOUT TRAINING", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 1 + }, + { + "type": "title", + "bbox": [ + 106, + 132, + 191, + 145 + ], + "lines": [ + { + "bbox": [ + 106, + 133, + 192, + 145 + ], + "spans": [ + { + "bbox": [ + 106, + 133, + 192, + 145 + ], + "score": 1.0, + "content": "Proof of Theorem 1", + "type": "text" + } + ], + "index": 2 + } + ], + "index": 2 + }, + { + "type": "text", + "bbox": [ + 106, + 156, + 133, + 168 + ], + "lines": [ + { + "bbox": [ + 104, + 155, + 135, + 172 + ], + "spans": [ + { + "bbox": [ + 104, + 155, + 135, + 172 + ], + "score": 1.0, + "content": "Proof.", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 3 + }, + { + "type": "interline_equation", + "bbox": [ + 143, + 173, + 467, + 228 + ], + "lines": [ + { + "bbox": [ + 143, + 173, + 467, + 228 + ], + "spans": [ + { + "bbox": [ + 143, + 173, + 467, + 228 + ], + "score": 0.93, + "content": "\\begin{array} { r c l } { \\operatorname { E } _ { S _ { D } } [ l ( D , S _ { D } ; \\theta ) ] } & { = } & { \\displaystyle \\int _ { S } \\prod _ { i = 1 } ^ { N } p ( s _ { i } ) \\Big ( \\sum _ { i = 1 } ^ { N } \\log p ( y _ { i } | x _ { i } , s _ { i } ; \\theta ) \\Big ) d \\mu ( s _ { 1 } ) \\dots d \\mu ( s _ { N } ) } \\\\ & { = } & { \\displaystyle \\sum _ { i = 1 } ^ { N } \\int _ { S } p ( s _ { i } ) \\log p ( y _ { i } | x _ { i } , s _ { i } ; \\theta ) d \\mu ( s _ { i } ) } \\end{array}", + "type": "interline_equation", + "image_path": "1b6eda8517f3480f3cc112ab5c9f02fb056c577cb4ccb3c958b4878731780415.jpg" + } + ] + } + ], + "index": 5, + "virtual_lines": [ + { + "bbox": [ + 143, + 173, + 467, + 191.33333333333334 + ], + "spans": [], + "index": 4 + }, + { + "bbox": [ + 143, + 191.33333333333334, + 467, + 209.66666666666669 + ], + "spans": [], + "index": 5 + }, + { + "bbox": [ + 143, + 209.66666666666669, + 467, + 228.00000000000003 + ], + "spans": [], + "index": 6 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 232, + 359, + 245 + ], + "lines": [ + { + "bbox": [ + 105, + 230, + 360, + 247 + ], + "spans": [ + { + "bbox": [ + 105, + 230, + 142, + 247 + ], + "score": 1.0, + "content": "Because", + "type": "text" + }, + { + "bbox": [ + 142, + 232, + 167, + 245 + ], + "score": 0.91, + "content": "\\log ( \\cdot )", + "type": "inline_equation" + }, + { + "bbox": [ + 167, + 230, + 360, + 247 + ], + "score": 1.0, + "content": "is a concave function, from Jensen’s Inequality,", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 7 + }, + { + "type": "interline_equation", + "bbox": [ + 183, + 249, + 427, + 276 + ], + "lines": [ + { + "bbox": [ + 183, + 249, + 427, + 276 + ], + "spans": [ + { + "bbox": [ + 183, + 249, + 427, + 276 + ], + "score": 0.93, + "content": "\\int _ { S } p ( s ) \\log p ( y | x , s ; \\theta ) d \\mu ( s ) \\leq \\log \\int _ { S } p ( s ) p ( y | x , s ; \\theta ) d \\mu ( s )", + "type": "interline_equation", + "image_path": "3859dff83b389564e9c51ff0bdec82490b03d79f6978f8e000e7f7fdf08a7e28.jpg" + } + ] + } + ], + "index": 8, + "virtual_lines": [ + { + "bbox": [ + 183, + 249, + 427, + 276 + ], + "spans": [], + "index": 8 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 281, + 128, + 292 + ], + "lines": [ + { + "bbox": [ + 105, + 280, + 130, + 293 + ], + "spans": [ + { + "bbox": [ + 105, + 280, + 130, + 293 + ], + "score": 1.0, + "content": "Thus", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 9 + }, + { + "type": "interline_equation", + "bbox": [ + 159, + 289, + 452, + 323 + ], + "lines": [ + { + "bbox": [ + 159, + 289, + 452, + 323 + ], + "spans": [ + { + "bbox": [ + 159, + 289, + 452, + 323 + ], + "score": 0.93, + "content": "\\mathrm { E } _ { S _ { D } } [ - l ( D , S _ { D } ; \\theta ) ] \\geq \\sum _ { i = 1 } ^ { N } \\log \\int _ { S } p ( s _ { i } ) p ( y _ { i } | x _ { i } , s _ { i } ; \\theta ) d \\mu ( s _ { i } ) = - l ( D ; \\theta ) .", + "type": "interline_equation", + "image_path": "a943f05ddcf38f168121e7f010fd299223446bdbdbab7160e8ab433d15724b17.jpg" + } + ] + } + ], + "index": 11, + "virtual_lines": [ + { + "bbox": [ + 159, + 289, + 452, + 300.3333333333333 + ], + "spans": [], + "index": 10 + }, + { + "bbox": [ + 159, + 300.3333333333333, + 452, + 311.66666666666663 + ], + "spans": [], + "index": 11 + }, + { + "bbox": [ + 159, + 311.66666666666663, + 452, + 322.99999999999994 + ], + "spans": [], + "index": 12 + } + ] + }, + { + "type": "title", + "bbox": [ + 106, + 352, + 409, + 366 + ], + "lines": [ + { + "bbox": [ + 104, + 352, + 409, + 368 + ], + "spans": [ + { + "bbox": [ + 104, + 352, + 409, + 368 + ], + "score": 1.0, + "content": "B EXPECTATION-LINEAR DROPOUT NEURAL NETWORKS", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 13 + }, + { + "type": "title", + "bbox": [ + 107, + 378, + 230, + 389 + ], + "lines": [ + { + "bbox": [ + 106, + 377, + 231, + 390 + ], + "spans": [ + { + "bbox": [ + 106, + 377, + 231, + 390 + ], + "score": 1.0, + "content": "B.1 PROOF OF THEOREM 2", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 14 + }, + { + "type": "text", + "bbox": [ + 107, + 398, + 216, + 411 + ], + "lines": [ + { + "bbox": [ + 106, + 397, + 216, + 412 + ], + "spans": [ + { + "bbox": [ + 106, + 397, + 151, + 412 + ], + "score": 1.0, + "content": "Proof. Let", + "type": "text" + }, + { + "bbox": [ + 152, + 398, + 195, + 411 + ], + "score": 0.93, + "content": "\\gamma ^ { * } = \\operatorname { E } [ \\Gamma ]", + "type": "inline_equation" + }, + { + "bbox": [ + 195, + 397, + 216, + 412 + ], + "score": 1.0, + "content": ", and", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 15 + }, + { + "type": "interline_equation", + "bbox": [ + 203, + 417, + 407, + 433 + ], + "lines": [ + { + "bbox": [ + 203, + 417, + 407, + 433 + ], + "spans": [ + { + "bbox": [ + 203, + 417, + 407, + 433 + ], + "score": 0.88, + "content": "A \\triangleq \\{ x : \\| \\mathrm { E } [ f ( x \\odot \\Gamma ; \\theta ) ] - f ( x \\odot \\gamma ^ { * } ; \\theta ) \\| _ { 2 } = 0 \\}", + "type": "interline_equation", + "image_path": "21b943485aeea75139781e75eec77a838dff7379b690e1a36624bde044feeaf9.jpg" + } + ] + } + ], + "index": 16, + "virtual_lines": [ + { + "bbox": [ + 203, + 417, + 407, + 433 + ], + "spans": [], + "index": 16 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 438, + 392, + 458 + ], + "lines": [ + { + "bbox": [ + 105, + 437, + 393, + 459 + ], + "spans": [ + { + "bbox": [ + 105, + 437, + 122, + 452 + ], + "score": 1.0, + "content": "Let", + "type": "text" + }, + { + "bbox": [ + 123, + 438, + 277, + 459 + ], + "score": 0.91, + "content": "X ^ { * } = \\underset { x \\in A } { \\operatorname { a r g m i n } } \\ \\underset { \\gamma \\in S } { \\operatorname* { s u p } } \\| X \\odot \\gamma - x \\odot \\gamma \\| _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 277, + 437, + 297, + 452 + ], + "score": 1.0, + "content": ", and", + "type": "text" + }, + { + "bbox": [ + 298, + 438, + 362, + 450 + ], + "score": 0.91, + "content": "X ^ { - } = X - X ^ { * }", + "type": "inline_equation" + }, + { + "bbox": [ + 363, + 437, + 393, + 452 + ], + "score": 1.0, + "content": ". Then,", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 17 + }, + { + "type": "interline_equation", + "bbox": [ + 245, + 465, + 366, + 479 + ], + "lines": [ + { + "bbox": [ + 245, + 465, + 366, + 479 + ], + "spans": [ + { + "bbox": [ + 245, + 465, + 366, + 479 + ], + "score": 0.91, + "content": "X \\odot \\gamma = X ^ { * } \\odot \\gamma + X ^ { - } \\odot \\gamma", + "type": "interline_equation", + "image_path": "0980e2307b9837b6e871f9cac99c41111ca2dd922d0f88bd0bb77c61ad87adac.jpg" + } + ] + } + ], + "index": 18, + "virtual_lines": [ + { + "bbox": [ + 245, + 465, + 366, + 479 + ], + "spans": [], + "index": 18 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 484, + 430, + 496 + ], + "lines": [ + { + "bbox": [ + 105, + 483, + 431, + 497 + ], + "spans": [ + { + "bbox": [ + 105, + 483, + 267, + 497 + ], + "score": 1.0, + "content": "In the following, we omit the parameter", + "type": "text" + }, + { + "bbox": [ + 267, + 485, + 273, + 494 + ], + "score": 0.84, + "content": "\\theta", + "type": "inline_equation" + }, + { + "bbox": [ + 274, + 483, + 431, + 497 + ], + "score": 1.0, + "content": "for convenience. Moreover, we denote", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 19 + }, + { + "type": "interline_equation", + "bbox": [ + 223, + 502, + 387, + 520 + ], + "lines": [ + { + "bbox": [ + 223, + 502, + 387, + 520 + ], + "spans": [ + { + "bbox": [ + 223, + 502, + 387, + 520 + ], + "score": 0.92, + "content": "\\operatorname { E } _ { \\Gamma } { \\big [ } f ( X \\odot \\Gamma ; \\theta ) { \\big ] } \\triangleq \\operatorname { E } \\left[ f ( X \\odot \\Gamma ; \\theta ) | X \\right]", + "type": "interline_equation", + "image_path": "c8284b1ff901db327eca9c00d4df166fcd6b6a283bc8bf441547e3b4678b7a43.jpg" + } + ] + } + ], + "index": 20, + "virtual_lines": [ + { + "bbox": [ + 223, + 502, + 387, + 520 + ], + "spans": [], + "index": 20 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 524, + 351, + 537 + ], + "lines": [ + { + "bbox": [ + 106, + 524, + 352, + 538 + ], + "spans": [ + { + "bbox": [ + 106, + 524, + 251, + 538 + ], + "score": 1.0, + "content": "From Taylor Series, there exit some", + "type": "text" + }, + { + "bbox": [ + 252, + 525, + 304, + 537 + ], + "score": 0.94, + "content": "X ^ { \\prime } , X ^ { \\prime \\prime } \\in \\mathcal { X }", + "type": "inline_equation" + }, + { + "bbox": [ + 304, + 524, + 352, + 538 + ], + "score": 1.0, + "content": "satisfy that", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 21 + }, + { + "type": "interline_equation", + "bbox": [ + 187, + 541, + 424, + 569 + ], + "lines": [ + { + "bbox": [ + 187, + 541, + 424, + 569 + ], + "spans": [ + { + "bbox": [ + 187, + 541, + 424, + 569 + ], + "score": 0.92, + "content": "\\begin{array} { r c l } { f ( X \\odot \\Gamma ) } & { = } & { f ( X ^ { * } \\odot \\Gamma ) + f ^ { \\prime } ( X ^ { \\prime } \\odot \\Gamma ) ( X ^ { - } \\odot \\Gamma ) } \\\\ { f ( X \\odot \\gamma ^ { * } ) } & { = } & { f ( X ^ { * } \\odot \\gamma ^ { * } ) + f ^ { \\prime } ( X ^ { \\prime \\prime } \\odot \\gamma ^ { * } ) ( X ^ { - } \\odot \\gamma ^ { * } ) } \\end{array}", + "type": "interline_equation", + "image_path": "e017dfa5f30f4d0bcde9cdbb1fe0ce624e22ccd6e411ce710da15e8c45abb366.jpg" + } + ] + } + ], + "index": 22, + "virtual_lines": [ + { + "bbox": [ + 187, + 541, + 424, + 569 + ], + "spans": [], + "index": 22 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 573, + 289, + 587 + ], + "lines": [ + { + "bbox": [ + 106, + 573, + 290, + 588 + ], + "spans": [ + { + "bbox": [ + 106, + 573, + 176, + 588 + ], + "score": 1.0, + "content": "where we denote", + "type": "text" + }, + { + "bbox": [ + 177, + 573, + 259, + 587 + ], + "score": 0.92, + "content": "f ^ { \\prime } ( x ) = ( \\nabla _ { x } f ( x ) ) ^ { T }", + "type": "inline_equation" + }, + { + "bbox": [ + 260, + 573, + 290, + 588 + ], + "score": 1.0, + "content": ". Then,", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 23 + }, + { + "type": "interline_equation", + "bbox": [ + 116, + 591, + 495, + 640 + ], + "lines": [ + { + "bbox": [ + 116, + 591, + 495, + 640 + ], + "spans": [ + { + "bbox": [ + 116, + 591, + 495, + 640 + ], + "score": 0.94, + "content": "\\begin{array} { r l } & { \\mathrm { E r } [ f ( X \\odot \\Gamma ) - f ( X \\odot \\gamma ^ { * } ) ] } \\\\ { = } & { \\mathrm { E r } [ f ( X ^ { * } \\odot \\Gamma + X ^ { - } \\odot \\Gamma ) - f ( X ^ { * } \\odot \\gamma ^ { * } + X ^ { - } \\odot \\gamma ^ { * } ) ] } \\\\ { = } & { \\mathrm { E r } [ f ( X ^ { * } \\odot \\Gamma ) - f ( X ^ { * } \\odot \\gamma ^ { * } ) + f ^ { \\prime } ( X ^ { \\prime } \\odot \\Gamma ) ( X ^ { - } \\odot \\Gamma ) - f ^ { \\prime } ( X ^ { \\prime \\prime } \\odot \\gamma ^ { * } ) ( X ^ { - } \\odot \\gamma ^ { * } ) ] } \\\\ { = } & { \\mathrm { E r } [ f ( X ^ { * } \\odot \\Gamma ) - f ( X ^ { * } \\odot \\gamma ^ { * } ) ] + \\mathrm { E r } [ f ^ { \\prime } ( X ^ { \\prime } \\odot \\Gamma ) ( X ^ { - } \\odot \\Gamma ) - f ^ { \\prime } ( X ^ { \\prime \\prime } \\odot \\gamma ^ { * } ) ( X ^ { - } \\odot \\gamma ^ { * } ) ] } \\end{array}", + "type": "interline_equation", + "image_path": "1ed065d530f35da6161a8078e70ecec4c7138484e8030a8455714d1b6fe39662.jpg" + } + ] + } + ], + "index": 25, + "virtual_lines": [ + { + "bbox": [ + 116, + 591, + 495, + 607.3333333333334 + ], + "spans": [], + "index": 24 + }, + { + "bbox": [ + 116, + 607.3333333333334, + 495, + 623.6666666666667 + ], + "spans": [], + "index": 25 + }, + { + "bbox": [ + 116, + 623.6666666666667, + 495, + 640.0000000000001 + ], + "spans": [], + "index": 26 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 645, + 204, + 656 + ], + "lines": [ + { + "bbox": [ + 106, + 643, + 205, + 658 + ], + "spans": [ + { + "bbox": [ + 106, + 643, + 131, + 658 + ], + "score": 1.0, + "content": "Since", + "type": "text" + }, + { + "bbox": [ + 131, + 645, + 165, + 655 + ], + "score": 0.91, + "content": "X ^ { * } \\in A", + "type": "inline_equation" + }, + { + "bbox": [ + 166, + 643, + 205, + 658 + ], + "score": 1.0, + "content": ", we have", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 27 + }, + { + "type": "interline_equation", + "bbox": [ + 231, + 655, + 379, + 668 + ], + "lines": [ + { + "bbox": [ + 231, + 655, + 379, + 668 + ], + "spans": [ + { + "bbox": [ + 231, + 655, + 379, + 668 + ], + "score": 0.87, + "content": "\\operatorname { E } _ { \\Gamma } [ f ( X ^ { * } \\odot \\Gamma ) - f ( X ^ { * } \\odot \\gamma ^ { * } ) ] = 0 .", + "type": "interline_equation", + "image_path": "485c81811868da9d1b3b3b4e5dd9c3cb1261face5102ae8206ff0b9391611f5c.jpg" + } + ] + } + ], + "index": 28, + "virtual_lines": [ + { + "bbox": [ + 231, + 655, + 379, + 668 + ], + "spans": [], + "index": 28 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 672, + 131, + 682 + ], + "lines": [ + { + "bbox": [ + 105, + 670, + 134, + 686 + ], + "spans": [ + { + "bbox": [ + 105, + 670, + 134, + 686 + ], + "score": 1.0, + "content": "Then,", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 29 + }, + { + "type": "interline_equation", + "bbox": [ + 115, + 687, + 493, + 735 + ], + "lines": [ + { + "bbox": [ + 115, + 687, + 493, + 735 + ], + "spans": [ + { + "bbox": [ + 115, + 687, + 493, + 735 + ], + "score": 0.93, + "content": "\\begin{array} { r l } & { \\mathrm { E r } [ f ( X \\odot \\Gamma ) - f ( X \\odot \\gamma ^ { * } ) ] } \\\\ { = } & { \\mathrm { E } _ { \\Gamma } [ f ^ { \\prime } ( X ^ { \\prime } \\odot \\Gamma ) ( X ^ { - } \\odot \\Gamma ) - f ^ { \\prime } ( X ^ { \\prime \\prime } \\odot \\gamma ^ { * } ) ( X ^ { - } \\odot \\gamma ^ { * } ) ] } \\\\ { = } & { \\mathrm { E } _ { \\Gamma } \\big [ ( f ^ { \\prime } ( X ^ { \\prime } \\odot \\Gamma ) - f ^ { \\prime } ( X ^ { \\prime \\prime } \\odot \\gamma ^ { * } ) ) ( X ^ { - } \\odot \\Gamma ) \\big ] + \\mathrm { E } _ { \\Gamma } [ f ^ { \\prime } ( X ^ { \\prime \\prime } \\odot \\gamma ^ { * } ) ( X ^ { - } \\odot \\Gamma - X ^ { - } \\odot \\gamma ^ { * } ) ] } \\\\ { = } & { \\mathrm { E } _ { \\Gamma } \\big [ ( f ^ { \\prime } ( X ^ { \\prime } \\odot \\Gamma ) - f ^ { \\prime } ( X ^ { \\prime \\prime } \\odot \\gamma ^ { * } ) ) ( X ^ { - } \\odot \\Gamma ) \\big ] } \\end{array}", + "type": "interline_equation", + "image_path": "cf1f8852dfaca9b7cadef2881408869e07feaa9365764655fcf392b3189209fc.jpg" + } + ] + } + ], + "index": 31, + "virtual_lines": [ + { + "bbox": [ + 115, + 687, + 493, + 703.0 + ], + "spans": [], + "index": 30 + }, + { + "bbox": [ + 115, + 703.0, + 493, + 719.0 + ], + "spans": [], + "index": 31 + }, + { + "bbox": [ + 115, + 719.0, + 493, + 735.0 + ], + "spans": [], + "index": 32 + } + ] + } + ], + "page_idx": 12, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 26, + 293, + 38 + ], + "lines": [ + { + "bbox": [ + 106, + 25, + 294, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 25, + 294, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2017", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 300, + 751, + 311, + 760 + ], + "lines": [ + { + "bbox": [ + 299, + 750, + 312, + 764 + ], + "spans": [ + { + "bbox": [ + 299, + 750, + 312, + 764 + ], + "score": 1.0, + "content": "13", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 494, + 325, + 505, + 336 + ], + "lines": [ + { + "bbox": [ + 496, + 327, + 505, + 337 + ], + "spans": [ + { + "bbox": [ + 496, + 327, + 505, + 337 + ], + "score": 0.999, + "content": "□", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "title", + "bbox": [ + 104, + 80, + 465, + 95 + ], + "lines": [ + { + "bbox": [ + 106, + 81, + 465, + 96 + ], + "spans": [ + { + "bbox": [ + 106, + 81, + 465, + 96 + ], + "score": 1.0, + "content": "APPENDIX: DROPOUT WITH EXPECTATION-LINEAR REGULARIZATION", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "text", + "bbox": [ + 107, + 106, + 454, + 121 + ], + "lines": [ + { + "bbox": [ + 105, + 107, + 454, + 122 + ], + "spans": [ + { + "bbox": [ + 105, + 107, + 454, + 122 + ], + "score": 1.0, + "content": "A LVM DROPOUT TRAINING VS. STANDARD DROPOUT TRAINING", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 1, + "bbox_fs": [ + 105, + 107, + 454, + 122 + ] + }, + { + "type": "title", + "bbox": [ + 106, + 132, + 191, + 145 + ], + "lines": [ + { + "bbox": [ + 106, + 133, + 192, + 145 + ], + "spans": [ + { + "bbox": [ + 106, + 133, + 192, + 145 + ], + "score": 1.0, + "content": "Proof of Theorem 1", + "type": "text" + } + ], + "index": 2 + } + ], + "index": 2 + }, + { + "type": "text", + "bbox": [ + 106, + 156, + 133, + 168 + ], + "lines": [ + { + "bbox": [ + 104, + 155, + 135, + 172 + ], + "spans": [ + { + "bbox": [ + 104, + 155, + 135, + 172 + ], + "score": 1.0, + "content": "Proof.", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 3, + "bbox_fs": [ + 104, + 155, + 135, + 172 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 143, + 173, + 467, + 228 + ], + "lines": [ + { + "bbox": [ + 143, + 173, + 467, + 228 + ], + "spans": [ + { + "bbox": [ + 143, + 173, + 467, + 228 + ], + "score": 0.93, + "content": "\\begin{array} { r c l } { \\operatorname { E } _ { S _ { D } } [ l ( D , S _ { D } ; \\theta ) ] } & { = } & { \\displaystyle \\int _ { S } \\prod _ { i = 1 } ^ { N } p ( s _ { i } ) \\Big ( \\sum _ { i = 1 } ^ { N } \\log p ( y _ { i } | x _ { i } , s _ { i } ; \\theta ) \\Big ) d \\mu ( s _ { 1 } ) \\dots d \\mu ( s _ { N } ) } \\\\ & { = } & { \\displaystyle \\sum _ { i = 1 } ^ { N } \\int _ { S } p ( s _ { i } ) \\log p ( y _ { i } | x _ { i } , s _ { i } ; \\theta ) d \\mu ( s _ { i } ) } \\end{array}", + "type": "interline_equation", + "image_path": "1b6eda8517f3480f3cc112ab5c9f02fb056c577cb4ccb3c958b4878731780415.jpg" + } + ] + } + ], + "index": 5, + "virtual_lines": [ + { + "bbox": [ + 143, + 173, + 467, + 191.33333333333334 + ], + "spans": [], + "index": 4 + }, + { + "bbox": [ + 143, + 191.33333333333334, + 467, + 209.66666666666669 + ], + "spans": [], + "index": 5 + }, + { + "bbox": [ + 143, + 209.66666666666669, + 467, + 228.00000000000003 + ], + "spans": [], + "index": 6 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 232, + 359, + 245 + ], + "lines": [ + { + "bbox": [ + 105, + 230, + 360, + 247 + ], + "spans": [ + { + "bbox": [ + 105, + 230, + 142, + 247 + ], + "score": 1.0, + "content": "Because", + "type": "text" + }, + { + "bbox": [ + 142, + 232, + 167, + 245 + ], + "score": 0.91, + "content": "\\log ( \\cdot )", + "type": "inline_equation" + }, + { + "bbox": [ + 167, + 230, + 360, + 247 + ], + "score": 1.0, + "content": "is a concave function, from Jensen’s Inequality,", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 7, + "bbox_fs": [ + 105, + 230, + 360, + 247 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 183, + 249, + 427, + 276 + ], + "lines": [ + { + "bbox": [ + 183, + 249, + 427, + 276 + ], + "spans": [ + { + "bbox": [ + 183, + 249, + 427, + 276 + ], + "score": 0.93, + "content": "\\int _ { S } p ( s ) \\log p ( y | x , s ; \\theta ) d \\mu ( s ) \\leq \\log \\int _ { S } p ( s ) p ( y | x , s ; \\theta ) d \\mu ( s )", + "type": "interline_equation", + "image_path": "3859dff83b389564e9c51ff0bdec82490b03d79f6978f8e000e7f7fdf08a7e28.jpg" + } + ] + } + ], + "index": 8, + "virtual_lines": [ + { + "bbox": [ + 183, + 249, + 427, + 276 + ], + "spans": [], + "index": 8 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 281, + 128, + 292 + ], + "lines": [ + { + "bbox": [ + 105, + 280, + 130, + 293 + ], + "spans": [ + { + "bbox": [ + 105, + 280, + 130, + 293 + ], + "score": 1.0, + "content": "Thus", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 9, + "bbox_fs": [ + 105, + 280, + 130, + 293 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 159, + 289, + 452, + 323 + ], + "lines": [ + { + "bbox": [ + 159, + 289, + 452, + 323 + ], + "spans": [ + { + "bbox": [ + 159, + 289, + 452, + 323 + ], + "score": 0.93, + "content": "\\mathrm { E } _ { S _ { D } } [ - l ( D , S _ { D } ; \\theta ) ] \\geq \\sum _ { i = 1 } ^ { N } \\log \\int _ { S } p ( s _ { i } ) p ( y _ { i } | x _ { i } , s _ { i } ; \\theta ) d \\mu ( s _ { i } ) = - l ( D ; \\theta ) .", + "type": "interline_equation", + "image_path": "a943f05ddcf38f168121e7f010fd299223446bdbdbab7160e8ab433d15724b17.jpg" + } + ] + } + ], + "index": 11, + "virtual_lines": [ + { + "bbox": [ + 159, + 289, + 452, + 300.3333333333333 + ], + "spans": [], + "index": 10 + }, + { + "bbox": [ + 159, + 300.3333333333333, + 452, + 311.66666666666663 + ], + "spans": [], + "index": 11 + }, + { + "bbox": [ + 159, + 311.66666666666663, + 452, + 322.99999999999994 + ], + "spans": [], + "index": 12 + } + ] + }, + { + "type": "title", + "bbox": [ + 106, + 352, + 409, + 366 + ], + "lines": [ + { + "bbox": [ + 104, + 352, + 409, + 368 + ], + "spans": [ + { + "bbox": [ + 104, + 352, + 409, + 368 + ], + "score": 1.0, + "content": "B EXPECTATION-LINEAR DROPOUT NEURAL NETWORKS", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 13 + }, + { + "type": "title", + "bbox": [ + 107, + 378, + 230, + 389 + ], + "lines": [ + { + "bbox": [ + 106, + 377, + 231, + 390 + ], + "spans": [ + { + "bbox": [ + 106, + 377, + 231, + 390 + ], + "score": 1.0, + "content": "B.1 PROOF OF THEOREM 2", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 14 + }, + { + "type": "text", + "bbox": [ + 107, + 398, + 216, + 411 + ], + "lines": [ + { + "bbox": [ + 106, + 397, + 216, + 412 + ], + "spans": [ + { + "bbox": [ + 106, + 397, + 151, + 412 + ], + "score": 1.0, + "content": "Proof. Let", + "type": "text" + }, + { + "bbox": [ + 152, + 398, + 195, + 411 + ], + "score": 0.93, + "content": "\\gamma ^ { * } = \\operatorname { E } [ \\Gamma ]", + "type": "inline_equation" + }, + { + "bbox": [ + 195, + 397, + 216, + 412 + ], + "score": 1.0, + "content": ", and", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 15, + "bbox_fs": [ + 106, + 397, + 216, + 412 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 203, + 417, + 407, + 433 + ], + "lines": [ + { + "bbox": [ + 203, + 417, + 407, + 433 + ], + "spans": [ + { + "bbox": [ + 203, + 417, + 407, + 433 + ], + "score": 0.88, + "content": "A \\triangleq \\{ x : \\| \\mathrm { E } [ f ( x \\odot \\Gamma ; \\theta ) ] - f ( x \\odot \\gamma ^ { * } ; \\theta ) \\| _ { 2 } = 0 \\}", + "type": "interline_equation", + "image_path": "21b943485aeea75139781e75eec77a838dff7379b690e1a36624bde044feeaf9.jpg" + } + ] + } + ], + "index": 16, + "virtual_lines": [ + { + "bbox": [ + 203, + 417, + 407, + 433 + ], + "spans": [], + "index": 16 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 438, + 392, + 458 + ], + "lines": [ + { + "bbox": [ + 105, + 437, + 393, + 459 + ], + "spans": [ + { + "bbox": [ + 105, + 437, + 122, + 452 + ], + "score": 1.0, + "content": "Let", + "type": "text" + }, + { + "bbox": [ + 123, + 438, + 277, + 459 + ], + "score": 0.91, + "content": "X ^ { * } = \\underset { x \\in A } { \\operatorname { a r g m i n } } \\ \\underset { \\gamma \\in S } { \\operatorname* { s u p } } \\| X \\odot \\gamma - x \\odot \\gamma \\| _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 277, + 437, + 297, + 452 + ], + "score": 1.0, + "content": ", and", + "type": "text" + }, + { + "bbox": [ + 298, + 438, + 362, + 450 + ], + "score": 0.91, + "content": "X ^ { - } = X - X ^ { * }", + "type": "inline_equation" + }, + { + "bbox": [ + 363, + 437, + 393, + 452 + ], + "score": 1.0, + "content": ". Then,", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 17, + "bbox_fs": [ + 105, + 437, + 393, + 459 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 245, + 465, + 366, + 479 + ], + "lines": [ + { + "bbox": [ + 245, + 465, + 366, + 479 + ], + "spans": [ + { + "bbox": [ + 245, + 465, + 366, + 479 + ], + "score": 0.91, + "content": "X \\odot \\gamma = X ^ { * } \\odot \\gamma + X ^ { - } \\odot \\gamma", + "type": "interline_equation", + "image_path": "0980e2307b9837b6e871f9cac99c41111ca2dd922d0f88bd0bb77c61ad87adac.jpg" + } + ] + } + ], + "index": 18, + "virtual_lines": [ + { + "bbox": [ + 245, + 465, + 366, + 479 + ], + "spans": [], + "index": 18 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 484, + 430, + 496 + ], + "lines": [ + { + "bbox": [ + 105, + 483, + 431, + 497 + ], + "spans": [ + { + "bbox": [ + 105, + 483, + 267, + 497 + ], + "score": 1.0, + "content": "In the following, we omit the parameter", + "type": "text" + }, + { + "bbox": [ + 267, + 485, + 273, + 494 + ], + "score": 0.84, + "content": "\\theta", + "type": "inline_equation" + }, + { + "bbox": [ + 274, + 483, + 431, + 497 + ], + "score": 1.0, + "content": "for convenience. Moreover, we denote", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 19, + "bbox_fs": [ + 105, + 483, + 431, + 497 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 223, + 502, + 387, + 520 + ], + "lines": [ + { + "bbox": [ + 223, + 502, + 387, + 520 + ], + "spans": [ + { + "bbox": [ + 223, + 502, + 387, + 520 + ], + "score": 0.92, + "content": "\\operatorname { E } _ { \\Gamma } { \\big [ } f ( X \\odot \\Gamma ; \\theta ) { \\big ] } \\triangleq \\operatorname { E } \\left[ f ( X \\odot \\Gamma ; \\theta ) | X \\right]", + "type": "interline_equation", + "image_path": "c8284b1ff901db327eca9c00d4df166fcd6b6a283bc8bf441547e3b4678b7a43.jpg" + } + ] + } + ], + "index": 20, + "virtual_lines": [ + { + "bbox": [ + 223, + 502, + 387, + 520 + ], + "spans": [], + "index": 20 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 524, + 351, + 537 + ], + "lines": [ + { + "bbox": [ + 106, + 524, + 352, + 538 + ], + "spans": [ + { + "bbox": [ + 106, + 524, + 251, + 538 + ], + "score": 1.0, + "content": "From Taylor Series, there exit some", + "type": "text" + }, + { + "bbox": [ + 252, + 525, + 304, + 537 + ], + "score": 0.94, + "content": "X ^ { \\prime } , X ^ { \\prime \\prime } \\in \\mathcal { X }", + "type": "inline_equation" + }, + { + "bbox": [ + 304, + 524, + 352, + 538 + ], + "score": 1.0, + "content": "satisfy that", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 21, + "bbox_fs": [ + 106, + 524, + 352, + 538 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 187, + 541, + 424, + 569 + ], + "lines": [ + { + "bbox": [ + 187, + 541, + 424, + 569 + ], + "spans": [ + { + "bbox": [ + 187, + 541, + 424, + 569 + ], + "score": 0.92, + "content": "\\begin{array} { r c l } { f ( X \\odot \\Gamma ) } & { = } & { f ( X ^ { * } \\odot \\Gamma ) + f ^ { \\prime } ( X ^ { \\prime } \\odot \\Gamma ) ( X ^ { - } \\odot \\Gamma ) } \\\\ { f ( X \\odot \\gamma ^ { * } ) } & { = } & { f ( X ^ { * } \\odot \\gamma ^ { * } ) + f ^ { \\prime } ( X ^ { \\prime \\prime } \\odot \\gamma ^ { * } ) ( X ^ { - } \\odot \\gamma ^ { * } ) } \\end{array}", + "type": "interline_equation", + "image_path": "e017dfa5f30f4d0bcde9cdbb1fe0ce624e22ccd6e411ce710da15e8c45abb366.jpg" + } + ] + } + ], + "index": 22, + "virtual_lines": [ + { + "bbox": [ + 187, + 541, + 424, + 569 + ], + "spans": [], + "index": 22 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 573, + 289, + 587 + ], + "lines": [ + { + "bbox": [ + 106, + 573, + 290, + 588 + ], + "spans": [ + { + "bbox": [ + 106, + 573, + 176, + 588 + ], + "score": 1.0, + "content": "where we denote", + "type": "text" + }, + { + "bbox": [ + 177, + 573, + 259, + 587 + ], + "score": 0.92, + "content": "f ^ { \\prime } ( x ) = ( \\nabla _ { x } f ( x ) ) ^ { T }", + "type": "inline_equation" + }, + { + "bbox": [ + 260, + 573, + 290, + 588 + ], + "score": 1.0, + "content": ". Then,", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 23, + "bbox_fs": [ + 106, + 573, + 290, + 588 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 116, + 591, + 495, + 640 + ], + "lines": [ + { + "bbox": [ + 116, + 591, + 495, + 640 + ], + "spans": [ + { + "bbox": [ + 116, + 591, + 495, + 640 + ], + "score": 0.94, + "content": "\\begin{array} { r l } & { \\mathrm { E r } [ f ( X \\odot \\Gamma ) - f ( X \\odot \\gamma ^ { * } ) ] } \\\\ { = } & { \\mathrm { E r } [ f ( X ^ { * } \\odot \\Gamma + X ^ { - } \\odot \\Gamma ) - f ( X ^ { * } \\odot \\gamma ^ { * } + X ^ { - } \\odot \\gamma ^ { * } ) ] } \\\\ { = } & { \\mathrm { E r } [ f ( X ^ { * } \\odot \\Gamma ) - f ( X ^ { * } \\odot \\gamma ^ { * } ) + f ^ { \\prime } ( X ^ { \\prime } \\odot \\Gamma ) ( X ^ { - } \\odot \\Gamma ) - f ^ { \\prime } ( X ^ { \\prime \\prime } \\odot \\gamma ^ { * } ) ( X ^ { - } \\odot \\gamma ^ { * } ) ] } \\\\ { = } & { \\mathrm { E r } [ f ( X ^ { * } \\odot \\Gamma ) - f ( X ^ { * } \\odot \\gamma ^ { * } ) ] + \\mathrm { E r } [ f ^ { \\prime } ( X ^ { \\prime } \\odot \\Gamma ) ( X ^ { - } \\odot \\Gamma ) - f ^ { \\prime } ( X ^ { \\prime \\prime } \\odot \\gamma ^ { * } ) ( X ^ { - } \\odot \\gamma ^ { * } ) ] } \\end{array}", + "type": "interline_equation", + "image_path": "1ed065d530f35da6161a8078e70ecec4c7138484e8030a8455714d1b6fe39662.jpg" + } + ] + } + ], + "index": 25, + "virtual_lines": [ + { + "bbox": [ + 116, + 591, + 495, + 607.3333333333334 + ], + "spans": [], + "index": 24 + }, + { + "bbox": [ + 116, + 607.3333333333334, + 495, + 623.6666666666667 + ], + "spans": [], + "index": 25 + }, + { + "bbox": [ + 116, + 623.6666666666667, + 495, + 640.0000000000001 + ], + "spans": [], + "index": 26 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 645, + 204, + 656 + ], + "lines": [ + { + "bbox": [ + 106, + 643, + 205, + 658 + ], + "spans": [ + { + "bbox": [ + 106, + 643, + 131, + 658 + ], + "score": 1.0, + "content": "Since", + "type": "text" + }, + { + "bbox": [ + 131, + 645, + 165, + 655 + ], + "score": 0.91, + "content": "X ^ { * } \\in A", + "type": "inline_equation" + }, + { + "bbox": [ + 166, + 643, + 205, + 658 + ], + "score": 1.0, + "content": ", we have", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 27, + "bbox_fs": [ + 106, + 643, + 205, + 658 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 231, + 655, + 379, + 668 + ], + "lines": [ + { + "bbox": [ + 231, + 655, + 379, + 668 + ], + "spans": [ + { + "bbox": [ + 231, + 655, + 379, + 668 + ], + "score": 0.87, + "content": "\\operatorname { E } _ { \\Gamma } [ f ( X ^ { * } \\odot \\Gamma ) - f ( X ^ { * } \\odot \\gamma ^ { * } ) ] = 0 .", + "type": "interline_equation", + "image_path": "485c81811868da9d1b3b3b4e5dd9c3cb1261face5102ae8206ff0b9391611f5c.jpg" + } + ] + } + ], + "index": 28, + "virtual_lines": [ + { + "bbox": [ + 231, + 655, + 379, + 668 + ], + "spans": [], + "index": 28 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 672, + 131, + 682 + ], + "lines": [ + { + "bbox": [ + 105, + 670, + 134, + 686 + ], + "spans": [ + { + "bbox": [ + 105, + 670, + 134, + 686 + ], + "score": 1.0, + "content": "Then,", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 29, + "bbox_fs": [ + 105, + 670, + 134, + 686 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 115, + 687, + 493, + 735 + ], + "lines": [ + { + "bbox": [ + 115, + 687, + 493, + 735 + ], + "spans": [ + { + "bbox": [ + 115, + 687, + 493, + 735 + ], + "score": 0.93, + "content": "\\begin{array} { r l } & { \\mathrm { E r } [ f ( X \\odot \\Gamma ) - f ( X \\odot \\gamma ^ { * } ) ] } \\\\ { = } & { \\mathrm { E } _ { \\Gamma } [ f ^ { \\prime } ( X ^ { \\prime } \\odot \\Gamma ) ( X ^ { - } \\odot \\Gamma ) - f ^ { \\prime } ( X ^ { \\prime \\prime } \\odot \\gamma ^ { * } ) ( X ^ { - } \\odot \\gamma ^ { * } ) ] } \\\\ { = } & { \\mathrm { E } _ { \\Gamma } \\big [ ( f ^ { \\prime } ( X ^ { \\prime } \\odot \\Gamma ) - f ^ { \\prime } ( X ^ { \\prime \\prime } \\odot \\gamma ^ { * } ) ) ( X ^ { - } \\odot \\Gamma ) \\big ] + \\mathrm { E } _ { \\Gamma } [ f ^ { \\prime } ( X ^ { \\prime \\prime } \\odot \\gamma ^ { * } ) ( X ^ { - } \\odot \\Gamma - X ^ { - } \\odot \\gamma ^ { * } ) ] } \\\\ { = } & { \\mathrm { E } _ { \\Gamma } \\big [ ( f ^ { \\prime } ( X ^ { \\prime } \\odot \\Gamma ) - f ^ { \\prime } ( X ^ { \\prime \\prime } \\odot \\gamma ^ { * } ) ) ( X ^ { - } \\odot \\Gamma ) \\big ] } \\end{array}", + "type": "interline_equation", + "image_path": "cf1f8852dfaca9b7cadef2881408869e07feaa9365764655fcf392b3189209fc.jpg" + } + ] + } + ], + "index": 31, + "virtual_lines": [ + { + "bbox": [ + 115, + 687, + 493, + 703.0 + ], + "spans": [], + "index": 30 + }, + { + "bbox": [ + 115, + 703.0, + 493, + 719.0 + ], + "spans": [], + "index": 31 + }, + { + "bbox": [ + 115, + 719.0, + 493, + 735.0 + ], + "spans": [], + "index": 32 + } + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 106, + 82, + 131, + 94 + ], + "lines": [ + { + "bbox": [ + 105, + 81, + 133, + 96 + ], + "spans": [ + { + "bbox": [ + 105, + 81, + 133, + 96 + ], + "score": 1.0, + "content": "Then,", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "interline_equation", + "bbox": [ + 196, + 92, + 414, + 117 + ], + "lines": [ + { + "bbox": [ + 196, + 92, + 414, + 117 + ], + "spans": [ + { + "bbox": [ + 196, + 92, + 414, + 117 + ], + "score": 0.87, + "content": "\\begin{array} { r l } & { \\| \\mathrm { E } _ { \\Gamma } [ f ( X \\odot \\Gamma ) ] - f ( X \\odot \\gamma ^ { * } ) \\| _ { 2 } } \\\\ { = } & { \\| \\mathrm { E } _ { \\Gamma } [ ( f ^ { \\prime } ( X ^ { \\prime } \\odot \\Gamma ) - f ^ { \\prime } ( X ^ { \\prime \\prime } \\odot \\gamma ^ { * } ) ) ( X ^ { - } \\odot \\Gamma ) ] \\| _ { 2 } } \\end{array}", + "type": "interline_equation", + "image_path": "bce0d2e616c4bad3fe56e7d67d1cf98bb1cb3030e4786fff005ad0d3ce0faf57.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 196, + 92, + 414, + 117 + ], + "spans": [], + "index": 1 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 118, + 505, + 148 + ], + "lines": [ + { + "bbox": [ + 105, + 117, + 506, + 138 + ], + "spans": [ + { + "bbox": [ + 105, + 117, + 130, + 132 + ], + "score": 1.0, + "content": "Since", + "type": "text" + }, + { + "bbox": [ + 131, + 118, + 386, + 138 + ], + "score": 0.84, + "content": "\\| X ^ { - } \\odot \\gamma ^ { \\prime } \\| _ { 2 } \\leq \\operatorname* { s u p } _ { \\gamma \\in S } \\| X ^ { - } \\odot \\gamma \\| _ { 2 } = \\operatorname* { i n f } _ { x \\in A } \\operatorname* { s u p } _ { \\gamma \\in S } \\| X \\odot \\gamma - x \\odot \\gamma \\| _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 386, + 117, + 506, + 132 + ], + "score": 1.0, + "content": ", and from Jensen’s inequality", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 136, + 232, + 150 + ], + "spans": [ + { + "bbox": [ + 105, + 136, + 232, + 150 + ], + "score": 1.0, + "content": "and property of operator norm,", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 2.5 + }, + { + "type": "interline_equation", + "bbox": [ + 192, + 150, + 416, + 220 + ], + "lines": [ + { + "bbox": [ + 192, + 150, + 416, + 220 + ], + "spans": [ + { + "bbox": [ + 192, + 150, + 416, + 220 + ], + "score": 0.93, + "content": "\\begin{array} { r l } & { \\| \\mathrm { E } _ { \\Gamma } [ ( f ^ { \\prime } ( X ^ { \\prime } \\odot \\Gamma ) - f ^ { \\prime } ( X ^ { \\prime \\prime } \\odot \\gamma ^ { * } ) ) ( X ^ { - } \\odot \\Gamma ) ] \\| _ { 2 } } \\\\ { \\le } & { \\mathrm { E } _ { \\Gamma } \\Big [ \\| f ^ { \\prime } ( X ^ { \\prime } \\odot \\Gamma ) - f ^ { \\prime } ( X ^ { \\prime \\prime } \\odot \\gamma ^ { * } ) \\| _ { o p } \\| X ^ { - } \\odot \\Gamma \\| _ { 2 } \\Big ] } \\\\ { \\le } & { 2 B \\mathrm { E } _ { \\Gamma } \\Big [ \\| X ^ { - } \\odot \\Gamma \\| _ { 2 } \\Big ] } \\\\ { \\le } & { 2 B \\underset { x \\in A } { \\operatorname* { i n f } } \\underset { \\gamma \\in S } { \\operatorname* { s u p } } \\| X \\odot \\gamma - x \\odot \\gamma \\| _ { 2 } } \\end{array}", + "type": "interline_equation", + "image_path": "7293aa72bdfc9da6dd4c66f3aadb86915be163c5133b37713db59e120995bb30.jpg" + } + ] + } + ], + "index": 5.5, + "virtual_lines": [ + { + "bbox": [ + 192, + 150, + 416, + 167.5 + ], + "spans": [], + "index": 4 + }, + { + "bbox": [ + 192, + 167.5, + 416, + 185.0 + ], + "spans": [], + "index": 5 + }, + { + "bbox": [ + 192, + 185.0, + 416, + 202.5 + ], + "spans": [], + "index": 6 + }, + { + "bbox": [ + 192, + 202.5, + 416, + 220.0 + ], + "spans": [], + "index": 7 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 222, + 174, + 234 + ], + "lines": [ + { + "bbox": [ + 105, + 221, + 176, + 236 + ], + "spans": [ + { + "bbox": [ + 105, + 221, + 176, + 236 + ], + "score": 1.0, + "content": "Finally we have,", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 8 + }, + { + "type": "interline_equation", + "bbox": [ + 184, + 237, + 425, + 288 + ], + "lines": [ + { + "bbox": [ + 184, + 237, + 425, + 288 + ], + "spans": [ + { + "bbox": [ + 184, + 237, + 425, + 288 + ], + "score": 0.94, + "content": "\\begin{array} { r l } & { \\mathrm { E } _ { X } \\bigg [ \\| \\mathrm { E } _ { \\Gamma } [ ( f ^ { \\prime } ( X ^ { \\prime } \\odot \\Gamma ) - f ^ { \\prime } ( X ^ { \\prime \\prime } \\odot \\gamma ^ { * } ) ) ( X ^ { - } \\odot \\Gamma ) ] \\| _ { 2 } \\bigg ] } \\\\ { \\le } & { 2 B \\mathrm { E } \\bigg [ \\underset { x \\in A } { \\operatorname* { i n f } } \\underset { \\gamma \\in S } { \\operatorname* { s u p } } \\| X \\odot \\gamma - x \\odot \\gamma \\| _ { 2 } \\bigg ] \\le 2 B C } \\end{array}", + "type": "interline_equation", + "image_path": "e886b0fe49a2618c32b9a22326adb7106a4d8e5b8290a7ae8db54ba3e9da4a73.jpg" + } + ] + } + ], + "index": 10, + "virtual_lines": [ + { + "bbox": [ + 184, + 237, + 425, + 254.0 + ], + "spans": [], + "index": 9 + }, + { + "bbox": [ + 184, + 254.0, + 425, + 271.0 + ], + "spans": [], + "index": 10 + }, + { + "bbox": [ + 184, + 271.0, + 425, + 288.0 + ], + "spans": [], + "index": 11 + } + ] + }, + { + "type": "title", + "bbox": [ + 107, + 315, + 230, + 326 + ], + "lines": [ + { + "bbox": [ + 105, + 314, + 231, + 327 + ], + "spans": [ + { + "bbox": [ + 105, + 314, + 231, + 327 + ], + "score": 1.0, + "content": "B.2 PROOF OF THEOREM 3", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 12 + }, + { + "type": "text", + "bbox": [ + 108, + 336, + 446, + 347 + ], + "lines": [ + { + "bbox": [ + 105, + 335, + 447, + 349 + ], + "spans": [ + { + "bbox": [ + 105, + 335, + 288, + 349 + ], + "score": 1.0, + "content": "Proof. Induction on the number of the layers", + "type": "text" + }, + { + "bbox": [ + 289, + 336, + 297, + 346 + ], + "score": 0.78, + "content": "L", + "type": "inline_equation" + }, + { + "bbox": [ + 297, + 335, + 437, + 349 + ], + "score": 1.0, + "content": ". As before, we omit the parameter", + "type": "text" + }, + { + "bbox": [ + 437, + 337, + 443, + 345 + ], + "score": 0.8, + "content": "\\theta", + "type": "inline_equation" + }, + { + "bbox": [ + 443, + 335, + 447, + 349 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 13 + }, + { + "type": "text", + "bbox": [ + 118, + 348, + 339, + 358 + ], + "lines": [ + { + "bbox": [ + 115, + 346, + 339, + 360 + ], + "spans": [ + { + "bbox": [ + 115, + 346, + 182, + 360 + ], + "score": 1.0, + "content": "itial step: when", + "type": "text" + }, + { + "bbox": [ + 183, + 347, + 209, + 357 + ], + "score": 0.91, + "content": "L = 1", + "type": "inline_equation" + }, + { + "bbox": [ + 209, + 346, + 339, + 360 + ], + "score": 1.0, + "content": ", the statement is obviously true.", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 14 + }, + { + "type": "text", + "bbox": [ + 108, + 358, + 451, + 380 + ], + "lines": [ + { + "bbox": [ + 105, + 356, + 452, + 371 + ], + "spans": [ + { + "bbox": [ + 105, + 356, + 163, + 371 + ], + "score": 1.0, + "content": "Induction on", + "type": "text" + }, + { + "bbox": [ + 164, + 358, + 172, + 368 + ], + "score": 0.63, + "content": "L", + "type": "inline_equation" + }, + { + "bbox": [ + 172, + 356, + 413, + 371 + ], + "score": 1.0, + "content": ": Suppose that the statement is true for neural networks with", + "type": "text" + }, + { + "bbox": [ + 414, + 359, + 421, + 368 + ], + "score": 0.82, + "content": "L", + "type": "inline_equation" + }, + { + "bbox": [ + 422, + 356, + 452, + 371 + ], + "score": 1.0, + "content": "layers.", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 367, + 398, + 383 + ], + "spans": [ + { + "bbox": [ + 105, + 367, + 201, + 383 + ], + "score": 1.0, + "content": "Now we prove the case", + "type": "text" + }, + { + "bbox": [ + 201, + 369, + 226, + 379 + ], + "score": 0.9, + "content": "L + 1", + "type": "inline_equation" + }, + { + "bbox": [ + 227, + 367, + 398, + 383 + ], + "score": 1.0, + "content": ". From the inductive assumption, we have,", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 15.5 + }, + { + "type": "interline_equation", + "bbox": [ + 192, + 382, + 418, + 404 + ], + "lines": [ + { + "bbox": [ + 192, + 382, + 418, + 404 + ], + "spans": [ + { + "bbox": [ + 192, + 382, + 418, + 404 + ], + "score": 0.91, + "content": "\\begin{array} { r } { \\mathrm { E } _ { X } \\Big [ \\big \\| \\mathrm { E } _ { S _ { L } } \\big [ \\mathbf { H } ^ { ( L ) } ( X , S _ { L } ) \\big ] - \\mathbf { h } ^ { ( L ) } ( X , \\mathrm { E } [ S _ { L } ] ) \\big \\| _ { 2 } \\Big ] \\leq \\Delta _ { L } } \\end{array}", + "type": "interline_equation", + "image_path": "9ff0da115e794544d976c6876261de6f0e96a4988c1c2be95fa52ad1d4e18848.jpg" + } + ] + } + ], + "index": 17, + "virtual_lines": [ + { + "bbox": [ + 192, + 382, + 418, + 404 + ], + "spans": [], + "index": 17 + } + ] + }, + { + "type": "text", + "bbox": [ + 105, + 407, + 459, + 420 + ], + "lines": [ + { + "bbox": [ + 104, + 405, + 460, + 423 + ], + "spans": [ + { + "bbox": [ + 104, + 405, + 133, + 423 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 133, + 407, + 227, + 421 + ], + "score": 0.92, + "content": "{ \\cal S } _ { \\cal L } = \\{ \\Gamma ^ { ( 1 ) } , \\dots , \\Gamma ^ { ( L ) } \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 227, + 405, + 403, + 423 + ], + "score": 1.0, + "content": "is the dropout random variables for the first", + "type": "text" + }, + { + "bbox": [ + 403, + 409, + 411, + 418 + ], + "score": 0.83, + "content": "L", + "type": "inline_equation" + }, + { + "bbox": [ + 412, + 405, + 460, + 423 + ], + "score": 1.0, + "content": "layers, and", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 18 + }, + { + "type": "interline_equation", + "bbox": [ + 204, + 422, + 407, + 451 + ], + "lines": [ + { + "bbox": [ + 204, + 422, + 407, + 451 + ], + "spans": [ + { + "bbox": [ + 204, + 422, + 407, + 451 + ], + "score": 0.93, + "content": "\\Delta _ { L } = ( B \\gamma ) ^ { L - 1 } \\delta + ( \\delta + B \\gamma \\sigma ) \\bigg ( { \\frac { 1 - ( B \\gamma ) ^ { L - 1 } } { 1 - B \\gamma } } \\bigg )", + "type": "interline_equation", + "image_path": "a3f94844753a1da969e76f829d6422d3b6f4bf9577a5a023505b660285137284.jpg" + } + ] + } + ], + "index": 19, + "virtual_lines": [ + { + "bbox": [ + 204, + 422, + 407, + 451 + ], + "spans": [], + "index": 19 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 453, + 409, + 465 + ], + "lines": [ + { + "bbox": [ + 106, + 452, + 410, + 466 + ], + "spans": [ + { + "bbox": [ + 106, + 452, + 169, + 466 + ], + "score": 1.0, + "content": "In addition, the", + "type": "text" + }, + { + "bbox": [ + 169, + 454, + 195, + 464 + ], + "score": 0.9, + "content": "L + 1", + "type": "inline_equation" + }, + { + "bbox": [ + 195, + 452, + 227, + 466 + ], + "score": 1.0, + "content": "layer is", + "type": "text" + }, + { + "bbox": [ + 228, + 454, + 234, + 463 + ], + "score": 0.84, + "content": "\\delta", + "type": "inline_equation" + }, + { + "bbox": [ + 234, + 452, + 410, + 466 + ], + "score": 1.0, + "content": "-approximately expectation-linear, we have:", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 20 + }, + { + "type": "interline_equation", + "bbox": [ + 153, + 467, + 457, + 488 + ], + "lines": [ + { + "bbox": [ + 153, + 467, + 457, + 488 + ], + "spans": [ + { + "bbox": [ + 153, + 467, + 457, + 488 + ], + "score": 0.9, + "content": "\\begin{array} { r } { \\mathrm { E } _ { \\mathbf { H } ^ { ( L ) } } \\Big [ \\big \\lVert \\mathrm { E } _ { \\Gamma ^ { ( L + 1 ) } } \\left[ f _ { L + 1 } ( \\mathbf { H } ^ { ( L ) } \\odot \\Gamma ^ { ( L + 1 ) } ) \\right] - f _ { L + 1 } ( \\mathbf { H } ^ { ( L ) } \\odot \\boldsymbol { \\gamma } ^ { ( L + 1 ) } ) \\big \\rVert _ { 2 } \\Big ] \\leq \\delta } \\end{array}", + "type": "interline_equation", + "image_path": "97e6e1224cac40b9e084b887782df39ad992930f8e349fe9c6d0f27831b4f3a4.jpg" + } + ] + } + ], + "index": 21, + "virtual_lines": [ + { + "bbox": [ + 153, + 467, + 457, + 488 + ], + "spans": [], + "index": 21 + } + ] + }, + { + "type": "text", + "bbox": [ + 105, + 491, + 506, + 517 + ], + "lines": [ + { + "bbox": [ + 105, + 489, + 506, + 506 + ], + "spans": [ + { + "bbox": [ + 105, + 489, + 123, + 506 + ], + "score": 1.0, + "content": "Let", + "type": "text" + }, + { + "bbox": [ + 124, + 492, + 282, + 505 + ], + "score": 0.92, + "content": "\\operatorname { E } [ \\Gamma ^ { ( l ) } ] ~ = ~ \\gamma ^ { ( l ) } , \\forall l ~ \\in ~ \\{ 1 , \\dots , L + 1 \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 282, + 489, + 320, + 506 + ], + "score": 1.0, + "content": ", and let", + "type": "text" + }, + { + "bbox": [ + 321, + 492, + 340, + 503 + ], + "score": 0.9, + "content": "\\mathbf { H } ^ { ( l ) }", + "type": "inline_equation" + }, + { + "bbox": [ + 340, + 489, + 361, + 506 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 362, + 491, + 379, + 503 + ], + "score": 0.89, + "content": "\\mathbf { h } ^ { ( l ) }", + "type": "inline_equation" + }, + { + "bbox": [ + 379, + 489, + 435, + 506 + ], + "score": 1.0, + "content": "be short for", + "type": "text" + }, + { + "bbox": [ + 436, + 491, + 485, + 505 + ], + "score": 0.94, + "content": "\\mathbf { H } ^ { ( l ) } ( X , S _ { l } )", + "type": "inline_equation" + }, + { + "bbox": [ + 485, + 489, + 506, + 506 + ], + "score": 1.0, + "content": "and", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 106, + 502, + 424, + 519 + ], + "spans": [ + { + "bbox": [ + 106, + 505, + 167, + 517 + ], + "score": 0.92, + "content": "\\mathbf { h } ^ { ( l ) } ( X , \\mathrm { E } ( S _ { l } ) )", + "type": "inline_equation" + }, + { + "bbox": [ + 168, + 502, + 424, + 519 + ], + "score": 1.0, + "content": ", respectively, when there is no ambiguity. Moreover, we denote", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 22.5 + }, + { + "type": "interline_equation", + "bbox": [ + 212, + 519, + 398, + 536 + ], + "lines": [ + { + "bbox": [ + 212, + 519, + 398, + 536 + ], + "spans": [ + { + "bbox": [ + 212, + 519, + 398, + 536 + ], + "score": 0.92, + "content": "\\operatorname { E } _ { S } \\big [ \\mathbf { H } ^ { ( L ) } ( X , S ; \\theta ) \\big ] = \\operatorname { E } _ { S } \\big [ \\mathbf { H } ^ { ( L ) } ( X , S ; \\theta ) \\big | X \\big ]", + "type": "interline_equation", + "image_path": "de6b84481e73483fcad010587eb5dccf440b5d72b5f170f2b5370c0eb95c578e.jpg" + } + ] + } + ], + "index": 24, + "virtual_lines": [ + { + "bbox": [ + 212, + 519, + 398, + 536 + ], + "spans": [], + "index": 24 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 537, + 201, + 549 + ], + "lines": [ + { + "bbox": [ + 106, + 536, + 201, + 550 + ], + "spans": [ + { + "bbox": [ + 106, + 536, + 201, + 550 + ], + "score": 1.0, + "content": "for convenience. Then,", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 25 + }, + { + "type": "interline_equation", + "bbox": [ + 145, + 551, + 465, + 668 + ], + "lines": [ + { + "bbox": [ + 145, + 551, + 465, + 668 + ], + "spans": [ + { + "bbox": [ + 145, + 551, + 465, + 668 + ], + "score": 0.95, + "content": "\\begin{array} { r l } & { \\mathrm { E } _ { X } [ \\| \\mathrm { E } _ { S _ { L + 1 } } [ \\mathbf { H } ^ { ( L + 1 ) } ] - \\mathbf { h } ^ { ( L + 1 ) } \\| _ { 2 } ] } \\\\ { = } & { \\mathrm { E } _ { X } [ \\| \\mathrm { E } _ { S _ { L } } [ \\mathrm { E } _ { \\Gamma ( L + 1 ) } [ f _ { L + 1 } ( \\mathbf { H } ^ { ( L ) } \\odot \\Gamma ^ { ( L + 1 ) } ) ] - f _ { L + 1 } ( \\mathbf { h } ^ { ( L ) } \\odot \\gamma ^ { ( L + 1 ) } ) ] } \\\\ & { + \\mathrm { E } _ { S _ { L } } [ f _ { L + 1 } ( \\mathbf { H } ^ { ( L ) } \\odot \\gamma ^ { ( L + 1 ) } ) ] - f _ { L + 1 } ( \\mathbf { h } ^ { ( L ) } \\odot \\gamma ^ { ( L + 1 ) } ) \\| _ { 2 } ] } \\\\ { \\le } & { \\mathrm { E } _ { X } [ \\| \\mathrm { E } _ { S _ { L } } [ \\mathrm { E } _ { \\Gamma ( L + 1 ) } [ f _ { L + 1 } ( \\mathbf { H } ^ { ( L ) } \\odot \\Gamma ^ { ( L + 1 ) } ) ] - f _ { L + 1 } ( \\mathbf { h } ^ { ( L ) } \\odot \\gamma ^ { ( L + 1 ) } ) ] \\| _ { 2 } ] } \\\\ & { + \\mathrm { E } _ { X } [ \\| \\mathrm { E } _ { S _ { L } } [ f _ { L + 1 } ( \\mathbf { H } ^ { ( L ) } \\odot \\gamma ^ { ( L + 1 ) } ) ] - f _ { L + 1 } ( \\mathbf { h } ^ { ( L ) } \\odot \\gamma ^ { ( L + 1 ) } ) \\| _ { 2 } ] } \\end{array} .", + "type": "interline_equation", + "image_path": "0f3827329b44583b21a5a42d1f4452450977a1463c47600dc3c2da08b458c67b.jpg" + } + ] + } + ], + "index": 27, + "virtual_lines": [ + { + "bbox": [ + 145, + 551, + 465, + 590.0 + ], + "spans": [], + "index": 26 + }, + { + "bbox": [ + 145, + 590.0, + 465, + 629.0 + ], + "spans": [], + "index": 27 + }, + { + "bbox": [ + 145, + 629.0, + 465, + 668.0 + ], + "spans": [], + "index": 28 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 670, + 285, + 682 + ], + "lines": [ + { + "bbox": [ + 105, + 668, + 286, + 684 + ], + "spans": [ + { + "bbox": [ + 105, + 668, + 286, + 684 + ], + "score": 1.0, + "content": "From Eq. 2 and Jensen’s inequality, we have", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 29 + }, + { + "type": "interline_equation", + "bbox": [ + 143, + 684, + 465, + 736 + ], + "lines": [ + { + "bbox": [ + 143, + 684, + 465, + 736 + ], + "spans": [ + { + "bbox": [ + 143, + 684, + 465, + 736 + ], + "score": 0.92, + "content": "\\begin{array} { r l } & { \\mathbf { E } _ { X } \\bigg [ \\Big \\| \\mathrm { E } _ { S _ { L } } \\Big [ \\mathrm { E } _ { \\Gamma ^ { ( L + 1 ) } } \\big [ f _ { L + 1 } ( \\mathbf { H } ^ { ( L ) } \\odot \\Gamma ^ { ( L + 1 ) } ) \\big ] - f _ { L + 1 } ( \\mathbf { h } ^ { ( L ) } \\odot \\gamma ^ { ( L + 1 ) } ) \\Big ] \\Big \\| _ { 2 } \\bigg ] } \\\\ { \\le } & { \\mathrm { E } _ { \\mathbf { H } ^ { ( L ) } } \\bigg [ \\Big \\| \\mathrm { E } _ { \\Gamma ^ { ( L + 1 ) } } \\big [ f _ { L + 1 } ( \\mathbf { H } ^ { ( L ) } \\odot \\Gamma ^ { ( L + 1 ) } ) \\big ] - f _ { L + 1 } ( \\mathbf { h } ^ { ( L ) } \\odot \\gamma ^ { ( L + 1 ) } ) \\Big \\| _ { 2 } \\bigg ] \\le \\delta } \\end{array}", + "type": "interline_equation", + "image_path": "96ee04411401f10bda6dbf98b37808555d1edbb3e586d121146b1625aed3fffd.jpg" + } + ] + } + ], + "index": 31, + "virtual_lines": [ + { + "bbox": [ + 143, + 684, + 465, + 701.3333333333334 + ], + "spans": [], + "index": 30 + }, + { + "bbox": [ + 143, + 701.3333333333334, + 465, + 718.6666666666667 + ], + "spans": [], + "index": 31 + }, + { + "bbox": [ + 143, + 718.6666666666667, + 465, + 736.0000000000001 + ], + "spans": [], + "index": 32 + } + ] + } + ], + "page_idx": 13, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 106, + 26, + 293, + 38 + ], + "lines": [ + { + "bbox": [ + 106, + 25, + 294, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 25, + 294, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2017", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 300, + 751, + 311, + 760 + ], + "lines": [ + { + "bbox": [ + 299, + 750, + 312, + 764 + ], + "spans": [ + { + "bbox": [ + 299, + 750, + 312, + 764 + ], + "score": 1.0, + "content": "14", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 494, + 290, + 505, + 302 + ], + "lines": [ + { + "bbox": [ + 496, + 292, + 505, + 302 + ], + "spans": [ + { + "bbox": [ + 496, + 292, + 505, + 302 + ], + "score": 0.999, + "content": "□", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 106, + 82, + 131, + 94 + ], + "lines": [ + { + "bbox": [ + 105, + 81, + 133, + 96 + ], + "spans": [ + { + "bbox": [ + 105, + 81, + 133, + 96 + ], + "score": 1.0, + "content": "Then,", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0, + "bbox_fs": [ + 105, + 81, + 133, + 96 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 196, + 92, + 414, + 117 + ], + "lines": [ + { + "bbox": [ + 196, + 92, + 414, + 117 + ], + "spans": [ + { + "bbox": [ + 196, + 92, + 414, + 117 + ], + "score": 0.87, + "content": "\\begin{array} { r l } & { \\| \\mathrm { E } _ { \\Gamma } [ f ( X \\odot \\Gamma ) ] - f ( X \\odot \\gamma ^ { * } ) \\| _ { 2 } } \\\\ { = } & { \\| \\mathrm { E } _ { \\Gamma } [ ( f ^ { \\prime } ( X ^ { \\prime } \\odot \\Gamma ) - f ^ { \\prime } ( X ^ { \\prime \\prime } \\odot \\gamma ^ { * } ) ) ( X ^ { - } \\odot \\Gamma ) ] \\| _ { 2 } } \\end{array}", + "type": "interline_equation", + "image_path": "bce0d2e616c4bad3fe56e7d67d1cf98bb1cb3030e4786fff005ad0d3ce0faf57.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 196, + 92, + 414, + 117 + ], + "spans": [], + "index": 1 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 118, + 505, + 148 + ], + "lines": [ + { + "bbox": [ + 105, + 117, + 506, + 138 + ], + "spans": [ + { + "bbox": [ + 105, + 117, + 130, + 132 + ], + "score": 1.0, + "content": "Since", + "type": "text" + }, + { + "bbox": [ + 131, + 118, + 386, + 138 + ], + "score": 0.84, + "content": "\\| X ^ { - } \\odot \\gamma ^ { \\prime } \\| _ { 2 } \\leq \\operatorname* { s u p } _ { \\gamma \\in S } \\| X ^ { - } \\odot \\gamma \\| _ { 2 } = \\operatorname* { i n f } _ { x \\in A } \\operatorname* { s u p } _ { \\gamma \\in S } \\| X \\odot \\gamma - x \\odot \\gamma \\| _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 386, + 117, + 506, + 132 + ], + "score": 1.0, + "content": ", and from Jensen’s inequality", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 136, + 232, + 150 + ], + "spans": [ + { + "bbox": [ + 105, + 136, + 232, + 150 + ], + "score": 1.0, + "content": "and property of operator norm,", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 2.5, + "bbox_fs": [ + 105, + 117, + 506, + 150 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 192, + 150, + 416, + 220 + ], + "lines": [ + { + "bbox": [ + 192, + 150, + 416, + 220 + ], + "spans": [ + { + "bbox": [ + 192, + 150, + 416, + 220 + ], + "score": 0.93, + "content": "\\begin{array} { r l } & { \\| \\mathrm { E } _ { \\Gamma } [ ( f ^ { \\prime } ( X ^ { \\prime } \\odot \\Gamma ) - f ^ { \\prime } ( X ^ { \\prime \\prime } \\odot \\gamma ^ { * } ) ) ( X ^ { - } \\odot \\Gamma ) ] \\| _ { 2 } } \\\\ { \\le } & { \\mathrm { E } _ { \\Gamma } \\Big [ \\| f ^ { \\prime } ( X ^ { \\prime } \\odot \\Gamma ) - f ^ { \\prime } ( X ^ { \\prime \\prime } \\odot \\gamma ^ { * } ) \\| _ { o p } \\| X ^ { - } \\odot \\Gamma \\| _ { 2 } \\Big ] } \\\\ { \\le } & { 2 B \\mathrm { E } _ { \\Gamma } \\Big [ \\| X ^ { - } \\odot \\Gamma \\| _ { 2 } \\Big ] } \\\\ { \\le } & { 2 B \\underset { x \\in A } { \\operatorname* { i n f } } \\underset { \\gamma \\in S } { \\operatorname* { s u p } } \\| X \\odot \\gamma - x \\odot \\gamma \\| _ { 2 } } \\end{array}", + "type": "interline_equation", + "image_path": "7293aa72bdfc9da6dd4c66f3aadb86915be163c5133b37713db59e120995bb30.jpg" + } + ] + } + ], + "index": 5.5, + "virtual_lines": [ + { + "bbox": [ + 192, + 150, + 416, + 167.5 + ], + "spans": [], + "index": 4 + }, + { + "bbox": [ + 192, + 167.5, + 416, + 185.0 + ], + "spans": [], + "index": 5 + }, + { + "bbox": [ + 192, + 185.0, + 416, + 202.5 + ], + "spans": [], + "index": 6 + }, + { + "bbox": [ + 192, + 202.5, + 416, + 220.0 + ], + "spans": [], + "index": 7 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 222, + 174, + 234 + ], + "lines": [ + { + "bbox": [ + 105, + 221, + 176, + 236 + ], + "spans": [ + { + "bbox": [ + 105, + 221, + 176, + 236 + ], + "score": 1.0, + "content": "Finally we have,", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 8, + "bbox_fs": [ + 105, + 221, + 176, + 236 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 184, + 237, + 425, + 288 + ], + "lines": [ + { + "bbox": [ + 184, + 237, + 425, + 288 + ], + "spans": [ + { + "bbox": [ + 184, + 237, + 425, + 288 + ], + "score": 0.94, + "content": "\\begin{array} { r l } & { \\mathrm { E } _ { X } \\bigg [ \\| \\mathrm { E } _ { \\Gamma } [ ( f ^ { \\prime } ( X ^ { \\prime } \\odot \\Gamma ) - f ^ { \\prime } ( X ^ { \\prime \\prime } \\odot \\gamma ^ { * } ) ) ( X ^ { - } \\odot \\Gamma ) ] \\| _ { 2 } \\bigg ] } \\\\ { \\le } & { 2 B \\mathrm { E } \\bigg [ \\underset { x \\in A } { \\operatorname* { i n f } } \\underset { \\gamma \\in S } { \\operatorname* { s u p } } \\| X \\odot \\gamma - x \\odot \\gamma \\| _ { 2 } \\bigg ] \\le 2 B C } \\end{array}", + "type": "interline_equation", + "image_path": "e886b0fe49a2618c32b9a22326adb7106a4d8e5b8290a7ae8db54ba3e9da4a73.jpg" + } + ] + } + ], + "index": 10, + "virtual_lines": [ + { + "bbox": [ + 184, + 237, + 425, + 254.0 + ], + "spans": [], + "index": 9 + }, + { + "bbox": [ + 184, + 254.0, + 425, + 271.0 + ], + "spans": [], + "index": 10 + }, + { + "bbox": [ + 184, + 271.0, + 425, + 288.0 + ], + "spans": [], + "index": 11 + } + ] + }, + { + "type": "title", + "bbox": [ + 107, + 315, + 230, + 326 + ], + "lines": [ + { + "bbox": [ + 105, + 314, + 231, + 327 + ], + "spans": [ + { + "bbox": [ + 105, + 314, + 231, + 327 + ], + "score": 1.0, + "content": "B.2 PROOF OF THEOREM 3", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 12 + }, + { + "type": "text", + "bbox": [ + 108, + 336, + 446, + 347 + ], + "lines": [ + { + "bbox": [ + 105, + 335, + 447, + 349 + ], + "spans": [ + { + "bbox": [ + 105, + 335, + 288, + 349 + ], + "score": 1.0, + "content": "Proof. Induction on the number of the layers", + "type": "text" + }, + { + "bbox": [ + 289, + 336, + 297, + 346 + ], + "score": 0.78, + "content": "L", + "type": "inline_equation" + }, + { + "bbox": [ + 297, + 335, + 437, + 349 + ], + "score": 1.0, + "content": ". As before, we omit the parameter", + "type": "text" + }, + { + "bbox": [ + 437, + 337, + 443, + 345 + ], + "score": 0.8, + "content": "\\theta", + "type": "inline_equation" + }, + { + "bbox": [ + 443, + 335, + 447, + 349 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 13, + "bbox_fs": [ + 105, + 335, + 447, + 349 + ] + }, + { + "type": "text", + "bbox": [ + 118, + 348, + 339, + 358 + ], + "lines": [ + { + "bbox": [ + 115, + 346, + 339, + 360 + ], + "spans": [ + { + "bbox": [ + 115, + 346, + 182, + 360 + ], + "score": 1.0, + "content": "itial step: when", + "type": "text" + }, + { + "bbox": [ + 183, + 347, + 209, + 357 + ], + "score": 0.91, + "content": "L = 1", + "type": "inline_equation" + }, + { + "bbox": [ + 209, + 346, + 339, + 360 + ], + "score": 1.0, + "content": ", the statement is obviously true.", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 14, + "bbox_fs": [ + 115, + 346, + 339, + 360 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 358, + 451, + 380 + ], + "lines": [ + { + "bbox": [ + 105, + 356, + 452, + 371 + ], + "spans": [ + { + "bbox": [ + 105, + 356, + 163, + 371 + ], + "score": 1.0, + "content": "Induction on", + "type": "text" + }, + { + "bbox": [ + 164, + 358, + 172, + 368 + ], + "score": 0.63, + "content": "L", + "type": "inline_equation" + }, + { + "bbox": [ + 172, + 356, + 413, + 371 + ], + "score": 1.0, + "content": ": Suppose that the statement is true for neural networks with", + "type": "text" + }, + { + "bbox": [ + 414, + 359, + 421, + 368 + ], + "score": 0.82, + "content": "L", + "type": "inline_equation" + }, + { + "bbox": [ + 422, + 356, + 452, + 371 + ], + "score": 1.0, + "content": "layers.", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 367, + 398, + 383 + ], + "spans": [ + { + "bbox": [ + 105, + 367, + 201, + 383 + ], + "score": 1.0, + "content": "Now we prove the case", + "type": "text" + }, + { + "bbox": [ + 201, + 369, + 226, + 379 + ], + "score": 0.9, + "content": "L + 1", + "type": "inline_equation" + }, + { + "bbox": [ + 227, + 367, + 398, + 383 + ], + "score": 1.0, + "content": ". From the inductive assumption, we have,", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 15.5, + "bbox_fs": [ + 105, + 356, + 452, + 383 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 192, + 382, + 418, + 404 + ], + "lines": [ + { + "bbox": [ + 192, + 382, + 418, + 404 + ], + "spans": [ + { + "bbox": [ + 192, + 382, + 418, + 404 + ], + "score": 0.91, + "content": "\\begin{array} { r } { \\mathrm { E } _ { X } \\Big [ \\big \\| \\mathrm { E } _ { S _ { L } } \\big [ \\mathbf { H } ^ { ( L ) } ( X , S _ { L } ) \\big ] - \\mathbf { h } ^ { ( L ) } ( X , \\mathrm { E } [ S _ { L } ] ) \\big \\| _ { 2 } \\Big ] \\leq \\Delta _ { L } } \\end{array}", + "type": "interline_equation", + "image_path": "9ff0da115e794544d976c6876261de6f0e96a4988c1c2be95fa52ad1d4e18848.jpg" + } + ] + } + ], + "index": 17, + "virtual_lines": [ + { + "bbox": [ + 192, + 382, + 418, + 404 + ], + "spans": [], + "index": 17 + } + ] + }, + { + "type": "text", + "bbox": [ + 105, + 407, + 459, + 420 + ], + "lines": [ + { + "bbox": [ + 104, + 405, + 460, + 423 + ], + "spans": [ + { + "bbox": [ + 104, + 405, + 133, + 423 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 133, + 407, + 227, + 421 + ], + "score": 0.92, + "content": "{ \\cal S } _ { \\cal L } = \\{ \\Gamma ^ { ( 1 ) } , \\dots , \\Gamma ^ { ( L ) } \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 227, + 405, + 403, + 423 + ], + "score": 1.0, + "content": "is the dropout random variables for the first", + "type": "text" + }, + { + "bbox": [ + 403, + 409, + 411, + 418 + ], + "score": 0.83, + "content": "L", + "type": "inline_equation" + }, + { + "bbox": [ + 412, + 405, + 460, + 423 + ], + "score": 1.0, + "content": "layers, and", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 18, + "bbox_fs": [ + 104, + 405, + 460, + 423 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 204, + 422, + 407, + 451 + ], + "lines": [ + { + "bbox": [ + 204, + 422, + 407, + 451 + ], + "spans": [ + { + "bbox": [ + 204, + 422, + 407, + 451 + ], + "score": 0.93, + "content": "\\Delta _ { L } = ( B \\gamma ) ^ { L - 1 } \\delta + ( \\delta + B \\gamma \\sigma ) \\bigg ( { \\frac { 1 - ( B \\gamma ) ^ { L - 1 } } { 1 - B \\gamma } } \\bigg )", + "type": "interline_equation", + "image_path": "a3f94844753a1da969e76f829d6422d3b6f4bf9577a5a023505b660285137284.jpg" + } + ] + } + ], + "index": 19, + "virtual_lines": [ + { + "bbox": [ + 204, + 422, + 407, + 451 + ], + "spans": [], + "index": 19 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 453, + 409, + 465 + ], + "lines": [ + { + "bbox": [ + 106, + 452, + 410, + 466 + ], + "spans": [ + { + "bbox": [ + 106, + 452, + 169, + 466 + ], + "score": 1.0, + "content": "In addition, the", + "type": "text" + }, + { + "bbox": [ + 169, + 454, + 195, + 464 + ], + "score": 0.9, + "content": "L + 1", + "type": "inline_equation" + }, + { + "bbox": [ + 195, + 452, + 227, + 466 + ], + "score": 1.0, + "content": "layer is", + "type": "text" + }, + { + "bbox": [ + 228, + 454, + 234, + 463 + ], + "score": 0.84, + "content": "\\delta", + "type": "inline_equation" + }, + { + "bbox": [ + 234, + 452, + 410, + 466 + ], + "score": 1.0, + "content": "-approximately expectation-linear, we have:", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 20, + "bbox_fs": [ + 106, + 452, + 410, + 466 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 153, + 467, + 457, + 488 + ], + "lines": [ + { + "bbox": [ + 153, + 467, + 457, + 488 + ], + "spans": [ + { + "bbox": [ + 153, + 467, + 457, + 488 + ], + "score": 0.9, + "content": "\\begin{array} { r } { \\mathrm { E } _ { \\mathbf { H } ^ { ( L ) } } \\Big [ \\big \\lVert \\mathrm { E } _ { \\Gamma ^ { ( L + 1 ) } } \\left[ f _ { L + 1 } ( \\mathbf { H } ^ { ( L ) } \\odot \\Gamma ^ { ( L + 1 ) } ) \\right] - f _ { L + 1 } ( \\mathbf { H } ^ { ( L ) } \\odot \\boldsymbol { \\gamma } ^ { ( L + 1 ) } ) \\big \\rVert _ { 2 } \\Big ] \\leq \\delta } \\end{array}", + "type": "interline_equation", + "image_path": "97e6e1224cac40b9e084b887782df39ad992930f8e349fe9c6d0f27831b4f3a4.jpg" + } + ] + } + ], + "index": 21, + "virtual_lines": [ + { + "bbox": [ + 153, + 467, + 457, + 488 + ], + "spans": [], + "index": 21 + } + ] + }, + { + "type": "text", + "bbox": [ + 105, + 491, + 506, + 517 + ], + "lines": [ + { + "bbox": [ + 105, + 489, + 506, + 506 + ], + "spans": [ + { + "bbox": [ + 105, + 489, + 123, + 506 + ], + "score": 1.0, + "content": "Let", + "type": "text" + }, + { + "bbox": [ + 124, + 492, + 282, + 505 + ], + "score": 0.92, + "content": "\\operatorname { E } [ \\Gamma ^ { ( l ) } ] ~ = ~ \\gamma ^ { ( l ) } , \\forall l ~ \\in ~ \\{ 1 , \\dots , L + 1 \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 282, + 489, + 320, + 506 + ], + "score": 1.0, + "content": ", and let", + "type": "text" + }, + { + "bbox": [ + 321, + 492, + 340, + 503 + ], + "score": 0.9, + "content": "\\mathbf { H } ^ { ( l ) }", + "type": "inline_equation" + }, + { + "bbox": [ + 340, + 489, + 361, + 506 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 362, + 491, + 379, + 503 + ], + "score": 0.89, + "content": "\\mathbf { h } ^ { ( l ) }", + "type": "inline_equation" + }, + { + "bbox": [ + 379, + 489, + 435, + 506 + ], + "score": 1.0, + "content": "be short for", + "type": "text" + }, + { + "bbox": [ + 436, + 491, + 485, + 505 + ], + "score": 0.94, + "content": "\\mathbf { H } ^ { ( l ) } ( X , S _ { l } )", + "type": "inline_equation" + }, + { + "bbox": [ + 485, + 489, + 506, + 506 + ], + "score": 1.0, + "content": "and", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 106, + 502, + 424, + 519 + ], + "spans": [ + { + "bbox": [ + 106, + 505, + 167, + 517 + ], + "score": 0.92, + "content": "\\mathbf { h } ^ { ( l ) } ( X , \\mathrm { E } ( S _ { l } ) )", + "type": "inline_equation" + }, + { + "bbox": [ + 168, + 502, + 424, + 519 + ], + "score": 1.0, + "content": ", respectively, when there is no ambiguity. Moreover, we denote", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 22.5, + "bbox_fs": [ + 105, + 489, + 506, + 519 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 212, + 519, + 398, + 536 + ], + "lines": [ + { + "bbox": [ + 212, + 519, + 398, + 536 + ], + "spans": [ + { + "bbox": [ + 212, + 519, + 398, + 536 + ], + "score": 0.92, + "content": "\\operatorname { E } _ { S } \\big [ \\mathbf { H } ^ { ( L ) } ( X , S ; \\theta ) \\big ] = \\operatorname { E } _ { S } \\big [ \\mathbf { H } ^ { ( L ) } ( X , S ; \\theta ) \\big | X \\big ]", + "type": "interline_equation", + "image_path": "de6b84481e73483fcad010587eb5dccf440b5d72b5f170f2b5370c0eb95c578e.jpg" + } + ] + } + ], + "index": 24, + "virtual_lines": [ + { + "bbox": [ + 212, + 519, + 398, + 536 + ], + "spans": [], + "index": 24 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 537, + 201, + 549 + ], + "lines": [ + { + "bbox": [ + 106, + 536, + 201, + 550 + ], + "spans": [ + { + "bbox": [ + 106, + 536, + 201, + 550 + ], + "score": 1.0, + "content": "for convenience. Then,", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 25, + "bbox_fs": [ + 106, + 536, + 201, + 550 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 145, + 551, + 465, + 668 + ], + "lines": [ + { + "bbox": [ + 145, + 551, + 465, + 668 + ], + "spans": [ + { + "bbox": [ + 145, + 551, + 465, + 668 + ], + "score": 0.95, + "content": "\\begin{array} { r l } & { \\mathrm { E } _ { X } [ \\| \\mathrm { E } _ { S _ { L + 1 } } [ \\mathbf { H } ^ { ( L + 1 ) } ] - \\mathbf { h } ^ { ( L + 1 ) } \\| _ { 2 } ] } \\\\ { = } & { \\mathrm { E } _ { X } [ \\| \\mathrm { E } _ { S _ { L } } [ \\mathrm { E } _ { \\Gamma ( L + 1 ) } [ f _ { L + 1 } ( \\mathbf { H } ^ { ( L ) } \\odot \\Gamma ^ { ( L + 1 ) } ) ] - f _ { L + 1 } ( \\mathbf { h } ^ { ( L ) } \\odot \\gamma ^ { ( L + 1 ) } ) ] } \\\\ & { + \\mathrm { E } _ { S _ { L } } [ f _ { L + 1 } ( \\mathbf { H } ^ { ( L ) } \\odot \\gamma ^ { ( L + 1 ) } ) ] - f _ { L + 1 } ( \\mathbf { h } ^ { ( L ) } \\odot \\gamma ^ { ( L + 1 ) } ) \\| _ { 2 } ] } \\\\ { \\le } & { \\mathrm { E } _ { X } [ \\| \\mathrm { E } _ { S _ { L } } [ \\mathrm { E } _ { \\Gamma ( L + 1 ) } [ f _ { L + 1 } ( \\mathbf { H } ^ { ( L ) } \\odot \\Gamma ^ { ( L + 1 ) } ) ] - f _ { L + 1 } ( \\mathbf { h } ^ { ( L ) } \\odot \\gamma ^ { ( L + 1 ) } ) ] \\| _ { 2 } ] } \\\\ & { + \\mathrm { E } _ { X } [ \\| \\mathrm { E } _ { S _ { L } } [ f _ { L + 1 } ( \\mathbf { H } ^ { ( L ) } \\odot \\gamma ^ { ( L + 1 ) } ) ] - f _ { L + 1 } ( \\mathbf { h } ^ { ( L ) } \\odot \\gamma ^ { ( L + 1 ) } ) \\| _ { 2 } ] } \\end{array} .", + "type": "interline_equation", + "image_path": "0f3827329b44583b21a5a42d1f4452450977a1463c47600dc3c2da08b458c67b.jpg" + } + ] + } + ], + "index": 27, + "virtual_lines": [ + { + "bbox": [ + 145, + 551, + 465, + 590.0 + ], + "spans": [], + "index": 26 + }, + { + "bbox": [ + 145, + 590.0, + 465, + 629.0 + ], + "spans": [], + "index": 27 + }, + { + "bbox": [ + 145, + 629.0, + 465, + 668.0 + ], + "spans": [], + "index": 28 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 670, + 285, + 682 + ], + "lines": [ + { + "bbox": [ + 105, + 668, + 286, + 684 + ], + "spans": [ + { + "bbox": [ + 105, + 668, + 286, + 684 + ], + "score": 1.0, + "content": "From Eq. 2 and Jensen’s inequality, we have", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 29, + "bbox_fs": [ + 105, + 668, + 286, + 684 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 143, + 684, + 465, + 736 + ], + "lines": [ + { + "bbox": [ + 143, + 684, + 465, + 736 + ], + "spans": [ + { + "bbox": [ + 143, + 684, + 465, + 736 + ], + "score": 0.92, + "content": "\\begin{array} { r l } & { \\mathbf { E } _ { X } \\bigg [ \\Big \\| \\mathrm { E } _ { S _ { L } } \\Big [ \\mathrm { E } _ { \\Gamma ^ { ( L + 1 ) } } \\big [ f _ { L + 1 } ( \\mathbf { H } ^ { ( L ) } \\odot \\Gamma ^ { ( L + 1 ) } ) \\big ] - f _ { L + 1 } ( \\mathbf { h } ^ { ( L ) } \\odot \\gamma ^ { ( L + 1 ) } ) \\Big ] \\Big \\| _ { 2 } \\bigg ] } \\\\ { \\le } & { \\mathrm { E } _ { \\mathbf { H } ^ { ( L ) } } \\bigg [ \\Big \\| \\mathrm { E } _ { \\Gamma ^ { ( L + 1 ) } } \\big [ f _ { L + 1 } ( \\mathbf { H } ^ { ( L ) } \\odot \\Gamma ^ { ( L + 1 ) } ) \\big ] - f _ { L + 1 } ( \\mathbf { h } ^ { ( L ) } \\odot \\gamma ^ { ( L + 1 ) } ) \\Big \\| _ { 2 } \\bigg ] \\le \\delta } \\end{array}", + "type": "interline_equation", + "image_path": "96ee04411401f10bda6dbf98b37808555d1edbb3e586d121146b1625aed3fffd.jpg" + } + ] + } + ], + "index": 31, + "virtual_lines": [ + { + "bbox": [ + 143, + 684, + 465, + 701.3333333333334 + ], + "spans": [], + "index": 30 + }, + { + "bbox": [ + 143, + 701.3333333333334, + 465, + 718.6666666666667 + ], + "spans": [], + "index": 31 + }, + { + "bbox": [ + 143, + 718.6666666666667, + 465, + 736.0000000000001 + ], + "spans": [], + "index": 32 + } + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 106, + 83, + 124, + 93 + ], + "lines": [ + { + "bbox": [ + 105, + 83, + 123, + 93 + ], + "spans": [ + { + "bbox": [ + 105, + 83, + 123, + 93 + ], + "score": 1.0, + "content": "and", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "interline_equation", + "bbox": [ + 151, + 90, + 459, + 213 + ], + "lines": [ + { + "bbox": [ + 151, + 90, + 459, + 213 + ], + "spans": [ + { + "bbox": [ + 151, + 90, + 459, + 213 + ], + "score": 0.95, + "content": "\\begin{array} { r l } & { \\mathrm { E } _ { X } \\left[ \\Big \\lVert \\mathrm { E } _ { S _ { L } } \\Big [ f _ { L + 1 } ( \\mathbf { H } ^ { ( L ) } \\odot \\gamma ^ { ( L + 1 ) } ) \\Big ] - f _ { L + 1 } ( \\mathbf { h } ^ { ( L ) } \\odot \\gamma ^ { ( L + 1 ) } ) \\Big \\rVert _ { 2 } \\right] } \\\\ { = } & { \\mathrm { E } _ { X } \\left[ \\Big \\lVert \\mathrm { E } _ { S _ { L } } \\Big [ f _ { L + 1 } ( \\mathbf { H } ^ { ( L ) } \\odot \\gamma ^ { ( L + 1 ) } ) \\Big ] - f _ { L + 1 } ( \\mathrm { E } _ { S _ { L } } \\big [ \\mathbf { H } ^ { ( L ) } \\big ] \\odot \\gamma ^ { ( L + 1 ) } ) \\right. } \\\\ & { \\left. + f _ { L + 1 } ( \\mathrm { E } _ { S _ { L } } \\big [ \\mathbf { H } ^ { ( L ) } \\big ] \\odot \\gamma ^ { ( L + 1 ) } ) - f _ { L + 1 } ( \\mathbf { h } ^ { ( L ) } \\odot \\gamma ^ { ( L + 1 ) } ) \\Big \\rVert _ { 2 } \\right] } \\\\ { \\le } & { \\mathrm { E } _ { X } \\left[ \\Big \\lVert \\mathrm { E } _ { S _ { L } } \\Big [ f _ { L + 1 } ( \\mathbf { H } ^ { ( L ) } \\odot \\gamma ^ { ( L + 1 ) } ) \\Big ] - f _ { L + 1 } ( \\mathrm { E } _ { S _ { L } } \\big [ \\mathbf { H } ^ { ( L ) } \\big ] \\odot \\gamma ^ { ( L + 1 ) } ) \\Big \\rVert _ { 2 } \\right] } \\\\ & { + \\mathrm { E } _ { X } \\left[ \\Big \\lVert f _ { L + 1 } ( \\mathrm { E } _ { S _ { L } } \\big [ \\mathbf { H } ^ { ( L ) } \\big ] \\odot \\gamma ^ { ( L + 1 ) } ) - f _ { L + 1 } ( \\mathbf { h } ^ { ( L ) } \\odot \\gamma ^ { ( L + 1 ) } ) \\Big \\rVert _ { 2 } \\right] } \\end{array}", + "type": "interline_equation", + "image_path": "2703115d94680807f82810b8fb6493bf9518b59591bc8cc9121cc3b5306c246b.jpg" + } + ] + } + ], + "index": 2, + "virtual_lines": [ + { + "bbox": [ + 151, + 90, + 459, + 131.0 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 151, + 131.0, + 459, + 172.0 + ], + "spans": [], + "index": 2 + }, + { + "bbox": [ + 151, + 172.0, + 459, + 213.0 + ], + "spans": [], + "index": 3 + } + ] + }, + { + "type": "text", + "bbox": [ + 103, + 216, + 465, + 230 + ], + "lines": [ + { + "bbox": [ + 104, + 215, + 467, + 231 + ], + "spans": [ + { + "bbox": [ + 104, + 215, + 336, + 231 + ], + "score": 1.0, + "content": "Using Jensen’s inequality, property of operator norm and", + "type": "text" + }, + { + "bbox": [ + 336, + 216, + 426, + 230 + ], + "score": 0.92, + "content": "\\mathrm { E } \\big [ \\mathrm { V a r } [ \\mathbf { H } ^ { ( l ) } | X ] \\big ] \\leq \\sigma ^ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 427, + 215, + 467, + 231 + ], + "score": 1.0, + "content": ", we have", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 4 + }, + { + "type": "interline_equation", + "bbox": [ + 151, + 235, + 459, + 327 + ], + "lines": [ + { + "bbox": [ + 151, + 235, + 459, + 327 + ], + "spans": [ + { + "bbox": [ + 151, + 235, + 459, + 327 + ], + "score": 0.95, + "content": "\\begin{array} { r l } & { \\mathrm { E } _ { X } \\left[ \\Big \\| \\mathrm { E } _ { S _ { L } } \\Big [ f _ { L + 1 } \\big ( \\mathbf { H } ^ { ( L ) } \\odot \\boldsymbol { \\gamma } ^ { ( L + 1 ) } \\big ) \\Big ] - f _ { L + 1 } \\big ( \\mathrm { E } _ { S _ { L } } \\big [ \\mathbf { H } ^ { ( L ) } \\big ] \\odot \\boldsymbol { \\gamma } ^ { ( L + 1 ) } \\big ) \\Big \\| _ { 2 } \\right] } \\\\ { \\leq } & { \\mathrm { E } _ { \\mathbf { H } ^ { ( L ) } } \\left[ \\Big \\| f _ { L + 1 } \\big ( \\mathbf { H } ^ { ( L ) } \\odot \\boldsymbol { \\gamma } ^ { ( L + 1 ) } \\big ) - f _ { L + 1 } \\big ( \\mathrm { E } _ { S _ { L } } \\big [ \\mathbf { H } ^ { ( L ) } \\big ] \\odot \\boldsymbol { \\gamma } ^ { ( L + 1 ) } \\big ) \\Big \\| _ { 2 } \\right] } \\\\ { \\leq } & { B \\gamma \\mathrm { E } _ { \\mathbf { H } ^ { ( L ) } } \\left[ \\big \\| \\mathbf { H } ^ { ( L ) } - \\mathrm { E } _ { S _ { L } } \\big [ \\mathbf { H } ^ { ( L ) } \\big ] \\big \\| _ { 2 } \\right] } \\\\ { \\leq } & { B \\gamma \\left( \\mathrm { E } _ { \\mathbf { H } ^ { ( L ) } } \\left[ \\big \\| \\mathbf { H } ^ { ( L ) } - \\mathrm { E } _ { S _ { L } } \\big [ \\mathbf { H } ^ { ( L ) } \\big ] \\big \\| _ { 2 } ^ { 2 } \\right] \\right) ^ { \\frac { 1 } { 2 } } \\leq B \\gamma \\sigma } \\end{array}", + "type": "interline_equation", + "image_path": "e6ff3c52165aa6ec59258beec816c1232016b5f7bb1a49f08ef2dfdf595a4ab1.jpg" + } + ] + } + ], + "index": 6, + "virtual_lines": [ + { + "bbox": [ + 151, + 235, + 459, + 265.6666666666667 + ], + "spans": [], + "index": 5 + }, + { + "bbox": [ + 151, + 265.6666666666667, + 459, + 296.33333333333337 + ], + "spans": [], + "index": 6 + }, + { + "bbox": [ + 151, + 296.33333333333337, + 459, + 327.00000000000006 + ], + "spans": [], + "index": 7 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 330, + 153, + 342 + ], + "lines": [ + { + "bbox": [ + 105, + 329, + 155, + 344 + ], + "spans": [ + { + "bbox": [ + 105, + 329, + 155, + 344 + ], + "score": 1.0, + "content": "From Eq. 1", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 8 + }, + { + "type": "interline_equation", + "bbox": [ + 165, + 347, + 443, + 393 + ], + "lines": [ + { + "bbox": [ + 165, + 347, + 443, + 393 + ], + "spans": [ + { + "bbox": [ + 165, + 347, + 443, + 393 + ], + "score": 0.94, + "content": "\\begin{array} { r l } & { \\mathrm { E } _ { X } \\bigg [ \\Big \\| f _ { L + 1 } \\big ( \\mathrm { E } _ { S _ { L } } \\big [ \\mathbf { H } ^ { ( L ) } \\big ] \\odot \\boldsymbol { \\gamma } ^ { ( L + 1 ) } \\big ) - f _ { L + 1 } \\big ( \\mathbf { h } ^ { ( L ) } \\odot \\boldsymbol { \\gamma } ^ { ( L + 1 ) } \\big ) \\Big \\| _ { 2 } \\bigg ] } \\\\ { = } & { B \\gamma \\mathrm { E } _ { X } \\Big [ \\big \\| \\mathrm { E } _ { S _ { L } } \\big [ \\mathbf { H } ^ { ( L ) } \\big ] - \\mathbf { h } ^ { ( L ) } \\big \\| _ { 2 } \\Big ] \\leq B \\gamma \\Delta _ { L } } \\end{array}", + "type": "interline_equation", + "image_path": "99f5cc07e5e71a85940099ef2716379411d1c68b273bb05f4cf49b626cf3c3a9.jpg" + } + ] + } + ], + "index": 10, + "virtual_lines": [ + { + "bbox": [ + 165, + 347, + 443, + 362.3333333333333 + ], + "spans": [], + "index": 9 + }, + { + "bbox": [ + 165, + 362.3333333333333, + 443, + 377.66666666666663 + ], + "spans": [], + "index": 10 + }, + { + "bbox": [ + 165, + 377.66666666666663, + 443, + 392.99999999999994 + ], + "spans": [], + "index": 11 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 396, + 350, + 409 + ], + "lines": [ + { + "bbox": [ + 106, + 396, + 350, + 410 + ], + "spans": [ + { + "bbox": [ + 106, + 396, + 350, + 410 + ], + "score": 1.0, + "content": "Finally, to sum up with Eq. 3, Eq. 4, , Eq. 5, , Eq. 6, we have", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 12 + }, + { + "type": "interline_equation", + "bbox": [ + 205, + 413, + 404, + 471 + ], + "lines": [ + { + "bbox": [ + 205, + 413, + 404, + 471 + ], + "spans": [ + { + "bbox": [ + 205, + 413, + 404, + 471 + ], + "score": 0.94, + "content": "\\begin{array} { r l } & { \\mathrm { E } _ { X } \\Big [ \\big \\| \\mathrm { E } _ { S _ { L + 1 } } \\big [ \\mathbf { H } ^ { ( L + 1 ) } \\big ] - \\mathbf { h } ^ { ( L + 1 ) } \\big \\| _ { 2 } \\Big ] } \\\\ { \\leq } & { \\delta + B \\gamma \\sigma + B \\gamma \\Delta _ { L } } \\\\ { = } & { ( B \\gamma ) ^ { L } \\delta + ( \\delta + B \\gamma \\sigma ) \\bigg ( \\frac { 1 - ( B \\gamma ) ^ { L } } { 1 - B \\gamma } \\bigg ) = \\Delta _ { L + 1 } } \\end{array}", + "type": "interline_equation", + "image_path": "e42749701a2fe3cd5afe102a84e97b97d388b6b65a47a83f134d554508b6aaef.jpg" + } + ] + } + ], + "index": 14, + "virtual_lines": [ + { + "bbox": [ + 205, + 413, + 404, + 432.3333333333333 + ], + "spans": [], + "index": 13 + }, + { + "bbox": [ + 205, + 432.3333333333333, + 404, + 451.66666666666663 + ], + "spans": [], + "index": 14 + }, + { + "bbox": [ + 205, + 451.66666666666663, + 404, + 470.99999999999994 + ], + "spans": [], + "index": 15 + } + ] + }, + { + "type": "title", + "bbox": [ + 107, + 502, + 287, + 515 + ], + "lines": [ + { + "bbox": [ + 106, + 501, + 288, + 517 + ], + "spans": [ + { + "bbox": [ + 106, + 501, + 288, + 517 + ], + "score": 1.0, + "content": "C EXPECTATION-LINEARIZATION", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 16 + }, + { + "type": "text", + "bbox": [ + 107, + 527, + 365, + 539 + ], + "lines": [ + { + "bbox": [ + 106, + 526, + 365, + 541 + ], + "spans": [ + { + "bbox": [ + 106, + 526, + 365, + 541 + ], + "score": 1.0, + "content": "C.1 PROOF OF THEOREM 4: UNIFORM DEVIATION BOUND", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 17 + }, + { + "type": "text", + "bbox": [ + 108, + 547, + 332, + 560 + ], + "lines": [ + { + "bbox": [ + 105, + 547, + 333, + 561 + ], + "spans": [ + { + "bbox": [ + 105, + 547, + 333, + 561 + ], + "score": 1.0, + "content": "Before proving Theorem 4, we first define the notations.", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 18 + }, + { + "type": "text", + "bbox": [ + 107, + 564, + 504, + 588 + ], + "lines": [ + { + "bbox": [ + 105, + 563, + 505, + 578 + ], + "spans": [ + { + "bbox": [ + 105, + 563, + 123, + 578 + ], + "score": 1.0, + "content": "Let", + "type": "text" + }, + { + "bbox": [ + 123, + 565, + 211, + 576 + ], + "score": 0.89, + "content": "X ^ { n } = \\{ X _ { 1 } , \\ldots , X _ { n } \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 211, + 563, + 256, + 578 + ], + "score": 1.0, + "content": "be a set of", + "type": "text" + }, + { + "bbox": [ + 257, + 568, + 264, + 575 + ], + "score": 0.77, + "content": "n", + "type": "inline_equation" + }, + { + "bbox": [ + 264, + 563, + 335, + 578 + ], + "score": 1.0, + "content": "samples of input", + "type": "text" + }, + { + "bbox": [ + 335, + 565, + 345, + 575 + ], + "score": 0.83, + "content": "X", + "type": "inline_equation" + }, + { + "bbox": [ + 345, + 563, + 435, + 578 + ], + "score": 1.0, + "content": ". For a function space", + "type": "text" + }, + { + "bbox": [ + 435, + 565, + 487, + 575 + ], + "score": 0.9, + "content": "\\mathcal { F } : \\mathcal { X } \\mathcal { R }", + "type": "inline_equation" + }, + { + "bbox": [ + 487, + 563, + 505, + 578 + ], + "score": 1.0, + "content": ", we", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 106, + 576, + 400, + 589 + ], + "spans": [ + { + "bbox": [ + 106, + 576, + 122, + 589 + ], + "score": 1.0, + "content": "use", + "type": "text" + }, + { + "bbox": [ + 123, + 577, + 181, + 588 + ], + "score": 0.92, + "content": "R a d _ { n } ( \\mathcal { F } , X ^ { n } )", + "type": "inline_equation" + }, + { + "bbox": [ + 182, + 576, + 387, + 589 + ], + "score": 1.0, + "content": "to denote the empirical Rademacher complexity of", + "type": "text" + }, + { + "bbox": [ + 387, + 577, + 396, + 586 + ], + "score": 0.84, + "content": "\\mathcal { F }", + "type": "inline_equation" + }, + { + "bbox": [ + 396, + 576, + 400, + 589 + ], + "score": 1.0, + "content": ",", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 19.5 + }, + { + "type": "interline_equation", + "bbox": [ + 211, + 593, + 400, + 626 + ], + "lines": [ + { + "bbox": [ + 211, + 593, + 400, + 626 + ], + "spans": [ + { + "bbox": [ + 211, + 593, + 400, + 626 + ], + "score": 0.94, + "content": "R a d _ { n } ( \\mathcal { F } , X ^ { n } ) = \\mathrm { E } _ { \\sigma } \\left[ \\operatorname* { s u p } _ { f \\in \\mathcal { F } } \\Big ( \\frac { 1 } { n } \\sum _ { i = 1 } ^ { n } \\sigma _ { i } f ( X _ { i } ) \\Big ) \\right]", + "type": "interline_equation", + "image_path": "f04eb2324fa86a3364e87f3bbd9dd72ccfebf6671faf2723c1b9c3f61765020d.jpg" + } + ] + } + ], + "index": 21.5, + "virtual_lines": [ + { + "bbox": [ + 211, + 593, + 400, + 609.5 + ], + "spans": [], + "index": 21 + }, + { + "bbox": [ + 211, + 609.5, + 400, + 626.0 + ], + "spans": [], + "index": 22 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 630, + 288, + 642 + ], + "lines": [ + { + "bbox": [ + 106, + 630, + 288, + 643 + ], + "spans": [ + { + "bbox": [ + 106, + 630, + 288, + 643 + ], + "score": 1.0, + "content": "and the Rademacher complexity is defined as", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 23 + }, + { + "type": "interline_equation", + "bbox": [ + 235, + 647, + 376, + 668 + ], + "lines": [ + { + "bbox": [ + 235, + 647, + 376, + 668 + ], + "spans": [ + { + "bbox": [ + 235, + 647, + 376, + 668 + ], + "score": 0.93, + "content": "R a d _ { n } ( \\mathcal { F } ) = \\mathrm { E } _ { X ^ { n } } \\Big [ R a d _ { n } ( \\mathcal { F } , X ^ { n } ) \\Big ]", + "type": "interline_equation", + "image_path": "d8dd27c39444072410e5ed963fd1ce96a0aedec0bcbf84ce79742c4275dfc86a.jpg" + } + ] + } + ], + "index": 24, + "virtual_lines": [ + { + "bbox": [ + 235, + 647, + 376, + 668 + ], + "spans": [], + "index": 24 + } + ] + }, + { + "type": "text", + "bbox": [ + 105, + 672, + 502, + 685 + ], + "lines": [ + { + "bbox": [ + 105, + 671, + 503, + 687 + ], + "spans": [ + { + "bbox": [ + 105, + 671, + 503, + 687 + ], + "score": 1.0, + "content": "In addition, we import the definition of dropout Rademacher complexity from Gao & Zhou (2014):", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 25 + }, + { + "type": "interline_equation", + "bbox": [ + 194, + 690, + 416, + 736 + ], + "lines": [ + { + "bbox": [ + 194, + 690, + 416, + 736 + ], + "spans": [ + { + "bbox": [ + 194, + 690, + 416, + 736 + ], + "score": 0.94, + "content": "\\begin{array} { r c l } { \\mathcal { R } _ { n } ( \\mathcal { H } , X ^ { n } , S ^ { n } ) } & { = } & { \\operatorname { E } _ { \\sigma } \\bigg [ \\underset { h \\in \\mathcal { H } } { \\operatorname* { s u p } } \\Big ( \\frac { 1 } { n } \\sum _ { i = 1 } ^ { n } \\sigma _ { i } h ( X _ { i } , S _ { i } ) \\Big ) \\bigg ] } \\\\ { \\mathcal { R } _ { n } ( \\mathcal { H } ) } & { = } & { \\operatorname { E } _ { X ^ { n } , S ^ { n } } \\Big [ R a d _ { n } ( \\mathcal { H } , X ^ { n } , S ^ { n } ) \\Big ] } \\end{array}", + "type": "interline_equation", + "image_path": "a013b442d6ddbc3854762fcc741b3a1141b856b4ea6cf1ec63f6dfe0a673276e.jpg" + } + ] + } + ], + "index": 27, + "virtual_lines": [ + { + "bbox": [ + 194, + 690, + 416, + 705.3333333333334 + ], + "spans": [], + "index": 26 + }, + { + "bbox": [ + 194, + 705.3333333333334, + 416, + 720.6666666666667 + ], + "spans": [], + "index": 27 + }, + { + "bbox": [ + 194, + 720.6666666666667, + 416, + 736.0000000000001 + ], + "spans": [], + "index": 28 + } + ] + } + ], + "page_idx": 14, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 106, + 26, + 293, + 38 + ], + "lines": [ + { + "bbox": [ + 106, + 25, + 294, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 25, + 294, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2017", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 300, + 751, + 311, + 760 + ], + "lines": [ + { + "bbox": [ + 299, + 750, + 312, + 764 + ], + "spans": [ + { + "bbox": [ + 299, + 750, + 312, + 764 + ], + "score": 1.0, + "content": "15", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 494, + 475, + 505, + 486 + ], + "lines": [ + { + "bbox": [ + 496, + 477, + 505, + 487 + ], + "spans": [ + { + "bbox": [ + 496, + 477, + 505, + 487 + ], + "score": 0.999, + "content": "□", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 106, + 83, + 124, + 93 + ], + "lines": [ + { + "bbox": [ + 105, + 83, + 123, + 93 + ], + "spans": [ + { + "bbox": [ + 105, + 83, + 123, + 93 + ], + "score": 1.0, + "content": "and", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0, + "bbox_fs": [ + 105, + 83, + 123, + 93 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 151, + 90, + 459, + 213 + ], + "lines": [ + { + "bbox": [ + 151, + 90, + 459, + 213 + ], + "spans": [ + { + "bbox": [ + 151, + 90, + 459, + 213 + ], + "score": 0.95, + "content": "\\begin{array} { r l } & { \\mathrm { E } _ { X } \\left[ \\Big \\lVert \\mathrm { E } _ { S _ { L } } \\Big [ f _ { L + 1 } ( \\mathbf { H } ^ { ( L ) } \\odot \\gamma ^ { ( L + 1 ) } ) \\Big ] - f _ { L + 1 } ( \\mathbf { h } ^ { ( L ) } \\odot \\gamma ^ { ( L + 1 ) } ) \\Big \\rVert _ { 2 } \\right] } \\\\ { = } & { \\mathrm { E } _ { X } \\left[ \\Big \\lVert \\mathrm { E } _ { S _ { L } } \\Big [ f _ { L + 1 } ( \\mathbf { H } ^ { ( L ) } \\odot \\gamma ^ { ( L + 1 ) } ) \\Big ] - f _ { L + 1 } ( \\mathrm { E } _ { S _ { L } } \\big [ \\mathbf { H } ^ { ( L ) } \\big ] \\odot \\gamma ^ { ( L + 1 ) } ) \\right. } \\\\ & { \\left. + f _ { L + 1 } ( \\mathrm { E } _ { S _ { L } } \\big [ \\mathbf { H } ^ { ( L ) } \\big ] \\odot \\gamma ^ { ( L + 1 ) } ) - f _ { L + 1 } ( \\mathbf { h } ^ { ( L ) } \\odot \\gamma ^ { ( L + 1 ) } ) \\Big \\rVert _ { 2 } \\right] } \\\\ { \\le } & { \\mathrm { E } _ { X } \\left[ \\Big \\lVert \\mathrm { E } _ { S _ { L } } \\Big [ f _ { L + 1 } ( \\mathbf { H } ^ { ( L ) } \\odot \\gamma ^ { ( L + 1 ) } ) \\Big ] - f _ { L + 1 } ( \\mathrm { E } _ { S _ { L } } \\big [ \\mathbf { H } ^ { ( L ) } \\big ] \\odot \\gamma ^ { ( L + 1 ) } ) \\Big \\rVert _ { 2 } \\right] } \\\\ & { + \\mathrm { E } _ { X } \\left[ \\Big \\lVert f _ { L + 1 } ( \\mathrm { E } _ { S _ { L } } \\big [ \\mathbf { H } ^ { ( L ) } \\big ] \\odot \\gamma ^ { ( L + 1 ) } ) - f _ { L + 1 } ( \\mathbf { h } ^ { ( L ) } \\odot \\gamma ^ { ( L + 1 ) } ) \\Big \\rVert _ { 2 } \\right] } \\end{array}", + "type": "interline_equation", + "image_path": "2703115d94680807f82810b8fb6493bf9518b59591bc8cc9121cc3b5306c246b.jpg" + } + ] + } + ], + "index": 2, + "virtual_lines": [ + { + "bbox": [ + 151, + 90, + 459, + 131.0 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 151, + 131.0, + 459, + 172.0 + ], + "spans": [], + "index": 2 + }, + { + "bbox": [ + 151, + 172.0, + 459, + 213.0 + ], + "spans": [], + "index": 3 + } + ] + }, + { + "type": "text", + "bbox": [ + 103, + 216, + 465, + 230 + ], + "lines": [ + { + "bbox": [ + 104, + 215, + 467, + 231 + ], + "spans": [ + { + "bbox": [ + 104, + 215, + 336, + 231 + ], + "score": 1.0, + "content": "Using Jensen’s inequality, property of operator norm and", + "type": "text" + }, + { + "bbox": [ + 336, + 216, + 426, + 230 + ], + "score": 0.92, + "content": "\\mathrm { E } \\big [ \\mathrm { V a r } [ \\mathbf { H } ^ { ( l ) } | X ] \\big ] \\leq \\sigma ^ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 427, + 215, + 467, + 231 + ], + "score": 1.0, + "content": ", we have", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 4, + "bbox_fs": [ + 104, + 215, + 467, + 231 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 151, + 235, + 459, + 327 + ], + "lines": [ + { + "bbox": [ + 151, + 235, + 459, + 327 + ], + "spans": [ + { + "bbox": [ + 151, + 235, + 459, + 327 + ], + "score": 0.95, + "content": "\\begin{array} { r l } & { \\mathrm { E } _ { X } \\left[ \\Big \\| \\mathrm { E } _ { S _ { L } } \\Big [ f _ { L + 1 } \\big ( \\mathbf { H } ^ { ( L ) } \\odot \\boldsymbol { \\gamma } ^ { ( L + 1 ) } \\big ) \\Big ] - f _ { L + 1 } \\big ( \\mathrm { E } _ { S _ { L } } \\big [ \\mathbf { H } ^ { ( L ) } \\big ] \\odot \\boldsymbol { \\gamma } ^ { ( L + 1 ) } \\big ) \\Big \\| _ { 2 } \\right] } \\\\ { \\leq } & { \\mathrm { E } _ { \\mathbf { H } ^ { ( L ) } } \\left[ \\Big \\| f _ { L + 1 } \\big ( \\mathbf { H } ^ { ( L ) } \\odot \\boldsymbol { \\gamma } ^ { ( L + 1 ) } \\big ) - f _ { L + 1 } \\big ( \\mathrm { E } _ { S _ { L } } \\big [ \\mathbf { H } ^ { ( L ) } \\big ] \\odot \\boldsymbol { \\gamma } ^ { ( L + 1 ) } \\big ) \\Big \\| _ { 2 } \\right] } \\\\ { \\leq } & { B \\gamma \\mathrm { E } _ { \\mathbf { H } ^ { ( L ) } } \\left[ \\big \\| \\mathbf { H } ^ { ( L ) } - \\mathrm { E } _ { S _ { L } } \\big [ \\mathbf { H } ^ { ( L ) } \\big ] \\big \\| _ { 2 } \\right] } \\\\ { \\leq } & { B \\gamma \\left( \\mathrm { E } _ { \\mathbf { H } ^ { ( L ) } } \\left[ \\big \\| \\mathbf { H } ^ { ( L ) } - \\mathrm { E } _ { S _ { L } } \\big [ \\mathbf { H } ^ { ( L ) } \\big ] \\big \\| _ { 2 } ^ { 2 } \\right] \\right) ^ { \\frac { 1 } { 2 } } \\leq B \\gamma \\sigma } \\end{array}", + "type": "interline_equation", + "image_path": "e6ff3c52165aa6ec59258beec816c1232016b5f7bb1a49f08ef2dfdf595a4ab1.jpg" + } + ] + } + ], + "index": 6, + "virtual_lines": [ + { + "bbox": [ + 151, + 235, + 459, + 265.6666666666667 + ], + "spans": [], + "index": 5 + }, + { + "bbox": [ + 151, + 265.6666666666667, + 459, + 296.33333333333337 + ], + "spans": [], + "index": 6 + }, + { + "bbox": [ + 151, + 296.33333333333337, + 459, + 327.00000000000006 + ], + "spans": [], + "index": 7 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 330, + 153, + 342 + ], + "lines": [ + { + "bbox": [ + 105, + 329, + 155, + 344 + ], + "spans": [ + { + "bbox": [ + 105, + 329, + 155, + 344 + ], + "score": 1.0, + "content": "From Eq. 1", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 8, + "bbox_fs": [ + 105, + 329, + 155, + 344 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 165, + 347, + 443, + 393 + ], + "lines": [ + { + "bbox": [ + 165, + 347, + 443, + 393 + ], + "spans": [ + { + "bbox": [ + 165, + 347, + 443, + 393 + ], + "score": 0.94, + "content": "\\begin{array} { r l } & { \\mathrm { E } _ { X } \\bigg [ \\Big \\| f _ { L + 1 } \\big ( \\mathrm { E } _ { S _ { L } } \\big [ \\mathbf { H } ^ { ( L ) } \\big ] \\odot \\boldsymbol { \\gamma } ^ { ( L + 1 ) } \\big ) - f _ { L + 1 } \\big ( \\mathbf { h } ^ { ( L ) } \\odot \\boldsymbol { \\gamma } ^ { ( L + 1 ) } \\big ) \\Big \\| _ { 2 } \\bigg ] } \\\\ { = } & { B \\gamma \\mathrm { E } _ { X } \\Big [ \\big \\| \\mathrm { E } _ { S _ { L } } \\big [ \\mathbf { H } ^ { ( L ) } \\big ] - \\mathbf { h } ^ { ( L ) } \\big \\| _ { 2 } \\Big ] \\leq B \\gamma \\Delta _ { L } } \\end{array}", + "type": "interline_equation", + "image_path": "99f5cc07e5e71a85940099ef2716379411d1c68b273bb05f4cf49b626cf3c3a9.jpg" + } + ] + } + ], + "index": 10, + "virtual_lines": [ + { + "bbox": [ + 165, + 347, + 443, + 362.3333333333333 + ], + "spans": [], + "index": 9 + }, + { + "bbox": [ + 165, + 362.3333333333333, + 443, + 377.66666666666663 + ], + "spans": [], + "index": 10 + }, + { + "bbox": [ + 165, + 377.66666666666663, + 443, + 392.99999999999994 + ], + "spans": [], + "index": 11 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 396, + 350, + 409 + ], + "lines": [ + { + "bbox": [ + 106, + 396, + 350, + 410 + ], + "spans": [ + { + "bbox": [ + 106, + 396, + 350, + 410 + ], + "score": 1.0, + "content": "Finally, to sum up with Eq. 3, Eq. 4, , Eq. 5, , Eq. 6, we have", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 12, + "bbox_fs": [ + 106, + 396, + 350, + 410 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 205, + 413, + 404, + 471 + ], + "lines": [ + { + "bbox": [ + 205, + 413, + 404, + 471 + ], + "spans": [ + { + "bbox": [ + 205, + 413, + 404, + 471 + ], + "score": 0.94, + "content": "\\begin{array} { r l } & { \\mathrm { E } _ { X } \\Big [ \\big \\| \\mathrm { E } _ { S _ { L + 1 } } \\big [ \\mathbf { H } ^ { ( L + 1 ) } \\big ] - \\mathbf { h } ^ { ( L + 1 ) } \\big \\| _ { 2 } \\Big ] } \\\\ { \\leq } & { \\delta + B \\gamma \\sigma + B \\gamma \\Delta _ { L } } \\\\ { = } & { ( B \\gamma ) ^ { L } \\delta + ( \\delta + B \\gamma \\sigma ) \\bigg ( \\frac { 1 - ( B \\gamma ) ^ { L } } { 1 - B \\gamma } \\bigg ) = \\Delta _ { L + 1 } } \\end{array}", + "type": "interline_equation", + "image_path": "e42749701a2fe3cd5afe102a84e97b97d388b6b65a47a83f134d554508b6aaef.jpg" + } + ] + } + ], + "index": 14, + "virtual_lines": [ + { + "bbox": [ + 205, + 413, + 404, + 432.3333333333333 + ], + "spans": [], + "index": 13 + }, + { + "bbox": [ + 205, + 432.3333333333333, + 404, + 451.66666666666663 + ], + "spans": [], + "index": 14 + }, + { + "bbox": [ + 205, + 451.66666666666663, + 404, + 470.99999999999994 + ], + "spans": [], + "index": 15 + } + ] + }, + { + "type": "title", + "bbox": [ + 107, + 502, + 287, + 515 + ], + "lines": [ + { + "bbox": [ + 106, + 501, + 288, + 517 + ], + "spans": [ + { + "bbox": [ + 106, + 501, + 288, + 517 + ], + "score": 1.0, + "content": "C EXPECTATION-LINEARIZATION", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 16 + }, + { + "type": "text", + "bbox": [ + 107, + 527, + 365, + 539 + ], + "lines": [ + { + "bbox": [ + 106, + 526, + 365, + 541 + ], + "spans": [ + { + "bbox": [ + 106, + 526, + 365, + 541 + ], + "score": 1.0, + "content": "C.1 PROOF OF THEOREM 4: UNIFORM DEVIATION BOUND", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 17, + "bbox_fs": [ + 106, + 526, + 365, + 541 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 547, + 332, + 560 + ], + "lines": [ + { + "bbox": [ + 105, + 547, + 333, + 561 + ], + "spans": [ + { + "bbox": [ + 105, + 547, + 333, + 561 + ], + "score": 1.0, + "content": "Before proving Theorem 4, we first define the notations.", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 18, + "bbox_fs": [ + 105, + 547, + 333, + 561 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 564, + 504, + 588 + ], + "lines": [ + { + "bbox": [ + 105, + 563, + 505, + 578 + ], + "spans": [ + { + "bbox": [ + 105, + 563, + 123, + 578 + ], + "score": 1.0, + "content": "Let", + "type": "text" + }, + { + "bbox": [ + 123, + 565, + 211, + 576 + ], + "score": 0.89, + "content": "X ^ { n } = \\{ X _ { 1 } , \\ldots , X _ { n } \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 211, + 563, + 256, + 578 + ], + "score": 1.0, + "content": "be a set of", + "type": "text" + }, + { + "bbox": [ + 257, + 568, + 264, + 575 + ], + "score": 0.77, + "content": "n", + "type": "inline_equation" + }, + { + "bbox": [ + 264, + 563, + 335, + 578 + ], + "score": 1.0, + "content": "samples of input", + "type": "text" + }, + { + "bbox": [ + 335, + 565, + 345, + 575 + ], + "score": 0.83, + "content": "X", + "type": "inline_equation" + }, + { + "bbox": [ + 345, + 563, + 435, + 578 + ], + "score": 1.0, + "content": ". For a function space", + "type": "text" + }, + { + "bbox": [ + 435, + 565, + 487, + 575 + ], + "score": 0.9, + "content": "\\mathcal { F } : \\mathcal { X } \\mathcal { R }", + "type": "inline_equation" + }, + { + "bbox": [ + 487, + 563, + 505, + 578 + ], + "score": 1.0, + "content": ", we", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 106, + 576, + 400, + 589 + ], + "spans": [ + { + "bbox": [ + 106, + 576, + 122, + 589 + ], + "score": 1.0, + "content": "use", + "type": "text" + }, + { + "bbox": [ + 123, + 577, + 181, + 588 + ], + "score": 0.92, + "content": "R a d _ { n } ( \\mathcal { F } , X ^ { n } )", + "type": "inline_equation" + }, + { + "bbox": [ + 182, + 576, + 387, + 589 + ], + "score": 1.0, + "content": "to denote the empirical Rademacher complexity of", + "type": "text" + }, + { + "bbox": [ + 387, + 577, + 396, + 586 + ], + "score": 0.84, + "content": "\\mathcal { F }", + "type": "inline_equation" + }, + { + "bbox": [ + 396, + 576, + 400, + 589 + ], + "score": 1.0, + "content": ",", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 19.5, + "bbox_fs": [ + 105, + 563, + 505, + 589 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 211, + 593, + 400, + 626 + ], + "lines": [ + { + "bbox": [ + 211, + 593, + 400, + 626 + ], + "spans": [ + { + "bbox": [ + 211, + 593, + 400, + 626 + ], + "score": 0.94, + "content": "R a d _ { n } ( \\mathcal { F } , X ^ { n } ) = \\mathrm { E } _ { \\sigma } \\left[ \\operatorname* { s u p } _ { f \\in \\mathcal { F } } \\Big ( \\frac { 1 } { n } \\sum _ { i = 1 } ^ { n } \\sigma _ { i } f ( X _ { i } ) \\Big ) \\right]", + "type": "interline_equation", + "image_path": "f04eb2324fa86a3364e87f3bbd9dd72ccfebf6671faf2723c1b9c3f61765020d.jpg" + } + ] + } + ], + "index": 21.5, + "virtual_lines": [ + { + "bbox": [ + 211, + 593, + 400, + 609.5 + ], + "spans": [], + "index": 21 + }, + { + "bbox": [ + 211, + 609.5, + 400, + 626.0 + ], + "spans": [], + "index": 22 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 630, + 288, + 642 + ], + "lines": [ + { + "bbox": [ + 106, + 630, + 288, + 643 + ], + "spans": [ + { + "bbox": [ + 106, + 630, + 288, + 643 + ], + "score": 1.0, + "content": "and the Rademacher complexity is defined as", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 23, + "bbox_fs": [ + 106, + 630, + 288, + 643 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 235, + 647, + 376, + 668 + ], + "lines": [ + { + "bbox": [ + 235, + 647, + 376, + 668 + ], + "spans": [ + { + "bbox": [ + 235, + 647, + 376, + 668 + ], + "score": 0.93, + "content": "R a d _ { n } ( \\mathcal { F } ) = \\mathrm { E } _ { X ^ { n } } \\Big [ R a d _ { n } ( \\mathcal { F } , X ^ { n } ) \\Big ]", + "type": "interline_equation", + "image_path": "d8dd27c39444072410e5ed963fd1ce96a0aedec0bcbf84ce79742c4275dfc86a.jpg" + } + ] + } + ], + "index": 24, + "virtual_lines": [ + { + "bbox": [ + 235, + 647, + 376, + 668 + ], + "spans": [], + "index": 24 + } + ] + }, + { + "type": "text", + "bbox": [ + 105, + 672, + 502, + 685 + ], + "lines": [ + { + "bbox": [ + 105, + 671, + 503, + 687 + ], + "spans": [ + { + "bbox": [ + 105, + 671, + 503, + 687 + ], + "score": 1.0, + "content": "In addition, we import the definition of dropout Rademacher complexity from Gao & Zhou (2014):", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 25, + "bbox_fs": [ + 105, + 671, + 503, + 687 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 194, + 690, + 416, + 736 + ], + "lines": [ + { + "bbox": [ + 194, + 690, + 416, + 736 + ], + "spans": [ + { + "bbox": [ + 194, + 690, + 416, + 736 + ], + "score": 0.94, + "content": "\\begin{array} { r c l } { \\mathcal { R } _ { n } ( \\mathcal { H } , X ^ { n } , S ^ { n } ) } & { = } & { \\operatorname { E } _ { \\sigma } \\bigg [ \\underset { h \\in \\mathcal { H } } { \\operatorname* { s u p } } \\Big ( \\frac { 1 } { n } \\sum _ { i = 1 } ^ { n } \\sigma _ { i } h ( X _ { i } , S _ { i } ) \\Big ) \\bigg ] } \\\\ { \\mathcal { R } _ { n } ( \\mathcal { H } ) } & { = } & { \\operatorname { E } _ { X ^ { n } , S ^ { n } } \\Big [ R a d _ { n } ( \\mathcal { H } , X ^ { n } , S ^ { n } ) \\Big ] } \\end{array}", + "type": "interline_equation", + "image_path": "a013b442d6ddbc3854762fcc741b3a1141b856b4ea6cf1ec63f6dfe0a673276e.jpg" + } + ] + } + ], + "index": 27, + "virtual_lines": [ + { + "bbox": [ + 194, + 690, + 416, + 705.3333333333334 + ], + "spans": [], + "index": 26 + }, + { + "bbox": [ + 194, + 705.3333333333334, + 416, + 720.6666666666667 + ], + "spans": [], + "index": 27 + }, + { + "bbox": [ + 194, + 720.6666666666667, + 416, + 736.0000000000001 + ], + "spans": [], + "index": 28 + } + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 106, + 81, + 506, + 125 + ], + "lines": [ + { + "bbox": [ + 105, + 80, + 506, + 97 + ], + "spans": [ + { + "bbox": [ + 105, + 80, + 134, + 97 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 134, + 83, + 206, + 93 + ], + "score": 0.9, + "content": "\\mathcal { H } : \\mathcal { X } \\times \\mathcal { S } \\mathcal { R }", + "type": "inline_equation" + }, + { + "bbox": [ + 207, + 80, + 381, + 97 + ], + "score": 1.0, + "content": "is a function space defined on input space", + "type": "text" + }, + { + "bbox": [ + 381, + 83, + 391, + 92 + ], + "score": 0.81, + "content": "\\mathcal { X }", + "type": "inline_equation" + }, + { + "bbox": [ + 392, + 80, + 506, + 97 + ], + "score": 1.0, + "content": "and dropout variable space", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 107, + 92, + 505, + 107 + ], + "spans": [ + { + "bbox": [ + 107, + 94, + 114, + 104 + ], + "score": 0.6, + "content": "s", + "type": "inline_equation" + }, + { + "bbox": [ + 115, + 92, + 121, + 107 + ], + "score": 1.0, + "content": ".", + "type": "text" + }, + { + "bbox": [ + 122, + 94, + 188, + 106 + ], + "score": 0.88, + "content": "\\mathcal { R } _ { n } ( \\mathcal { H } , X ^ { n } , S ^ { n } )", + "type": "inline_equation" + }, + { + "bbox": [ + 189, + 92, + 208, + 107 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 208, + 93, + 240, + 106 + ], + "score": 0.94, + "content": "\\textstyle { \\mathcal { R } } _ { n } ( { \\mathcal { H } } )", + "type": "inline_equation" + }, + { + "bbox": [ + 240, + 92, + 505, + 107 + ], + "score": 1.0, + "content": "are the empirical dropout Rademacher complexity and dropout", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 104, + 104, + 504, + 125 + ], + "spans": [ + { + "bbox": [ + 104, + 105, + 334, + 124 + ], + "score": 1.0, + "content": "Rademacher complexity, respectively. We further denote", + "type": "text" + }, + { + "bbox": [ + 335, + 104, + 501, + 125 + ], + "score": 0.94, + "content": "\\mathcal { R } _ { n } ( \\mathcal { H } , X ^ { n } ) \\stackrel { \\Delta } { = } \\mathrm { E } _ { S ^ { n } } \\left[ \\stackrel { \\cdot } { R a d _ { n } } ( \\mathcal { H } , X ^ { n } , S ^ { n } ) \\right]", + "type": "inline_equation" + }, + { + "bbox": [ + 501, + 105, + 504, + 124 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 2 + } + ], + "index": 1 + }, + { + "type": "text", + "bbox": [ + 106, + 128, + 293, + 140 + ], + "lines": [ + { + "bbox": [ + 105, + 127, + 293, + 142 + ], + "spans": [ + { + "bbox": [ + 105, + 127, + 293, + 142 + ], + "score": 1.0, + "content": "Now, we define the following function spaces:", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 3 + }, + { + "type": "interline_equation", + "bbox": [ + 185, + 142, + 424, + 218 + ], + "lines": [ + { + "bbox": [ + 185, + 142, + 424, + 218 + ], + "spans": [ + { + "bbox": [ + 185, + 142, + 424, + 218 + ], + "score": 0.95, + "content": "\\begin{array} { r c l } { \\mathcal { F } } & { = } & { \\bigg \\{ f ( x ; \\theta ) : f ( x ; \\theta ) = \\mathrm { E } _ { S } \\Big [ \\mathbf { H } ^ { ( L ) } ( x , S ; \\theta ) \\Big ] , \\theta \\in \\Theta \\bigg \\} } \\\\ { \\mathcal { G } } & { = } & { \\bigg \\{ g ( x ; \\theta ) : g ( x ; \\theta ) = \\mathbf { h } ^ { ( L ) } ( x , \\mathrm { E } [ S ] ; \\theta ) , \\theta \\in \\Theta \\bigg \\} } \\\\ { \\mathcal { H } } & { = } & { \\bigg \\{ h ( x , s ; \\theta ) : h ( x , s ; \\theta ) = \\mathbf { h } ^ { ( L ) } ( x , s ; \\theta ) , \\theta \\in \\Theta \\bigg \\} } \\end{array}", + "type": "interline_equation", + "image_path": "76bbff1f74aa4b906f6b347d2447d96e3cadcefba0950d800e6133e84c46dbb3.jpg" + } + ] + } + ], + "index": 6, + "virtual_lines": [ + { + "bbox": [ + 185, + 142, + 424, + 157.2 + ], + "spans": [], + "index": 4 + }, + { + "bbox": [ + 185, + 157.2, + 424, + 172.39999999999998 + ], + "spans": [], + "index": 5 + }, + { + "bbox": [ + 185, + 172.39999999999998, + 424, + 187.59999999999997 + ], + "spans": [], + "index": 6 + }, + { + "bbox": [ + 185, + 187.59999999999997, + 424, + 202.79999999999995 + ], + "spans": [], + "index": 7 + }, + { + "bbox": [ + 185, + 202.79999999999995, + 424, + 217.99999999999994 + ], + "spans": [], + "index": 8 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 219, + 457, + 245 + ], + "lines": [ + { + "bbox": [ + 105, + 219, + 455, + 234 + ], + "spans": [ + { + "bbox": [ + 105, + 219, + 218, + 234 + ], + "score": 1.0, + "content": "Then, the function space of", + "type": "text" + }, + { + "bbox": [ + 218, + 220, + 300, + 233 + ], + "score": 0.93, + "content": "v ( x ) = f ( x ) - g ( x )", + "type": "inline_equation" + }, + { + "bbox": [ + 301, + 219, + 311, + 234 + ], + "score": 1.0, + "content": "is", + "type": "text" + }, + { + "bbox": [ + 312, + 221, + 455, + 233 + ], + "score": 0.88, + "content": "\\mathcal { V } = \\{ f ( x ) - g ( x ) : f \\in \\mathcal { F } , g \\in \\mathcal { G } \\}", + "type": "inline_equation" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 234, + 153, + 246 + ], + "spans": [ + { + "bbox": [ + 105, + 234, + 153, + 246 + ], + "score": 1.0, + "content": "Lemma 7.", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 9.5 + }, + { + "type": "interline_equation", + "bbox": [ + 244, + 245, + 366, + 258 + ], + "lines": [ + { + "bbox": [ + 244, + 245, + 366, + 258 + ], + "spans": [ + { + "bbox": [ + 244, + 245, + 366, + 258 + ], + "score": 0.88, + "content": "R a d _ { n } ( { \\mathcal { F } } , X ^ { n } ) \\leq { \\mathcal { R } } _ { n } ( { \\mathcal { H } } , X ^ { n } )", + "type": "interline_equation", + "image_path": "0a49ae1c7e670dd92c67131811baabec8d144cac0fd69ddef937740455d0b056.jpg" + } + ] + } + ], + "index": 11, + "virtual_lines": [ + { + "bbox": [ + 244, + 245, + 366, + 258 + ], + "spans": [], + "index": 11 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 269, + 133, + 281 + ], + "lines": [ + { + "bbox": [ + 104, + 267, + 135, + 284 + ], + "spans": [ + { + "bbox": [ + 104, + 267, + 135, + 284 + ], + "score": 1.0, + "content": "Proof.", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 12 + }, + { + "type": "interline_equation", + "bbox": [ + 170, + 279, + 438, + 423 + ], + "lines": [ + { + "bbox": [ + 170, + 279, + 438, + 423 + ], + "spans": [ + { + "bbox": [ + 170, + 279, + 438, + 423 + ], + "score": 0.96, + "content": "\\begin{array} { r l } & { { \\mathcal { R } } _ { n } ( { \\mathcal { H } } , X ^ { n } ) = \\mathbb { E } _ { S ^ { n } } \\left[ R a d _ { n } ( { \\mathcal { H } } , X ^ { n } , S ^ { n } ) \\right] } \\\\ { = } & { \\mathbb { E } _ { S ^ { n } } \\Bigg [ \\mathbb { E } _ { \\sigma } \\Bigg [ \\underset { h \\in \\mathcal { H } } { \\operatorname* { s u p } } \\left( \\frac { 1 } { n } \\frac { \\sqrt { 2 } } { i _ { 0 } ^ { - 1 } } \\sigma _ { i } h ( X _ { i } , S _ { i } ) \\right) \\Bigg ] \\Bigg ] } \\\\ { = } & { \\mathbb { E } _ { \\sigma } \\Bigg [ \\mathbb { E } _ { S ^ { n } } \\Bigg [ \\underset { h \\in \\mathcal { H } } { \\operatorname* { s u p } } \\left( \\frac { 1 } { n } \\frac { \\sqrt { 2 } } { i _ { 0 } ^ { - 1 } } \\sigma _ { i } h ( X _ { i } , S _ { i } ) \\right) \\Bigg ] \\Bigg ] } \\\\ { \\geq } & { \\mathbb { E } _ { \\sigma } \\Bigg [ \\underset { h \\in \\mathcal { H } } { \\operatorname* { s u p } } \\mathbb { E } _ { S ^ { n } } \\Bigg [ \\left( \\frac { 1 } { n } \\frac { \\sqrt { 2 } } { i _ { 0 } ^ { - 1 } } \\sigma _ { i } h ( X _ { i } , S _ { i } ) \\right) \\Bigg ] \\Bigg ] } \\\\ { = } & { \\mathbb { E } _ { \\sigma } \\Bigg [ \\underset { h \\in \\mathcal { H } } { \\operatorname* { s u p } } \\left( \\frac { 1 } { n } \\frac { \\sqrt { 2 } } { i _ { 0 } ^ { - 1 } } \\sigma _ { i } \\mathbb { E } _ { S _ { i } } \\big [ h ( X _ { i } , S _ { i } ) \\big ] \\right) \\Bigg ] } \\\\ { = } & { \\mathbb { E } _ { \\sigma } \\Bigg [ \\underset { h \\in \\mathcal { H } } { \\operatorname* { s u p } } \\left( \\frac { 1 } { n } \\frac { \\sqrt { 2 } } { i _ { 0 } ^ { - 1 } } \\sigma _ { i } \\mathbb { E } _ { S _ { i } } \\big [ \\mathbb { H } ^ { ( L ) } ( X _ { i } , S _ { i } ; \\theta ) \\big ] \\right) \\Bigg ] = R a d _ { n } ( \\mathcal { F } , X ^ { n } ) } \\end{array}", + "type": "interline_equation", + "image_path": "4504dd8c46c5d032de648fc9e4d07d59d151dffa76e3e833dea01c2b36048367.jpg" + } + ] + } + ], + "index": 14, + "virtual_lines": [ + { + "bbox": [ + 170, + 279, + 438, + 327.0 + ], + "spans": [], + "index": 13 + }, + { + "bbox": [ + 170, + 327.0, + 438, + 375.0 + ], + "spans": [], + "index": 14 + }, + { + "bbox": [ + 170, + 375.0, + 438, + 423.0 + ], + "spans": [], + "index": 15 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 446, + 295, + 458 + ], + "lines": [ + { + "bbox": [ + 106, + 445, + 296, + 459 + ], + "spans": [ + { + "bbox": [ + 106, + 445, + 209, + 459 + ], + "score": 1.0, + "content": "From Lemma 7, we have", + "type": "text" + }, + { + "bbox": [ + 209, + 446, + 293, + 458 + ], + "score": 0.92, + "content": "R a d _ { n } ( \\mathcal { F } ) \\leq \\mathcal { R } _ { n } ( \\mathcal { H } )", + "type": "inline_equation" + }, + { + "bbox": [ + 293, + 445, + 296, + 459 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 16 + }, + { + "type": "text", + "bbox": [ + 106, + 460, + 151, + 471 + ], + "lines": [ + { + "bbox": [ + 105, + 458, + 152, + 472 + ], + "spans": [ + { + "bbox": [ + 105, + 458, + 152, + 472 + ], + "score": 1.0, + "content": "Lemma 8.", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 17 + }, + { + "type": "interline_equation", + "bbox": [ + 253, + 468, + 357, + 504 + ], + "lines": [ + { + "bbox": [ + 253, + 468, + 357, + 504 + ], + "spans": [ + { + "bbox": [ + 253, + 468, + 357, + 504 + ], + "score": 0.92, + "content": "\\begin{array} { r l r } { \\mathcal { R } _ { n } ( \\mathcal { H } ) } & { \\leq } & { \\frac { \\alpha B ^ { L } \\gamma ^ { L / 2 } } { \\sqrt { n } } } \\\\ { R a d _ { n } ( \\mathcal { G } ) } & { \\leq } & { \\frac { \\alpha B ^ { L } } { \\sqrt { n } } } \\end{array}", + "type": "interline_equation", + "image_path": "906d93fa6c990d74a3e44e0e3b4e205e82b0771feef12ce4740864eec5f6be5d.jpg" + } + ] + } + ], + "index": 18.5, + "virtual_lines": [ + { + "bbox": [ + 253, + 468, + 357, + 486.0 + ], + "spans": [], + "index": 18 + }, + { + "bbox": [ + 253, + 486.0, + 357, + 504.0 + ], + "spans": [], + "index": 19 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 513, + 292, + 525 + ], + "lines": [ + { + "bbox": [ + 106, + 512, + 293, + 527 + ], + "spans": [ + { + "bbox": [ + 106, + 512, + 293, + 527 + ], + "score": 1.0, + "content": "Proof. See Theorem 4 in Gao & Zhou (2014).", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 20 + }, + { + "type": "text", + "bbox": [ + 107, + 537, + 233, + 549 + ], + "lines": [ + { + "bbox": [ + 105, + 537, + 234, + 550 + ], + "spans": [ + { + "bbox": [ + 105, + 537, + 234, + 550 + ], + "score": 1.0, + "content": "Now, we can prove Theorem 4.", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 21 + }, + { + "type": "title", + "bbox": [ + 107, + 560, + 191, + 572 + ], + "lines": [ + { + "bbox": [ + 105, + 559, + 192, + 573 + ], + "spans": [ + { + "bbox": [ + 105, + 559, + 192, + 573 + ], + "score": 1.0, + "content": "Proof of Theorem 4", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 22 + }, + { + "type": "text", + "bbox": [ + 106, + 583, + 444, + 596 + ], + "lines": [ + { + "bbox": [ + 105, + 582, + 442, + 597 + ], + "spans": [ + { + "bbox": [ + 105, + 582, + 408, + 597 + ], + "score": 1.0, + "content": "Proof. From Rademacher-based uniform bounds theorem, with probability", + "type": "text" + }, + { + "bbox": [ + 408, + 585, + 442, + 595 + ], + "score": 0.86, + "content": "\\geq 1 - \\delta", + "type": "inline_equation" + } + ], + "index": 23 + } + ], + "index": 23 + }, + { + "type": "interline_equation", + "bbox": [ + 216, + 598, + 394, + 627 + ], + "lines": [ + { + "bbox": [ + 216, + 598, + 394, + 627 + ], + "spans": [ + { + "bbox": [ + 216, + 598, + 394, + 627 + ], + "score": 0.93, + "content": "\\operatorname* { s u p } _ { v \\in \\mathcal { V } } | \\Delta - \\hat { \\Delta } | < 2 R a d _ { n } ( \\mathcal { V } ) + \\beta \\sqrt { \\frac { \\log ( 1 / \\delta ) } { n } }", + "type": "interline_equation", + "image_path": "07e15bb7f517575240e13d2b7e4da5b5bb2d212f3a74b65dbbce55f3ac5cac5a.jpg" + } + ] + } + ], + "index": 24, + "virtual_lines": [ + { + "bbox": [ + 216, + 598, + 394, + 627 + ], + "spans": [], + "index": 24 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 630, + 218, + 641 + ], + "lines": [ + { + "bbox": [ + 106, + 628, + 218, + 643 + ], + "spans": [ + { + "bbox": [ + 106, + 628, + 131, + 643 + ], + "score": 1.0, + "content": "Since", + "type": "text" + }, + { + "bbox": [ + 131, + 630, + 179, + 641 + ], + "score": 0.93, + "content": "\\mathcal { V } = \\mathcal { F } - \\mathcal { G }", + "type": "inline_equation" + }, + { + "bbox": [ + 180, + 628, + 218, + 643 + ], + "score": 1.0, + "content": ", we have", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 25 + }, + { + "type": "interline_equation", + "bbox": [ + 157, + 644, + 453, + 672 + ], + "lines": [ + { + "bbox": [ + 157, + 644, + 453, + 672 + ], + "spans": [ + { + "bbox": [ + 157, + 644, + 453, + 672 + ], + "score": 0.89, + "content": "R a d _ { n } ( \\mathcal { V } ) = R a d _ { n } ( \\mathcal { F } - \\mathcal { G } ) \\leq R a d _ { n } ( \\mathcal { F } ) + R a d _ { n } ( \\mathcal { G } ) \\leq \\frac { \\alpha B ^ { L } ( \\gamma ^ { L / 2 } + 1 ) } { \\sqrt { n } }", + "type": "interline_equation", + "image_path": "bef726fa475f41170328fef501a83aa48fe658e1e0ca934d65228b015ffccfbd.jpg" + } + ] + } + ], + "index": 26, + "virtual_lines": [ + { + "bbox": [ + 157, + 644, + 453, + 672 + ], + "spans": [], + "index": 26 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 673, + 317, + 686 + ], + "lines": [ + { + "bbox": [ + 105, + 672, + 318, + 687 + ], + "spans": [ + { + "bbox": [ + 105, + 672, + 280, + 687 + ], + "score": 1.0, + "content": "Then, finally, we have that with probability", + "type": "text" + }, + { + "bbox": [ + 280, + 675, + 314, + 685 + ], + "score": 0.87, + "content": "\\geq 1 - \\delta", + "type": "inline_equation" + }, + { + "bbox": [ + 314, + 672, + 318, + 687 + ], + "score": 1.0, + "content": ",", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 27 + }, + { + "type": "interline_equation", + "bbox": [ + 201, + 689, + 408, + 718 + ], + "lines": [ + { + "bbox": [ + 201, + 689, + 408, + 718 + ], + "spans": [ + { + "bbox": [ + 201, + 689, + 408, + 718 + ], + "score": 0.94, + "content": "\\operatorname* { s u p } _ { \\theta \\in \\Theta } | \\Delta - \\hat { \\Delta } | < \\frac { 2 \\alpha B ^ { L } ( \\gamma ^ { L / 2 } + 1 ) } { \\sqrt { n } } + \\beta \\sqrt { \\frac { \\log ( 1 / \\delta ) } { n } }", + "type": "interline_equation", + "image_path": "981b083c8e07c64139ba1a145da481a9fa7a094c0b3951e6367b63ca4561de18.jpg" + } + ] + } + ], + "index": 28, + "virtual_lines": [ + { + "bbox": [ + 201, + 689, + 408, + 718 + ], + "spans": [], + "index": 28 + } + ] + } + ], + "page_idx": 15, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 26, + 293, + 38 + ], + "lines": [ + { + "bbox": [ + 106, + 25, + 294, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 25, + 294, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2017", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 300, + 751, + 311, + 760 + ], + "lines": [ + { + "bbox": [ + 299, + 750, + 312, + 764 + ], + "spans": [ + { + "bbox": [ + 299, + 750, + 312, + 764 + ], + "score": 1.0, + "content": "16", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 494, + 721, + 505, + 731 + ], + "lines": [ + { + "bbox": [ + 496, + 722, + 504, + 731 + ], + "spans": [ + { + "bbox": [ + 496, + 722, + 504, + 731 + ], + "score": 0.999, + "content": "□", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 494, + 422, + 505, + 433 + ], + "lines": [ + { + "bbox": [ + 495, + 423, + 505, + 434 + ], + "spans": [ + { + "bbox": [ + 495, + 423, + 505, + 434 + ], + "score": 0.997, + "content": "□", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 494, + 514, + 505, + 525 + ], + "lines": [ + { + "bbox": [ + 496, + 516, + 504, + 524 + ], + "spans": [ + { + "bbox": [ + 496, + 516, + 504, + 524 + ], + "score": 0.997, + "content": "□", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 106, + 81, + 506, + 125 + ], + "lines": [ + { + "bbox": [ + 105, + 80, + 506, + 97 + ], + "spans": [ + { + "bbox": [ + 105, + 80, + 134, + 97 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 134, + 83, + 206, + 93 + ], + "score": 0.9, + "content": "\\mathcal { H } : \\mathcal { X } \\times \\mathcal { S } \\mathcal { R }", + "type": "inline_equation" + }, + { + "bbox": [ + 207, + 80, + 381, + 97 + ], + "score": 1.0, + "content": "is a function space defined on input space", + "type": "text" + }, + { + "bbox": [ + 381, + 83, + 391, + 92 + ], + "score": 0.81, + "content": "\\mathcal { X }", + "type": "inline_equation" + }, + { + "bbox": [ + 392, + 80, + 506, + 97 + ], + "score": 1.0, + "content": "and dropout variable space", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 107, + 92, + 505, + 107 + ], + "spans": [ + { + "bbox": [ + 107, + 94, + 114, + 104 + ], + "score": 0.6, + "content": "s", + "type": "inline_equation" + }, + { + "bbox": [ + 115, + 92, + 121, + 107 + ], + "score": 1.0, + "content": ".", + "type": "text" + }, + { + "bbox": [ + 122, + 94, + 188, + 106 + ], + "score": 0.88, + "content": "\\mathcal { R } _ { n } ( \\mathcal { H } , X ^ { n } , S ^ { n } )", + "type": "inline_equation" + }, + { + "bbox": [ + 189, + 92, + 208, + 107 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 208, + 93, + 240, + 106 + ], + "score": 0.94, + "content": "\\textstyle { \\mathcal { R } } _ { n } ( { \\mathcal { H } } )", + "type": "inline_equation" + }, + { + "bbox": [ + 240, + 92, + 505, + 107 + ], + "score": 1.0, + "content": "are the empirical dropout Rademacher complexity and dropout", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 104, + 104, + 504, + 125 + ], + "spans": [ + { + "bbox": [ + 104, + 105, + 334, + 124 + ], + "score": 1.0, + "content": "Rademacher complexity, respectively. We further denote", + "type": "text" + }, + { + "bbox": [ + 335, + 104, + 501, + 125 + ], + "score": 0.94, + "content": "\\mathcal { R } _ { n } ( \\mathcal { H } , X ^ { n } ) \\stackrel { \\Delta } { = } \\mathrm { E } _ { S ^ { n } } \\left[ \\stackrel { \\cdot } { R a d _ { n } } ( \\mathcal { H } , X ^ { n } , S ^ { n } ) \\right]", + "type": "inline_equation" + }, + { + "bbox": [ + 501, + 105, + 504, + 124 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 2 + } + ], + "index": 1, + "bbox_fs": [ + 104, + 80, + 506, + 125 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 128, + 293, + 140 + ], + "lines": [ + { + "bbox": [ + 105, + 127, + 293, + 142 + ], + "spans": [ + { + "bbox": [ + 105, + 127, + 293, + 142 + ], + "score": 1.0, + "content": "Now, we define the following function spaces:", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 3, + "bbox_fs": [ + 105, + 127, + 293, + 142 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 185, + 142, + 424, + 218 + ], + "lines": [ + { + "bbox": [ + 185, + 142, + 424, + 218 + ], + "spans": [ + { + "bbox": [ + 185, + 142, + 424, + 218 + ], + "score": 0.95, + "content": "\\begin{array} { r c l } { \\mathcal { F } } & { = } & { \\bigg \\{ f ( x ; \\theta ) : f ( x ; \\theta ) = \\mathrm { E } _ { S } \\Big [ \\mathbf { H } ^ { ( L ) } ( x , S ; \\theta ) \\Big ] , \\theta \\in \\Theta \\bigg \\} } \\\\ { \\mathcal { G } } & { = } & { \\bigg \\{ g ( x ; \\theta ) : g ( x ; \\theta ) = \\mathbf { h } ^ { ( L ) } ( x , \\mathrm { E } [ S ] ; \\theta ) , \\theta \\in \\Theta \\bigg \\} } \\\\ { \\mathcal { H } } & { = } & { \\bigg \\{ h ( x , s ; \\theta ) : h ( x , s ; \\theta ) = \\mathbf { h } ^ { ( L ) } ( x , s ; \\theta ) , \\theta \\in \\Theta \\bigg \\} } \\end{array}", + "type": "interline_equation", + "image_path": "76bbff1f74aa4b906f6b347d2447d96e3cadcefba0950d800e6133e84c46dbb3.jpg" + } + ] + } + ], + "index": 6, + "virtual_lines": [ + { + "bbox": [ + 185, + 142, + 424, + 157.2 + ], + "spans": [], + "index": 4 + }, + { + "bbox": [ + 185, + 157.2, + 424, + 172.39999999999998 + ], + "spans": [], + "index": 5 + }, + { + "bbox": [ + 185, + 172.39999999999998, + 424, + 187.59999999999997 + ], + "spans": [], + "index": 6 + }, + { + "bbox": [ + 185, + 187.59999999999997, + 424, + 202.79999999999995 + ], + "spans": [], + "index": 7 + }, + { + "bbox": [ + 185, + 202.79999999999995, + 424, + 217.99999999999994 + ], + "spans": [], + "index": 8 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 219, + 457, + 245 + ], + "lines": [ + { + "bbox": [ + 105, + 219, + 455, + 234 + ], + "spans": [ + { + "bbox": [ + 105, + 219, + 218, + 234 + ], + "score": 1.0, + "content": "Then, the function space of", + "type": "text" + }, + { + "bbox": [ + 218, + 220, + 300, + 233 + ], + "score": 0.93, + "content": "v ( x ) = f ( x ) - g ( x )", + "type": "inline_equation" + }, + { + "bbox": [ + 301, + 219, + 311, + 234 + ], + "score": 1.0, + "content": "is", + "type": "text" + }, + { + "bbox": [ + 312, + 221, + 455, + 233 + ], + "score": 0.88, + "content": "\\mathcal { V } = \\{ f ( x ) - g ( x ) : f \\in \\mathcal { F } , g \\in \\mathcal { G } \\}", + "type": "inline_equation" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 234, + 153, + 246 + ], + "spans": [ + { + "bbox": [ + 105, + 234, + 153, + 246 + ], + "score": 1.0, + "content": "Lemma 7.", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 9.5, + "bbox_fs": [ + 105, + 219, + 455, + 246 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 244, + 245, + 366, + 258 + ], + "lines": [ + { + "bbox": [ + 244, + 245, + 366, + 258 + ], + "spans": [ + { + "bbox": [ + 244, + 245, + 366, + 258 + ], + "score": 0.88, + "content": "R a d _ { n } ( { \\mathcal { F } } , X ^ { n } ) \\leq { \\mathcal { R } } _ { n } ( { \\mathcal { H } } , X ^ { n } )", + "type": "interline_equation", + "image_path": "0a49ae1c7e670dd92c67131811baabec8d144cac0fd69ddef937740455d0b056.jpg" + } + ] + } + ], + "index": 11, + "virtual_lines": [ + { + "bbox": [ + 244, + 245, + 366, + 258 + ], + "spans": [], + "index": 11 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 269, + 133, + 281 + ], + "lines": [ + { + "bbox": [ + 104, + 267, + 135, + 284 + ], + "spans": [ + { + "bbox": [ + 104, + 267, + 135, + 284 + ], + "score": 1.0, + "content": "Proof.", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 12, + "bbox_fs": [ + 104, + 267, + 135, + 284 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 170, + 279, + 438, + 423 + ], + "lines": [ + { + "bbox": [ + 170, + 279, + 438, + 423 + ], + "spans": [ + { + "bbox": [ + 170, + 279, + 438, + 423 + ], + "score": 0.96, + "content": "\\begin{array} { r l } & { { \\mathcal { R } } _ { n } ( { \\mathcal { H } } , X ^ { n } ) = \\mathbb { E } _ { S ^ { n } } \\left[ R a d _ { n } ( { \\mathcal { H } } , X ^ { n } , S ^ { n } ) \\right] } \\\\ { = } & { \\mathbb { E } _ { S ^ { n } } \\Bigg [ \\mathbb { E } _ { \\sigma } \\Bigg [ \\underset { h \\in \\mathcal { H } } { \\operatorname* { s u p } } \\left( \\frac { 1 } { n } \\frac { \\sqrt { 2 } } { i _ { 0 } ^ { - 1 } } \\sigma _ { i } h ( X _ { i } , S _ { i } ) \\right) \\Bigg ] \\Bigg ] } \\\\ { = } & { \\mathbb { E } _ { \\sigma } \\Bigg [ \\mathbb { E } _ { S ^ { n } } \\Bigg [ \\underset { h \\in \\mathcal { H } } { \\operatorname* { s u p } } \\left( \\frac { 1 } { n } \\frac { \\sqrt { 2 } } { i _ { 0 } ^ { - 1 } } \\sigma _ { i } h ( X _ { i } , S _ { i } ) \\right) \\Bigg ] \\Bigg ] } \\\\ { \\geq } & { \\mathbb { E } _ { \\sigma } \\Bigg [ \\underset { h \\in \\mathcal { H } } { \\operatorname* { s u p } } \\mathbb { E } _ { S ^ { n } } \\Bigg [ \\left( \\frac { 1 } { n } \\frac { \\sqrt { 2 } } { i _ { 0 } ^ { - 1 } } \\sigma _ { i } h ( X _ { i } , S _ { i } ) \\right) \\Bigg ] \\Bigg ] } \\\\ { = } & { \\mathbb { E } _ { \\sigma } \\Bigg [ \\underset { h \\in \\mathcal { H } } { \\operatorname* { s u p } } \\left( \\frac { 1 } { n } \\frac { \\sqrt { 2 } } { i _ { 0 } ^ { - 1 } } \\sigma _ { i } \\mathbb { E } _ { S _ { i } } \\big [ h ( X _ { i } , S _ { i } ) \\big ] \\right) \\Bigg ] } \\\\ { = } & { \\mathbb { E } _ { \\sigma } \\Bigg [ \\underset { h \\in \\mathcal { H } } { \\operatorname* { s u p } } \\left( \\frac { 1 } { n } \\frac { \\sqrt { 2 } } { i _ { 0 } ^ { - 1 } } \\sigma _ { i } \\mathbb { E } _ { S _ { i } } \\big [ \\mathbb { H } ^ { ( L ) } ( X _ { i } , S _ { i } ; \\theta ) \\big ] \\right) \\Bigg ] = R a d _ { n } ( \\mathcal { F } , X ^ { n } ) } \\end{array}", + "type": "interline_equation", + "image_path": "4504dd8c46c5d032de648fc9e4d07d59d151dffa76e3e833dea01c2b36048367.jpg" + } + ] + } + ], + "index": 14, + "virtual_lines": [ + { + "bbox": [ + 170, + 279, + 438, + 327.0 + ], + "spans": [], + "index": 13 + }, + { + "bbox": [ + 170, + 327.0, + 438, + 375.0 + ], + "spans": [], + "index": 14 + }, + { + "bbox": [ + 170, + 375.0, + 438, + 423.0 + ], + "spans": [], + "index": 15 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 446, + 295, + 458 + ], + "lines": [ + { + "bbox": [ + 106, + 445, + 296, + 459 + ], + "spans": [ + { + "bbox": [ + 106, + 445, + 209, + 459 + ], + "score": 1.0, + "content": "From Lemma 7, we have", + "type": "text" + }, + { + "bbox": [ + 209, + 446, + 293, + 458 + ], + "score": 0.92, + "content": "R a d _ { n } ( \\mathcal { F } ) \\leq \\mathcal { R } _ { n } ( \\mathcal { H } )", + "type": "inline_equation" + }, + { + "bbox": [ + 293, + 445, + 296, + 459 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 16, + "bbox_fs": [ + 106, + 445, + 296, + 459 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 460, + 151, + 471 + ], + "lines": [ + { + "bbox": [ + 105, + 458, + 152, + 472 + ], + "spans": [ + { + "bbox": [ + 105, + 458, + 152, + 472 + ], + "score": 1.0, + "content": "Lemma 8.", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 17, + "bbox_fs": [ + 105, + 458, + 152, + 472 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 253, + 468, + 357, + 504 + ], + "lines": [ + { + "bbox": [ + 253, + 468, + 357, + 504 + ], + "spans": [ + { + "bbox": [ + 253, + 468, + 357, + 504 + ], + "score": 0.92, + "content": "\\begin{array} { r l r } { \\mathcal { R } _ { n } ( \\mathcal { H } ) } & { \\leq } & { \\frac { \\alpha B ^ { L } \\gamma ^ { L / 2 } } { \\sqrt { n } } } \\\\ { R a d _ { n } ( \\mathcal { G } ) } & { \\leq } & { \\frac { \\alpha B ^ { L } } { \\sqrt { n } } } \\end{array}", + "type": "interline_equation", + "image_path": "906d93fa6c990d74a3e44e0e3b4e205e82b0771feef12ce4740864eec5f6be5d.jpg" + } + ] + } + ], + "index": 18.5, + "virtual_lines": [ + { + "bbox": [ + 253, + 468, + 357, + 486.0 + ], + "spans": [], + "index": 18 + }, + { + "bbox": [ + 253, + 486.0, + 357, + 504.0 + ], + "spans": [], + "index": 19 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 513, + 292, + 525 + ], + "lines": [ + { + "bbox": [ + 106, + 512, + 293, + 527 + ], + "spans": [ + { + "bbox": [ + 106, + 512, + 293, + 527 + ], + "score": 1.0, + "content": "Proof. See Theorem 4 in Gao & Zhou (2014).", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 20, + "bbox_fs": [ + 106, + 512, + 293, + 527 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 537, + 233, + 549 + ], + "lines": [ + { + "bbox": [ + 105, + 537, + 234, + 550 + ], + "spans": [ + { + "bbox": [ + 105, + 537, + 234, + 550 + ], + "score": 1.0, + "content": "Now, we can prove Theorem 4.", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 21, + "bbox_fs": [ + 105, + 537, + 234, + 550 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 560, + 191, + 572 + ], + "lines": [ + { + "bbox": [ + 105, + 559, + 192, + 573 + ], + "spans": [ + { + "bbox": [ + 105, + 559, + 192, + 573 + ], + "score": 1.0, + "content": "Proof of Theorem 4", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 22 + }, + { + "type": "text", + "bbox": [ + 106, + 583, + 444, + 596 + ], + "lines": [ + { + "bbox": [ + 105, + 582, + 442, + 597 + ], + "spans": [ + { + "bbox": [ + 105, + 582, + 408, + 597 + ], + "score": 1.0, + "content": "Proof. From Rademacher-based uniform bounds theorem, with probability", + "type": "text" + }, + { + "bbox": [ + 408, + 585, + 442, + 595 + ], + "score": 0.86, + "content": "\\geq 1 - \\delta", + "type": "inline_equation" + } + ], + "index": 23 + } + ], + "index": 23, + "bbox_fs": [ + 105, + 582, + 442, + 597 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 216, + 598, + 394, + 627 + ], + "lines": [ + { + "bbox": [ + 216, + 598, + 394, + 627 + ], + "spans": [ + { + "bbox": [ + 216, + 598, + 394, + 627 + ], + "score": 0.93, + "content": "\\operatorname* { s u p } _ { v \\in \\mathcal { V } } | \\Delta - \\hat { \\Delta } | < 2 R a d _ { n } ( \\mathcal { V } ) + \\beta \\sqrt { \\frac { \\log ( 1 / \\delta ) } { n } }", + "type": "interline_equation", + "image_path": "07e15bb7f517575240e13d2b7e4da5b5bb2d212f3a74b65dbbce55f3ac5cac5a.jpg" + } + ] + } + ], + "index": 24, + "virtual_lines": [ + { + "bbox": [ + 216, + 598, + 394, + 627 + ], + "spans": [], + "index": 24 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 630, + 218, + 641 + ], + "lines": [ + { + "bbox": [ + 106, + 628, + 218, + 643 + ], + "spans": [ + { + "bbox": [ + 106, + 628, + 131, + 643 + ], + "score": 1.0, + "content": "Since", + "type": "text" + }, + { + "bbox": [ + 131, + 630, + 179, + 641 + ], + "score": 0.93, + "content": "\\mathcal { V } = \\mathcal { F } - \\mathcal { G }", + "type": "inline_equation" + }, + { + "bbox": [ + 180, + 628, + 218, + 643 + ], + "score": 1.0, + "content": ", we have", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 25, + "bbox_fs": [ + 106, + 628, + 218, + 643 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 157, + 644, + 453, + 672 + ], + "lines": [ + { + "bbox": [ + 157, + 644, + 453, + 672 + ], + "spans": [ + { + "bbox": [ + 157, + 644, + 453, + 672 + ], + "score": 0.89, + "content": "R a d _ { n } ( \\mathcal { V } ) = R a d _ { n } ( \\mathcal { F } - \\mathcal { G } ) \\leq R a d _ { n } ( \\mathcal { F } ) + R a d _ { n } ( \\mathcal { G } ) \\leq \\frac { \\alpha B ^ { L } ( \\gamma ^ { L / 2 } + 1 ) } { \\sqrt { n } }", + "type": "interline_equation", + "image_path": "bef726fa475f41170328fef501a83aa48fe658e1e0ca934d65228b015ffccfbd.jpg" + } + ] + } + ], + "index": 26, + "virtual_lines": [ + { + "bbox": [ + 157, + 644, + 453, + 672 + ], + "spans": [], + "index": 26 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 673, + 317, + 686 + ], + "lines": [ + { + "bbox": [ + 105, + 672, + 318, + 687 + ], + "spans": [ + { + "bbox": [ + 105, + 672, + 280, + 687 + ], + "score": 1.0, + "content": "Then, finally, we have that with probability", + "type": "text" + }, + { + "bbox": [ + 280, + 675, + 314, + 685 + ], + "score": 0.87, + "content": "\\geq 1 - \\delta", + "type": "inline_equation" + }, + { + "bbox": [ + 314, + 672, + 318, + 687 + ], + "score": 1.0, + "content": ",", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 27, + "bbox_fs": [ + 105, + 672, + 318, + 687 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 201, + 689, + 408, + 718 + ], + "lines": [ + { + "bbox": [ + 201, + 689, + 408, + 718 + ], + "spans": [ + { + "bbox": [ + 201, + 689, + 408, + 718 + ], + "score": 0.94, + "content": "\\operatorname* { s u p } _ { \\theta \\in \\Theta } | \\Delta - \\hat { \\Delta } | < \\frac { 2 \\alpha B ^ { L } ( \\gamma ^ { L / 2 } + 1 ) } { \\sqrt { n } } + \\beta \\sqrt { \\frac { \\log ( 1 / \\delta ) } { n } }", + "type": "interline_equation", + "image_path": "981b083c8e07c64139ba1a145da481a9fa7a094c0b3951e6367b63ca4561de18.jpg" + } + ] + } + ], + "index": 28, + "virtual_lines": [ + { + "bbox": [ + 201, + 689, + 408, + 718 + ], + "spans": [], + "index": 28 + } + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 105, + 81, + 437, + 95 + ], + "lines": [ + { + "bbox": [ + 105, + 81, + 438, + 95 + ], + "spans": [ + { + "bbox": [ + 105, + 81, + 438, + 95 + ], + "score": 1.0, + "content": "C.2 PROOF OF THEOREM 5: NON-UNIFORM BOUND OF MODEL ACCURACY", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "text", + "bbox": [ + 106, + 101, + 466, + 129 + ], + "lines": [ + { + "bbox": [ + 105, + 101, + 464, + 117 + ], + "spans": [ + { + "bbox": [ + 105, + 101, + 220, + 117 + ], + "score": 1.0, + "content": "For convenience, we denote", + "type": "text" + }, + { + "bbox": [ + 220, + 103, + 302, + 115 + ], + "score": 0.93, + "content": "\\lambda = \\{ \\theta _ { 1 } , \\dots , \\theta _ { L - 1 } \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 303, + 101, + 329, + 117 + ], + "score": 1.0, + "content": ". Then", + "type": "text" + }, + { + "bbox": [ + 330, + 102, + 374, + 115 + ], + "score": 0.94, + "content": "\\theta = \\{ \\lambda , \\eta \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 375, + 101, + 419, + 117 + ], + "score": 1.0, + "content": ", and MLE", + "type": "text" + }, + { + "bbox": [ + 419, + 101, + 464, + 115 + ], + "score": 0.92, + "content": "\\hat { \\theta } = \\{ \\hat { \\lambda } , \\hat { \\eta } \\}", + "type": "inline_equation" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 117, + 153, + 130 + ], + "spans": [ + { + "bbox": [ + 105, + 117, + 153, + 130 + ], + "score": 1.0, + "content": "Lemma 9.", + "type": "text" + } + ], + "index": 2 + } + ], + "index": 1.5 + }, + { + "type": "interline_equation", + "bbox": [ + 253, + 126, + 358, + 142 + ], + "lines": [ + { + "bbox": [ + 253, + 126, + 358, + 142 + ], + "spans": [ + { + "bbox": [ + 253, + 126, + 358, + 142 + ], + "score": 0.91, + "content": "\\| \\nabla f _ { L } ( \\cdot ; \\eta ) ^ { T } \\| _ { o p } \\leq 2 \\| \\eta \\| _ { 2 }", + "type": "interline_equation", + "image_path": "668336e6b550ee5666f5eff9da20600065ce5c554eeacbe7f3452ac8aaebe6d9.jpg" + } + ] + } + ], + "index": 3, + "virtual_lines": [ + { + "bbox": [ + 253, + 126, + 358, + 142 + ], + "spans": [], + "index": 3 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 153, + 165, + 164 + ], + "lines": [ + { + "bbox": [ + 105, + 152, + 165, + 165 + ], + "spans": [ + { + "bbox": [ + 105, + 152, + 165, + 165 + ], + "score": 1.0, + "content": "Proof. denote", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 4 + }, + { + "type": "interline_equation", + "bbox": [ + 105, + 162, + 386, + 219 + ], + "lines": [ + { + "bbox": [ + 134, + 162, + 386, + 219 + ], + "spans": [ + { + "bbox": [ + 134, + 162, + 386, + 219 + ], + "score": 0.63, + "content": "\\begin{array} { c } { A = \\nabla f _ { L } ( \\cdot ; \\boldsymbol { \\eta } ) ^ { T } = \\left[ p _ { y } ( \\eta _ { y } - \\overline { { \\boldsymbol { \\eta } } } ) ^ { T } \\right] \\Big | _ { y = 1 } ^ { k } } \\\\ { p _ { y } = p ( y | \\boldsymbol { x } , s ; \\theta ) , \\overline { { \\boldsymbol { \\eta } } } = \\mathrm { E } \\left[ \\eta _ { Y } \\right] = \\displaystyle \\sum _ { y = 1 } ^ { k } p _ { y } \\eta _ { y } . } \\end{array}", + "type": "interline_equation", + "image_path": "0c96192ab5f7d35ca74ac2639d617cc566edc0b35e1c4c06d5d7cfd16012ba61.jpg" + } + ] + } + ], + "index": 6, + "virtual_lines": [ + { + "bbox": [ + 105, + 162, + 386, + 181.0 + ], + "spans": [], + "index": 5 + }, + { + "bbox": [ + 105, + 181.0, + 386, + 200.0 + ], + "spans": [], + "index": 6 + }, + { + "bbox": [ + 105, + 200.0, + 386, + 219.0 + ], + "spans": [], + "index": 7 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 223, + 232, + 236 + ], + "lines": [ + { + "bbox": [ + 105, + 221, + 233, + 237 + ], + "spans": [ + { + "bbox": [ + 105, + 221, + 143, + 237 + ], + "score": 1.0, + "content": "For each", + "type": "text" + }, + { + "bbox": [ + 144, + 226, + 150, + 234 + ], + "score": 0.76, + "content": "v", + "type": "inline_equation" + }, + { + "bbox": [ + 150, + 221, + 189, + 237 + ], + "score": 1.0, + "content": "such that", + "type": "text" + }, + { + "bbox": [ + 190, + 223, + 228, + 236 + ], + "score": 0.92, + "content": "\\| v \\| _ { 2 } = 1", + "type": "inline_equation" + }, + { + "bbox": [ + 228, + 221, + 233, + 237 + ], + "score": 1.0, + "content": ",", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 8 + }, + { + "type": "interline_equation", + "bbox": [ + 126, + 240, + 484, + 318 + ], + "lines": [ + { + "bbox": [ + 126, + 240, + 484, + 318 + ], + "spans": [ + { + "bbox": [ + 126, + 240, + 484, + 318 + ], + "score": 0.94, + "content": "\\begin{array} { r c l } { \\| A v \\| _ { 2 } ^ { 2 } } & { = } & { \\displaystyle \\sum _ { y \\in \\mathcal { V } } \\left( p _ { y } \\left( \\eta _ { y } - \\overline { { \\eta } } \\right) ^ { T } v \\right) ^ { 2 } \\leq \\sum _ { y \\in \\mathcal { V } } \\| p _ { y } \\left( \\eta _ { y } - \\overline { { \\eta } } \\right) \\| _ { 2 } ^ { 2 } \\| v \\| _ { 2 } ^ { 2 } = \\displaystyle \\sum _ { y \\in \\mathcal { V } } \\| p _ { y } \\left( \\eta _ { y } - \\overline { { \\eta } } \\right) \\| _ { 2 } ^ { 2 } } \\\\ & { \\leq } & { \\displaystyle \\sum _ { y \\in \\mathcal { V } } p _ { y } \\| \\eta _ { y } - \\overline { { \\eta } } \\| _ { 2 } ^ { 2 } \\leq \\sum _ { y \\in \\mathcal { V } } 2 p _ { y } \\left( \\| \\eta \\| _ { 2 } ^ { 2 } + \\sum _ { y ^ { \\prime } \\in \\mathcal { V } } p _ { y ^ { \\prime } } \\| \\eta _ { y ^ { \\prime } } \\| _ { 2 } ^ { 2 } \\right) } \\\\ & { = } & { \\displaystyle 4 \\sum _ { y \\in \\mathcal { V } } p _ { y } \\| \\eta _ { y } \\| _ { 2 } ^ { 2 } \\leq 4 \\| \\eta \\| _ { 2 } ^ { 2 } } \\end{array}", + "type": "interline_equation", + "image_path": "70d80023c607997d88ffc80493dda0dc030a3e63b50a0ebc95f9c3f44fd0ea6d.jpg" + } + ] + } + ], + "index": 10, + "virtual_lines": [ + { + "bbox": [ + 126, + 240, + 484, + 266.0 + ], + "spans": [], + "index": 9 + }, + { + "bbox": [ + 126, + 266.0, + 484, + 292.0 + ], + "spans": [], + "index": 10 + }, + { + "bbox": [ + 126, + 292.0, + 484, + 318.0 + ], + "spans": [], + "index": 11 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 322, + 222, + 336 + ], + "lines": [ + { + "bbox": [ + 105, + 321, + 219, + 338 + ], + "spans": [ + { + "bbox": [ + 105, + 321, + 155, + 338 + ], + "score": 1.0, + "content": "So we have", + "type": "text" + }, + { + "bbox": [ + 155, + 323, + 219, + 336 + ], + "score": 0.92, + "content": "\\| A \\| _ { o p } \\leq 2 \\| \\eta \\| _ { 2 }", + "type": "inline_equation" + } + ], + "index": 12 + } + ], + "index": 12 + }, + { + "type": "text", + "bbox": [ + 106, + 342, + 504, + 369 + ], + "lines": [ + { + "bbox": [ + 104, + 340, + 507, + 360 + ], + "spans": [ + { + "bbox": [ + 104, + 340, + 211, + 360 + ], + "score": 1.0, + "content": "Lemma 10. If parameter", + "type": "text" + }, + { + "bbox": [ + 211, + 342, + 255, + 356 + ], + "score": 0.94, + "content": "\\tilde { \\theta } = \\{ \\hat { \\lambda } , \\eta \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 256, + 340, + 308, + 360 + ], + "score": 1.0, + "content": "satisfies that", + "type": "text" + }, + { + "bbox": [ + 309, + 342, + 353, + 358 + ], + "score": 0.93, + "content": "\\begin{array} { r } { \\| \\eta \\| _ { 2 } \\le \\frac { \\delta } { 4 \\beta } } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 354, + 340, + 377, + 360 + ], + "score": 1.0, + "content": ", then", + "type": "text" + }, + { + "bbox": [ + 377, + 342, + 430, + 356 + ], + "score": 0.93, + "content": "V ( D ; { \\tilde { \\theta } } ) \\leq \\delta", + "type": "inline_equation" + }, + { + "bbox": [ + 430, + 340, + 460, + 360 + ], + "score": 1.0, + "content": ", where", + "type": "text" + }, + { + "bbox": [ + 460, + 344, + 495, + 356 + ], + "score": 0.93, + "content": "V ( D ; \\theta )", + "type": "inline_equation" + }, + { + "bbox": [ + 495, + 340, + 507, + 360 + ], + "score": 1.0, + "content": "is", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 356, + 185, + 370 + ], + "spans": [ + { + "bbox": [ + 105, + 356, + 185, + 370 + ], + "score": 1.0, + "content": "defined in Eq. (16).", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 13.5 + }, + { + "type": "text", + "bbox": [ + 107, + 379, + 505, + 406 + ], + "lines": [ + { + "bbox": [ + 105, + 377, + 506, + 395 + ], + "spans": [ + { + "bbox": [ + 105, + 377, + 154, + 395 + ], + "score": 1.0, + "content": "Proof. Let", + "type": "text" + }, + { + "bbox": [ + 155, + 380, + 259, + 394 + ], + "score": 0.91, + "content": "S _ { L } = \\{ \\Gamma ^ { ( 1 ) } , \\dots , \\Gamma ^ { ( L ) } \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 260, + 377, + 302, + 395 + ], + "score": 1.0, + "content": ", and let", + "type": "text" + }, + { + "bbox": [ + 302, + 380, + 322, + 392 + ], + "score": 0.88, + "content": "\\mathbf { H } ^ { ( l ) }", + "type": "inline_equation" + }, + { + "bbox": [ + 322, + 377, + 345, + 395 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 346, + 380, + 363, + 392 + ], + "score": 0.88, + "content": "\\mathbf { h } ^ { ( l ) }", + "type": "inline_equation" + }, + { + "bbox": [ + 363, + 377, + 425, + 395 + ], + "score": 1.0, + "content": "be short for", + "type": "text" + }, + { + "bbox": [ + 425, + 380, + 483, + 394 + ], + "score": 0.93, + "content": "\\mathbf { H } ^ { ( l ) } ( X , S _ { l } ; \\tilde { \\theta } )", + "type": "inline_equation" + }, + { + "bbox": [ + 484, + 377, + 506, + 395 + ], + "score": 1.0, + "content": "and", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 106, + 390, + 233, + 408 + ], + "spans": [ + { + "bbox": [ + 106, + 393, + 177, + 406 + ], + "score": 0.93, + "content": "\\mathbf { h } ^ { ( l ) } ( X , \\mathrm { E } ( S _ { l } ) ; \\tilde { \\theta } )", + "type": "inline_equation" + }, + { + "bbox": [ + 177, + 390, + 233, + 408 + ], + "score": 1.0, + "content": ", respectively.", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 15.5 + }, + { + "type": "text", + "bbox": [ + 107, + 410, + 407, + 424 + ], + "lines": [ + { + "bbox": [ + 105, + 409, + 407, + 425 + ], + "spans": [ + { + "bbox": [ + 105, + 409, + 205, + 425 + ], + "score": 1.0, + "content": "From lemma 9, we have", + "type": "text" + }, + { + "bbox": [ + 206, + 410, + 376, + 424 + ], + "score": 0.92, + "content": "\\| f _ { L } ( x ; \\eta ) - f _ { L } ( y ; \\eta ) \\| _ { 2 } \\leq 2 \\| \\eta \\| _ { 2 } \\| x - y \\| _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 377, + 409, + 407, + 425 + ], + "score": 1.0, + "content": ". Then,", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 17 + }, + { + "type": "interline_equation", + "bbox": [ + 158, + 428, + 452, + 482 + ], + "lines": [ + { + "bbox": [ + 158, + 428, + 452, + 482 + ], + "spans": [ + { + "bbox": [ + 158, + 428, + 452, + 482 + ], + "score": 0.76, + "content": "\\begin{array} { r c l } { \\left\\| \\boldsymbol { \\mathrm { E } } _ { S _ { L } } \\left[ \\mathbf { H } ^ { L } \\right] - \\mathbf { h } ^ { L } \\right\\| _ { 2 } } & { = } & { \\left\\| \\boldsymbol { \\mathrm { E } } _ { S _ { L - 1 } } \\left[ f _ { L } ( \\mathbf { H } ^ { ( L - 1 ) } ; \\boldsymbol { \\eta } ) \\right] - f _ { L } ( \\mathbf { h } ^ { ( L - 1 ) } ; \\boldsymbol { \\eta } ) \\right\\| _ { 2 } } \\\\ & { \\leq } & { \\boldsymbol { \\mathrm { E } } _ { S _ { L - 1 } } \\left\\| f _ { L } ( \\mathbf { H } ^ { ( L - 1 ) } ; \\boldsymbol { \\eta } ) - f _ { L } ( \\mathbf { h } ^ { ( L - 1 ) } ; \\boldsymbol { \\eta } ) \\right\\| _ { 2 } } \\\\ & { \\leq } & { 2 \\| \\boldsymbol { \\eta } \\| _ { 2 } \\left\\| \\mathbf { H } ^ { ( L - 1 ) } - \\mathbf { h } ^ { ( L - 1 ) } \\right\\| _ { 2 } } \\\\ & { \\leq } & { 4 \\beta \\| \\boldsymbol { \\eta } \\| _ { 2 } \\leq \\delta } \\end{array}", + "type": "interline_equation", + "image_path": "c1a3b0aaf3c09b5b6204f720ce6a2abab50b5b237e44e8e3d05813256df7201d.jpg" + } + ] + } + ], + "index": 19, + "virtual_lines": [ + { + "bbox": [ + 158, + 428, + 452, + 446.0 + ], + "spans": [], + "index": 18 + }, + { + "bbox": [ + 158, + 446.0, + 452, + 464.0 + ], + "spans": [], + "index": 19 + }, + { + "bbox": [ + 158, + 464.0, + 452, + 482.0 + ], + "spans": [], + "index": 20 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 509, + 505, + 534 + ], + "lines": [ + { + "bbox": [ + 105, + 508, + 505, + 523 + ], + "spans": [ + { + "bbox": [ + 105, + 508, + 240, + 523 + ], + "score": 1.0, + "content": "Lemma 10 says that we can get", + "type": "text" + }, + { + "bbox": [ + 241, + 510, + 247, + 520 + ], + "score": 0.81, + "content": "\\theta", + "type": "inline_equation" + }, + { + "bbox": [ + 248, + 508, + 505, + 523 + ], + "score": 1.0, + "content": "satisfying the expectation-linearization constrain by explicitly", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 106, + 521, + 239, + 534 + ], + "spans": [ + { + "bbox": [ + 106, + 522, + 161, + 534 + ], + "score": 1.0, + "content": "scaling down", + "type": "text" + }, + { + "bbox": [ + 162, + 523, + 169, + 534 + ], + "score": 0.84, + "content": "\\hat { \\eta }", + "type": "inline_equation" + }, + { + "bbox": [ + 169, + 522, + 228, + 534 + ], + "score": 1.0, + "content": "while keeping", + "type": "text" + }, + { + "bbox": [ + 228, + 521, + 235, + 532 + ], + "score": 0.81, + "content": "\\hat { \\lambda }", + "type": "inline_equation" + }, + { + "bbox": [ + 235, + 522, + 239, + 534 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 21.5 + }, + { + "type": "text", + "bbox": [ + 106, + 539, + 372, + 551 + ], + "lines": [ + { + "bbox": [ + 105, + 537, + 373, + 554 + ], + "spans": [ + { + "bbox": [ + 105, + 537, + 373, + 554 + ], + "score": 1.0, + "content": "In order to prove Theorem 5, we make the following assumptions:", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 23 + }, + { + "type": "text", + "bbox": [ + 131, + 559, + 457, + 621 + ], + "lines": [ + { + "bbox": [ + 132, + 559, + 339, + 573 + ], + "spans": [ + { + "bbox": [ + 132, + 559, + 215, + 573 + ], + "score": 1.0, + "content": "• The dimension of", + "type": "text" + }, + { + "bbox": [ + 215, + 560, + 245, + 571 + ], + "score": 0.9, + "content": "\\mathbf { h } ^ { ( L - 1 ) }", + "type": "inline_equation" + }, + { + "bbox": [ + 245, + 559, + 255, + 573 + ], + "score": 1.0, + "content": "is", + "type": "text" + }, + { + "bbox": [ + 255, + 561, + 262, + 571 + ], + "score": 0.76, + "content": "d", + "type": "inline_equation" + }, + { + "bbox": [ + 262, + 559, + 281, + 573 + ], + "score": 1.0, + "content": ", i.e.", + "type": "text" + }, + { + "bbox": [ + 281, + 560, + 336, + 572 + ], + "score": 0.91, + "content": "\\mathbf { h } ^ { ( L - 1 ) } \\in \\mathcal { R } ^ { d }", + "type": "inline_equation" + }, + { + "bbox": [ + 336, + 559, + 339, + 573 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 132, + 575, + 457, + 590 + ], + "spans": [ + { + "bbox": [ + 132, + 575, + 167, + 590 + ], + "score": 1.0, + "content": "• Since", + "type": "text" + }, + { + "bbox": [ + 167, + 575, + 257, + 589 + ], + "score": 0.93, + "content": "\\forall y \\in \\mathcal { V } , p ( y | x ; \\hat { \\theta } ) > 0", + "type": "inline_equation" + }, + { + "bbox": [ + 257, + 575, + 307, + 590 + ], + "score": 1.0, + "content": ", we assume", + "type": "text" + }, + { + "bbox": [ + 307, + 575, + 371, + 589 + ], + "score": 0.93, + "content": "p ( y | x ; \\hat { \\theta } ) \\geq 1 / b", + "type": "inline_equation" + }, + { + "bbox": [ + 372, + 575, + 402, + 590 + ], + "score": 1.0, + "content": ", where", + "type": "text" + }, + { + "bbox": [ + 402, + 577, + 452, + 589 + ], + "score": 0.92, + "content": "b \\geq | \\mathcal { V } | = k", + "type": "inline_equation" + }, + { + "bbox": [ + 453, + 575, + 457, + 590 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 132, + 592, + 428, + 607 + ], + "spans": [ + { + "bbox": [ + 132, + 592, + 235, + 607 + ], + "score": 1.0, + "content": "• As in the body text, let", + "type": "text" + }, + { + "bbox": [ + 235, + 592, + 281, + 606 + ], + "score": 0.92, + "content": "p ( \\boldsymbol { y } | \\boldsymbol { x } , s ; \\hat { \\theta } )", + "type": "inline_equation" + }, + { + "bbox": [ + 282, + 592, + 428, + 607 + ], + "score": 1.0, + "content": "be nonuniform, and in particular let", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 142, + 604, + 385, + 621 + ], + "spans": [ + { + "bbox": [ + 142, + 605, + 381, + 621 + ], + "score": 0.83, + "content": "\\hat { \\eta } _ { y ^ { * } } ^ { T } \\mathbf { h } ^ { ( L - 1 ) } ( x , s ; \\hat { \\lambda } ) - \\hat { \\eta } _ { y } ^ { T } \\mathbf { h } ^ { ( L - 1 ) } ( x , s ; \\hat { \\lambda } ) > c \\| \\hat { \\eta } \\| _ { 2 } , \\forall y \\neq y ^ { * } .", + "type": "inline_equation" + }, + { + "bbox": [ + 381, + 604, + 385, + 621 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 25.5 + }, + { + "type": "text", + "bbox": [ + 105, + 628, + 506, + 650 + ], + "lines": [ + { + "bbox": [ + 104, + 626, + 505, + 646 + ], + "spans": [ + { + "bbox": [ + 104, + 626, + 219, + 646 + ], + "score": 1.0, + "content": "For convenience, we denote", + "type": "text" + }, + { + "bbox": [ + 220, + 629, + 362, + 643 + ], + "score": 0.92, + "content": "\\eta ^ { T } \\mathbf { h } ^ { ( L - 1 ) } ( x , s ; \\lambda ) = \\eta ^ { T } u _ { y } ( x , s ; \\lambda )", + "type": "inline_equation" + }, + { + "bbox": [ + 362, + 626, + 393, + 646 + ], + "score": 1.0, + "content": ", where", + "type": "text" + }, + { + "bbox": [ + 393, + 630, + 505, + 644 + ], + "score": 0.92, + "content": "u _ { y } ^ { T } ( x , s ; \\lambda ) = ( v _ { 0 } ^ { T } , \\ldots , v _ { k } ^ { T } )", + "type": "inline_equation" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 641, + 125, + 654 + ], + "spans": [ + { + "bbox": [ + 105, + 641, + 125, + 654 + ], + "score": 1.0, + "content": "and", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 28.5 + }, + { + "type": "interline_equation", + "bbox": [ + 229, + 649, + 374, + 677 + ], + "lines": [ + { + "bbox": [ + 229, + 649, + 374, + 677 + ], + "spans": [ + { + "bbox": [ + 229, + 649, + 374, + 677 + ], + "score": 0.92, + "content": "v _ { i } = { \\left\\{ \\begin{array} { l l } { \\mathbf { h } ^ { ( L - 1 ) } ( x , s ; \\lambda ) } & { { \\mathrm { i f ~ } } i = y } \\\\ { 0 } & { { \\mathrm { o t h e r w i s e } } } \\end{array} \\right. }", + "type": "interline_equation", + "image_path": "453f768723071c256bea498071168b345295684dfce15e110cd0855cb01ccd33.jpg" + } + ] + } + ], + "index": 30, + "virtual_lines": [ + { + "bbox": [ + 229, + 649, + 374, + 677 + ], + "spans": [], + "index": 30 + } + ] + }, + { + "type": "text", + "bbox": [ + 104, + 678, + 347, + 691 + ], + "lines": [ + { + "bbox": [ + 105, + 677, + 341, + 692 + ], + "spans": [ + { + "bbox": [ + 105, + 677, + 341, + 692 + ], + "score": 1.0, + "content": "To prove Theorem 5, we first prove the following lemmas.", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 31 + }, + { + "type": "text", + "bbox": [ + 107, + 693, + 453, + 708 + ], + "lines": [ + { + "bbox": [ + 104, + 692, + 454, + 710 + ], + "spans": [ + { + "bbox": [ + 104, + 692, + 168, + 710 + ], + "score": 1.0, + "content": "Lemma 11. If", + "type": "text" + }, + { + "bbox": [ + 168, + 693, + 233, + 707 + ], + "score": 0.92, + "content": "p ( y | x ; \\hat { \\theta } ) \\geq 1 / b ,", + "type": "inline_equation" + }, + { + "bbox": [ + 233, + 692, + 255, + 710 + ], + "score": 1.0, + "content": ", then", + "type": "text" + }, + { + "bbox": [ + 255, + 695, + 301, + 707 + ], + "score": 0.9, + "content": "\\forall \\alpha \\in [ 0 , 1 ] ,", + "type": "inline_equation" + }, + { + "bbox": [ + 302, + 692, + 362, + 710 + ], + "score": 1.0, + "content": ", for parameter", + "type": "text" + }, + { + "bbox": [ + 363, + 693, + 414, + 707 + ], + "score": 0.93, + "content": "\\tilde { \\theta } = \\{ \\hat { \\lambda } , \\alpha \\hat { \\eta } \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 414, + 692, + 454, + 710 + ], + "score": 1.0, + "content": ", we have", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 32 + }, + { + "type": "interline_equation", + "bbox": [ + 276, + 712, + 335, + 736 + ], + "lines": [ + { + "bbox": [ + 276, + 712, + 335, + 736 + ], + "spans": [ + { + "bbox": [ + 276, + 712, + 335, + 736 + ], + "score": 0.92, + "content": "p ( y | x ; \\tilde { \\theta } ) \\geq \\frac { 1 } { b }", + "type": "interline_equation", + "image_path": "b78a53c1be84d657467f664327baec2f32a9cee91372058f960e5bec46d47351.jpg" + } + ] + } + ], + "index": 33, + "virtual_lines": [ + { + "bbox": [ + 276, + 712, + 335, + 736 + ], + "spans": [], + "index": 33 + } + ] + } + ], + "page_idx": 16, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 106, + 26, + 293, + 38 + ], + "lines": [ + { + "bbox": [ + 106, + 25, + 294, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 25, + 294, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2017", + "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" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 494, + 323, + 505, + 334 + ], + "lines": [ + { + "bbox": [ + 496, + 325, + 505, + 334 + ], + "spans": [ + { + "bbox": [ + 496, + 325, + 505, + 334 + ], + "score": 0.999, + "content": "□", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 494, + 486, + 505, + 497 + ], + "lines": [ + { + "bbox": [ + 496, + 488, + 504, + 496 + ], + "spans": [ + { + "bbox": [ + 496, + 488, + 504, + 496 + ], + "score": 0.998, + "content": "□", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 105, + 81, + 437, + 95 + ], + "lines": [ + { + "bbox": [ + 105, + 81, + 438, + 95 + ], + "spans": [ + { + "bbox": [ + 105, + 81, + 438, + 95 + ], + "score": 1.0, + "content": "C.2 PROOF OF THEOREM 5: NON-UNIFORM BOUND OF MODEL ACCURACY", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0, + "bbox_fs": [ + 105, + 81, + 438, + 95 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 101, + 466, + 129 + ], + "lines": [ + { + "bbox": [ + 105, + 101, + 464, + 117 + ], + "spans": [ + { + "bbox": [ + 105, + 101, + 220, + 117 + ], + "score": 1.0, + "content": "For convenience, we denote", + "type": "text" + }, + { + "bbox": [ + 220, + 103, + 302, + 115 + ], + "score": 0.93, + "content": "\\lambda = \\{ \\theta _ { 1 } , \\dots , \\theta _ { L - 1 } \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 303, + 101, + 329, + 117 + ], + "score": 1.0, + "content": ". Then", + "type": "text" + }, + { + "bbox": [ + 330, + 102, + 374, + 115 + ], + "score": 0.94, + "content": "\\theta = \\{ \\lambda , \\eta \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 375, + 101, + 419, + 117 + ], + "score": 1.0, + "content": ", and MLE", + "type": "text" + }, + { + "bbox": [ + 419, + 101, + 464, + 115 + ], + "score": 0.92, + "content": "\\hat { \\theta } = \\{ \\hat { \\lambda } , \\hat { \\eta } \\}", + "type": "inline_equation" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 117, + 153, + 130 + ], + "spans": [ + { + "bbox": [ + 105, + 117, + 153, + 130 + ], + "score": 1.0, + "content": "Lemma 9.", + "type": "text" + } + ], + "index": 2 + } + ], + "index": 1.5, + "bbox_fs": [ + 105, + 101, + 464, + 130 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 253, + 126, + 358, + 142 + ], + "lines": [ + { + "bbox": [ + 253, + 126, + 358, + 142 + ], + "spans": [ + { + "bbox": [ + 253, + 126, + 358, + 142 + ], + "score": 0.91, + "content": "\\| \\nabla f _ { L } ( \\cdot ; \\eta ) ^ { T } \\| _ { o p } \\leq 2 \\| \\eta \\| _ { 2 }", + "type": "interline_equation", + "image_path": "668336e6b550ee5666f5eff9da20600065ce5c554eeacbe7f3452ac8aaebe6d9.jpg" + } + ] + } + ], + "index": 3, + "virtual_lines": [ + { + "bbox": [ + 253, + 126, + 358, + 142 + ], + "spans": [], + "index": 3 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 153, + 165, + 164 + ], + "lines": [ + { + "bbox": [ + 105, + 152, + 165, + 165 + ], + "spans": [ + { + "bbox": [ + 105, + 152, + 165, + 165 + ], + "score": 1.0, + "content": "Proof. denote", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 4, + "bbox_fs": [ + 105, + 152, + 165, + 165 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 105, + 162, + 386, + 219 + ], + "lines": [ + { + "bbox": [ + 134, + 162, + 386, + 219 + ], + "spans": [ + { + "bbox": [ + 134, + 162, + 386, + 219 + ], + "score": 0.63, + "content": "\\begin{array} { c } { A = \\nabla f _ { L } ( \\cdot ; \\boldsymbol { \\eta } ) ^ { T } = \\left[ p _ { y } ( \\eta _ { y } - \\overline { { \\boldsymbol { \\eta } } } ) ^ { T } \\right] \\Big | _ { y = 1 } ^ { k } } \\\\ { p _ { y } = p ( y | \\boldsymbol { x } , s ; \\theta ) , \\overline { { \\boldsymbol { \\eta } } } = \\mathrm { E } \\left[ \\eta _ { Y } \\right] = \\displaystyle \\sum _ { y = 1 } ^ { k } p _ { y } \\eta _ { y } . } \\end{array}", + "type": "interline_equation", + "image_path": "0c96192ab5f7d35ca74ac2639d617cc566edc0b35e1c4c06d5d7cfd16012ba61.jpg" + } + ] + } + ], + "index": 6, + "virtual_lines": [ + { + "bbox": [ + 105, + 162, + 386, + 181.0 + ], + "spans": [], + "index": 5 + }, + { + "bbox": [ + 105, + 181.0, + 386, + 200.0 + ], + "spans": [], + "index": 6 + }, + { + "bbox": [ + 105, + 200.0, + 386, + 219.0 + ], + "spans": [], + "index": 7 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 223, + 232, + 236 + ], + "lines": [ + { + "bbox": [ + 105, + 221, + 233, + 237 + ], + "spans": [ + { + "bbox": [ + 105, + 221, + 143, + 237 + ], + "score": 1.0, + "content": "For each", + "type": "text" + }, + { + "bbox": [ + 144, + 226, + 150, + 234 + ], + "score": 0.76, + "content": "v", + "type": "inline_equation" + }, + { + "bbox": [ + 150, + 221, + 189, + 237 + ], + "score": 1.0, + "content": "such that", + "type": "text" + }, + { + "bbox": [ + 190, + 223, + 228, + 236 + ], + "score": 0.92, + "content": "\\| v \\| _ { 2 } = 1", + "type": "inline_equation" + }, + { + "bbox": [ + 228, + 221, + 233, + 237 + ], + "score": 1.0, + "content": ",", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 8, + "bbox_fs": [ + 105, + 221, + 233, + 237 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 126, + 240, + 484, + 318 + ], + "lines": [ + { + "bbox": [ + 126, + 240, + 484, + 318 + ], + "spans": [ + { + "bbox": [ + 126, + 240, + 484, + 318 + ], + "score": 0.94, + "content": "\\begin{array} { r c l } { \\| A v \\| _ { 2 } ^ { 2 } } & { = } & { \\displaystyle \\sum _ { y \\in \\mathcal { V } } \\left( p _ { y } \\left( \\eta _ { y } - \\overline { { \\eta } } \\right) ^ { T } v \\right) ^ { 2 } \\leq \\sum _ { y \\in \\mathcal { V } } \\| p _ { y } \\left( \\eta _ { y } - \\overline { { \\eta } } \\right) \\| _ { 2 } ^ { 2 } \\| v \\| _ { 2 } ^ { 2 } = \\displaystyle \\sum _ { y \\in \\mathcal { V } } \\| p _ { y } \\left( \\eta _ { y } - \\overline { { \\eta } } \\right) \\| _ { 2 } ^ { 2 } } \\\\ & { \\leq } & { \\displaystyle \\sum _ { y \\in \\mathcal { V } } p _ { y } \\| \\eta _ { y } - \\overline { { \\eta } } \\| _ { 2 } ^ { 2 } \\leq \\sum _ { y \\in \\mathcal { V } } 2 p _ { y } \\left( \\| \\eta \\| _ { 2 } ^ { 2 } + \\sum _ { y ^ { \\prime } \\in \\mathcal { V } } p _ { y ^ { \\prime } } \\| \\eta _ { y ^ { \\prime } } \\| _ { 2 } ^ { 2 } \\right) } \\\\ & { = } & { \\displaystyle 4 \\sum _ { y \\in \\mathcal { V } } p _ { y } \\| \\eta _ { y } \\| _ { 2 } ^ { 2 } \\leq 4 \\| \\eta \\| _ { 2 } ^ { 2 } } \\end{array}", + "type": "interline_equation", + "image_path": "70d80023c607997d88ffc80493dda0dc030a3e63b50a0ebc95f9c3f44fd0ea6d.jpg" + } + ] + } + ], + "index": 10, + "virtual_lines": [ + { + "bbox": [ + 126, + 240, + 484, + 266.0 + ], + "spans": [], + "index": 9 + }, + { + "bbox": [ + 126, + 266.0, + 484, + 292.0 + ], + "spans": [], + "index": 10 + }, + { + "bbox": [ + 126, + 292.0, + 484, + 318.0 + ], + "spans": [], + "index": 11 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 322, + 222, + 336 + ], + "lines": [ + { + "bbox": [ + 105, + 321, + 219, + 338 + ], + "spans": [ + { + "bbox": [ + 105, + 321, + 155, + 338 + ], + "score": 1.0, + "content": "So we have", + "type": "text" + }, + { + "bbox": [ + 155, + 323, + 219, + 336 + ], + "score": 0.92, + "content": "\\| A \\| _ { o p } \\leq 2 \\| \\eta \\| _ { 2 }", + "type": "inline_equation" + } + ], + "index": 12 + } + ], + "index": 12, + "bbox_fs": [ + 105, + 321, + 219, + 338 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 342, + 504, + 369 + ], + "lines": [ + { + "bbox": [ + 104, + 340, + 507, + 360 + ], + "spans": [ + { + "bbox": [ + 104, + 340, + 211, + 360 + ], + "score": 1.0, + "content": "Lemma 10. If parameter", + "type": "text" + }, + { + "bbox": [ + 211, + 342, + 255, + 356 + ], + "score": 0.94, + "content": "\\tilde { \\theta } = \\{ \\hat { \\lambda } , \\eta \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 256, + 340, + 308, + 360 + ], + "score": 1.0, + "content": "satisfies that", + "type": "text" + }, + { + "bbox": [ + 309, + 342, + 353, + 358 + ], + "score": 0.93, + "content": "\\begin{array} { r } { \\| \\eta \\| _ { 2 } \\le \\frac { \\delta } { 4 \\beta } } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 354, + 340, + 377, + 360 + ], + "score": 1.0, + "content": ", then", + "type": "text" + }, + { + "bbox": [ + 377, + 342, + 430, + 356 + ], + "score": 0.93, + "content": "V ( D ; { \\tilde { \\theta } } ) \\leq \\delta", + "type": "inline_equation" + }, + { + "bbox": [ + 430, + 340, + 460, + 360 + ], + "score": 1.0, + "content": ", where", + "type": "text" + }, + { + "bbox": [ + 460, + 344, + 495, + 356 + ], + "score": 0.93, + "content": "V ( D ; \\theta )", + "type": "inline_equation" + }, + { + "bbox": [ + 495, + 340, + 507, + 360 + ], + "score": 1.0, + "content": "is", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 356, + 185, + 370 + ], + "spans": [ + { + "bbox": [ + 105, + 356, + 185, + 370 + ], + "score": 1.0, + "content": "defined in Eq. (16).", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 13.5, + "bbox_fs": [ + 104, + 340, + 507, + 370 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 379, + 505, + 406 + ], + "lines": [ + { + "bbox": [ + 105, + 377, + 506, + 395 + ], + "spans": [ + { + "bbox": [ + 105, + 377, + 154, + 395 + ], + "score": 1.0, + "content": "Proof. Let", + "type": "text" + }, + { + "bbox": [ + 155, + 380, + 259, + 394 + ], + "score": 0.91, + "content": "S _ { L } = \\{ \\Gamma ^ { ( 1 ) } , \\dots , \\Gamma ^ { ( L ) } \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 260, + 377, + 302, + 395 + ], + "score": 1.0, + "content": ", and let", + "type": "text" + }, + { + "bbox": [ + 302, + 380, + 322, + 392 + ], + "score": 0.88, + "content": "\\mathbf { H } ^ { ( l ) }", + "type": "inline_equation" + }, + { + "bbox": [ + 322, + 377, + 345, + 395 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 346, + 380, + 363, + 392 + ], + "score": 0.88, + "content": "\\mathbf { h } ^ { ( l ) }", + "type": "inline_equation" + }, + { + "bbox": [ + 363, + 377, + 425, + 395 + ], + "score": 1.0, + "content": "be short for", + "type": "text" + }, + { + "bbox": [ + 425, + 380, + 483, + 394 + ], + "score": 0.93, + "content": "\\mathbf { H } ^ { ( l ) } ( X , S _ { l } ; \\tilde { \\theta } )", + "type": "inline_equation" + }, + { + "bbox": [ + 484, + 377, + 506, + 395 + ], + "score": 1.0, + "content": "and", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 106, + 390, + 233, + 408 + ], + "spans": [ + { + "bbox": [ + 106, + 393, + 177, + 406 + ], + "score": 0.93, + "content": "\\mathbf { h } ^ { ( l ) } ( X , \\mathrm { E } ( S _ { l } ) ; \\tilde { \\theta } )", + "type": "inline_equation" + }, + { + "bbox": [ + 177, + 390, + 233, + 408 + ], + "score": 1.0, + "content": ", respectively.", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 15.5, + "bbox_fs": [ + 105, + 377, + 506, + 408 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 410, + 407, + 424 + ], + "lines": [ + { + "bbox": [ + 105, + 409, + 407, + 425 + ], + "spans": [ + { + "bbox": [ + 105, + 409, + 205, + 425 + ], + "score": 1.0, + "content": "From lemma 9, we have", + "type": "text" + }, + { + "bbox": [ + 206, + 410, + 376, + 424 + ], + "score": 0.92, + "content": "\\| f _ { L } ( x ; \\eta ) - f _ { L } ( y ; \\eta ) \\| _ { 2 } \\leq 2 \\| \\eta \\| _ { 2 } \\| x - y \\| _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 377, + 409, + 407, + 425 + ], + "score": 1.0, + "content": ". Then,", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 17, + "bbox_fs": [ + 105, + 409, + 407, + 425 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 158, + 428, + 452, + 482 + ], + "lines": [ + { + "bbox": [ + 158, + 428, + 452, + 482 + ], + "spans": [ + { + "bbox": [ + 158, + 428, + 452, + 482 + ], + "score": 0.76, + "content": "\\begin{array} { r c l } { \\left\\| \\boldsymbol { \\mathrm { E } } _ { S _ { L } } \\left[ \\mathbf { H } ^ { L } \\right] - \\mathbf { h } ^ { L } \\right\\| _ { 2 } } & { = } & { \\left\\| \\boldsymbol { \\mathrm { E } } _ { S _ { L - 1 } } \\left[ f _ { L } ( \\mathbf { H } ^ { ( L - 1 ) } ; \\boldsymbol { \\eta } ) \\right] - f _ { L } ( \\mathbf { h } ^ { ( L - 1 ) } ; \\boldsymbol { \\eta } ) \\right\\| _ { 2 } } \\\\ & { \\leq } & { \\boldsymbol { \\mathrm { E } } _ { S _ { L - 1 } } \\left\\| f _ { L } ( \\mathbf { H } ^ { ( L - 1 ) } ; \\boldsymbol { \\eta } ) - f _ { L } ( \\mathbf { h } ^ { ( L - 1 ) } ; \\boldsymbol { \\eta } ) \\right\\| _ { 2 } } \\\\ & { \\leq } & { 2 \\| \\boldsymbol { \\eta } \\| _ { 2 } \\left\\| \\mathbf { H } ^ { ( L - 1 ) } - \\mathbf { h } ^ { ( L - 1 ) } \\right\\| _ { 2 } } \\\\ & { \\leq } & { 4 \\beta \\| \\boldsymbol { \\eta } \\| _ { 2 } \\leq \\delta } \\end{array}", + "type": "interline_equation", + "image_path": "c1a3b0aaf3c09b5b6204f720ce6a2abab50b5b237e44e8e3d05813256df7201d.jpg" + } + ] + } + ], + "index": 19, + "virtual_lines": [ + { + "bbox": [ + 158, + 428, + 452, + 446.0 + ], + "spans": [], + "index": 18 + }, + { + "bbox": [ + 158, + 446.0, + 452, + 464.0 + ], + "spans": [], + "index": 19 + }, + { + "bbox": [ + 158, + 464.0, + 452, + 482.0 + ], + "spans": [], + "index": 20 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 509, + 505, + 534 + ], + "lines": [ + { + "bbox": [ + 105, + 508, + 505, + 523 + ], + "spans": [ + { + "bbox": [ + 105, + 508, + 240, + 523 + ], + "score": 1.0, + "content": "Lemma 10 says that we can get", + "type": "text" + }, + { + "bbox": [ + 241, + 510, + 247, + 520 + ], + "score": 0.81, + "content": "\\theta", + "type": "inline_equation" + }, + { + "bbox": [ + 248, + 508, + 505, + 523 + ], + "score": 1.0, + "content": "satisfying the expectation-linearization constrain by explicitly", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 106, + 521, + 239, + 534 + ], + "spans": [ + { + "bbox": [ + 106, + 522, + 161, + 534 + ], + "score": 1.0, + "content": "scaling down", + "type": "text" + }, + { + "bbox": [ + 162, + 523, + 169, + 534 + ], + "score": 0.84, + "content": "\\hat { \\eta }", + "type": "inline_equation" + }, + { + "bbox": [ + 169, + 522, + 228, + 534 + ], + "score": 1.0, + "content": "while keeping", + "type": "text" + }, + { + "bbox": [ + 228, + 521, + 235, + 532 + ], + "score": 0.81, + "content": "\\hat { \\lambda }", + "type": "inline_equation" + }, + { + "bbox": [ + 235, + 522, + 239, + 534 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 21.5, + "bbox_fs": [ + 105, + 508, + 505, + 534 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 539, + 372, + 551 + ], + "lines": [ + { + "bbox": [ + 105, + 537, + 373, + 554 + ], + "spans": [ + { + "bbox": [ + 105, + 537, + 373, + 554 + ], + "score": 1.0, + "content": "In order to prove Theorem 5, we make the following assumptions:", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 23, + "bbox_fs": [ + 105, + 537, + 373, + 554 + ] + }, + { + "type": "text", + "bbox": [ + 131, + 559, + 457, + 621 + ], + "lines": [ + { + "bbox": [ + 132, + 559, + 339, + 573 + ], + "spans": [ + { + "bbox": [ + 132, + 559, + 215, + 573 + ], + "score": 1.0, + "content": "• The dimension of", + "type": "text" + }, + { + "bbox": [ + 215, + 560, + 245, + 571 + ], + "score": 0.9, + "content": "\\mathbf { h } ^ { ( L - 1 ) }", + "type": "inline_equation" + }, + { + "bbox": [ + 245, + 559, + 255, + 573 + ], + "score": 1.0, + "content": "is", + "type": "text" + }, + { + "bbox": [ + 255, + 561, + 262, + 571 + ], + "score": 0.76, + "content": "d", + "type": "inline_equation" + }, + { + "bbox": [ + 262, + 559, + 281, + 573 + ], + "score": 1.0, + "content": ", i.e.", + "type": "text" + }, + { + "bbox": [ + 281, + 560, + 336, + 572 + ], + "score": 0.91, + "content": "\\mathbf { h } ^ { ( L - 1 ) } \\in \\mathcal { R } ^ { d }", + "type": "inline_equation" + }, + { + "bbox": [ + 336, + 559, + 339, + 573 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 132, + 575, + 457, + 590 + ], + "spans": [ + { + "bbox": [ + 132, + 575, + 167, + 590 + ], + "score": 1.0, + "content": "• Since", + "type": "text" + }, + { + "bbox": [ + 167, + 575, + 257, + 589 + ], + "score": 0.93, + "content": "\\forall y \\in \\mathcal { V } , p ( y | x ; \\hat { \\theta } ) > 0", + "type": "inline_equation" + }, + { + "bbox": [ + 257, + 575, + 307, + 590 + ], + "score": 1.0, + "content": ", we assume", + "type": "text" + }, + { + "bbox": [ + 307, + 575, + 371, + 589 + ], + "score": 0.93, + "content": "p ( y | x ; \\hat { \\theta } ) \\geq 1 / b", + "type": "inline_equation" + }, + { + "bbox": [ + 372, + 575, + 402, + 590 + ], + "score": 1.0, + "content": ", where", + "type": "text" + }, + { + "bbox": [ + 402, + 577, + 452, + 589 + ], + "score": 0.92, + "content": "b \\geq | \\mathcal { V } | = k", + "type": "inline_equation" + }, + { + "bbox": [ + 453, + 575, + 457, + 590 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 132, + 592, + 428, + 607 + ], + "spans": [ + { + "bbox": [ + 132, + 592, + 235, + 607 + ], + "score": 1.0, + "content": "• As in the body text, let", + "type": "text" + }, + { + "bbox": [ + 235, + 592, + 281, + 606 + ], + "score": 0.92, + "content": "p ( \\boldsymbol { y } | \\boldsymbol { x } , s ; \\hat { \\theta } )", + "type": "inline_equation" + }, + { + "bbox": [ + 282, + 592, + 428, + 607 + ], + "score": 1.0, + "content": "be nonuniform, and in particular let", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 142, + 604, + 385, + 621 + ], + "spans": [ + { + "bbox": [ + 142, + 605, + 381, + 621 + ], + "score": 0.83, + "content": "\\hat { \\eta } _ { y ^ { * } } ^ { T } \\mathbf { h } ^ { ( L - 1 ) } ( x , s ; \\hat { \\lambda } ) - \\hat { \\eta } _ { y } ^ { T } \\mathbf { h } ^ { ( L - 1 ) } ( x , s ; \\hat { \\lambda } ) > c \\| \\hat { \\eta } \\| _ { 2 } , \\forall y \\neq y ^ { * } .", + "type": "inline_equation" + }, + { + "bbox": [ + 381, + 604, + 385, + 621 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 25.5, + "bbox_fs": [ + 132, + 559, + 457, + 621 + ] + }, + { + "type": "text", + "bbox": [ + 105, + 628, + 506, + 650 + ], + "lines": [ + { + "bbox": [ + 104, + 626, + 505, + 646 + ], + "spans": [ + { + "bbox": [ + 104, + 626, + 219, + 646 + ], + "score": 1.0, + "content": "For convenience, we denote", + "type": "text" + }, + { + "bbox": [ + 220, + 629, + 362, + 643 + ], + "score": 0.92, + "content": "\\eta ^ { T } \\mathbf { h } ^ { ( L - 1 ) } ( x , s ; \\lambda ) = \\eta ^ { T } u _ { y } ( x , s ; \\lambda )", + "type": "inline_equation" + }, + { + "bbox": [ + 362, + 626, + 393, + 646 + ], + "score": 1.0, + "content": ", where", + "type": "text" + }, + { + "bbox": [ + 393, + 630, + 505, + 644 + ], + "score": 0.92, + "content": "u _ { y } ^ { T } ( x , s ; \\lambda ) = ( v _ { 0 } ^ { T } , \\ldots , v _ { k } ^ { T } )", + "type": "inline_equation" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 641, + 125, + 654 + ], + "spans": [ + { + "bbox": [ + 105, + 641, + 125, + 654 + ], + "score": 1.0, + "content": "and", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 28.5, + "bbox_fs": [ + 104, + 626, + 505, + 654 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 229, + 649, + 374, + 677 + ], + "lines": [ + { + "bbox": [ + 229, + 649, + 374, + 677 + ], + "spans": [ + { + "bbox": [ + 229, + 649, + 374, + 677 + ], + "score": 0.92, + "content": "v _ { i } = { \\left\\{ \\begin{array} { l l } { \\mathbf { h } ^ { ( L - 1 ) } ( x , s ; \\lambda ) } & { { \\mathrm { i f ~ } } i = y } \\\\ { 0 } & { { \\mathrm { o t h e r w i s e } } } \\end{array} \\right. }", + "type": "interline_equation", + "image_path": "453f768723071c256bea498071168b345295684dfce15e110cd0855cb01ccd33.jpg" + } + ] + } + ], + "index": 30, + "virtual_lines": [ + { + "bbox": [ + 229, + 649, + 374, + 677 + ], + "spans": [], + "index": 30 + } + ] + }, + { + "type": "text", + "bbox": [ + 104, + 678, + 347, + 691 + ], + "lines": [ + { + "bbox": [ + 105, + 677, + 341, + 692 + ], + "spans": [ + { + "bbox": [ + 105, + 677, + 341, + 692 + ], + "score": 1.0, + "content": "To prove Theorem 5, we first prove the following lemmas.", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 31, + "bbox_fs": [ + 105, + 677, + 341, + 692 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 693, + 453, + 708 + ], + "lines": [ + { + "bbox": [ + 104, + 692, + 454, + 710 + ], + "spans": [ + { + "bbox": [ + 104, + 692, + 168, + 710 + ], + "score": 1.0, + "content": "Lemma 11. If", + "type": "text" + }, + { + "bbox": [ + 168, + 693, + 233, + 707 + ], + "score": 0.92, + "content": "p ( y | x ; \\hat { \\theta } ) \\geq 1 / b ,", + "type": "inline_equation" + }, + { + "bbox": [ + 233, + 692, + 255, + 710 + ], + "score": 1.0, + "content": ", then", + "type": "text" + }, + { + "bbox": [ + 255, + 695, + 301, + 707 + ], + "score": 0.9, + "content": "\\forall \\alpha \\in [ 0 , 1 ] ,", + "type": "inline_equation" + }, + { + "bbox": [ + 302, + 692, + 362, + 710 + ], + "score": 1.0, + "content": ", for parameter", + "type": "text" + }, + { + "bbox": [ + 363, + 693, + 414, + 707 + ], + "score": 0.93, + "content": "\\tilde { \\theta } = \\{ \\hat { \\lambda } , \\alpha \\hat { \\eta } \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 414, + 692, + 454, + 710 + ], + "score": 1.0, + "content": ", we have", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 32, + "bbox_fs": [ + 104, + 692, + 454, + 710 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 276, + 712, + 335, + 736 + ], + "lines": [ + { + "bbox": [ + 276, + 712, + 335, + 736 + ], + "spans": [ + { + "bbox": [ + 276, + 712, + 335, + 736 + ], + "score": 0.92, + "content": "p ( y | x ; \\tilde { \\theta } ) \\geq \\frac { 1 } { b }", + "type": "interline_equation", + "image_path": "b78a53c1be84d657467f664327baec2f32a9cee91372058f960e5bec46d47351.jpg" + } + ] + } + ], + "index": 33, + "virtual_lines": [ + { + "bbox": [ + 276, + 712, + 335, + 736 + ], + "spans": [], + "index": 33 + } + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 106, + 82, + 178, + 94 + ], + "lines": [ + { + "bbox": [ + 105, + 81, + 178, + 95 + ], + "spans": [ + { + "bbox": [ + 105, + 81, + 178, + 95 + ], + "score": 1.0, + "content": "Proof. We define", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "interline_equation", + "bbox": [ + 155, + 100, + 455, + 148 + ], + "lines": [ + { + "bbox": [ + 155, + 100, + 455, + 148 + ], + "spans": [ + { + "bbox": [ + 155, + 100, + 455, + 148 + ], + "score": 0.95, + "content": "f ( \\alpha ) \\overset { \\Delta } { = } ( y | x , s ; \\tilde { \\theta } ) = \\frac { e ^ { \\alpha \\eta _ { y } ^ { T } \\mathbf { h } ^ { ( L - 1 ) } ( x , s ; \\hat { \\lambda } ) } } { \\displaystyle \\sum _ { y ^ { \\prime } \\in \\mathcal { Y } } e ^ { \\alpha \\eta _ { y ^ { \\prime } } ^ { T } \\mathbf { h } ^ { ( L - 1 ) } ( x , s ; \\hat { \\lambda } ) } } = \\frac { \\left( e ^ { \\eta _ { y } ^ { T } \\mathbf { h } ^ { ( L - 1 ) } ( x , s ; \\hat { \\lambda } ) } \\right) ^ { \\alpha } } { \\displaystyle \\sum _ { y ^ { \\prime } \\in \\mathcal { Y } } \\left( e ^ { \\eta _ { y ^ { \\prime } } ^ { T } \\mathbf { h } ^ { ( L - 1 ) } ( x , s ; \\hat { \\lambda } ) } \\right) ^ { \\alpha } }", + "type": "interline_equation", + "image_path": "a0cfd1285a76395ebe523603abeed94f85248785de2129b4cd7f72e5d56ae2bb.jpg" + } + ] + } + ], + "index": 2, + "virtual_lines": [ + { + "bbox": [ + 155, + 100, + 455, + 116.0 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 155, + 116.0, + 455, + 132.0 + ], + "spans": [], + "index": 2 + }, + { + "bbox": [ + 155, + 132.0, + 455, + 148.0 + ], + "spans": [], + "index": 3 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 154, + 450, + 177 + ], + "lines": [ + { + "bbox": [ + 105, + 154, + 451, + 167 + ], + "spans": [ + { + "bbox": [ + 105, + 154, + 131, + 167 + ], + "score": 1.0, + "content": "Since", + "type": "text" + }, + { + "bbox": [ + 132, + 154, + 195, + 166 + ], + "score": 0.93, + "content": "\\mathcal { V } = \\{ 1 , \\ldots , k \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 196, + 154, + 235, + 167 + ], + "score": 1.0, + "content": ", for fixed", + "type": "text" + }, + { + "bbox": [ + 236, + 154, + 331, + 167 + ], + "score": 0.63, + "content": "x \\in { \\mathcal { X } } , s \\in { \\mathcal { S } } , \\log f ( \\alpha )", + "type": "inline_equation" + }, + { + "bbox": [ + 331, + 154, + 438, + 167 + ], + "score": 1.0, + "content": "is a concave function w.r.t", + "type": "text" + }, + { + "bbox": [ + 439, + 157, + 446, + 164 + ], + "score": 0.78, + "content": "\\alpha", + "type": "inline_equation" + }, + { + "bbox": [ + 447, + 154, + 451, + 167 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 106, + 164, + 195, + 177 + ], + "spans": [ + { + "bbox": [ + 106, + 164, + 131, + 177 + ], + "score": 1.0, + "content": "Since", + "type": "text" + }, + { + "bbox": [ + 131, + 166, + 155, + 176 + ], + "score": 0.91, + "content": "b \\geq k", + "type": "inline_equation" + }, + { + "bbox": [ + 155, + 164, + 195, + 177 + ], + "score": 1.0, + "content": ", we have", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 4.5 + }, + { + "type": "interline_equation", + "bbox": [ + 199, + 183, + 412, + 197 + ], + "lines": [ + { + "bbox": [ + 199, + 183, + 412, + 197 + ], + "spans": [ + { + "bbox": [ + 199, + 183, + 412, + 197 + ], + "score": 0.88, + "content": "\\log f ( \\alpha ) \\geq ( 1 - \\alpha ) \\log f ( 0 ) + \\alpha \\log f ( 1 ) \\geq - \\log b", + "type": "interline_equation", + "image_path": "7291de092f5529999b860252cae4a308953f60c18bb878cb6d779dfa1de6ccf8.jpg" + } + ] + } + ], + "index": 6, + "virtual_lines": [ + { + "bbox": [ + 199, + 183, + 412, + 197 + ], + "spans": [], + "index": 6 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 204, + 281, + 217 + ], + "lines": [ + { + "bbox": [ + 106, + 203, + 281, + 218 + ], + "spans": [ + { + "bbox": [ + 106, + 203, + 154, + 218 + ], + "score": 1.0, + "content": "So we have", + "type": "text" + }, + { + "bbox": [ + 154, + 203, + 254, + 217 + ], + "score": 0.92, + "content": "\\forall x , s , p ( y | x , s ; \\tilde { \\theta } ) \\geq 1 / b", + "type": "inline_equation" + }, + { + "bbox": [ + 254, + 203, + 281, + 218 + ], + "score": 1.0, + "content": ". Then", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 7 + }, + { + "type": "interline_equation", + "bbox": [ + 234, + 223, + 377, + 246 + ], + "lines": [ + { + "bbox": [ + 234, + 223, + 377, + 246 + ], + "spans": [ + { + "bbox": [ + 234, + 223, + 377, + 246 + ], + "score": 0.92, + "content": "p ( \\boldsymbol { y } | \\boldsymbol { x } ; \\tilde { \\boldsymbol { \\theta } } ) = \\mathrm { E } _ { S } \\left[ p ( \\boldsymbol { y } | \\boldsymbol { x } , S ; \\hat { \\boldsymbol { \\theta } } ) \\right] \\geq \\frac { 1 } { b }", + "type": "interline_equation", + "image_path": "76be1239564a9337b33a7f3bb04ed7cfb29a450e16e330f83eddffcff9536553.jpg" + } + ] + } + ], + "index": 8, + "virtual_lines": [ + { + "bbox": [ + 234, + 223, + 377, + 246 + ], + "spans": [], + "index": 8 + } + ] + }, + { + "type": "text", + "bbox": [ + 105, + 271, + 453, + 285 + ], + "lines": [ + { + "bbox": [ + 104, + 271, + 452, + 287 + ], + "spans": [ + { + "bbox": [ + 104, + 271, + 290, + 287 + ], + "score": 1.0, + "content": "Lemma 12. if y is not the majority class, i.e.", + "type": "text" + }, + { + "bbox": [ + 290, + 273, + 319, + 285 + ], + "score": 0.92, + "content": "y \\neq y ^ { * }", + "type": "inline_equation" + }, + { + "bbox": [ + 319, + 271, + 401, + 287 + ], + "score": 1.0, + "content": ", then for parameter", + "type": "text" + }, + { + "bbox": [ + 401, + 271, + 452, + 285 + ], + "score": 0.92, + "content": "\\tilde { \\theta } = \\{ \\hat { \\lambda } , \\alpha \\hat { \\eta } \\}", + "type": "inline_equation" + } + ], + "index": 9 + } + ], + "index": 9 + }, + { + "type": "interline_equation", + "bbox": [ + 257, + 290, + 353, + 306 + ], + "lines": [ + { + "bbox": [ + 257, + 290, + 353, + 306 + ], + "spans": [ + { + "bbox": [ + 257, + 290, + 353, + 306 + ], + "score": 0.92, + "content": "p ( y | x , s , \\tilde { \\theta } ) \\leq e ^ { - c \\alpha \\| \\hat { \\eta } \\| _ { 2 } }", + "type": "interline_equation", + "image_path": "14a49cb8849dd59f0e0cf0b2b0cb156f8874971a4e6ade846ca71b4e2c6a2691.jpg" + } + ] + } + ], + "index": 10, + "virtual_lines": [ + { + "bbox": [ + 257, + 290, + 353, + 306 + ], + "spans": [], + "index": 10 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 320, + 133, + 332 + ], + "lines": [ + { + "bbox": [ + 104, + 319, + 135, + 335 + ], + "spans": [ + { + "bbox": [ + 104, + 319, + 135, + 335 + ], + "score": 1.0, + "content": "Proof.", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 11 + }, + { + "type": "interline_equation", + "bbox": [ + 198, + 331, + 412, + 371 + ], + "lines": [ + { + "bbox": [ + 198, + 331, + 412, + 371 + ], + "spans": [ + { + "bbox": [ + 198, + 331, + 412, + 371 + ], + "score": 0.94, + "content": "p ( y | x , s , \\widetilde { \\theta } ) = \\frac { e ^ { \\alpha \\widehat { \\eta } ^ { T } u _ { y } } } { \\displaystyle \\sum _ { y ^ { \\prime } \\in \\mathcal { V } } e ^ { \\alpha \\widehat { \\eta } ^ { T } u _ { y ^ { \\prime } } } } \\le \\frac { e ^ { \\alpha \\widehat { \\eta } ^ { T } u _ { y } } } { e ^ { \\alpha \\widehat { \\eta } ^ { T } u _ { y ^ { * } } } } \\le e ^ { - c \\alpha \\| \\widehat { \\eta } \\| _ { 2 } }", + "type": "interline_equation", + "image_path": "519effaaaf3a265db81a93e535eb8a9e9119986f81539cae63009e7db5539aad.jpg" + } + ] + } + ], + "index": 12.5, + "virtual_lines": [ + { + "bbox": [ + 198, + 331, + 412, + 351.0 + ], + "spans": [], + "index": 12 + }, + { + "bbox": [ + 198, + 351.0, + 412, + 371.0 + ], + "spans": [], + "index": 13 + } + ] + }, + { + "type": "text", + "bbox": [ + 105, + 394, + 506, + 419 + ], + "lines": [ + { + "bbox": [ + 105, + 394, + 505, + 408 + ], + "spans": [ + { + "bbox": [ + 105, + 394, + 205, + 408 + ], + "score": 1.0, + "content": "Lemma 13. For a fixed", + "type": "text" + }, + { + "bbox": [ + 205, + 398, + 212, + 405 + ], + "score": 0.67, + "content": "x", + "type": "inline_equation" + }, + { + "bbox": [ + 212, + 394, + 505, + 408 + ], + "score": 1.0, + "content": "and s, the absolute value of the entry of the vector under the parameter", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 107, + 403, + 164, + 423 + ], + "spans": [ + { + "bbox": [ + 107, + 406, + 158, + 420 + ], + "score": 0.93, + "content": "\\tilde { \\theta } = \\{ \\hat { \\lambda } , \\alpha \\hat { \\eta } \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 158, + 403, + 164, + 423 + ], + "score": 1.0, + "content": ":", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 14.5 + }, + { + "type": "interline_equation", + "bbox": [ + 203, + 419, + 407, + 435 + ], + "lines": [ + { + "bbox": [ + 203, + 419, + 407, + 435 + ], + "spans": [ + { + "bbox": [ + 203, + 419, + 407, + 435 + ], + "score": 0.9, + "content": "| p ( y | x , s ; \\tilde { \\theta } ) ( u _ { y } - \\mathrm { E } _ { Y } [ u _ { Y } ] ) | _ { i } \\le \\beta ( k - 1 ) e ^ { - c \\alpha \\| \\hat { \\eta } \\| _ { 2 } }", + "type": "interline_equation", + "image_path": "f7961415d29ae440136ed8b2865f542f6a028e02c34d48b25a77898e47eb7f2c.jpg" + } + ] + } + ], + "index": 16, + "virtual_lines": [ + { + "bbox": [ + 203, + 419, + 407, + 435 + ], + "spans": [], + "index": 16 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 450, + 349, + 464 + ], + "lines": [ + { + "bbox": [ + 105, + 449, + 349, + 465 + ], + "spans": [ + { + "bbox": [ + 105, + 449, + 172, + 465 + ], + "score": 1.0, + "content": "Proof. Suppose", + "type": "text" + }, + { + "bbox": [ + 172, + 453, + 179, + 463 + ], + "score": 0.8, + "content": "y", + "type": "inline_equation" + }, + { + "bbox": [ + 179, + 449, + 272, + 465 + ], + "score": 1.0, + "content": "is the majority class of", + "type": "text" + }, + { + "bbox": [ + 273, + 450, + 318, + 463 + ], + "score": 0.94, + "content": "p ( \\boldsymbol { y } | \\boldsymbol { x } , s ; \\tilde { \\theta } )", + "type": "inline_equation" + }, + { + "bbox": [ + 319, + 449, + 349, + 465 + ], + "score": 1.0, + "content": ". Then,", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 17 + }, + { + "type": "interline_equation", + "bbox": [ + 252, + 469, + 358, + 487 + ], + "lines": [ + { + "bbox": [ + 252, + 469, + 358, + 487 + ], + "spans": [ + { + "bbox": [ + 252, + 469, + 358, + 487 + ], + "score": 0.92, + "content": "u _ { y } - \\mathrm { E } _ { y } [ u _ { Y } ] = \\left( v _ { y ^ { \\prime } } \\right) _ { y ^ { \\prime } = 1 } ^ { k }", + "type": "interline_equation", + "image_path": "c876670a48f5c227b5950d6fae7780ff4d92f7f3cc34853d10c4943342fdd226.jpg" + } + ] + } + ], + "index": 18, + "virtual_lines": [ + { + "bbox": [ + 252, + 469, + 358, + 487 + ], + "spans": [], + "index": 18 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 493, + 133, + 504 + ], + "lines": [ + { + "bbox": [ + 105, + 492, + 135, + 505 + ], + "spans": [ + { + "bbox": [ + 105, + 492, + 135, + 505 + ], + "score": 1.0, + "content": "where", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 19 + }, + { + "type": "interline_equation", + "bbox": [ + 212, + 502, + 393, + 530 + ], + "lines": [ + { + "bbox": [ + 212, + 502, + 393, + 530 + ], + "spans": [ + { + "bbox": [ + 212, + 502, + 393, + 530 + ], + "score": 0.92, + "content": "v _ { y } = { \\left\\{ \\begin{array} { l l } { ( 1 - p ( y | x , s ; { \\tilde { \\theta } } ) \\mathbf { h } ^ { ( L - 1 ) } } & { { \\mathrm { i f ~ } } y = y ^ { * } } \\\\ { - p ( y | x , s ; { \\tilde { \\theta } } ) \\mathbf { h } ^ { ( L - 1 ) } } & { { \\mathrm { o t h e r w i s e } } } \\end{array} \\right. }", + "type": "interline_equation", + "image_path": "cb30c22519487583b940798a5e0c9a0b99defe7a027e9dbc6ff677f521049f92.jpg" + } + ] + } + ], + "index": 20, + "virtual_lines": [ + { + "bbox": [ + 212, + 502, + 393, + 530 + ], + "spans": [], + "index": 20 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 533, + 214, + 545 + ], + "lines": [ + { + "bbox": [ + 106, + 532, + 214, + 546 + ], + "spans": [ + { + "bbox": [ + 106, + 532, + 214, + 546 + ], + "score": 1.0, + "content": "From Lemma 12, we have", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 21 + }, + { + "type": "interline_equation", + "bbox": [ + 160, + 549, + 450, + 566 + ], + "lines": [ + { + "bbox": [ + 160, + 549, + 450, + 566 + ], + "spans": [ + { + "bbox": [ + 160, + 549, + 450, + 566 + ], + "score": 0.88, + "content": "| p ( y | x , s ; \\tilde { \\theta } ) ( u _ { y } - \\mathrm { E } _ { Y } [ u _ { Y } ] ) | _ { i } \\le | ( u _ { y } - \\mathrm { E } _ { Y } [ u _ { Y } ] ) | _ { i } \\le \\beta ( k - 1 ) e ^ { - c \\alpha | | \\hat { \\eta } | | _ { 2 } }", + "type": "interline_equation", + "image_path": "821043e820149e19a45875b7c51dae434c87f7411d23b77e25afcc88cc684fe9.jpg" + } + ] + } + ], + "index": 22, + "virtual_lines": [ + { + "bbox": [ + 160, + 549, + 450, + 566 + ], + "spans": [], + "index": 22 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 573, + 370, + 586 + ], + "lines": [ + { + "bbox": [ + 105, + 572, + 371, + 587 + ], + "spans": [ + { + "bbox": [ + 105, + 572, + 178, + 587 + ], + "score": 1.0, + "content": "Now, we suppose", + "type": "text" + }, + { + "bbox": [ + 179, + 576, + 185, + 585 + ], + "score": 0.81, + "content": "y", + "type": "inline_equation" + }, + { + "bbox": [ + 186, + 572, + 294, + 587 + ], + "score": 1.0, + "content": "is not the majority class of", + "type": "text" + }, + { + "bbox": [ + 295, + 572, + 340, + 586 + ], + "score": 0.94, + "content": "p ( \\boldsymbol { y } | \\boldsymbol { x } , s ; \\tilde { \\boldsymbol { \\theta } } )", + "type": "inline_equation" + }, + { + "bbox": [ + 340, + 572, + 371, + 587 + ], + "score": 1.0, + "content": ". Then,", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 23 + }, + { + "type": "interline_equation", + "bbox": [ + 186, + 591, + 425, + 607 + ], + "lines": [ + { + "bbox": [ + 186, + 591, + 425, + 607 + ], + "spans": [ + { + "bbox": [ + 186, + 591, + 425, + 607 + ], + "score": 0.88, + "content": "| p ( y | x , s ; \\tilde { \\theta } ) ( u _ { y } - \\mathrm { E } _ { Y } [ u _ { Y } ] ) | _ { i } \\le p ( y | x , s ; \\tilde { \\theta } ) \\beta \\le \\beta e ^ { - c \\alpha \\| \\hat { \\eta } \\| _ { 2 } }", + "type": "interline_equation", + "image_path": "bd72ec01d20c00994bd94a4d250f3c1d5c4f0700ed9734f91a1e823610640d3d.jpg" + } + ] + } + ], + "index": 24, + "virtual_lines": [ + { + "bbox": [ + 186, + 591, + 425, + 607 + ], + "spans": [], + "index": 24 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 613, + 219, + 625 + ], + "lines": [ + { + "bbox": [ + 106, + 612, + 220, + 626 + ], + "spans": [ + { + "bbox": [ + 106, + 612, + 220, + 626 + ], + "score": 1.0, + "content": "Overall, the lemma follows.", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 25 + }, + { + "type": "text", + "bbox": [ + 106, + 633, + 245, + 645 + ], + "lines": [ + { + "bbox": [ + 106, + 634, + 245, + 646 + ], + "spans": [ + { + "bbox": [ + 106, + 634, + 245, + 646 + ], + "score": 1.0, + "content": "Lemma 14. We denote the matrix", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 26 + }, + { + "type": "interline_equation", + "bbox": [ + 160, + 650, + 451, + 693 + ], + "lines": [ + { + "bbox": [ + 160, + 650, + 451, + 693 + ], + "spans": [ + { + "bbox": [ + 160, + 650, + 451, + 693 + ], + "score": 0.94, + "content": "\\begin{array} { r l } { A \\stackrel { \\Delta } { = } } & { \\mathrm { E } _ { S } \\left[ \\frac { p ( y | x , s ; \\tilde { \\theta } ) } { p ( y | x ; \\tilde { \\theta } ) } ( u _ { y } - \\mathrm { E } _ { Y } [ u _ { Y } ] ) ( u _ { y } - \\mathrm { E } _ { Y } [ u _ { Y } ] ) ^ { T } \\right] } \\\\ & { - \\mathrm { E } _ { S } \\left[ \\frac { p ( y | x , s ; \\tilde { \\theta } ) } { p ( y | x ; \\tilde { \\theta } ) } ( u _ { y } - \\mathrm { E } _ { Y } [ u _ { Y } ] ) \\right] \\mathrm { E } _ { S } \\left[ \\frac { p ( y | x , s ; \\tilde { \\theta } ) } { p ( y | x ; \\tilde { \\theta } ) } ( u _ { y } - \\mathrm { E } _ { Y } [ u _ { Y } ] ) \\right] ^ { T } } \\end{array}", + "type": "interline_equation", + "image_path": "8884771578010fbfba07194c2efe71411a38da1a200910ae5bb14bdfc5f3db2a.jpg" + } + ] + } + ], + "index": 28, + "virtual_lines": [ + { + "bbox": [ + 160, + 650, + 451, + 664.3333333333334 + ], + "spans": [], + "index": 27 + }, + { + "bbox": [ + 160, + 664.3333333333334, + 451, + 678.6666666666667 + ], + "spans": [], + "index": 28 + }, + { + "bbox": [ + 160, + 678.6666666666667, + 451, + 693.0000000000001 + ], + "spans": [], + "index": 29 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 699, + 411, + 712 + ], + "lines": [ + { + "bbox": [ + 104, + 698, + 412, + 713 + ], + "spans": [ + { + "bbox": [ + 104, + 698, + 262, + 713 + ], + "score": 1.0, + "content": "Then the absolute value of the entry of", + "type": "text" + }, + { + "bbox": [ + 262, + 702, + 270, + 709 + ], + "score": 0.74, + "content": "A", + "type": "inline_equation" + }, + { + "bbox": [ + 270, + 698, + 356, + 713 + ], + "score": 1.0, + "content": "under the parameter", + "type": "text" + }, + { + "bbox": [ + 356, + 698, + 407, + 712 + ], + "score": 0.93, + "content": "\\tilde { \\theta } = \\{ \\hat { \\lambda } , \\alpha \\hat { \\eta } \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 407, + 698, + 412, + 713 + ], + "score": 1.0, + "content": ":", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 30 + }, + { + "type": "interline_equation", + "bbox": [ + 245, + 718, + 366, + 734 + ], + "lines": [ + { + "bbox": [ + 245, + 718, + 366, + 734 + ], + "spans": [ + { + "bbox": [ + 245, + 718, + 366, + 734 + ], + "score": 0.88, + "content": "| A _ { i j } | \\leq 2 b ( k - 1 ) \\beta ^ { 2 } e ^ { - c \\alpha \\| \\hat { \\eta } \\| _ { 2 } }", + "type": "interline_equation", + "image_path": "f5362d24d4b0113eadda06b0c5846e71de703846577097ba8235fed1026b753f.jpg" + } + ] + } + ], + "index": 31, + "virtual_lines": [ + { + "bbox": [ + 245, + 718, + 366, + 734 + ], + "spans": [], + "index": 31 + } + ] + } + ], + "page_idx": 17, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 26, + 293, + 38 + ], + "lines": [ + { + "bbox": [ + 106, + 25, + 294, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 25, + 294, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2017", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 300, + 751, + 311, + 761 + ], + "lines": [ + { + "bbox": [ + 299, + 750, + 312, + 763 + ], + "spans": [ + { + "bbox": [ + 299, + 750, + 312, + 763 + ], + "score": 1.0, + "content": "18", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 494, + 252, + 505, + 263 + ], + "lines": [ + { + "bbox": [ + 496, + 253, + 505, + 263 + ], + "spans": [ + { + "bbox": [ + 496, + 253, + 505, + 263 + ], + "score": 1.0, + "content": "□", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 494, + 613, + 505, + 624 + ], + "lines": [ + { + "bbox": [ + 496, + 615, + 505, + 624 + ], + "spans": [ + { + "bbox": [ + 496, + 615, + 505, + 624 + ], + "score": 0.999, + "content": "□", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 494, + 374, + 505, + 385 + ], + "lines": [ + { + "bbox": [ + 495, + 375, + 505, + 387 + ], + "spans": [ + { + "bbox": [ + 495, + 375, + 505, + 387 + ], + "score": 0.999, + "content": "□", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 106, + 82, + 178, + 94 + ], + "lines": [ + { + "bbox": [ + 105, + 81, + 178, + 95 + ], + "spans": [ + { + "bbox": [ + 105, + 81, + 178, + 95 + ], + "score": 1.0, + "content": "Proof. We define", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0, + "bbox_fs": [ + 105, + 81, + 178, + 95 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 155, + 100, + 455, + 148 + ], + "lines": [ + { + "bbox": [ + 155, + 100, + 455, + 148 + ], + "spans": [ + { + "bbox": [ + 155, + 100, + 455, + 148 + ], + "score": 0.95, + "content": "f ( \\alpha ) \\overset { \\Delta } { = } ( y | x , s ; \\tilde { \\theta } ) = \\frac { e ^ { \\alpha \\eta _ { y } ^ { T } \\mathbf { h } ^ { ( L - 1 ) } ( x , s ; \\hat { \\lambda } ) } } { \\displaystyle \\sum _ { y ^ { \\prime } \\in \\mathcal { Y } } e ^ { \\alpha \\eta _ { y ^ { \\prime } } ^ { T } \\mathbf { h } ^ { ( L - 1 ) } ( x , s ; \\hat { \\lambda } ) } } = \\frac { \\left( e ^ { \\eta _ { y } ^ { T } \\mathbf { h } ^ { ( L - 1 ) } ( x , s ; \\hat { \\lambda } ) } \\right) ^ { \\alpha } } { \\displaystyle \\sum _ { y ^ { \\prime } \\in \\mathcal { Y } } \\left( e ^ { \\eta _ { y ^ { \\prime } } ^ { T } \\mathbf { h } ^ { ( L - 1 ) } ( x , s ; \\hat { \\lambda } ) } \\right) ^ { \\alpha } }", + "type": "interline_equation", + "image_path": "a0cfd1285a76395ebe523603abeed94f85248785de2129b4cd7f72e5d56ae2bb.jpg" + } + ] + } + ], + "index": 2, + "virtual_lines": [ + { + "bbox": [ + 155, + 100, + 455, + 116.0 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 155, + 116.0, + 455, + 132.0 + ], + "spans": [], + "index": 2 + }, + { + "bbox": [ + 155, + 132.0, + 455, + 148.0 + ], + "spans": [], + "index": 3 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 154, + 450, + 177 + ], + "lines": [ + { + "bbox": [ + 105, + 154, + 451, + 167 + ], + "spans": [ + { + "bbox": [ + 105, + 154, + 131, + 167 + ], + "score": 1.0, + "content": "Since", + "type": "text" + }, + { + "bbox": [ + 132, + 154, + 195, + 166 + ], + "score": 0.93, + "content": "\\mathcal { V } = \\{ 1 , \\ldots , k \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 196, + 154, + 235, + 167 + ], + "score": 1.0, + "content": ", for fixed", + "type": "text" + }, + { + "bbox": [ + 236, + 154, + 331, + 167 + ], + "score": 0.63, + "content": "x \\in { \\mathcal { X } } , s \\in { \\mathcal { S } } , \\log f ( \\alpha )", + "type": "inline_equation" + }, + { + "bbox": [ + 331, + 154, + 438, + 167 + ], + "score": 1.0, + "content": "is a concave function w.r.t", + "type": "text" + }, + { + "bbox": [ + 439, + 157, + 446, + 164 + ], + "score": 0.78, + "content": "\\alpha", + "type": "inline_equation" + }, + { + "bbox": [ + 447, + 154, + 451, + 167 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 106, + 164, + 195, + 177 + ], + "spans": [ + { + "bbox": [ + 106, + 164, + 131, + 177 + ], + "score": 1.0, + "content": "Since", + "type": "text" + }, + { + "bbox": [ + 131, + 166, + 155, + 176 + ], + "score": 0.91, + "content": "b \\geq k", + "type": "inline_equation" + }, + { + "bbox": [ + 155, + 164, + 195, + 177 + ], + "score": 1.0, + "content": ", we have", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 4.5, + "bbox_fs": [ + 105, + 154, + 451, + 177 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 199, + 183, + 412, + 197 + ], + "lines": [ + { + "bbox": [ + 199, + 183, + 412, + 197 + ], + "spans": [ + { + "bbox": [ + 199, + 183, + 412, + 197 + ], + "score": 0.88, + "content": "\\log f ( \\alpha ) \\geq ( 1 - \\alpha ) \\log f ( 0 ) + \\alpha \\log f ( 1 ) \\geq - \\log b", + "type": "interline_equation", + "image_path": "7291de092f5529999b860252cae4a308953f60c18bb878cb6d779dfa1de6ccf8.jpg" + } + ] + } + ], + "index": 6, + "virtual_lines": [ + { + "bbox": [ + 199, + 183, + 412, + 197 + ], + "spans": [], + "index": 6 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 204, + 281, + 217 + ], + "lines": [ + { + "bbox": [ + 106, + 203, + 281, + 218 + ], + "spans": [ + { + "bbox": [ + 106, + 203, + 154, + 218 + ], + "score": 1.0, + "content": "So we have", + "type": "text" + }, + { + "bbox": [ + 154, + 203, + 254, + 217 + ], + "score": 0.92, + "content": "\\forall x , s , p ( y | x , s ; \\tilde { \\theta } ) \\geq 1 / b", + "type": "inline_equation" + }, + { + "bbox": [ + 254, + 203, + 281, + 218 + ], + "score": 1.0, + "content": ". Then", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 7, + "bbox_fs": [ + 106, + 203, + 281, + 218 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 234, + 223, + 377, + 246 + ], + "lines": [ + { + "bbox": [ + 234, + 223, + 377, + 246 + ], + "spans": [ + { + "bbox": [ + 234, + 223, + 377, + 246 + ], + "score": 0.92, + "content": "p ( \\boldsymbol { y } | \\boldsymbol { x } ; \\tilde { \\boldsymbol { \\theta } } ) = \\mathrm { E } _ { S } \\left[ p ( \\boldsymbol { y } | \\boldsymbol { x } , S ; \\hat { \\boldsymbol { \\theta } } ) \\right] \\geq \\frac { 1 } { b }", + "type": "interline_equation", + "image_path": "76be1239564a9337b33a7f3bb04ed7cfb29a450e16e330f83eddffcff9536553.jpg" + } + ] + } + ], + "index": 8, + "virtual_lines": [ + { + "bbox": [ + 234, + 223, + 377, + 246 + ], + "spans": [], + "index": 8 + } + ] + }, + { + "type": "text", + "bbox": [ + 105, + 271, + 453, + 285 + ], + "lines": [ + { + "bbox": [ + 104, + 271, + 452, + 287 + ], + "spans": [ + { + "bbox": [ + 104, + 271, + 290, + 287 + ], + "score": 1.0, + "content": "Lemma 12. if y is not the majority class, i.e.", + "type": "text" + }, + { + "bbox": [ + 290, + 273, + 319, + 285 + ], + "score": 0.92, + "content": "y \\neq y ^ { * }", + "type": "inline_equation" + }, + { + "bbox": [ + 319, + 271, + 401, + 287 + ], + "score": 1.0, + "content": ", then for parameter", + "type": "text" + }, + { + "bbox": [ + 401, + 271, + 452, + 285 + ], + "score": 0.92, + "content": "\\tilde { \\theta } = \\{ \\hat { \\lambda } , \\alpha \\hat { \\eta } \\}", + "type": "inline_equation" + } + ], + "index": 9 + } + ], + "index": 9, + "bbox_fs": [ + 104, + 271, + 452, + 287 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 257, + 290, + 353, + 306 + ], + "lines": [ + { + "bbox": [ + 257, + 290, + 353, + 306 + ], + "spans": [ + { + "bbox": [ + 257, + 290, + 353, + 306 + ], + "score": 0.92, + "content": "p ( y | x , s , \\tilde { \\theta } ) \\leq e ^ { - c \\alpha \\| \\hat { \\eta } \\| _ { 2 } }", + "type": "interline_equation", + "image_path": "14a49cb8849dd59f0e0cf0b2b0cb156f8874971a4e6ade846ca71b4e2c6a2691.jpg" + } + ] + } + ], + "index": 10, + "virtual_lines": [ + { + "bbox": [ + 257, + 290, + 353, + 306 + ], + "spans": [], + "index": 10 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 320, + 133, + 332 + ], + "lines": [ + { + "bbox": [ + 104, + 319, + 135, + 335 + ], + "spans": [ + { + "bbox": [ + 104, + 319, + 135, + 335 + ], + "score": 1.0, + "content": "Proof.", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 11, + "bbox_fs": [ + 104, + 319, + 135, + 335 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 198, + 331, + 412, + 371 + ], + "lines": [ + { + "bbox": [ + 198, + 331, + 412, + 371 + ], + "spans": [ + { + "bbox": [ + 198, + 331, + 412, + 371 + ], + "score": 0.94, + "content": "p ( y | x , s , \\widetilde { \\theta } ) = \\frac { e ^ { \\alpha \\widehat { \\eta } ^ { T } u _ { y } } } { \\displaystyle \\sum _ { y ^ { \\prime } \\in \\mathcal { V } } e ^ { \\alpha \\widehat { \\eta } ^ { T } u _ { y ^ { \\prime } } } } \\le \\frac { e ^ { \\alpha \\widehat { \\eta } ^ { T } u _ { y } } } { e ^ { \\alpha \\widehat { \\eta } ^ { T } u _ { y ^ { * } } } } \\le e ^ { - c \\alpha \\| \\widehat { \\eta } \\| _ { 2 } }", + "type": "interline_equation", + "image_path": "519effaaaf3a265db81a93e535eb8a9e9119986f81539cae63009e7db5539aad.jpg" + } + ] + } + ], + "index": 12.5, + "virtual_lines": [ + { + "bbox": [ + 198, + 331, + 412, + 351.0 + ], + "spans": [], + "index": 12 + }, + { + "bbox": [ + 198, + 351.0, + 412, + 371.0 + ], + "spans": [], + "index": 13 + } + ] + }, + { + "type": "text", + "bbox": [ + 105, + 394, + 506, + 419 + ], + "lines": [ + { + "bbox": [ + 105, + 394, + 505, + 408 + ], + "spans": [ + { + "bbox": [ + 105, + 394, + 205, + 408 + ], + "score": 1.0, + "content": "Lemma 13. For a fixed", + "type": "text" + }, + { + "bbox": [ + 205, + 398, + 212, + 405 + ], + "score": 0.67, + "content": "x", + "type": "inline_equation" + }, + { + "bbox": [ + 212, + 394, + 505, + 408 + ], + "score": 1.0, + "content": "and s, the absolute value of the entry of the vector under the parameter", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 107, + 403, + 164, + 423 + ], + "spans": [ + { + "bbox": [ + 107, + 406, + 158, + 420 + ], + "score": 0.93, + "content": "\\tilde { \\theta } = \\{ \\hat { \\lambda } , \\alpha \\hat { \\eta } \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 158, + 403, + 164, + 423 + ], + "score": 1.0, + "content": ":", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 14.5, + "bbox_fs": [ + 105, + 394, + 505, + 423 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 203, + 419, + 407, + 435 + ], + "lines": [ + { + "bbox": [ + 203, + 419, + 407, + 435 + ], + "spans": [ + { + "bbox": [ + 203, + 419, + 407, + 435 + ], + "score": 0.9, + "content": "| p ( y | x , s ; \\tilde { \\theta } ) ( u _ { y } - \\mathrm { E } _ { Y } [ u _ { Y } ] ) | _ { i } \\le \\beta ( k - 1 ) e ^ { - c \\alpha \\| \\hat { \\eta } \\| _ { 2 } }", + "type": "interline_equation", + "image_path": "f7961415d29ae440136ed8b2865f542f6a028e02c34d48b25a77898e47eb7f2c.jpg" + } + ] + } + ], + "index": 16, + "virtual_lines": [ + { + "bbox": [ + 203, + 419, + 407, + 435 + ], + "spans": [], + "index": 16 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 450, + 349, + 464 + ], + "lines": [ + { + "bbox": [ + 105, + 449, + 349, + 465 + ], + "spans": [ + { + "bbox": [ + 105, + 449, + 172, + 465 + ], + "score": 1.0, + "content": "Proof. Suppose", + "type": "text" + }, + { + "bbox": [ + 172, + 453, + 179, + 463 + ], + "score": 0.8, + "content": "y", + "type": "inline_equation" + }, + { + "bbox": [ + 179, + 449, + 272, + 465 + ], + "score": 1.0, + "content": "is the majority class of", + "type": "text" + }, + { + "bbox": [ + 273, + 450, + 318, + 463 + ], + "score": 0.94, + "content": "p ( \\boldsymbol { y } | \\boldsymbol { x } , s ; \\tilde { \\theta } )", + "type": "inline_equation" + }, + { + "bbox": [ + 319, + 449, + 349, + 465 + ], + "score": 1.0, + "content": ". Then,", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 17, + "bbox_fs": [ + 105, + 449, + 349, + 465 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 252, + 469, + 358, + 487 + ], + "lines": [ + { + "bbox": [ + 252, + 469, + 358, + 487 + ], + "spans": [ + { + "bbox": [ + 252, + 469, + 358, + 487 + ], + "score": 0.92, + "content": "u _ { y } - \\mathrm { E } _ { y } [ u _ { Y } ] = \\left( v _ { y ^ { \\prime } } \\right) _ { y ^ { \\prime } = 1 } ^ { k }", + "type": "interline_equation", + "image_path": "c876670a48f5c227b5950d6fae7780ff4d92f7f3cc34853d10c4943342fdd226.jpg" + } + ] + } + ], + "index": 18, + "virtual_lines": [ + { + "bbox": [ + 252, + 469, + 358, + 487 + ], + "spans": [], + "index": 18 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 493, + 133, + 504 + ], + "lines": [ + { + "bbox": [ + 105, + 492, + 135, + 505 + ], + "spans": [ + { + "bbox": [ + 105, + 492, + 135, + 505 + ], + "score": 1.0, + "content": "where", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 19, + "bbox_fs": [ + 105, + 492, + 135, + 505 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 212, + 502, + 393, + 530 + ], + "lines": [ + { + "bbox": [ + 212, + 502, + 393, + 530 + ], + "spans": [ + { + "bbox": [ + 212, + 502, + 393, + 530 + ], + "score": 0.92, + "content": "v _ { y } = { \\left\\{ \\begin{array} { l l } { ( 1 - p ( y | x , s ; { \\tilde { \\theta } } ) \\mathbf { h } ^ { ( L - 1 ) } } & { { \\mathrm { i f ~ } } y = y ^ { * } } \\\\ { - p ( y | x , s ; { \\tilde { \\theta } } ) \\mathbf { h } ^ { ( L - 1 ) } } & { { \\mathrm { o t h e r w i s e } } } \\end{array} \\right. }", + "type": "interline_equation", + "image_path": "cb30c22519487583b940798a5e0c9a0b99defe7a027e9dbc6ff677f521049f92.jpg" + } + ] + } + ], + "index": 20, + "virtual_lines": [ + { + "bbox": [ + 212, + 502, + 393, + 530 + ], + "spans": [], + "index": 20 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 533, + 214, + 545 + ], + "lines": [ + { + "bbox": [ + 106, + 532, + 214, + 546 + ], + "spans": [ + { + "bbox": [ + 106, + 532, + 214, + 546 + ], + "score": 1.0, + "content": "From Lemma 12, we have", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 21, + "bbox_fs": [ + 106, + 532, + 214, + 546 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 160, + 549, + 450, + 566 + ], + "lines": [ + { + "bbox": [ + 160, + 549, + 450, + 566 + ], + "spans": [ + { + "bbox": [ + 160, + 549, + 450, + 566 + ], + "score": 0.88, + "content": "| p ( y | x , s ; \\tilde { \\theta } ) ( u _ { y } - \\mathrm { E } _ { Y } [ u _ { Y } ] ) | _ { i } \\le | ( u _ { y } - \\mathrm { E } _ { Y } [ u _ { Y } ] ) | _ { i } \\le \\beta ( k - 1 ) e ^ { - c \\alpha | | \\hat { \\eta } | | _ { 2 } }", + "type": "interline_equation", + "image_path": "821043e820149e19a45875b7c51dae434c87f7411d23b77e25afcc88cc684fe9.jpg" + } + ] + } + ], + "index": 22, + "virtual_lines": [ + { + "bbox": [ + 160, + 549, + 450, + 566 + ], + "spans": [], + "index": 22 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 573, + 370, + 586 + ], + "lines": [ + { + "bbox": [ + 105, + 572, + 371, + 587 + ], + "spans": [ + { + "bbox": [ + 105, + 572, + 178, + 587 + ], + "score": 1.0, + "content": "Now, we suppose", + "type": "text" + }, + { + "bbox": [ + 179, + 576, + 185, + 585 + ], + "score": 0.81, + "content": "y", + "type": "inline_equation" + }, + { + "bbox": [ + 186, + 572, + 294, + 587 + ], + "score": 1.0, + "content": "is not the majority class of", + "type": "text" + }, + { + "bbox": [ + 295, + 572, + 340, + 586 + ], + "score": 0.94, + "content": "p ( \\boldsymbol { y } | \\boldsymbol { x } , s ; \\tilde { \\boldsymbol { \\theta } } )", + "type": "inline_equation" + }, + { + "bbox": [ + 340, + 572, + 371, + 587 + ], + "score": 1.0, + "content": ". Then,", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 23, + "bbox_fs": [ + 105, + 572, + 371, + 587 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 186, + 591, + 425, + 607 + ], + "lines": [ + { + "bbox": [ + 186, + 591, + 425, + 607 + ], + "spans": [ + { + "bbox": [ + 186, + 591, + 425, + 607 + ], + "score": 0.88, + "content": "| p ( y | x , s ; \\tilde { \\theta } ) ( u _ { y } - \\mathrm { E } _ { Y } [ u _ { Y } ] ) | _ { i } \\le p ( y | x , s ; \\tilde { \\theta } ) \\beta \\le \\beta e ^ { - c \\alpha \\| \\hat { \\eta } \\| _ { 2 } }", + "type": "interline_equation", + "image_path": "bd72ec01d20c00994bd94a4d250f3c1d5c4f0700ed9734f91a1e823610640d3d.jpg" + } + ] + } + ], + "index": 24, + "virtual_lines": [ + { + "bbox": [ + 186, + 591, + 425, + 607 + ], + "spans": [], + "index": 24 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 613, + 219, + 625 + ], + "lines": [ + { + "bbox": [ + 106, + 612, + 220, + 626 + ], + "spans": [ + { + "bbox": [ + 106, + 612, + 220, + 626 + ], + "score": 1.0, + "content": "Overall, the lemma follows.", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 25, + "bbox_fs": [ + 106, + 612, + 220, + 626 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 633, + 245, + 645 + ], + "lines": [ + { + "bbox": [ + 106, + 634, + 245, + 646 + ], + "spans": [ + { + "bbox": [ + 106, + 634, + 245, + 646 + ], + "score": 1.0, + "content": "Lemma 14. We denote the matrix", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 26, + "bbox_fs": [ + 106, + 634, + 245, + 646 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 160, + 650, + 451, + 693 + ], + "lines": [ + { + "bbox": [ + 160, + 650, + 451, + 693 + ], + "spans": [ + { + "bbox": [ + 160, + 650, + 451, + 693 + ], + "score": 0.94, + "content": "\\begin{array} { r l } { A \\stackrel { \\Delta } { = } } & { \\mathrm { E } _ { S } \\left[ \\frac { p ( y | x , s ; \\tilde { \\theta } ) } { p ( y | x ; \\tilde { \\theta } ) } ( u _ { y } - \\mathrm { E } _ { Y } [ u _ { Y } ] ) ( u _ { y } - \\mathrm { E } _ { Y } [ u _ { Y } ] ) ^ { T } \\right] } \\\\ & { - \\mathrm { E } _ { S } \\left[ \\frac { p ( y | x , s ; \\tilde { \\theta } ) } { p ( y | x ; \\tilde { \\theta } ) } ( u _ { y } - \\mathrm { E } _ { Y } [ u _ { Y } ] ) \\right] \\mathrm { E } _ { S } \\left[ \\frac { p ( y | x , s ; \\tilde { \\theta } ) } { p ( y | x ; \\tilde { \\theta } ) } ( u _ { y } - \\mathrm { E } _ { Y } [ u _ { Y } ] ) \\right] ^ { T } } \\end{array}", + "type": "interline_equation", + "image_path": "8884771578010fbfba07194c2efe71411a38da1a200910ae5bb14bdfc5f3db2a.jpg" + } + ] + } + ], + "index": 28, + "virtual_lines": [ + { + "bbox": [ + 160, + 650, + 451, + 664.3333333333334 + ], + "spans": [], + "index": 27 + }, + { + "bbox": [ + 160, + 664.3333333333334, + 451, + 678.6666666666667 + ], + "spans": [], + "index": 28 + }, + { + "bbox": [ + 160, + 678.6666666666667, + 451, + 693.0000000000001 + ], + "spans": [], + "index": 29 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 699, + 411, + 712 + ], + "lines": [ + { + "bbox": [ + 104, + 698, + 412, + 713 + ], + "spans": [ + { + "bbox": [ + 104, + 698, + 262, + 713 + ], + "score": 1.0, + "content": "Then the absolute value of the entry of", + "type": "text" + }, + { + "bbox": [ + 262, + 702, + 270, + 709 + ], + "score": 0.74, + "content": "A", + "type": "inline_equation" + }, + { + "bbox": [ + 270, + 698, + 356, + 713 + ], + "score": 1.0, + "content": "under the parameter", + "type": "text" + }, + { + "bbox": [ + 356, + 698, + 407, + 712 + ], + "score": 0.93, + "content": "\\tilde { \\theta } = \\{ \\hat { \\lambda } , \\alpha \\hat { \\eta } \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 407, + 698, + 412, + 713 + ], + "score": 1.0, + "content": ":", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 30, + "bbox_fs": [ + 104, + 698, + 412, + 713 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 245, + 718, + 366, + 734 + ], + "lines": [ + { + "bbox": [ + 245, + 718, + 366, + 734 + ], + "spans": [ + { + "bbox": [ + 245, + 718, + 366, + 734 + ], + "score": 0.88, + "content": "| A _ { i j } | \\leq 2 b ( k - 1 ) \\beta ^ { 2 } e ^ { - c \\alpha \\| \\hat { \\eta } \\| _ { 2 } }", + "type": "interline_equation", + "image_path": "f5362d24d4b0113eadda06b0c5846e71de703846577097ba8235fed1026b753f.jpg" + } + ] + } + ], + "index": 31, + "virtual_lines": [ + { + "bbox": [ + 245, + 718, + 366, + 734 + ], + "spans": [], + "index": 31 + } + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 105, + 81, + 505, + 105 + ], + "lines": [ + { + "bbox": [ + 105, + 81, + 506, + 95 + ], + "spans": [ + { + "bbox": [ + 105, + 81, + 245, + 95 + ], + "score": 1.0, + "content": "Proof. From Lemma 11, we have", + "type": "text" + }, + { + "bbox": [ + 245, + 81, + 309, + 95 + ], + "score": 0.93, + "content": "p ( y | x ; \\tilde { \\theta } ) \\geq 1 / b", + "type": "inline_equation" + }, + { + "bbox": [ + 310, + 81, + 506, + 95 + ], + "score": 1.0, + "content": ". Additionally, the absolute value of the entry of", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 107, + 93, + 309, + 106 + ], + "spans": [ + { + "bbox": [ + 107, + 94, + 162, + 106 + ], + "score": 0.92, + "content": "u _ { y } - \\operatorname { E } _ { Y } [ u _ { Y } ]", + "type": "inline_equation" + }, + { + "bbox": [ + 162, + 93, + 222, + 106 + ], + "score": 1.0, + "content": "is bounded by", + "type": "text" + }, + { + "bbox": [ + 222, + 94, + 229, + 105 + ], + "score": 0.82, + "content": "\\beta", + "type": "inline_equation" + }, + { + "bbox": [ + 230, + 93, + 304, + 106 + ], + "score": 1.0, + "content": ". We have for each", + "type": "text" + }, + { + "bbox": [ + 305, + 95, + 309, + 104 + ], + "score": 0.59, + "content": "i", + "type": "inline_equation" + } + ], + "index": 1 + } + ], + "index": 0.5 + }, + { + "type": "interline_equation", + "bbox": [ + 173, + 111, + 437, + 146 + ], + "lines": [ + { + "bbox": [ + 173, + 111, + 437, + 146 + ], + "spans": [ + { + "bbox": [ + 173, + 111, + 437, + 146 + ], + "score": 0.94, + "content": "\\begin{array} { r } { \\left| \\mathrm { E } _ { S } \\left[ \\frac { p ( y | x , s ; \\tilde { \\theta } ) } { p ( y | x ; \\tilde { \\theta } ) } ( u _ { y } - \\mathrm { E } _ { Y } [ u _ { Y } ] ) \\right] \\right| _ { i } \\le \\mathrm { E } _ { S } \\left[ \\frac { p ( y | x , s ; \\tilde { \\theta } ) } { p ( y | x ; \\tilde { \\theta } ) } \\beta \\right] = \\beta } \\end{array}", + "type": "interline_equation", + "image_path": "e99103e520298aadb5721526beff0ad58a12abae6019296cd67ab848c586e678.jpg" + } + ] + } + ], + "index": 3, + "virtual_lines": [ + { + "bbox": [ + 173, + 111, + 437, + 122.66666666666667 + ], + "spans": [], + "index": 2 + }, + { + "bbox": [ + 173, + 122.66666666666667, + 437, + 134.33333333333334 + ], + "spans": [], + "index": 3 + }, + { + "bbox": [ + 173, + 134.33333333333334, + 437, + 146.0 + ], + "spans": [], + "index": 4 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 151, + 196, + 163 + ], + "lines": [ + { + "bbox": [ + 105, + 150, + 196, + 164 + ], + "spans": [ + { + "bbox": [ + 105, + 150, + 196, + 164 + ], + "score": 1.0, + "content": "Then from Lemma 13", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 5 + }, + { + "type": "interline_equation", + "bbox": [ + 244, + 162, + 366, + 178 + ], + "lines": [ + { + "bbox": [ + 244, + 162, + 366, + 178 + ], + "spans": [ + { + "bbox": [ + 244, + 162, + 366, + 178 + ], + "score": 0.88, + "content": "| A _ { i j } | \\leq 2 b ( k - 1 ) \\beta ^ { 2 } e ^ { - c \\alpha \\| \\hat { \\eta } \\| _ { 2 } }", + "type": "interline_equation", + "image_path": "b6124589df28f453d7dbfba96d7ff52478a6f5937490417cbf4a212f5504120c.jpg" + } + ] + } + ], + "index": 6, + "virtual_lines": [ + { + "bbox": [ + 244, + 162, + 366, + 178 + ], + "spans": [], + "index": 6 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 202, + 245, + 214 + ], + "lines": [ + { + "bbox": [ + 106, + 202, + 246, + 215 + ], + "spans": [ + { + "bbox": [ + 106, + 202, + 246, + 215 + ], + "score": 1.0, + "content": "Lemma 15. We denote the matrix", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 7 + }, + { + "type": "interline_equation", + "bbox": [ + 186, + 218, + 425, + 252 + ], + "lines": [ + { + "bbox": [ + 186, + 218, + 425, + 252 + ], + "spans": [ + { + "bbox": [ + 186, + 218, + 425, + 252 + ], + "score": 0.94, + "content": "B \\overset { \\Delta } { = } \\mathrm { E } _ { S } \\left[ \\frac { p ( y | x , s ; \\tilde { \\theta } ) } { p ( y | x ; \\tilde { \\theta } ) } \\left( \\mathrm { E } _ { Y } \\left[ u _ { Y } u _ { Y } ^ { T } \\right] - \\mathrm { E } _ { Y } [ u _ { Y } ] \\mathrm { E } _ { Y } [ u _ { Y } ] ^ { T } \\right) \\right]", + "type": "interline_equation", + "image_path": "d6526be645fd6b1e28324a272dfe4f5c2f3e29e681df9844644080ce3491765f.jpg" + } + ] + } + ], + "index": 8.5, + "virtual_lines": [ + { + "bbox": [ + 186, + 218, + 425, + 235.0 + ], + "spans": [], + "index": 8 + }, + { + "bbox": [ + 186, + 235.0, + 425, + 252.0 + ], + "spans": [], + "index": 9 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 259, + 411, + 273 + ], + "lines": [ + { + "bbox": [ + 104, + 258, + 413, + 274 + ], + "spans": [ + { + "bbox": [ + 104, + 258, + 262, + 274 + ], + "score": 1.0, + "content": "Then the absolute value of the entry of", + "type": "text" + }, + { + "bbox": [ + 262, + 261, + 271, + 271 + ], + "score": 0.81, + "content": "B", + "type": "inline_equation" + }, + { + "bbox": [ + 271, + 258, + 356, + 274 + ], + "score": 1.0, + "content": "under the parameter", + "type": "text" + }, + { + "bbox": [ + 357, + 259, + 407, + 273 + ], + "score": 0.94, + "content": "\\tilde { \\theta } = \\{ \\hat { \\lambda } , \\alpha \\hat { \\eta } \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 408, + 258, + 413, + 274 + ], + "score": 1.0, + "content": ":", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 10 + }, + { + "type": "interline_equation", + "bbox": [ + 246, + 279, + 364, + 294 + ], + "lines": [ + { + "bbox": [ + 246, + 279, + 364, + 294 + ], + "spans": [ + { + "bbox": [ + 246, + 279, + 364, + 294 + ], + "score": 0.9, + "content": "| B _ { i j } | \\leq 2 ( k - 1 ) \\beta ^ { 2 } e ^ { - c \\alpha \\| \\hat { \\eta } \\| _ { 2 } }", + "type": "interline_equation", + "image_path": "29584ec2c35e977d0fe4063b3eb7c459b7b667b77f078db4c99d5af4d0d437ba.jpg" + } + ] + } + ], + "index": 11, + "virtual_lines": [ + { + "bbox": [ + 246, + 279, + 364, + 294 + ], + "spans": [], + "index": 11 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 308, + 369, + 321 + ], + "lines": [ + { + "bbox": [ + 106, + 308, + 370, + 323 + ], + "spans": [ + { + "bbox": [ + 106, + 308, + 282, + 323 + ], + "score": 1.0, + "content": "Proof. We only need to prove that for fixed", + "type": "text" + }, + { + "bbox": [ + 282, + 311, + 289, + 319 + ], + "score": 0.81, + "content": "x", + "type": "inline_equation" + }, + { + "bbox": [ + 289, + 308, + 307, + 323 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 307, + 312, + 313, + 319 + ], + "score": 0.76, + "content": "s", + "type": "inline_equation" + }, + { + "bbox": [ + 313, + 308, + 352, + 323 + ], + "score": 1.0, + "content": ", for each", + "type": "text" + }, + { + "bbox": [ + 352, + 310, + 365, + 321 + ], + "score": 0.89, + "content": "i , j", + "type": "inline_equation" + }, + { + "bbox": [ + 365, + 308, + 370, + 323 + ], + "score": 1.0, + "content": ":", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 12 + }, + { + "type": "interline_equation", + "bbox": [ + 183, + 327, + 426, + 345 + ], + "lines": [ + { + "bbox": [ + 183, + 327, + 426, + 345 + ], + "spans": [ + { + "bbox": [ + 183, + 327, + 426, + 345 + ], + "score": 0.9, + "content": "\\begin{array} { r } { \\left| \\mathrm { E } _ { Y } \\left[ u _ { Y } u _ { Y } ^ { T } \\right] - \\mathrm { E } _ { Y } [ u _ { Y } ] \\mathrm { E } _ { Y } [ u _ { Y } ] ^ { T } \\right| _ { i j } \\leq 2 ( k - 1 ) \\beta ^ { 2 } e ^ { - c \\alpha \\| \\hat { \\eta } \\| _ { 2 } } } \\end{array}", + "type": "interline_equation", + "image_path": "eb1665c002f141e03f6bfbce4d5521faeb0b3e5f90eeff33beec2e5512175c86.jpg" + } + ] + } + ], + "index": 13, + "virtual_lines": [ + { + "bbox": [ + 183, + 327, + 426, + 345 + ], + "spans": [], + "index": 13 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 351, + 131, + 362 + ], + "lines": [ + { + "bbox": [ + 106, + 350, + 132, + 364 + ], + "spans": [ + { + "bbox": [ + 106, + 350, + 132, + 364 + ], + "score": 1.0, + "content": "Since", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 14 + }, + { + "type": "interline_equation", + "bbox": [ + 111, + 367, + 504, + 402 + ], + "lines": [ + { + "bbox": [ + 111, + 367, + 504, + 402 + ], + "spans": [ + { + "bbox": [ + 111, + 367, + 504, + 402 + ], + "score": 0.93, + "content": "\\mathbb { E } _ { Y } \\left[ u _ { Y } u _ { Y } ^ { T } \\right] - \\mathbb { E } _ { Y } [ u _ { Y } ] \\mathbb { E } _ { Y } [ u _ { Y } ] ^ { T } \\big | _ { i j } = \\big | \\mathrm { C o v } _ { Y } [ ( u _ { Y } ) _ { i } , ( u _ { Y } ) _ { j } ] \\big | \\le \\beta ^ { 2 } \\sum _ { y = 1 } ^ { k } p ( y | x , s ; \\tilde { \\theta } ) - p ( y | x , s ; \\tilde { \\theta } ) ^ { 2 }", + "type": "interline_equation", + "image_path": "ccb52cd17f649eebf81dd22579c7f54516d53815c5eb993258df873bd34c627a.jpg" + } + ] + } + ], + "index": 16, + "virtual_lines": [ + { + "bbox": [ + 111, + 367, + 504, + 378.6666666666667 + ], + "spans": [], + "index": 15 + }, + { + "bbox": [ + 111, + 378.6666666666667, + 504, + 390.33333333333337 + ], + "spans": [], + "index": 16 + }, + { + "bbox": [ + 111, + 390.33333333333337, + 504, + 402.00000000000006 + ], + "spans": [], + "index": 17 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 408, + 327, + 420 + ], + "lines": [ + { + "bbox": [ + 105, + 407, + 328, + 422 + ], + "spans": [ + { + "bbox": [ + 105, + 407, + 142, + 422 + ], + "score": 1.0, + "content": "Suppose", + "type": "text" + }, + { + "bbox": [ + 143, + 411, + 149, + 420 + ], + "score": 0.83, + "content": "y", + "type": "inline_equation" + }, + { + "bbox": [ + 150, + 407, + 328, + 422 + ], + "score": 1.0, + "content": "is the majority class. Then from Lemma 12,", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 18 + }, + { + "type": "interline_equation", + "bbox": [ + 173, + 426, + 437, + 442 + ], + "lines": [ + { + "bbox": [ + 173, + 426, + 437, + 442 + ], + "spans": [ + { + "bbox": [ + 173, + 426, + 437, + 442 + ], + "score": 0.88, + "content": "\\begin{array} { r } { p ( y | x , s ; \\tilde { \\theta } ) - p ( y | x , s ; \\tilde { \\theta } ) ^ { 2 } \\leq 1 - p ( y | x , s ; \\tilde { \\theta } ) \\leq ( k - 1 ) e ^ { - c \\alpha \\| \\hat { \\eta } \\| _ { 2 } } } \\end{array}", + "type": "interline_equation", + "image_path": "d3f51fea1f592f685290d57da1ecc18774d109fe9d4a3fb4520b5a8a276478ec.jpg" + } + ] + } + ], + "index": 19, + "virtual_lines": [ + { + "bbox": [ + 173, + 426, + 437, + 442 + ], + "spans": [], + "index": 19 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 448, + 249, + 460 + ], + "lines": [ + { + "bbox": [ + 105, + 447, + 250, + 462 + ], + "spans": [ + { + "bbox": [ + 105, + 447, + 115, + 462 + ], + "score": 1.0, + "content": "If", + "type": "text" + }, + { + "bbox": [ + 116, + 450, + 122, + 460 + ], + "score": 0.81, + "content": "y", + "type": "inline_equation" + }, + { + "bbox": [ + 123, + 447, + 250, + 462 + ], + "score": 1.0, + "content": "is not the majority class. Then,", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 20 + }, + { + "type": "interline_equation", + "bbox": [ + 197, + 466, + 413, + 482 + ], + "lines": [ + { + "bbox": [ + 197, + 466, + 413, + 482 + ], + "spans": [ + { + "bbox": [ + 197, + 466, + 413, + 482 + ], + "score": 0.84, + "content": "p ( y | x , s ; \\tilde { \\theta } ) - p ( y | x , s ; \\tilde { \\theta } ) ^ { 2 } \\leq p ( y | x , s ; \\tilde { \\theta } ) \\leq e ^ { - c \\alpha \\| \\hat { \\eta } \\| _ { 2 } }", + "type": "interline_equation", + "image_path": "1b959a1b963503377f5e345d03024a2aba2ce1f24c5559c3f6b3476b688d47bf.jpg" + } + ] + } + ], + "index": 21, + "virtual_lines": [ + { + "bbox": [ + 197, + 466, + 413, + 482 + ], + "spans": [], + "index": 21 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 488, + 154, + 499 + ], + "lines": [ + { + "bbox": [ + 106, + 487, + 155, + 500 + ], + "spans": [ + { + "bbox": [ + 106, + 487, + 155, + 500 + ], + "score": 1.0, + "content": "So we have", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 22 + }, + { + "type": "interline_equation", + "bbox": [ + 198, + 498, + 410, + 533 + ], + "lines": [ + { + "bbox": [ + 198, + 498, + 410, + 533 + ], + "spans": [ + { + "bbox": [ + 198, + 498, + 410, + 533 + ], + "score": 0.91, + "content": "\\sum _ { y = 1 } ^ { k } p ( y | x , s ; \\tilde { \\theta } ) - p ( y | x , s ; \\tilde { \\theta } ) ^ { 2 } \\leq 2 ( k - 1 ) e ^ { - c \\alpha \\| \\hat { \\eta } \\| _ { 2 } }", + "type": "interline_equation", + "image_path": "ea3c582db03549ae4d4dca461d2e18abc90abb52273634efcf59f8353b9ae188.jpg" + } + ] + } + ], + "index": 23.5, + "virtual_lines": [ + { + "bbox": [ + 198, + 498, + 410, + 515.5 + ], + "spans": [], + "index": 23 + }, + { + "bbox": [ + 198, + 515.5, + 410, + 533.0 + ], + "spans": [], + "index": 24 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 536, + 187, + 548 + ], + "lines": [ + { + "bbox": [ + 105, + 536, + 189, + 549 + ], + "spans": [ + { + "bbox": [ + 105, + 536, + 189, + 549 + ], + "score": 1.0, + "content": "The lemma follows.", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 25 + }, + { + "type": "text", + "bbox": [ + 106, + 556, + 444, + 571 + ], + "lines": [ + { + "bbox": [ + 105, + 555, + 445, + 573 + ], + "spans": [ + { + "bbox": [ + 105, + 555, + 245, + 573 + ], + "score": 1.0, + "content": "Lemma 16. Under the parameter", + "type": "text" + }, + { + "bbox": [ + 246, + 556, + 296, + 570 + ], + "score": 0.94, + "content": "\\tilde { \\theta } = \\{ \\hat { \\lambda } , \\alpha \\hat { \\eta } \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 297, + 555, + 445, + 573 + ], + "score": 1.0, + "content": ", the largest eigenvalue of the matrix", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 26 + }, + { + "type": "interline_equation", + "bbox": [ + 244, + 576, + 367, + 609 + ], + "lines": [ + { + "bbox": [ + 244, + 576, + 367, + 609 + ], + "spans": [ + { + "bbox": [ + 244, + 576, + 367, + 609 + ], + "score": 0.93, + "content": "{ \\frac { 1 } { n } } \\sum _ { i = 1 } ^ { n } { \\big ( } A ( x _ { i } , y _ { i } ) - B ( x _ { i } , y _ { i } ) { \\big ) }", + "type": "interline_equation", + "image_path": "dd198b37916779ef20588a3ff4512262d0e025f56097e45505800929501bfab4.jpg" + } + ] + } + ], + "index": 27.5, + "virtual_lines": [ + { + "bbox": [ + 244, + 576, + 367, + 592.5 + ], + "spans": [], + "index": 27 + }, + { + "bbox": [ + 244, + 592.5, + 367, + 609.0 + ], + "spans": [], + "index": 28 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 615, + 147, + 626 + ], + "lines": [ + { + "bbox": [ + 105, + 614, + 148, + 627 + ], + "spans": [ + { + "bbox": [ + 105, + 614, + 148, + 627 + ], + "score": 1.0, + "content": "is at most", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 29 + }, + { + "type": "interline_equation", + "bbox": [ + 243, + 624, + 367, + 640 + ], + "lines": [ + { + "bbox": [ + 243, + 624, + 367, + 640 + ], + "spans": [ + { + "bbox": [ + 243, + 624, + 367, + 640 + ], + "score": 0.89, + "content": "2 d k ( k - 1 ) ( b + 1 ) \\beta ^ { 2 } e ^ { - c \\alpha \\| \\hat { \\eta } \\| _ { 2 } }", + "type": "interline_equation", + "image_path": "621fd869fb9d72213c14450800cf189d5873fcd50ca8066a8ba385e3ff772460.jpg" + } + ] + } + ], + "index": 30, + "virtual_lines": [ + { + "bbox": [ + 243, + 624, + 367, + 640 + ], + "spans": [], + "index": 30 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 654, + 506, + 692 + ], + "lines": [ + { + "bbox": [ + 105, + 654, + 507, + 668 + ], + "spans": [ + { + "bbox": [ + 105, + 654, + 450, + 668 + ], + "score": 1.0, + "content": "Proof. From Lemma 14 and Lemma 15, each entry of the matrix in (8) is at most", + "type": "text" + }, + { + "bbox": [ + 450, + 655, + 507, + 667 + ], + "score": 0.89, + "content": "2 ( k - 1 ) ( b +", + "type": "inline_equation" + } + ], + "index": 31 + }, + { + "bbox": [ + 106, + 664, + 507, + 681 + ], + "spans": [ + { + "bbox": [ + 106, + 666, + 163, + 679 + ], + "score": 0.93, + "content": "1 ) \\beta ^ { 2 } e ^ { - c \\alpha \\| \\hat { \\eta } \\| _ { 2 } }", + "type": "inline_equation" + }, + { + "bbox": [ + 163, + 664, + 507, + 681 + ], + "score": 1.0, + "content": ". Thus, by Gershgorin’s theorem, the maximum eigenvalue of the matrix in (8) is at", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 678, + 505, + 692 + ], + "spans": [ + { + "bbox": [ + 105, + 678, + 257, + 692 + ], + "score": 1.0, + "content": "most 2dk(k − 1)(b + 1)β2e−cαkηˆk2 .", + "type": "text" + }, + { + "bbox": [ + 494, + 680, + 505, + 692 + ], + "score": 0.996, + "content": "□", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 32 + }, + { + "type": "text", + "bbox": [ + 106, + 708, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 708, + 506, + 722 + ], + "spans": [ + { + "bbox": [ + 105, + 708, + 379, + 722 + ], + "score": 1.0, + "content": "Now, we can prove Theorem 5 by constructing a scaled version of", + "type": "text" + }, + { + "bbox": [ + 379, + 708, + 385, + 720 + ], + "score": 0.84, + "content": "\\hat { \\theta }", + "type": "inline_equation" + }, + { + "bbox": [ + 385, + 708, + 506, + 722 + ], + "score": 1.0, + "content": "that satisfies the expectation-", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 106, + 721, + 203, + 732 + ], + "spans": [ + { + "bbox": [ + 106, + 721, + 203, + 732 + ], + "score": 1.0, + "content": "linearization constraint.", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 34.5 + } + ], + "page_idx": 18, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 106, + 26, + 293, + 38 + ], + "lines": [ + { + "bbox": [ + 106, + 25, + 294, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 25, + 294, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2017", + "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" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 494, + 536, + 505, + 547 + ], + "lines": [ + { + "bbox": [ + 496, + 538, + 505, + 548 + ], + "spans": [ + { + "bbox": [ + 496, + 538, + 505, + 548 + ], + "score": 0.999, + "content": "□", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 493, + 181, + 505, + 192 + ], + "lines": [ + { + "bbox": [ + 496, + 183, + 505, + 192 + ], + "spans": [ + { + "bbox": [ + 496, + 183, + 505, + 192 + ], + "score": 0.998, + "content": "□", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 105, + 81, + 505, + 105 + ], + "lines": [ + { + "bbox": [ + 105, + 81, + 506, + 95 + ], + "spans": [ + { + "bbox": [ + 105, + 81, + 245, + 95 + ], + "score": 1.0, + "content": "Proof. From Lemma 11, we have", + "type": "text" + }, + { + "bbox": [ + 245, + 81, + 309, + 95 + ], + "score": 0.93, + "content": "p ( y | x ; \\tilde { \\theta } ) \\geq 1 / b", + "type": "inline_equation" + }, + { + "bbox": [ + 310, + 81, + 506, + 95 + ], + "score": 1.0, + "content": ". Additionally, the absolute value of the entry of", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 107, + 93, + 309, + 106 + ], + "spans": [ + { + "bbox": [ + 107, + 94, + 162, + 106 + ], + "score": 0.92, + "content": "u _ { y } - \\operatorname { E } _ { Y } [ u _ { Y } ]", + "type": "inline_equation" + }, + { + "bbox": [ + 162, + 93, + 222, + 106 + ], + "score": 1.0, + "content": "is bounded by", + "type": "text" + }, + { + "bbox": [ + 222, + 94, + 229, + 105 + ], + "score": 0.82, + "content": "\\beta", + "type": "inline_equation" + }, + { + "bbox": [ + 230, + 93, + 304, + 106 + ], + "score": 1.0, + "content": ". We have for each", + "type": "text" + }, + { + "bbox": [ + 305, + 95, + 309, + 104 + ], + "score": 0.59, + "content": "i", + "type": "inline_equation" + } + ], + "index": 1 + } + ], + "index": 0.5, + "bbox_fs": [ + 105, + 81, + 506, + 106 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 173, + 111, + 437, + 146 + ], + "lines": [ + { + "bbox": [ + 173, + 111, + 437, + 146 + ], + "spans": [ + { + "bbox": [ + 173, + 111, + 437, + 146 + ], + "score": 0.94, + "content": "\\begin{array} { r } { \\left| \\mathrm { E } _ { S } \\left[ \\frac { p ( y | x , s ; \\tilde { \\theta } ) } { p ( y | x ; \\tilde { \\theta } ) } ( u _ { y } - \\mathrm { E } _ { Y } [ u _ { Y } ] ) \\right] \\right| _ { i } \\le \\mathrm { E } _ { S } \\left[ \\frac { p ( y | x , s ; \\tilde { \\theta } ) } { p ( y | x ; \\tilde { \\theta } ) } \\beta \\right] = \\beta } \\end{array}", + "type": "interline_equation", + "image_path": "e99103e520298aadb5721526beff0ad58a12abae6019296cd67ab848c586e678.jpg" + } + ] + } + ], + "index": 3, + "virtual_lines": [ + { + "bbox": [ + 173, + 111, + 437, + 122.66666666666667 + ], + "spans": [], + "index": 2 + }, + { + "bbox": [ + 173, + 122.66666666666667, + 437, + 134.33333333333334 + ], + "spans": [], + "index": 3 + }, + { + "bbox": [ + 173, + 134.33333333333334, + 437, + 146.0 + ], + "spans": [], + "index": 4 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 151, + 196, + 163 + ], + "lines": [ + { + "bbox": [ + 105, + 150, + 196, + 164 + ], + "spans": [ + { + "bbox": [ + 105, + 150, + 196, + 164 + ], + "score": 1.0, + "content": "Then from Lemma 13", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 5, + "bbox_fs": [ + 105, + 150, + 196, + 164 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 244, + 162, + 366, + 178 + ], + "lines": [ + { + "bbox": [ + 244, + 162, + 366, + 178 + ], + "spans": [ + { + "bbox": [ + 244, + 162, + 366, + 178 + ], + "score": 0.88, + "content": "| A _ { i j } | \\leq 2 b ( k - 1 ) \\beta ^ { 2 } e ^ { - c \\alpha \\| \\hat { \\eta } \\| _ { 2 } }", + "type": "interline_equation", + "image_path": "b6124589df28f453d7dbfba96d7ff52478a6f5937490417cbf4a212f5504120c.jpg" + } + ] + } + ], + "index": 6, + "virtual_lines": [ + { + "bbox": [ + 244, + 162, + 366, + 178 + ], + "spans": [], + "index": 6 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 202, + 245, + 214 + ], + "lines": [ + { + "bbox": [ + 106, + 202, + 246, + 215 + ], + "spans": [ + { + "bbox": [ + 106, + 202, + 246, + 215 + ], + "score": 1.0, + "content": "Lemma 15. We denote the matrix", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 7, + "bbox_fs": [ + 106, + 202, + 246, + 215 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 186, + 218, + 425, + 252 + ], + "lines": [ + { + "bbox": [ + 186, + 218, + 425, + 252 + ], + "spans": [ + { + "bbox": [ + 186, + 218, + 425, + 252 + ], + "score": 0.94, + "content": "B \\overset { \\Delta } { = } \\mathrm { E } _ { S } \\left[ \\frac { p ( y | x , s ; \\tilde { \\theta } ) } { p ( y | x ; \\tilde { \\theta } ) } \\left( \\mathrm { E } _ { Y } \\left[ u _ { Y } u _ { Y } ^ { T } \\right] - \\mathrm { E } _ { Y } [ u _ { Y } ] \\mathrm { E } _ { Y } [ u _ { Y } ] ^ { T } \\right) \\right]", + "type": "interline_equation", + "image_path": "d6526be645fd6b1e28324a272dfe4f5c2f3e29e681df9844644080ce3491765f.jpg" + } + ] + } + ], + "index": 8.5, + "virtual_lines": [ + { + "bbox": [ + 186, + 218, + 425, + 235.0 + ], + "spans": [], + "index": 8 + }, + { + "bbox": [ + 186, + 235.0, + 425, + 252.0 + ], + "spans": [], + "index": 9 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 259, + 411, + 273 + ], + "lines": [ + { + "bbox": [ + 104, + 258, + 413, + 274 + ], + "spans": [ + { + "bbox": [ + 104, + 258, + 262, + 274 + ], + "score": 1.0, + "content": "Then the absolute value of the entry of", + "type": "text" + }, + { + "bbox": [ + 262, + 261, + 271, + 271 + ], + "score": 0.81, + "content": "B", + "type": "inline_equation" + }, + { + "bbox": [ + 271, + 258, + 356, + 274 + ], + "score": 1.0, + "content": "under the parameter", + "type": "text" + }, + { + "bbox": [ + 357, + 259, + 407, + 273 + ], + "score": 0.94, + "content": "\\tilde { \\theta } = \\{ \\hat { \\lambda } , \\alpha \\hat { \\eta } \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 408, + 258, + 413, + 274 + ], + "score": 1.0, + "content": ":", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 10, + "bbox_fs": [ + 104, + 258, + 413, + 274 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 246, + 279, + 364, + 294 + ], + "lines": [ + { + "bbox": [ + 246, + 279, + 364, + 294 + ], + "spans": [ + { + "bbox": [ + 246, + 279, + 364, + 294 + ], + "score": 0.9, + "content": "| B _ { i j } | \\leq 2 ( k - 1 ) \\beta ^ { 2 } e ^ { - c \\alpha \\| \\hat { \\eta } \\| _ { 2 } }", + "type": "interline_equation", + "image_path": "29584ec2c35e977d0fe4063b3eb7c459b7b667b77f078db4c99d5af4d0d437ba.jpg" + } + ] + } + ], + "index": 11, + "virtual_lines": [ + { + "bbox": [ + 246, + 279, + 364, + 294 + ], + "spans": [], + "index": 11 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 308, + 369, + 321 + ], + "lines": [ + { + "bbox": [ + 106, + 308, + 370, + 323 + ], + "spans": [ + { + "bbox": [ + 106, + 308, + 282, + 323 + ], + "score": 1.0, + "content": "Proof. We only need to prove that for fixed", + "type": "text" + }, + { + "bbox": [ + 282, + 311, + 289, + 319 + ], + "score": 0.81, + "content": "x", + "type": "inline_equation" + }, + { + "bbox": [ + 289, + 308, + 307, + 323 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 307, + 312, + 313, + 319 + ], + "score": 0.76, + "content": "s", + "type": "inline_equation" + }, + { + "bbox": [ + 313, + 308, + 352, + 323 + ], + "score": 1.0, + "content": ", for each", + "type": "text" + }, + { + "bbox": [ + 352, + 310, + 365, + 321 + ], + "score": 0.89, + "content": "i , j", + "type": "inline_equation" + }, + { + "bbox": [ + 365, + 308, + 370, + 323 + ], + "score": 1.0, + "content": ":", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 12, + "bbox_fs": [ + 106, + 308, + 370, + 323 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 183, + 327, + 426, + 345 + ], + "lines": [ + { + "bbox": [ + 183, + 327, + 426, + 345 + ], + "spans": [ + { + "bbox": [ + 183, + 327, + 426, + 345 + ], + "score": 0.9, + "content": "\\begin{array} { r } { \\left| \\mathrm { E } _ { Y } \\left[ u _ { Y } u _ { Y } ^ { T } \\right] - \\mathrm { E } _ { Y } [ u _ { Y } ] \\mathrm { E } _ { Y } [ u _ { Y } ] ^ { T } \\right| _ { i j } \\leq 2 ( k - 1 ) \\beta ^ { 2 } e ^ { - c \\alpha \\| \\hat { \\eta } \\| _ { 2 } } } \\end{array}", + "type": "interline_equation", + "image_path": "eb1665c002f141e03f6bfbce4d5521faeb0b3e5f90eeff33beec2e5512175c86.jpg" + } + ] + } + ], + "index": 13, + "virtual_lines": [ + { + "bbox": [ + 183, + 327, + 426, + 345 + ], + "spans": [], + "index": 13 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 351, + 131, + 362 + ], + "lines": [ + { + "bbox": [ + 106, + 350, + 132, + 364 + ], + "spans": [ + { + "bbox": [ + 106, + 350, + 132, + 364 + ], + "score": 1.0, + "content": "Since", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 14, + "bbox_fs": [ + 106, + 350, + 132, + 364 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 111, + 367, + 504, + 402 + ], + "lines": [ + { + "bbox": [ + 111, + 367, + 504, + 402 + ], + "spans": [ + { + "bbox": [ + 111, + 367, + 504, + 402 + ], + "score": 0.93, + "content": "\\mathbb { E } _ { Y } \\left[ u _ { Y } u _ { Y } ^ { T } \\right] - \\mathbb { E } _ { Y } [ u _ { Y } ] \\mathbb { E } _ { Y } [ u _ { Y } ] ^ { T } \\big | _ { i j } = \\big | \\mathrm { C o v } _ { Y } [ ( u _ { Y } ) _ { i } , ( u _ { Y } ) _ { j } ] \\big | \\le \\beta ^ { 2 } \\sum _ { y = 1 } ^ { k } p ( y | x , s ; \\tilde { \\theta } ) - p ( y | x , s ; \\tilde { \\theta } ) ^ { 2 }", + "type": "interline_equation", + "image_path": "ccb52cd17f649eebf81dd22579c7f54516d53815c5eb993258df873bd34c627a.jpg" + } + ] + } + ], + "index": 16, + "virtual_lines": [ + { + "bbox": [ + 111, + 367, + 504, + 378.6666666666667 + ], + "spans": [], + "index": 15 + }, + { + "bbox": [ + 111, + 378.6666666666667, + 504, + 390.33333333333337 + ], + "spans": [], + "index": 16 + }, + { + "bbox": [ + 111, + 390.33333333333337, + 504, + 402.00000000000006 + ], + "spans": [], + "index": 17 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 408, + 327, + 420 + ], + "lines": [ + { + "bbox": [ + 105, + 407, + 328, + 422 + ], + "spans": [ + { + "bbox": [ + 105, + 407, + 142, + 422 + ], + "score": 1.0, + "content": "Suppose", + "type": "text" + }, + { + "bbox": [ + 143, + 411, + 149, + 420 + ], + "score": 0.83, + "content": "y", + "type": "inline_equation" + }, + { + "bbox": [ + 150, + 407, + 328, + 422 + ], + "score": 1.0, + "content": "is the majority class. Then from Lemma 12,", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 18, + "bbox_fs": [ + 105, + 407, + 328, + 422 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 173, + 426, + 437, + 442 + ], + "lines": [ + { + "bbox": [ + 173, + 426, + 437, + 442 + ], + "spans": [ + { + "bbox": [ + 173, + 426, + 437, + 442 + ], + "score": 0.88, + "content": "\\begin{array} { r } { p ( y | x , s ; \\tilde { \\theta } ) - p ( y | x , s ; \\tilde { \\theta } ) ^ { 2 } \\leq 1 - p ( y | x , s ; \\tilde { \\theta } ) \\leq ( k - 1 ) e ^ { - c \\alpha \\| \\hat { \\eta } \\| _ { 2 } } } \\end{array}", + "type": "interline_equation", + "image_path": "d3f51fea1f592f685290d57da1ecc18774d109fe9d4a3fb4520b5a8a276478ec.jpg" + } + ] + } + ], + "index": 19, + "virtual_lines": [ + { + "bbox": [ + 173, + 426, + 437, + 442 + ], + "spans": [], + "index": 19 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 448, + 249, + 460 + ], + "lines": [ + { + "bbox": [ + 105, + 447, + 250, + 462 + ], + "spans": [ + { + "bbox": [ + 105, + 447, + 115, + 462 + ], + "score": 1.0, + "content": "If", + "type": "text" + }, + { + "bbox": [ + 116, + 450, + 122, + 460 + ], + "score": 0.81, + "content": "y", + "type": "inline_equation" + }, + { + "bbox": [ + 123, + 447, + 250, + 462 + ], + "score": 1.0, + "content": "is not the majority class. Then,", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 20, + "bbox_fs": [ + 105, + 447, + 250, + 462 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 197, + 466, + 413, + 482 + ], + "lines": [ + { + "bbox": [ + 197, + 466, + 413, + 482 + ], + "spans": [ + { + "bbox": [ + 197, + 466, + 413, + 482 + ], + "score": 0.84, + "content": "p ( y | x , s ; \\tilde { \\theta } ) - p ( y | x , s ; \\tilde { \\theta } ) ^ { 2 } \\leq p ( y | x , s ; \\tilde { \\theta } ) \\leq e ^ { - c \\alpha \\| \\hat { \\eta } \\| _ { 2 } }", + "type": "interline_equation", + "image_path": "1b959a1b963503377f5e345d03024a2aba2ce1f24c5559c3f6b3476b688d47bf.jpg" + } + ] + } + ], + "index": 21, + "virtual_lines": [ + { + "bbox": [ + 197, + 466, + 413, + 482 + ], + "spans": [], + "index": 21 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 488, + 154, + 499 + ], + "lines": [ + { + "bbox": [ + 106, + 487, + 155, + 500 + ], + "spans": [ + { + "bbox": [ + 106, + 487, + 155, + 500 + ], + "score": 1.0, + "content": "So we have", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 22, + "bbox_fs": [ + 106, + 487, + 155, + 500 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 198, + 498, + 410, + 533 + ], + "lines": [ + { + "bbox": [ + 198, + 498, + 410, + 533 + ], + "spans": [ + { + "bbox": [ + 198, + 498, + 410, + 533 + ], + "score": 0.91, + "content": "\\sum _ { y = 1 } ^ { k } p ( y | x , s ; \\tilde { \\theta } ) - p ( y | x , s ; \\tilde { \\theta } ) ^ { 2 } \\leq 2 ( k - 1 ) e ^ { - c \\alpha \\| \\hat { \\eta } \\| _ { 2 } }", + "type": "interline_equation", + "image_path": "ea3c582db03549ae4d4dca461d2e18abc90abb52273634efcf59f8353b9ae188.jpg" + } + ] + } + ], + "index": 23.5, + "virtual_lines": [ + { + "bbox": [ + 198, + 498, + 410, + 515.5 + ], + "spans": [], + "index": 23 + }, + { + "bbox": [ + 198, + 515.5, + 410, + 533.0 + ], + "spans": [], + "index": 24 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 536, + 187, + 548 + ], + "lines": [ + { + "bbox": [ + 105, + 536, + 189, + 549 + ], + "spans": [ + { + "bbox": [ + 105, + 536, + 189, + 549 + ], + "score": 1.0, + "content": "The lemma follows.", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 25, + "bbox_fs": [ + 105, + 536, + 189, + 549 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 556, + 444, + 571 + ], + "lines": [ + { + "bbox": [ + 105, + 555, + 445, + 573 + ], + "spans": [ + { + "bbox": [ + 105, + 555, + 245, + 573 + ], + "score": 1.0, + "content": "Lemma 16. Under the parameter", + "type": "text" + }, + { + "bbox": [ + 246, + 556, + 296, + 570 + ], + "score": 0.94, + "content": "\\tilde { \\theta } = \\{ \\hat { \\lambda } , \\alpha \\hat { \\eta } \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 297, + 555, + 445, + 573 + ], + "score": 1.0, + "content": ", the largest eigenvalue of the matrix", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 26, + "bbox_fs": [ + 105, + 555, + 445, + 573 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 244, + 576, + 367, + 609 + ], + "lines": [ + { + "bbox": [ + 244, + 576, + 367, + 609 + ], + "spans": [ + { + "bbox": [ + 244, + 576, + 367, + 609 + ], + "score": 0.93, + "content": "{ \\frac { 1 } { n } } \\sum _ { i = 1 } ^ { n } { \\big ( } A ( x _ { i } , y _ { i } ) - B ( x _ { i } , y _ { i } ) { \\big ) }", + "type": "interline_equation", + "image_path": "dd198b37916779ef20588a3ff4512262d0e025f56097e45505800929501bfab4.jpg" + } + ] + } + ], + "index": 27.5, + "virtual_lines": [ + { + "bbox": [ + 244, + 576, + 367, + 592.5 + ], + "spans": [], + "index": 27 + }, + { + "bbox": [ + 244, + 592.5, + 367, + 609.0 + ], + "spans": [], + "index": 28 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 615, + 147, + 626 + ], + "lines": [ + { + "bbox": [ + 105, + 614, + 148, + 627 + ], + "spans": [ + { + "bbox": [ + 105, + 614, + 148, + 627 + ], + "score": 1.0, + "content": "is at most", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 29, + "bbox_fs": [ + 105, + 614, + 148, + 627 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 243, + 624, + 367, + 640 + ], + "lines": [ + { + "bbox": [ + 243, + 624, + 367, + 640 + ], + "spans": [ + { + "bbox": [ + 243, + 624, + 367, + 640 + ], + "score": 0.89, + "content": "2 d k ( k - 1 ) ( b + 1 ) \\beta ^ { 2 } e ^ { - c \\alpha \\| \\hat { \\eta } \\| _ { 2 } }", + "type": "interline_equation", + "image_path": "621fd869fb9d72213c14450800cf189d5873fcd50ca8066a8ba385e3ff772460.jpg" + } + ] + } + ], + "index": 30, + "virtual_lines": [ + { + "bbox": [ + 243, + 624, + 367, + 640 + ], + "spans": [], + "index": 30 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 654, + 506, + 692 + ], + "lines": [ + { + "bbox": [ + 105, + 654, + 507, + 668 + ], + "spans": [ + { + "bbox": [ + 105, + 654, + 450, + 668 + ], + "score": 1.0, + "content": "Proof. From Lemma 14 and Lemma 15, each entry of the matrix in (8) is at most", + "type": "text" + }, + { + "bbox": [ + 450, + 655, + 507, + 667 + ], + "score": 0.89, + "content": "2 ( k - 1 ) ( b +", + "type": "inline_equation" + } + ], + "index": 31 + }, + { + "bbox": [ + 106, + 664, + 507, + 681 + ], + "spans": [ + { + "bbox": [ + 106, + 666, + 163, + 679 + ], + "score": 0.93, + "content": "1 ) \\beta ^ { 2 } e ^ { - c \\alpha \\| \\hat { \\eta } \\| _ { 2 } }", + "type": "inline_equation" + }, + { + "bbox": [ + 163, + 664, + 507, + 681 + ], + "score": 1.0, + "content": ". Thus, by Gershgorin’s theorem, the maximum eigenvalue of the matrix in (8) is at", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 678, + 505, + 692 + ], + "spans": [ + { + "bbox": [ + 105, + 678, + 257, + 692 + ], + "score": 1.0, + "content": "most 2dk(k − 1)(b + 1)β2e−cαkηˆk2 .", + "type": "text" + }, + { + "bbox": [ + 494, + 680, + 505, + 692 + ], + "score": 0.996, + "content": "□", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 32, + "bbox_fs": [ + 105, + 654, + 507, + 692 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 708, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 708, + 506, + 722 + ], + "spans": [ + { + "bbox": [ + 105, + 708, + 379, + 722 + ], + "score": 1.0, + "content": "Now, we can prove Theorem 5 by constructing a scaled version of", + "type": "text" + }, + { + "bbox": [ + 379, + 708, + 385, + 720 + ], + "score": 0.84, + "content": "\\hat { \\theta }", + "type": "inline_equation" + }, + { + "bbox": [ + 385, + 708, + 506, + 722 + ], + "score": 1.0, + "content": "that satisfies the expectation-", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 106, + 721, + 203, + 732 + ], + "spans": [ + { + "bbox": [ + 106, + 721, + 203, + 732 + ], + "score": 1.0, + "content": "linearization constraint.", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 34.5, + "bbox_fs": [ + 105, + 708, + 506, + 732 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "title", + "bbox": [ + 106, + 82, + 192, + 94 + ], + "lines": [ + { + "bbox": [ + 105, + 81, + 192, + 96 + ], + "spans": [ + { + "bbox": [ + 105, + 81, + 192, + 96 + ], + "score": 1.0, + "content": "Proof of Theorem 5", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "text", + "bbox": [ + 106, + 104, + 506, + 149 + ], + "lines": [ + { + "bbox": [ + 102, + 101, + 508, + 125 + ], + "spans": [ + { + "bbox": [ + 102, + 101, + 290, + 125 + ], + "score": 1.0, + "content": "Proof. Consider the likelihood evaluated at", + "type": "text" + }, + { + "bbox": [ + 290, + 104, + 345, + 118 + ], + "score": 0.94, + "content": "\\tilde { \\theta } = \\{ \\hat { \\lambda } , \\alpha \\hat { \\eta } \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 346, + 101, + 379, + 125 + ], + "score": 1.0, + "content": ", where", + "type": "text" + }, + { + "bbox": [ + 379, + 104, + 431, + 120 + ], + "score": 0.94, + "content": "\\begin{array} { r } { \\alpha = \\frac { \\delta } { 4 \\beta \\| \\hat { \\eta } \\| _ { 2 } } } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 432, + 101, + 450, + 125 + ], + "score": 1.0, + "content": ". If", + "type": "text" + }, + { + "bbox": [ + 450, + 106, + 480, + 117 + ], + "score": 0.89, + "content": "\\alpha > 1", + "type": "inline_equation" + }, + { + "bbox": [ + 480, + 101, + 508, + 125 + ], + "score": 1.0, + "content": ", then", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 107, + 116, + 509, + 140 + ], + "spans": [ + { + "bbox": [ + 107, + 120, + 152, + 136 + ], + "score": 0.93, + "content": "\\begin{array} { r } { \\| \\eta \\| _ { 2 } > \\frac { \\delta } { 4 \\beta } } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 152, + 116, + 232, + 140 + ], + "score": 1.0, + "content": ". We know the MLE", + "type": "text" + }, + { + "bbox": [ + 233, + 119, + 239, + 131 + ], + "score": 0.82, + "content": "\\hat { \\theta }", + "type": "inline_equation" + }, + { + "bbox": [ + 240, + 116, + 509, + 140 + ], + "score": 1.0, + "content": "already satisfies the expectation-linearization constraint. So we can", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 135, + 402, + 150 + ], + "spans": [ + { + "bbox": [ + 105, + 135, + 156, + 150 + ], + "score": 1.0, + "content": "assume that", + "type": "text" + }, + { + "bbox": [ + 156, + 137, + 200, + 147 + ], + "score": 0.91, + "content": "0 \\leq \\alpha \\leq 1", + "type": "inline_equation" + }, + { + "bbox": [ + 200, + 135, + 276, + 150 + ], + "score": 1.0, + "content": ", and we know that", + "type": "text" + }, + { + "bbox": [ + 277, + 135, + 283, + 146 + ], + "score": 0.84, + "content": "\\tilde { \\theta }", + "type": "inline_equation" + }, + { + "bbox": [ + 283, + 135, + 318, + 150 + ], + "score": 1.0, + "content": "satisfies", + "type": "text" + }, + { + "bbox": [ + 318, + 135, + 371, + 149 + ], + "score": 0.93, + "content": "V ( D ; \\tilde { \\theta } ) \\le \\delta", + "type": "inline_equation" + }, + { + "bbox": [ + 371, + 135, + 402, + 150 + ], + "score": 1.0, + "content": ". Then,", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 2 + }, + { + "type": "interline_equation", + "bbox": [ + 168, + 154, + 443, + 177 + ], + "lines": [ + { + "bbox": [ + 168, + 154, + 443, + 177 + ], + "spans": [ + { + "bbox": [ + 168, + 154, + 443, + 177 + ], + "score": 0.93, + "content": "\\Delta _ { l } ( \\hat { \\theta } , \\hat { \\theta } _ { \\delta } ) \\leq \\Delta _ { l } ( \\hat { \\theta } , \\tilde { \\theta } ) = \\frac { 1 } { n } ( l ( D ; \\hat { \\theta } ) - l ( D ; \\tilde { \\theta } ) ) = g ( \\hat { \\lambda } , \\hat { \\eta } ) - g ( \\hat { \\lambda } , \\alpha \\hat { \\eta } )", + "type": "interline_equation", + "image_path": "71c832f84ac16ede1d2370a32a4bdf560e9440640be4609f1eb19877e630c471.jpg" + } + ] + } + ], + "index": 4, + "virtual_lines": [ + { + "bbox": [ + 168, + 154, + 443, + 177 + ], + "spans": [], + "index": 4 + } + ] + }, + { + "type": "text", + "bbox": [ + 103, + 183, + 474, + 196 + ], + "lines": [ + { + "bbox": [ + 106, + 182, + 475, + 197 + ], + "spans": [ + { + "bbox": [ + 106, + 183, + 133, + 197 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 133, + 182, + 230, + 197 + ], + "score": 0.94, + "content": "\\begin{array} { r } { g ( \\lambda , \\eta ) = \\frac { 1 } { n } l ( D ; ( \\lambda , \\eta ) ) } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 230, + 183, + 429, + 197 + ], + "score": 1.0, + "content": ". Taking the second-order Taylor expansion about", + "type": "text" + }, + { + "bbox": [ + 430, + 186, + 436, + 195 + ], + "score": 0.81, + "content": "\\eta", + "type": "inline_equation" + }, + { + "bbox": [ + 436, + 183, + 475, + 197 + ], + "score": 1.0, + "content": ", we have", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 5 + }, + { + "type": "interline_equation", + "bbox": [ + 153, + 201, + 458, + 219 + ], + "lines": [ + { + "bbox": [ + 153, + 201, + 458, + 219 + ], + "spans": [ + { + "bbox": [ + 153, + 201, + 458, + 219 + ], + "score": 0.89, + "content": "g ( \\hat { \\lambda } , \\alpha \\hat { \\eta } ) = g ( \\hat { \\lambda } , \\hat { \\eta } ) + \\nabla _ { \\eta } ^ { T } g ( \\hat { \\lambda } , \\hat { \\eta } ) ( \\alpha \\hat { \\eta } - \\hat { \\eta } ) + ( \\alpha \\hat { \\eta } - \\hat { \\eta } ) ^ { T } \\nabla _ { \\eta } ^ { 2 } g ( \\hat { \\lambda } , \\hat { \\eta } ) ( \\alpha \\hat { \\eta } - \\hat { \\eta } )", + "type": "interline_equation", + "image_path": "097a88f84c7a1cba61e2ea327e6795897919eaf7379dde307775ed54208bb0fc.jpg" + } + ] + } + ], + "index": 6, + "virtual_lines": [ + { + "bbox": [ + 153, + 201, + 458, + 219 + ], + "spans": [], + "index": 6 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 224, + 505, + 249 + ], + "lines": [ + { + "bbox": [ + 105, + 224, + 506, + 240 + ], + "spans": [ + { + "bbox": [ + 105, + 224, + 131, + 240 + ], + "score": 1.0, + "content": "Since", + "type": "text" + }, + { + "bbox": [ + 132, + 225, + 138, + 236 + ], + "score": 0.84, + "content": "\\hat { \\theta }", + "type": "inline_equation" + }, + { + "bbox": [ + 138, + 224, + 268, + 240 + ], + "score": 1.0, + "content": "is the MLE, the first-order term", + "type": "text" + }, + { + "bbox": [ + 268, + 224, + 368, + 239 + ], + "score": 0.93, + "content": "\\nabla _ { \\eta } ^ { T } g ( \\hat { \\lambda } , \\hat { \\eta } ) ( \\alpha \\hat { \\eta } - \\hat { \\eta } ) = 0", + "type": "inline_equation" + }, + { + "bbox": [ + 368, + 224, + 506, + 240 + ], + "score": 1.0, + "content": ". The Hessian in the second-order", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 106, + 236, + 312, + 250 + ], + "spans": [ + { + "bbox": [ + 106, + 236, + 312, + 250 + ], + "score": 1.0, + "content": "term is just Eq.(8). Thus, from Lemma 16 we have", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 7.5 + }, + { + "type": "interline_equation", + "bbox": [ + 161, + 253, + 448, + 311 + ], + "lines": [ + { + "bbox": [ + 161, + 253, + 448, + 311 + ], + "spans": [ + { + "bbox": [ + 161, + 253, + 448, + 311 + ], + "score": 0.94, + "content": "\\begin{array} { r c l } { g ( \\hat { \\lambda } , \\alpha \\hat { \\eta } ) } & { \\leq } & { g ( \\hat { \\lambda } , \\hat { \\eta } ) - ( 1 - \\alpha ) ^ { 2 } \\| \\hat { \\eta } \\| _ { 2 } ^ { 2 } 2 d k ( k - 1 ) ( b + 1 ) \\beta ^ { 2 } e ^ { - c \\alpha \\| \\hat { \\eta } \\| _ { 2 } } } \\\\ & { = } & { g ( \\hat { \\lambda } , \\hat { \\eta } ) - 2 d k ( k - 1 ) ( b + 1 ) \\beta ^ { 2 } \\left( \\| \\hat { \\eta } \\| _ { 2 } - \\frac { \\delta } { 4 \\beta } \\right) ^ { 2 } e ^ { - c \\delta / 4 \\beta } } \\\\ & { = } & { g ( \\hat { \\lambda } , \\hat { \\eta } ) - c _ { 1 } \\beta ^ { 2 } \\left( \\| \\hat { \\eta } \\| _ { 2 } - \\frac { \\delta } { 4 \\beta } \\right) ^ { 2 } e ^ { - c _ { 2 } \\delta / 4 \\beta } } \\end{array}", + "type": "interline_equation", + "image_path": "7446ef4d5b46374b3ac77a196c29d54820bc06c3910e383a33e2426414183bab.jpg" + } + ] + } + ], + "index": 10, + "virtual_lines": [ + { + "bbox": [ + 161, + 253, + 448, + 272.3333333333333 + ], + "spans": [], + "index": 9 + }, + { + "bbox": [ + 161, + 272.3333333333333, + 448, + 291.66666666666663 + ], + "spans": [], + "index": 10 + }, + { + "bbox": [ + 161, + 291.66666666666663, + 448, + 310.99999999999994 + ], + "spans": [], + "index": 11 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 315, + 412, + 328 + ], + "lines": [ + { + "bbox": [ + 106, + 315, + 413, + 329 + ], + "spans": [ + { + "bbox": [ + 106, + 315, + 155, + 329 + ], + "score": 1.0, + "content": "with setting", + "type": "text" + }, + { + "bbox": [ + 156, + 316, + 254, + 328 + ], + "score": 0.92, + "content": "c 1 = 2 d k ( k - 1 ) ( b + 1 )", + "type": "inline_equation" + }, + { + "bbox": [ + 254, + 315, + 272, + 329 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 273, + 316, + 301, + 326 + ], + "score": 0.9, + "content": "c 2 = c", + "type": "inline_equation" + }, + { + "bbox": [ + 301, + 315, + 413, + 329 + ], + "score": 1.0, + "content": ". Then the theorem follows.", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 12 + }, + { + "type": "text", + "bbox": [ + 107, + 340, + 413, + 353 + ], + "lines": [ + { + "bbox": [ + 105, + 339, + 414, + 354 + ], + "spans": [ + { + "bbox": [ + 105, + 339, + 414, + 354 + ], + "score": 1.0, + "content": "C.3 PROOF OF THEOREM 6: UNIFORM BOUND OF MODEL ACCURACY", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 13 + }, + { + "type": "text", + "bbox": [ + 106, + 360, + 273, + 374 + ], + "lines": [ + { + "bbox": [ + 105, + 358, + 273, + 375 + ], + "spans": [ + { + "bbox": [ + 105, + 358, + 218, + 375 + ], + "score": 1.0, + "content": "In the following, we denote", + "type": "text" + }, + { + "bbox": [ + 219, + 360, + 270, + 374 + ], + "score": 0.94, + "content": "\\tilde { \\theta } = \\{ \\hat { \\lambda } , \\alpha \\hat { \\eta } \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 270, + 358, + 273, + 375 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 14 + }, + { + "type": "text", + "bbox": [ + 106, + 377, + 379, + 392 + ], + "lines": [ + { + "bbox": [ + 105, + 376, + 378, + 393 + ], + "spans": [ + { + "bbox": [ + 105, + 376, + 196, + 393 + ], + "score": 1.0, + "content": "Lemma 17. For each", + "type": "text" + }, + { + "bbox": [ + 197, + 379, + 223, + 390 + ], + "score": 0.82, + "content": "y \\in \\mathcal { V }", + "type": "inline_equation" + }, + { + "bbox": [ + 223, + 376, + 234, + 393 + ], + "score": 1.0, + "content": ", if", + "type": "text" + }, + { + "bbox": [ + 234, + 376, + 309, + 391 + ], + "score": 0.73, + "content": "p ( y | x , s ; \\hat { \\theta } ) \\geq 1 / k", + "type": "inline_equation" + }, + { + "bbox": [ + 310, + 376, + 332, + 393 + ], + "score": 1.0, + "content": ", then", + "type": "text" + }, + { + "bbox": [ + 333, + 378, + 378, + 391 + ], + "score": 0.76, + "content": "\\forall \\alpha \\in [ 0 , 1 ]", + "type": "inline_equation" + } + ], + "index": 15 + } + ], + "index": 15 + }, + { + "type": "interline_equation", + "bbox": [ + 271, + 396, + 340, + 420 + ], + "lines": [ + { + "bbox": [ + 271, + 396, + 340, + 420 + ], + "spans": [ + { + "bbox": [ + 271, + 396, + 340, + 420 + ], + "score": 0.92, + "content": "p ( y | x , s ; \\tilde { \\theta } ) \\geq \\frac { 1 } { k }", + "type": "interline_equation", + "image_path": "d4cc2e37834af77134b4004e7066eb7a632fe278658e68150e90b34c710792ad.jpg" + } + ] + } + ], + "index": 16, + "virtual_lines": [ + { + "bbox": [ + 271, + 396, + 340, + 420 + ], + "spans": [], + "index": 16 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 430, + 366, + 442 + ], + "lines": [ + { + "bbox": [ + 105, + 428, + 366, + 444 + ], + "spans": [ + { + "bbox": [ + 105, + 428, + 366, + 444 + ], + "score": 1.0, + "content": "Proof. This lemma can be regarded as a corollary of Lemma 11.", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 17 + }, + { + "type": "text", + "bbox": [ + 107, + 448, + 433, + 464 + ], + "lines": [ + { + "bbox": [ + 102, + 442, + 437, + 470 + ], + "spans": [ + { + "bbox": [ + 102, + 442, + 204, + 470 + ], + "score": 1.0, + "content": "Lemma 18. For a fixed", + "type": "text" + }, + { + "bbox": [ + 204, + 454, + 211, + 462 + ], + "score": 0.43, + "content": "x", + "type": "inline_equation" + }, + { + "bbox": [ + 211, + 442, + 230, + 470 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 230, + 455, + 235, + 462 + ], + "score": 0.53, + "content": "s", + "type": "inline_equation" + }, + { + "bbox": [ + 236, + 442, + 282, + 470 + ], + "score": 1.0, + "content": ", we denote", + "type": "text" + }, + { + "bbox": [ + 282, + 448, + 372, + 464 + ], + "score": 0.9, + "content": "e ^ { \\hat { \\eta } _ { y } ^ { T } \\mathbf { h } ^ { ( L - 1 ) } ( x , s ; \\hat { \\lambda } ) } = w _ { y }", + "type": "inline_equation" + }, + { + "bbox": [ + 372, + 442, + 437, + 470 + ], + "score": 1.0, + "content": ". Then we have", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 18 + }, + { + "type": "interline_equation", + "bbox": [ + 198, + 469, + 413, + 512 + ], + "lines": [ + { + "bbox": [ + 198, + 469, + 413, + 512 + ], + "spans": [ + { + "bbox": [ + 198, + 469, + 413, + 512 + ], + "score": 0.93, + "content": "p ( y | x , s , \\tilde { \\theta } ) = \\frac { e ^ { \\alpha \\hat { \\eta } _ { y } ^ { T } \\mathbf { h } ^ { ( L - 1 ) } ( x , s ; \\hat { \\lambda } ) } } { \\displaystyle \\sum _ { y ^ { \\prime } \\in \\mathcal { Y } } e ^ { \\alpha \\hat { \\eta } _ { y ^ { \\prime } } ^ { T } \\mathbf { h } ^ { ( L - 1 ) } ( x , s ; \\hat { \\lambda } ) } } = \\frac { ( w _ { y } ) ^ { \\alpha } } { { \\displaystyle \\sum _ { y ^ { \\prime } \\in \\mathcal { Y } } ( w _ { y ^ { \\prime } } ) ^ { \\alpha } } }", + "type": "interline_equation", + "image_path": "f6ce135bb3a1e028c0cccdd8ac08e2aadd628f2a5361a0af9072e0f5516bdeee.jpg" + } + ] + } + ], + "index": 19.5, + "virtual_lines": [ + { + "bbox": [ + 198, + 469, + 413, + 490.5 + ], + "spans": [], + "index": 19 + }, + { + "bbox": [ + 198, + 490.5, + 413, + 512.0 + ], + "spans": [], + "index": 20 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 518, + 506, + 550 + ], + "lines": [ + { + "bbox": [ + 104, + 518, + 506, + 540 + ], + "spans": [ + { + "bbox": [ + 104, + 518, + 200, + 533 + ], + "score": 1.0, + "content": "Additionally, we denote", + "type": "text" + }, + { + "bbox": [ + 200, + 518, + 375, + 540 + ], + "score": 0.94, + "content": "g _ { s } ( \\alpha ) = \\sum _ { y ^ { \\prime } \\in \\mathcal { V } } p ( y ^ { \\prime } | x , s ; \\tilde { \\theta } ) \\log w _ { y ^ { \\prime } } - \\log w _ { y }", + "type": "inline_equation" + }, + { + "bbox": [ + 375, + 518, + 424, + 533 + ], + "score": 1.0, + "content": ". We assume", + "type": "text" + }, + { + "bbox": [ + 424, + 519, + 465, + 532 + ], + "score": 0.92, + "content": "g _ { s } ( 0 ) \\geq 0", + "type": "inline_equation" + }, + { + "bbox": [ + 466, + 518, + 506, + 533 + ], + "score": 1.0, + "content": ". Then we", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 537, + 159, + 552 + ], + "spans": [ + { + "bbox": [ + 105, + 537, + 127, + 552 + ], + "score": 1.0, + "content": "have", + "type": "text" + }, + { + "bbox": [ + 128, + 539, + 159, + 550 + ], + "score": 0.86, + "content": "\\forall \\alpha \\geq 0", + "type": "inline_equation" + } + ], + "index": 22 + } + ], + "index": 21.5 + }, + { + "type": "interline_equation", + "bbox": [ + 283, + 549, + 327, + 563 + ], + "lines": [ + { + "bbox": [ + 283, + 549, + 327, + 563 + ], + "spans": [ + { + "bbox": [ + 283, + 549, + 327, + 563 + ], + "score": 0.86, + "content": "g _ { s } ( \\alpha ) \\geq 0", + "type": "interline_equation", + "image_path": "e1b7764794c1d31b3f88cf8d58b1b4a57145e05ed1c17cd3dd5a17235351f7bd.jpg" + } + ] + } + ], + "index": 23, + "virtual_lines": [ + { + "bbox": [ + 283, + 549, + 327, + 563 + ], + "spans": [], + "index": 23 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 574, + 133, + 586 + ], + "lines": [ + { + "bbox": [ + 104, + 572, + 135, + 589 + ], + "spans": [ + { + "bbox": [ + 104, + 572, + 135, + 589 + ], + "score": 1.0, + "content": "Proof.", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 24 + }, + { + "type": "interline_equation", + "bbox": [ + 155, + 591, + 456, + 625 + ], + "lines": [ + { + "bbox": [ + 155, + 591, + 456, + 625 + ], + "spans": [ + { + "bbox": [ + 155, + 591, + 456, + 625 + ], + "score": 0.92, + "content": "\\frac { \\partial g _ { s } ( \\alpha ) } { \\partial \\alpha } = \\sum _ { y ^ { \\prime } \\in \\mathcal { Y } } \\log w _ { y ^ { \\prime } } \\frac { \\partial p ( y ^ { \\prime } | x , s ; \\tilde { \\theta } ) } { \\partial \\alpha } = \\mathrm { V a r } _ { Y } \\left[ \\log w _ { Y } | X - x , S = s \\right] \\geq 0", + "type": "interline_equation", + "image_path": "e92bd549530302fdf7293b3b725407d16a7ef52641fcfa72c225727d10ffe7b0.jpg" + } + ] + } + ], + "index": 26, + "virtual_lines": [ + { + "bbox": [ + 155, + 591, + 456, + 602.3333333333334 + ], + "spans": [], + "index": 25 + }, + { + "bbox": [ + 155, + 602.3333333333334, + 456, + 613.6666666666667 + ], + "spans": [], + "index": 26 + }, + { + "bbox": [ + 155, + 613.6666666666667, + 456, + 625.0000000000001 + ], + "spans": [], + "index": 27 + } + ] + }, + { + "type": "text", + "bbox": [ + 108, + 630, + 424, + 644 + ], + "lines": [ + { + "bbox": [ + 105, + 629, + 423, + 645 + ], + "spans": [ + { + "bbox": [ + 105, + 629, + 119, + 645 + ], + "score": 1.0, + "content": "So", + "type": "text" + }, + { + "bbox": [ + 120, + 630, + 144, + 642 + ], + "score": 0.91, + "content": "g _ { s } ( \\alpha )", + "type": "inline_equation" + }, + { + "bbox": [ + 144, + 629, + 245, + 645 + ], + "score": 1.0, + "content": "is non-decreasing. Since", + "type": "text" + }, + { + "bbox": [ + 245, + 630, + 286, + 642 + ], + "score": 0.92, + "content": "g _ { s } ( 0 ) \\geq 0", + "type": "inline_equation" + }, + { + "bbox": [ + 287, + 629, + 325, + 645 + ], + "score": 1.0, + "content": ", we have", + "type": "text" + }, + { + "bbox": [ + 326, + 630, + 368, + 642 + ], + "score": 0.93, + "content": "g _ { s } ( \\alpha ) \\geq 0", + "type": "inline_equation" + }, + { + "bbox": [ + 369, + 629, + 393, + 645 + ], + "score": 1.0, + "content": "when", + "type": "text" + }, + { + "bbox": [ + 393, + 631, + 419, + 641 + ], + "score": 0.89, + "content": "\\alpha \\geq 0", + "type": "inline_equation" + }, + { + "bbox": [ + 420, + 629, + 423, + 645 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 28 + }, + { + "type": "text", + "bbox": [ + 107, + 653, + 448, + 667 + ], + "lines": [ + { + "bbox": [ + 105, + 653, + 448, + 668 + ], + "spans": [ + { + "bbox": [ + 105, + 653, + 327, + 668 + ], + "score": 1.0, + "content": "From above lemma, we have for each training instance", + "type": "text" + }, + { + "bbox": [ + 328, + 654, + 378, + 667 + ], + "score": 0.93, + "content": "( x _ { i } , y _ { i } ) \\in D", + "type": "inline_equation" + }, + { + "bbox": [ + 379, + 653, + 399, + 668 + ], + "score": 1.0, + "content": ", and", + "type": "text" + }, + { + "bbox": [ + 399, + 654, + 444, + 667 + ], + "score": 0.92, + "content": "\\forall \\alpha \\in [ 0 , 1 ]", + "type": "inline_equation" + }, + { + "bbox": [ + 444, + 653, + 448, + 668 + ], + "score": 1.0, + "content": ",", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 29 + }, + { + "type": "interline_equation", + "bbox": [ + 219, + 672, + 392, + 693 + ], + "lines": [ + { + "bbox": [ + 219, + 672, + 392, + 693 + ], + "spans": [ + { + "bbox": [ + 219, + 672, + 392, + 693 + ], + "score": 0.93, + "content": "\\mathrm { E } _ { Y } \\left[ \\log p ( Y | x _ { i } , s ; \\tilde { \\theta } ) \\right] \\geq \\log p ( y _ { i } | x _ { i } , s ; \\tilde { \\theta } )", + "type": "interline_equation", + "image_path": "39d3a79ae9f6304dd119170d1dbfdde5d486c01a286dbb5eae6ddb4699b33c8f.jpg" + } + ] + } + ], + "index": 30, + "virtual_lines": [ + { + "bbox": [ + 219, + 672, + 392, + 693 + ], + "spans": [], + "index": 30 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 698, + 217, + 709 + ], + "lines": [ + { + "bbox": [ + 106, + 698, + 218, + 710 + ], + "spans": [ + { + "bbox": [ + 106, + 698, + 218, + 710 + ], + "score": 1.0, + "content": "For convenience, we define", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 31 + }, + { + "type": "interline_equation", + "bbox": [ + 203, + 714, + 408, + 736 + ], + "lines": [ + { + "bbox": [ + 203, + 714, + 408, + 736 + ], + "spans": [ + { + "bbox": [ + 203, + 714, + 408, + 736 + ], + "score": 0.9, + "content": "m ( s , y ) = \\log p ( y | x , s ; \\tilde { \\theta } ) - \\mathrm { E } _ { Y } \\left[ \\log p ( Y | x , s ; \\tilde { \\theta } ) \\right]", + "type": "interline_equation", + "image_path": "4d7d3c4663efc65fbfdda1969d68e7354dfbfb206431e2b9eccce1b303e1d0fa.jpg" + } + ] + } + ], + "index": 32, + "virtual_lines": [ + { + "bbox": [ + 203, + 714, + 408, + 736 + ], + "spans": [], + "index": 32 + } + ] + } + ], + "page_idx": 19, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 106, + 26, + 293, + 38 + ], + "lines": [ + { + "bbox": [ + 106, + 25, + 294, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 25, + 294, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2017", + "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" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 494, + 430, + 505, + 441 + ], + "lines": [ + { + "bbox": [ + 496, + 432, + 505, + 442 + ], + "spans": [ + { + "bbox": [ + 496, + 432, + 505, + 442 + ], + "score": 0.998, + "content": "□", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 494, + 630, + 505, + 641 + ], + "lines": [ + { + "bbox": [ + 496, + 632, + 505, + 642 + ], + "spans": [ + { + "bbox": [ + 496, + 632, + 505, + 642 + ], + "score": 1.0, + "content": "□", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 494, + 316, + 505, + 327 + ], + "lines": [ + { + "bbox": [ + 496, + 317, + 505, + 327 + ], + "spans": [ + { + "bbox": [ + 496, + 317, + 505, + 327 + ], + "score": 1.0, + "content": "□", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "title", + "bbox": [ + 106, + 82, + 192, + 94 + ], + "lines": [ + { + "bbox": [ + 105, + 81, + 192, + 96 + ], + "spans": [ + { + "bbox": [ + 105, + 81, + 192, + 96 + ], + "score": 1.0, + "content": "Proof of Theorem 5", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "text", + "bbox": [ + 106, + 104, + 506, + 149 + ], + "lines": [ + { + "bbox": [ + 102, + 101, + 508, + 125 + ], + "spans": [ + { + "bbox": [ + 102, + 101, + 290, + 125 + ], + "score": 1.0, + "content": "Proof. Consider the likelihood evaluated at", + "type": "text" + }, + { + "bbox": [ + 290, + 104, + 345, + 118 + ], + "score": 0.94, + "content": "\\tilde { \\theta } = \\{ \\hat { \\lambda } , \\alpha \\hat { \\eta } \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 346, + 101, + 379, + 125 + ], + "score": 1.0, + "content": ", where", + "type": "text" + }, + { + "bbox": [ + 379, + 104, + 431, + 120 + ], + "score": 0.94, + "content": "\\begin{array} { r } { \\alpha = \\frac { \\delta } { 4 \\beta \\| \\hat { \\eta } \\| _ { 2 } } } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 432, + 101, + 450, + 125 + ], + "score": 1.0, + "content": ". If", + "type": "text" + }, + { + "bbox": [ + 450, + 106, + 480, + 117 + ], + "score": 0.89, + "content": "\\alpha > 1", + "type": "inline_equation" + }, + { + "bbox": [ + 480, + 101, + 508, + 125 + ], + "score": 1.0, + "content": ", then", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 107, + 116, + 509, + 140 + ], + "spans": [ + { + "bbox": [ + 107, + 120, + 152, + 136 + ], + "score": 0.93, + "content": "\\begin{array} { r } { \\| \\eta \\| _ { 2 } > \\frac { \\delta } { 4 \\beta } } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 152, + 116, + 232, + 140 + ], + "score": 1.0, + "content": ". We know the MLE", + "type": "text" + }, + { + "bbox": [ + 233, + 119, + 239, + 131 + ], + "score": 0.82, + "content": "\\hat { \\theta }", + "type": "inline_equation" + }, + { + "bbox": [ + 240, + 116, + 509, + 140 + ], + "score": 1.0, + "content": "already satisfies the expectation-linearization constraint. So we can", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 135, + 402, + 150 + ], + "spans": [ + { + "bbox": [ + 105, + 135, + 156, + 150 + ], + "score": 1.0, + "content": "assume that", + "type": "text" + }, + { + "bbox": [ + 156, + 137, + 200, + 147 + ], + "score": 0.91, + "content": "0 \\leq \\alpha \\leq 1", + "type": "inline_equation" + }, + { + "bbox": [ + 200, + 135, + 276, + 150 + ], + "score": 1.0, + "content": ", and we know that", + "type": "text" + }, + { + "bbox": [ + 277, + 135, + 283, + 146 + ], + "score": 0.84, + "content": "\\tilde { \\theta }", + "type": "inline_equation" + }, + { + "bbox": [ + 283, + 135, + 318, + 150 + ], + "score": 1.0, + "content": "satisfies", + "type": "text" + }, + { + "bbox": [ + 318, + 135, + 371, + 149 + ], + "score": 0.93, + "content": "V ( D ; \\tilde { \\theta } ) \\le \\delta", + "type": "inline_equation" + }, + { + "bbox": [ + 371, + 135, + 402, + 150 + ], + "score": 1.0, + "content": ". Then,", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 2, + "bbox_fs": [ + 102, + 101, + 509, + 150 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 168, + 154, + 443, + 177 + ], + "lines": [ + { + "bbox": [ + 168, + 154, + 443, + 177 + ], + "spans": [ + { + "bbox": [ + 168, + 154, + 443, + 177 + ], + "score": 0.93, + "content": "\\Delta _ { l } ( \\hat { \\theta } , \\hat { \\theta } _ { \\delta } ) \\leq \\Delta _ { l } ( \\hat { \\theta } , \\tilde { \\theta } ) = \\frac { 1 } { n } ( l ( D ; \\hat { \\theta } ) - l ( D ; \\tilde { \\theta } ) ) = g ( \\hat { \\lambda } , \\hat { \\eta } ) - g ( \\hat { \\lambda } , \\alpha \\hat { \\eta } )", + "type": "interline_equation", + "image_path": "71c832f84ac16ede1d2370a32a4bdf560e9440640be4609f1eb19877e630c471.jpg" + } + ] + } + ], + "index": 4, + "virtual_lines": [ + { + "bbox": [ + 168, + 154, + 443, + 177 + ], + "spans": [], + "index": 4 + } + ] + }, + { + "type": "text", + "bbox": [ + 103, + 183, + 474, + 196 + ], + "lines": [ + { + "bbox": [ + 106, + 182, + 475, + 197 + ], + "spans": [ + { + "bbox": [ + 106, + 183, + 133, + 197 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 133, + 182, + 230, + 197 + ], + "score": 0.94, + "content": "\\begin{array} { r } { g ( \\lambda , \\eta ) = \\frac { 1 } { n } l ( D ; ( \\lambda , \\eta ) ) } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 230, + 183, + 429, + 197 + ], + "score": 1.0, + "content": ". Taking the second-order Taylor expansion about", + "type": "text" + }, + { + "bbox": [ + 430, + 186, + 436, + 195 + ], + "score": 0.81, + "content": "\\eta", + "type": "inline_equation" + }, + { + "bbox": [ + 436, + 183, + 475, + 197 + ], + "score": 1.0, + "content": ", we have", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 5, + "bbox_fs": [ + 106, + 182, + 475, + 197 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 153, + 201, + 458, + 219 + ], + "lines": [ + { + "bbox": [ + 153, + 201, + 458, + 219 + ], + "spans": [ + { + "bbox": [ + 153, + 201, + 458, + 219 + ], + "score": 0.89, + "content": "g ( \\hat { \\lambda } , \\alpha \\hat { \\eta } ) = g ( \\hat { \\lambda } , \\hat { \\eta } ) + \\nabla _ { \\eta } ^ { T } g ( \\hat { \\lambda } , \\hat { \\eta } ) ( \\alpha \\hat { \\eta } - \\hat { \\eta } ) + ( \\alpha \\hat { \\eta } - \\hat { \\eta } ) ^ { T } \\nabla _ { \\eta } ^ { 2 } g ( \\hat { \\lambda } , \\hat { \\eta } ) ( \\alpha \\hat { \\eta } - \\hat { \\eta } )", + "type": "interline_equation", + "image_path": "097a88f84c7a1cba61e2ea327e6795897919eaf7379dde307775ed54208bb0fc.jpg" + } + ] + } + ], + "index": 6, + "virtual_lines": [ + { + "bbox": [ + 153, + 201, + 458, + 219 + ], + "spans": [], + "index": 6 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 224, + 505, + 249 + ], + "lines": [ + { + "bbox": [ + 105, + 224, + 506, + 240 + ], + "spans": [ + { + "bbox": [ + 105, + 224, + 131, + 240 + ], + "score": 1.0, + "content": "Since", + "type": "text" + }, + { + "bbox": [ + 132, + 225, + 138, + 236 + ], + "score": 0.84, + "content": "\\hat { \\theta }", + "type": "inline_equation" + }, + { + "bbox": [ + 138, + 224, + 268, + 240 + ], + "score": 1.0, + "content": "is the MLE, the first-order term", + "type": "text" + }, + { + "bbox": [ + 268, + 224, + 368, + 239 + ], + "score": 0.93, + "content": "\\nabla _ { \\eta } ^ { T } g ( \\hat { \\lambda } , \\hat { \\eta } ) ( \\alpha \\hat { \\eta } - \\hat { \\eta } ) = 0", + "type": "inline_equation" + }, + { + "bbox": [ + 368, + 224, + 506, + 240 + ], + "score": 1.0, + "content": ". The Hessian in the second-order", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 106, + 236, + 312, + 250 + ], + "spans": [ + { + "bbox": [ + 106, + 236, + 312, + 250 + ], + "score": 1.0, + "content": "term is just Eq.(8). Thus, from Lemma 16 we have", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 7.5, + "bbox_fs": [ + 105, + 224, + 506, + 250 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 161, + 253, + 448, + 311 + ], + "lines": [ + { + "bbox": [ + 161, + 253, + 448, + 311 + ], + "spans": [ + { + "bbox": [ + 161, + 253, + 448, + 311 + ], + "score": 0.94, + "content": "\\begin{array} { r c l } { g ( \\hat { \\lambda } , \\alpha \\hat { \\eta } ) } & { \\leq } & { g ( \\hat { \\lambda } , \\hat { \\eta } ) - ( 1 - \\alpha ) ^ { 2 } \\| \\hat { \\eta } \\| _ { 2 } ^ { 2 } 2 d k ( k - 1 ) ( b + 1 ) \\beta ^ { 2 } e ^ { - c \\alpha \\| \\hat { \\eta } \\| _ { 2 } } } \\\\ & { = } & { g ( \\hat { \\lambda } , \\hat { \\eta } ) - 2 d k ( k - 1 ) ( b + 1 ) \\beta ^ { 2 } \\left( \\| \\hat { \\eta } \\| _ { 2 } - \\frac { \\delta } { 4 \\beta } \\right) ^ { 2 } e ^ { - c \\delta / 4 \\beta } } \\\\ & { = } & { g ( \\hat { \\lambda } , \\hat { \\eta } ) - c _ { 1 } \\beta ^ { 2 } \\left( \\| \\hat { \\eta } \\| _ { 2 } - \\frac { \\delta } { 4 \\beta } \\right) ^ { 2 } e ^ { - c _ { 2 } \\delta / 4 \\beta } } \\end{array}", + "type": "interline_equation", + "image_path": "7446ef4d5b46374b3ac77a196c29d54820bc06c3910e383a33e2426414183bab.jpg" + } + ] + } + ], + "index": 10, + "virtual_lines": [ + { + "bbox": [ + 161, + 253, + 448, + 272.3333333333333 + ], + "spans": [], + "index": 9 + }, + { + "bbox": [ + 161, + 272.3333333333333, + 448, + 291.66666666666663 + ], + "spans": [], + "index": 10 + }, + { + "bbox": [ + 161, + 291.66666666666663, + 448, + 310.99999999999994 + ], + "spans": [], + "index": 11 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 315, + 412, + 328 + ], + "lines": [ + { + "bbox": [ + 106, + 315, + 413, + 329 + ], + "spans": [ + { + "bbox": [ + 106, + 315, + 155, + 329 + ], + "score": 1.0, + "content": "with setting", + "type": "text" + }, + { + "bbox": [ + 156, + 316, + 254, + 328 + ], + "score": 0.92, + "content": "c 1 = 2 d k ( k - 1 ) ( b + 1 )", + "type": "inline_equation" + }, + { + "bbox": [ + 254, + 315, + 272, + 329 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 273, + 316, + 301, + 326 + ], + "score": 0.9, + "content": "c 2 = c", + "type": "inline_equation" + }, + { + "bbox": [ + 301, + 315, + 413, + 329 + ], + "score": 1.0, + "content": ". Then the theorem follows.", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 12, + "bbox_fs": [ + 106, + 315, + 413, + 329 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 340, + 413, + 353 + ], + "lines": [ + { + "bbox": [ + 105, + 339, + 414, + 354 + ], + "spans": [ + { + "bbox": [ + 105, + 339, + 414, + 354 + ], + "score": 1.0, + "content": "C.3 PROOF OF THEOREM 6: UNIFORM BOUND OF MODEL ACCURACY", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 13, + "bbox_fs": [ + 105, + 339, + 414, + 354 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 360, + 273, + 374 + ], + "lines": [ + { + "bbox": [ + 105, + 358, + 273, + 375 + ], + "spans": [ + { + "bbox": [ + 105, + 358, + 218, + 375 + ], + "score": 1.0, + "content": "In the following, we denote", + "type": "text" + }, + { + "bbox": [ + 219, + 360, + 270, + 374 + ], + "score": 0.94, + "content": "\\tilde { \\theta } = \\{ \\hat { \\lambda } , \\alpha \\hat { \\eta } \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 270, + 358, + 273, + 375 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 14, + "bbox_fs": [ + 105, + 358, + 273, + 375 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 377, + 379, + 392 + ], + "lines": [ + { + "bbox": [ + 105, + 376, + 378, + 393 + ], + "spans": [ + { + "bbox": [ + 105, + 376, + 196, + 393 + ], + "score": 1.0, + "content": "Lemma 17. For each", + "type": "text" + }, + { + "bbox": [ + 197, + 379, + 223, + 390 + ], + "score": 0.82, + "content": "y \\in \\mathcal { V }", + "type": "inline_equation" + }, + { + "bbox": [ + 223, + 376, + 234, + 393 + ], + "score": 1.0, + "content": ", if", + "type": "text" + }, + { + "bbox": [ + 234, + 376, + 309, + 391 + ], + "score": 0.73, + "content": "p ( y | x , s ; \\hat { \\theta } ) \\geq 1 / k", + "type": "inline_equation" + }, + { + "bbox": [ + 310, + 376, + 332, + 393 + ], + "score": 1.0, + "content": ", then", + "type": "text" + }, + { + "bbox": [ + 333, + 378, + 378, + 391 + ], + "score": 0.76, + "content": "\\forall \\alpha \\in [ 0 , 1 ]", + "type": "inline_equation" + } + ], + "index": 15 + } + ], + "index": 15, + "bbox_fs": [ + 105, + 376, + 378, + 393 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 271, + 396, + 340, + 420 + ], + "lines": [ + { + "bbox": [ + 271, + 396, + 340, + 420 + ], + "spans": [ + { + "bbox": [ + 271, + 396, + 340, + 420 + ], + "score": 0.92, + "content": "p ( y | x , s ; \\tilde { \\theta } ) \\geq \\frac { 1 } { k }", + "type": "interline_equation", + "image_path": "d4cc2e37834af77134b4004e7066eb7a632fe278658e68150e90b34c710792ad.jpg" + } + ] + } + ], + "index": 16, + "virtual_lines": [ + { + "bbox": [ + 271, + 396, + 340, + 420 + ], + "spans": [], + "index": 16 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 430, + 366, + 442 + ], + "lines": [ + { + "bbox": [ + 105, + 428, + 366, + 444 + ], + "spans": [ + { + "bbox": [ + 105, + 428, + 366, + 444 + ], + "score": 1.0, + "content": "Proof. This lemma can be regarded as a corollary of Lemma 11.", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 17, + "bbox_fs": [ + 105, + 428, + 366, + 444 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 448, + 433, + 464 + ], + "lines": [ + { + "bbox": [ + 102, + 442, + 437, + 470 + ], + "spans": [ + { + "bbox": [ + 102, + 442, + 204, + 470 + ], + "score": 1.0, + "content": "Lemma 18. For a fixed", + "type": "text" + }, + { + "bbox": [ + 204, + 454, + 211, + 462 + ], + "score": 0.43, + "content": "x", + "type": "inline_equation" + }, + { + "bbox": [ + 211, + 442, + 230, + 470 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 230, + 455, + 235, + 462 + ], + "score": 0.53, + "content": "s", + "type": "inline_equation" + }, + { + "bbox": [ + 236, + 442, + 282, + 470 + ], + "score": 1.0, + "content": ", we denote", + "type": "text" + }, + { + "bbox": [ + 282, + 448, + 372, + 464 + ], + "score": 0.9, + "content": "e ^ { \\hat { \\eta } _ { y } ^ { T } \\mathbf { h } ^ { ( L - 1 ) } ( x , s ; \\hat { \\lambda } ) } = w _ { y }", + "type": "inline_equation" + }, + { + "bbox": [ + 372, + 442, + 437, + 470 + ], + "score": 1.0, + "content": ". Then we have", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 18, + "bbox_fs": [ + 102, + 442, + 437, + 470 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 198, + 469, + 413, + 512 + ], + "lines": [ + { + "bbox": [ + 198, + 469, + 413, + 512 + ], + "spans": [ + { + "bbox": [ + 198, + 469, + 413, + 512 + ], + "score": 0.93, + "content": "p ( y | x , s , \\tilde { \\theta } ) = \\frac { e ^ { \\alpha \\hat { \\eta } _ { y } ^ { T } \\mathbf { h } ^ { ( L - 1 ) } ( x , s ; \\hat { \\lambda } ) } } { \\displaystyle \\sum _ { y ^ { \\prime } \\in \\mathcal { Y } } e ^ { \\alpha \\hat { \\eta } _ { y ^ { \\prime } } ^ { T } \\mathbf { h } ^ { ( L - 1 ) } ( x , s ; \\hat { \\lambda } ) } } = \\frac { ( w _ { y } ) ^ { \\alpha } } { { \\displaystyle \\sum _ { y ^ { \\prime } \\in \\mathcal { Y } } ( w _ { y ^ { \\prime } } ) ^ { \\alpha } } }", + "type": "interline_equation", + "image_path": "f6ce135bb3a1e028c0cccdd8ac08e2aadd628f2a5361a0af9072e0f5516bdeee.jpg" + } + ] + } + ], + "index": 19.5, + "virtual_lines": [ + { + "bbox": [ + 198, + 469, + 413, + 490.5 + ], + "spans": [], + "index": 19 + }, + { + "bbox": [ + 198, + 490.5, + 413, + 512.0 + ], + "spans": [], + "index": 20 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 518, + 506, + 550 + ], + "lines": [ + { + "bbox": [ + 104, + 518, + 506, + 540 + ], + "spans": [ + { + "bbox": [ + 104, + 518, + 200, + 533 + ], + "score": 1.0, + "content": "Additionally, we denote", + "type": "text" + }, + { + "bbox": [ + 200, + 518, + 375, + 540 + ], + "score": 0.94, + "content": "g _ { s } ( \\alpha ) = \\sum _ { y ^ { \\prime } \\in \\mathcal { V } } p ( y ^ { \\prime } | x , s ; \\tilde { \\theta } ) \\log w _ { y ^ { \\prime } } - \\log w _ { y }", + "type": "inline_equation" + }, + { + "bbox": [ + 375, + 518, + 424, + 533 + ], + "score": 1.0, + "content": ". We assume", + "type": "text" + }, + { + "bbox": [ + 424, + 519, + 465, + 532 + ], + "score": 0.92, + "content": "g _ { s } ( 0 ) \\geq 0", + "type": "inline_equation" + }, + { + "bbox": [ + 466, + 518, + 506, + 533 + ], + "score": 1.0, + "content": ". Then we", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 537, + 159, + 552 + ], + "spans": [ + { + "bbox": [ + 105, + 537, + 127, + 552 + ], + "score": 1.0, + "content": "have", + "type": "text" + }, + { + "bbox": [ + 128, + 539, + 159, + 550 + ], + "score": 0.86, + "content": "\\forall \\alpha \\geq 0", + "type": "inline_equation" + } + ], + "index": 22 + } + ], + "index": 21.5, + "bbox_fs": [ + 104, + 518, + 506, + 552 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 283, + 549, + 327, + 563 + ], + "lines": [ + { + "bbox": [ + 283, + 549, + 327, + 563 + ], + "spans": [ + { + "bbox": [ + 283, + 549, + 327, + 563 + ], + "score": 0.86, + "content": "g _ { s } ( \\alpha ) \\geq 0", + "type": "interline_equation", + "image_path": "e1b7764794c1d31b3f88cf8d58b1b4a57145e05ed1c17cd3dd5a17235351f7bd.jpg" + } + ] + } + ], + "index": 23, + "virtual_lines": [ + { + "bbox": [ + 283, + 549, + 327, + 563 + ], + "spans": [], + "index": 23 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 574, + 133, + 586 + ], + "lines": [ + { + "bbox": [ + 104, + 572, + 135, + 589 + ], + "spans": [ + { + "bbox": [ + 104, + 572, + 135, + 589 + ], + "score": 1.0, + "content": "Proof.", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 24, + "bbox_fs": [ + 104, + 572, + 135, + 589 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 155, + 591, + 456, + 625 + ], + "lines": [ + { + "bbox": [ + 155, + 591, + 456, + 625 + ], + "spans": [ + { + "bbox": [ + 155, + 591, + 456, + 625 + ], + "score": 0.92, + "content": "\\frac { \\partial g _ { s } ( \\alpha ) } { \\partial \\alpha } = \\sum _ { y ^ { \\prime } \\in \\mathcal { Y } } \\log w _ { y ^ { \\prime } } \\frac { \\partial p ( y ^ { \\prime } | x , s ; \\tilde { \\theta } ) } { \\partial \\alpha } = \\mathrm { V a r } _ { Y } \\left[ \\log w _ { Y } | X - x , S = s \\right] \\geq 0", + "type": "interline_equation", + "image_path": "e92bd549530302fdf7293b3b725407d16a7ef52641fcfa72c225727d10ffe7b0.jpg" + } + ] + } + ], + "index": 26, + "virtual_lines": [ + { + "bbox": [ + 155, + 591, + 456, + 602.3333333333334 + ], + "spans": [], + "index": 25 + }, + { + "bbox": [ + 155, + 602.3333333333334, + 456, + 613.6666666666667 + ], + "spans": [], + "index": 26 + }, + { + "bbox": [ + 155, + 613.6666666666667, + 456, + 625.0000000000001 + ], + "spans": [], + "index": 27 + } + ] + }, + { + "type": "text", + "bbox": [ + 108, + 630, + 424, + 644 + ], + "lines": [ + { + "bbox": [ + 105, + 629, + 423, + 645 + ], + "spans": [ + { + "bbox": [ + 105, + 629, + 119, + 645 + ], + "score": 1.0, + "content": "So", + "type": "text" + }, + { + "bbox": [ + 120, + 630, + 144, + 642 + ], + "score": 0.91, + "content": "g _ { s } ( \\alpha )", + "type": "inline_equation" + }, + { + "bbox": [ + 144, + 629, + 245, + 645 + ], + "score": 1.0, + "content": "is non-decreasing. Since", + "type": "text" + }, + { + "bbox": [ + 245, + 630, + 286, + 642 + ], + "score": 0.92, + "content": "g _ { s } ( 0 ) \\geq 0", + "type": "inline_equation" + }, + { + "bbox": [ + 287, + 629, + 325, + 645 + ], + "score": 1.0, + "content": ", we have", + "type": "text" + }, + { + "bbox": [ + 326, + 630, + 368, + 642 + ], + "score": 0.93, + "content": "g _ { s } ( \\alpha ) \\geq 0", + "type": "inline_equation" + }, + { + "bbox": [ + 369, + 629, + 393, + 645 + ], + "score": 1.0, + "content": "when", + "type": "text" + }, + { + "bbox": [ + 393, + 631, + 419, + 641 + ], + "score": 0.89, + "content": "\\alpha \\geq 0", + "type": "inline_equation" + }, + { + "bbox": [ + 420, + 629, + 423, + 645 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 28, + "bbox_fs": [ + 105, + 629, + 423, + 645 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 653, + 448, + 667 + ], + "lines": [ + { + "bbox": [ + 105, + 653, + 448, + 668 + ], + "spans": [ + { + "bbox": [ + 105, + 653, + 327, + 668 + ], + "score": 1.0, + "content": "From above lemma, we have for each training instance", + "type": "text" + }, + { + "bbox": [ + 328, + 654, + 378, + 667 + ], + "score": 0.93, + "content": "( x _ { i } , y _ { i } ) \\in D", + "type": "inline_equation" + }, + { + "bbox": [ + 379, + 653, + 399, + 668 + ], + "score": 1.0, + "content": ", and", + "type": "text" + }, + { + "bbox": [ + 399, + 654, + 444, + 667 + ], + "score": 0.92, + "content": "\\forall \\alpha \\in [ 0 , 1 ]", + "type": "inline_equation" + }, + { + "bbox": [ + 444, + 653, + 448, + 668 + ], + "score": 1.0, + "content": ",", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 29, + "bbox_fs": [ + 105, + 653, + 448, + 668 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 219, + 672, + 392, + 693 + ], + "lines": [ + { + "bbox": [ + 219, + 672, + 392, + 693 + ], + "spans": [ + { + "bbox": [ + 219, + 672, + 392, + 693 + ], + "score": 0.93, + "content": "\\mathrm { E } _ { Y } \\left[ \\log p ( Y | x _ { i } , s ; \\tilde { \\theta } ) \\right] \\geq \\log p ( y _ { i } | x _ { i } , s ; \\tilde { \\theta } )", + "type": "interline_equation", + "image_path": "39d3a79ae9f6304dd119170d1dbfdde5d486c01a286dbb5eae6ddb4699b33c8f.jpg" + } + ] + } + ], + "index": 30, + "virtual_lines": [ + { + "bbox": [ + 219, + 672, + 392, + 693 + ], + "spans": [], + "index": 30 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 698, + 217, + 709 + ], + "lines": [ + { + "bbox": [ + 106, + 698, + 218, + 710 + ], + "spans": [ + { + "bbox": [ + 106, + 698, + 218, + 710 + ], + "score": 1.0, + "content": "For convenience, we define", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 31, + "bbox_fs": [ + 106, + 698, + 218, + 710 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 203, + 714, + 408, + 736 + ], + "lines": [ + { + "bbox": [ + 203, + 714, + 408, + 736 + ], + "spans": [ + { + "bbox": [ + 203, + 714, + 408, + 736 + ], + "score": 0.9, + "content": "m ( s , y ) = \\log p ( y | x , s ; \\tilde { \\theta } ) - \\mathrm { E } _ { Y } \\left[ \\log p ( Y | x , s ; \\tilde { \\theta } ) \\right]", + "type": "interline_equation", + "image_path": "4d7d3c4663efc65fbfdda1969d68e7354dfbfb206431e2b9eccce1b303e1d0fa.jpg" + } + ] + } + ], + "index": 32, + "virtual_lines": [ + { + "bbox": [ + 203, + 714, + 408, + 736 + ], + "spans": [], + "index": 32 + } + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 106, + 81, + 337, + 95 + ], + "lines": [ + { + "bbox": [ + 106, + 82, + 338, + 95 + ], + "spans": [ + { + "bbox": [ + 106, + 82, + 241, + 95 + ], + "score": 1.0, + "content": "Lemma 19. If y satisfies Lemma", + "type": "text" + }, + { + "bbox": [ + 241, + 83, + 253, + 93 + ], + "score": 0.6, + "content": "^ { 1 7 }", + "type": "inline_equation" + }, + { + "bbox": [ + 254, + 82, + 271, + 95 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 271, + 82, + 314, + 95 + ], + "score": 0.92, + "content": "g _ { s } ( \\alpha ) \\geq 0", + "type": "inline_equation" + }, + { + "bbox": [ + 314, + 82, + 338, + 95 + ], + "score": 1.0, + "content": ", then", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "interline_equation", + "bbox": [ + 249, + 100, + 361, + 115 + ], + "lines": [ + { + "bbox": [ + 249, + 100, + 361, + 115 + ], + "spans": [ + { + "bbox": [ + 249, + 100, + 361, + 115 + ], + "score": 0.9, + "content": "\\operatorname { V a r } _ { Y } [ m ( s , Y ) ] \\geq m ( s , y ) ^ { 2 }", + "type": "interline_equation", + "image_path": "048d7f26290bb0297b24ca5371fd210ccb1b05310eda30500492162aec6844d3.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 249, + 100, + 361, + 115 + ], + "spans": [], + "index": 1 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 126, + 192, + 138 + ], + "lines": [ + { + "bbox": [ + 105, + 124, + 192, + 140 + ], + "spans": [ + { + "bbox": [ + 105, + 124, + 192, + 140 + ], + "score": 1.0, + "content": "Proof. First we have", + "type": "text" + } + ], + "index": 2 + } + ], + "index": 2 + }, + { + "type": "interline_equation", + "bbox": [ + 161, + 143, + 450, + 164 + ], + "lines": [ + { + "bbox": [ + 161, + 143, + 450, + 164 + ], + "spans": [ + { + "bbox": [ + 161, + 143, + 450, + 164 + ], + "score": 0.91, + "content": "\\begin{array} { r } { m ( s , y ) = \\log p ( y | x , s ; \\tilde { \\theta } ) - \\log 1 / k - K L \\left( p ( \\cdot | x , s ; \\tilde { \\theta } ) | \\mathrm { U n i f } ( \\mathcal { V } ) \\right) \\leq 0 } \\end{array}", + "type": "interline_equation", + "image_path": "7227f25607da27c4ad3695e7189c09657460a58dccfbbe3c327aa16b468d9818.jpg" + } + ] + } + ], + "index": 3, + "virtual_lines": [ + { + "bbox": [ + 161, + 143, + 450, + 164 + ], + "spans": [], + "index": 3 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 169, + 155, + 181 + ], + "lines": [ + { + "bbox": [ + 105, + 167, + 155, + 182 + ], + "spans": [ + { + "bbox": [ + 105, + 167, + 155, + 182 + ], + "score": 1.0, + "content": "So we have", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 4 + }, + { + "type": "interline_equation", + "bbox": [ + 119, + 184, + 492, + 308 + ], + "lines": [ + { + "bbox": [ + 119, + 184, + 492, + 308 + ], + "spans": [ + { + "bbox": [ + 119, + 184, + 492, + 308 + ], + "score": 0.96, + "content": "\\begin{array} { r c l } { \\big ( \\mathrm { V a r } _ { Y } [ m ( s , Y ) ] \\big ) ^ { 1 / 2 } } & { = } & { \\sqrt { \\mathrm { E } _ { Y } \\left[ \\Big ( \\log p ( Y | x , s ; \\widetilde { \\theta } ) - \\mathrm { E } _ { Y } \\left[ \\log p ( Y | x , s ; \\widetilde { \\theta } ) \\right] \\Big ) ^ { 2 } \\right] } } \\\\ & { \\ge } & { \\mathrm { E } _ { Y } \\left[ \\Big | \\log p ( Y | x , s ; \\widetilde { \\theta } ) - \\mathrm { E } _ { Y } \\left[ \\log p ( Y | x , s ; \\widetilde { \\theta } ) \\right] \\Big | \\right] } \\\\ & { = } & { \\mathrm { E } _ { Y } \\left[ \\Big | K L \\left( p ( \\cdot | x , s ; \\widetilde { \\theta } ) | \\mathrm { U n i f } ( y ) \\right) + \\log 1 / k - \\log p ( Y | x , s ; \\widetilde { \\theta } ) \\Big | \\right] } \\\\ & { = } & { \\mathrm { E } _ { Y } \\left[ K L \\left( p ( \\cdot | x , s ; \\widetilde { \\theta } ) | \\mathrm { U n i f } ( y ) \\right) + \\Big | \\log 1 / k - \\log p ( Y | x , s ; \\widetilde { \\theta } ) \\Big | \\right] } \\\\ & { \\ge } & { K L \\left( p ( \\cdot | x , s ; \\widetilde { \\theta } ) | \\mathrm { U n i f } ( y ) \\right) + \\mathrm { E } _ { Y } \\left[ \\log p ( Y | x , s ; \\widetilde { \\theta } ) - \\log 1 / k \\right] } \\\\ & { = } & { 2 K L \\left( p ( \\cdot | x , s ; \\widetilde { \\theta } ) | \\mathrm { U n i f } ( y ) \\right) + \\mathrm { E } _ { Y } \\left[ \\log p ( Y | x , s ; \\widetilde { \\theta } ) - \\log 1 / k \\right] } \\\\ & { = } & { 2 K L \\left( p ( \\cdot | x , s ; \\widetilde { \\theta } ) | \\mathrm { U n i f } ( y ) \\right) } \\end{array}", + "type": "interline_equation", + "image_path": "0994c138afa288462d675d69c8054cfda78336493b85cfbd05bf23688e6aa3af.jpg" + } + ] + } + ], + "index": 6, + "virtual_lines": [ + { + "bbox": [ + 119, + 184, + 492, + 225.33333333333334 + ], + "spans": [], + "index": 5 + }, + { + "bbox": [ + 119, + 225.33333333333334, + 492, + 266.6666666666667 + ], + "spans": [], + "index": 6 + }, + { + "bbox": [ + 119, + 266.6666666666667, + 492, + 308.0 + ], + "spans": [], + "index": 7 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 313, + 423, + 332 + ], + "lines": [ + { + "bbox": [ + 103, + 310, + 427, + 334 + ], + "spans": [ + { + "bbox": [ + 103, + 310, + 119, + 334 + ], + "score": 1.0, + "content": "As", + "type": "text" + }, + { + "bbox": [ + 120, + 313, + 249, + 334 + ], + "score": 0.93, + "content": "K L \\left( p ( \\cdot | x , s ; \\tilde { \\theta } ) | \\mathrm { U n i f } ( y ) \\right) \\geq 0", + "type": "inline_equation" + }, + { + "bbox": [ + 249, + 310, + 267, + 334 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 267, + 315, + 371, + 330 + ], + "score": 0.91, + "content": "\\log p ( y | x , s ; \\tilde { \\theta } ) \\geq \\log 1 / k", + "type": "inline_equation" + }, + { + "bbox": [ + 371, + 310, + 427, + 334 + ], + "score": 1.0, + "content": ". So we have", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 8 + }, + { + "type": "interline_equation", + "bbox": [ + 111, + 338, + 505, + 360 + ], + "lines": [ + { + "bbox": [ + 111, + 338, + 505, + 360 + ], + "spans": [ + { + "bbox": [ + 111, + 338, + 505, + 360 + ], + "score": 0.86, + "content": "\\cdot K L \\left( p ( \\cdot | x , s ; \\tilde { \\theta } ) | \\mathrm { U n i f } ( y ) \\right) \\geq K L \\left( p ( \\cdot | x , s ; \\tilde { \\theta } ) | \\mathrm { U n i f } ( y ) \\right) + \\log 1 / k - \\log p ( y | x , s ; \\tilde { \\theta } ) = - m ( s , y )", + "type": "interline_equation", + "image_path": "15cb499486001036467273902f3214c34c30f2a1cdc7a554c71700e5aa76733e.jpg" + } + ] + } + ], + "index": 9, + "virtual_lines": [ + { + "bbox": [ + 111, + 338, + 505, + 360 + ], + "spans": [], + "index": 9 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 364, + 207, + 376 + ], + "lines": [ + { + "bbox": [ + 105, + 363, + 208, + 377 + ], + "spans": [ + { + "bbox": [ + 105, + 363, + 208, + 377 + ], + "score": 1.0, + "content": "Then the lemma follows.", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 10 + }, + { + "type": "text", + "bbox": [ + 106, + 388, + 485, + 401 + ], + "lines": [ + { + "bbox": [ + 105, + 388, + 485, + 403 + ], + "spans": [ + { + "bbox": [ + 105, + 388, + 364, + 403 + ], + "score": 1.0, + "content": "From Lemma 19 and Eq. (9), we have for each training instance", + "type": "text" + }, + { + "bbox": [ + 365, + 389, + 415, + 401 + ], + "score": 0.93, + "content": "( x _ { i } , y _ { i } ) \\in D", + "type": "inline_equation" + }, + { + "bbox": [ + 415, + 388, + 435, + 403 + ], + "score": 1.0, + "content": ", and", + "type": "text" + }, + { + "bbox": [ + 436, + 389, + 481, + 401 + ], + "score": 0.92, + "content": "\\forall \\alpha \\in [ 0 , 1 ]", + "type": "inline_equation" + }, + { + "bbox": [ + 481, + 388, + 485, + 403 + ], + "score": 1.0, + "content": ",", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 11 + }, + { + "type": "interline_equation", + "bbox": [ + 247, + 406, + 363, + 421 + ], + "lines": [ + { + "bbox": [ + 247, + 406, + 363, + 421 + ], + "spans": [ + { + "bbox": [ + 247, + 406, + 363, + 421 + ], + "score": 0.91, + "content": "\\operatorname { V a r } _ { Y } [ m ( s , Y ) ] \\geq m ( s , y _ { i } ) ^ { 2 }", + "type": "interline_equation", + "image_path": "303909a583a4b3abe3e8fe1d7788ef7f95418740ae3a1cb0c55583dcb1d06541.jpg" + } + ] + } + ], + "index": 12, + "virtual_lines": [ + { + "bbox": [ + 247, + 406, + 363, + 421 + ], + "spans": [], + "index": 12 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 426, + 423, + 439 + ], + "lines": [ + { + "bbox": [ + 106, + 425, + 424, + 440 + ], + "spans": [ + { + "bbox": [ + 106, + 425, + 267, + 440 + ], + "score": 1.0, + "content": "Lemma 20. For each training instance", + "type": "text" + }, + { + "bbox": [ + 267, + 426, + 318, + 439 + ], + "score": 0.92, + "content": "( x _ { i } , y _ { i } ) \\in D", + "type": "inline_equation" + }, + { + "bbox": [ + 318, + 425, + 339, + 440 + ], + "score": 1.0, + "content": ", and", + "type": "text" + }, + { + "bbox": [ + 339, + 426, + 384, + 439 + ], + "score": 0.9, + "content": "\\forall \\alpha \\in [ 0 , 1 ]", + "type": "inline_equation" + }, + { + "bbox": [ + 385, + 425, + 424, + 440 + ], + "score": 1.0, + "content": ", we have", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 13 + }, + { + "type": "interline_equation", + "bbox": [ + 151, + 443, + 459, + 460 + ], + "lines": [ + { + "bbox": [ + 151, + 443, + 459, + 460 + ], + "spans": [ + { + "bbox": [ + 151, + 443, + 459, + 460 + ], + "score": 0.89, + "content": "\\log p ( y _ { i } | x _ { i } ; \\{ \\hat { \\lambda } , \\alpha \\hat { \\eta } \\} ) \\ge ( 1 - \\alpha ) \\log p ( y _ { i } | x _ { i } ; \\{ \\hat { \\lambda } , 0 \\} ) + \\alpha \\log p ( y _ { i } | x _ { i } ; \\{ \\hat { \\lambda } , \\hat { \\eta } \\} )", + "type": "interline_equation", + "image_path": "31312a464d0947b6310478eb773e0b1e85dfd1f923c01606f67000b7ff625ff0.jpg" + } + ] + } + ], + "index": 14, + "virtual_lines": [ + { + "bbox": [ + 151, + 443, + 459, + 460 + ], + "spans": [], + "index": 14 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 471, + 178, + 483 + ], + "lines": [ + { + "bbox": [ + 105, + 470, + 179, + 484 + ], + "spans": [ + { + "bbox": [ + 105, + 470, + 179, + 484 + ], + "score": 1.0, + "content": "Proof. We define", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 15 + }, + { + "type": "interline_equation", + "bbox": [ + 135, + 487, + 476, + 504 + ], + "lines": [ + { + "bbox": [ + 135, + 487, + 476, + 504 + ], + "spans": [ + { + "bbox": [ + 135, + 487, + 476, + 504 + ], + "score": 0.88, + "content": "f ( \\alpha ) = \\log p ( y _ { i } | x _ { i } ; \\{ \\hat { \\lambda } , \\alpha \\hat { \\eta } \\} ) - ( 1 - \\alpha ) \\log p ( y _ { i } | x _ { i } ; \\{ \\hat { \\lambda } , 0 \\} ) - \\alpha \\log p ( y _ { i } | x _ { i } ; \\{ \\hat { \\lambda } , \\hat { \\eta } \\} )", + "type": "interline_equation", + "image_path": "e7750537e15cbb94b2b4fe2afafe9080382ab3e6791aa28ce54612256f152cfa.jpg" + } + ] + } + ], + "index": 16, + "virtual_lines": [ + { + "bbox": [ + 135, + 487, + 476, + 504 + ], + "spans": [], + "index": 16 + } + ] + }, + { + "type": "text", + "bbox": [ + 109, + 508, + 466, + 522 + ], + "lines": [ + { + "bbox": [ + 106, + 508, + 466, + 523 + ], + "spans": [ + { + "bbox": [ + 106, + 508, + 142, + 523 + ], + "score": 1.0, + "content": "Because", + "type": "text" + }, + { + "bbox": [ + 142, + 509, + 212, + 522 + ], + "score": 0.94, + "content": "f ( 0 ) = f ( 1 ) = 0", + "type": "inline_equation" + }, + { + "bbox": [ + 213, + 508, + 324, + 523 + ], + "score": 1.0, + "content": ", we only need to prove that", + "type": "text" + }, + { + "bbox": [ + 325, + 509, + 345, + 521 + ], + "score": 0.92, + "content": "f ( \\alpha )", + "type": "inline_equation" + }, + { + "bbox": [ + 346, + 508, + 403, + 523 + ], + "score": 1.0, + "content": "is concave on", + "type": "text" + }, + { + "bbox": [ + 404, + 509, + 424, + 521 + ], + "score": 0.25, + "content": "[ 0 , 1 ]", + "type": "inline_equation" + }, + { + "bbox": [ + 424, + 508, + 466, + 523 + ], + "score": 1.0, + "content": ". We have", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 17 + }, + { + "type": "interline_equation", + "bbox": [ + 174, + 526, + 437, + 542 + ], + "lines": [ + { + "bbox": [ + 174, + 526, + 437, + 542 + ], + "spans": [ + { + "bbox": [ + 174, + 526, + 437, + 542 + ], + "score": 0.91, + "content": "\\nabla ^ { 2 } f ( \\alpha ) = - \\mathrm { E } _ { S \\left. Y = y _ { i } \\right. } \\left[ \\mathrm { V a r } _ { Y } \\left[ m ( S , Y ) \\right] \\right] + \\mathrm { V a r } _ { S \\left. Y = y _ { i } \\right. } \\left[ m ( S , y _ { i } ) \\right]", + "type": "interline_equation", + "image_path": "a74ed9efe4939afe9a8966000b7b430533af6d5390fb6a0d0378f7197ebdac5d.jpg" + } + ] + } + ], + "index": 18, + "virtual_lines": [ + { + "bbox": [ + 174, + 526, + 437, + 542 + ], + "spans": [], + "index": 18 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 549, + 462, + 577 + ], + "lines": [ + { + "bbox": [ + 103, + 546, + 466, + 567 + ], + "spans": [ + { + "bbox": [ + 103, + 546, + 466, + 567 + ], + "score": 1.0, + "content": "where S|Y = yi is under the probability distribution p(s|Y = yi, xi; ˜θ) = p(yi|xi,S;θ˜)p(s)p(y |x ;θ˜)", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 564, + 204, + 578 + ], + "spans": [ + { + "bbox": [ + 105, + 564, + 204, + 578 + ], + "score": 1.0, + "content": "From Eq. (10), we have", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 19.5 + }, + { + "type": "interline_equation", + "bbox": [ + 152, + 581, + 459, + 597 + ], + "lines": [ + { + "bbox": [ + 152, + 581, + 459, + 597 + ], + "spans": [ + { + "bbox": [ + 152, + 581, + 459, + 597 + ], + "score": 0.88, + "content": "\\mathrm { E } _ { S | Y = y _ { i } } \\left[ \\operatorname { V a r } _ { Y } \\left[ m ( S , Y ) \\right] \\right] \\geq \\mathrm { E } _ { S | Y = y _ { i } } \\left[ m ( S , y _ { i } ) ^ { 2 } \\right] \\geq \\operatorname { V a r } _ { S | Y = y _ { i } } \\left[ m ( S , y _ { i } ) \\right]", + "type": "interline_equation", + "image_path": "d1af464146c492bc402682def612c0800730d275d4c7a26e1a209ef01c3c2e33.jpg" + } + ] + } + ], + "index": 21, + "virtual_lines": [ + { + "bbox": [ + 152, + 581, + 459, + 597 + ], + "spans": [], + "index": 21 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 602, + 292, + 615 + ], + "lines": [ + { + "bbox": [ + 106, + 601, + 294, + 617 + ], + "spans": [ + { + "bbox": [ + 106, + 601, + 155, + 617 + ], + "score": 1.0, + "content": "So we have", + "type": "text" + }, + { + "bbox": [ + 155, + 603, + 207, + 615 + ], + "score": 0.93, + "content": "\\nabla ^ { 2 } f ( \\alpha ) \\leq 0", + "type": "inline_equation" + }, + { + "bbox": [ + 207, + 601, + 294, + 617 + ], + "score": 1.0, + "content": ". The lemma follows.", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 22 + }, + { + "type": "text", + "bbox": [ + 105, + 627, + 505, + 651 + ], + "lines": [ + { + "bbox": [ + 105, + 627, + 506, + 641 + ], + "spans": [ + { + "bbox": [ + 105, + 627, + 506, + 641 + ], + "score": 1.0, + "content": "Now, we can prove Theorem 6 by using the same construction of an expectation-linearizing parameter", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 639, + 176, + 650 + ], + "spans": [ + { + "bbox": [ + 105, + 639, + 176, + 650 + ], + "score": 1.0, + "content": "as in Theorem 5.", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 23.5 + }, + { + "type": "title", + "bbox": [ + 106, + 662, + 192, + 674 + ], + "lines": [ + { + "bbox": [ + 105, + 661, + 192, + 676 + ], + "spans": [ + { + "bbox": [ + 105, + 661, + 192, + 676 + ], + "score": 1.0, + "content": "Proof of Theorem 6", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 25 + }, + { + "type": "text", + "bbox": [ + 106, + 684, + 505, + 713 + ], + "lines": [ + { + "bbox": [ + 102, + 680, + 509, + 707 + ], + "spans": [ + { + "bbox": [ + 102, + 680, + 254, + 707 + ], + "score": 1.0, + "content": "Proof. Consider the same parameter", + "type": "text" + }, + { + "bbox": [ + 255, + 684, + 306, + 698 + ], + "score": 0.94, + "content": "\\tilde { \\theta } = \\{ \\hat { \\lambda } , \\alpha \\hat { \\eta } \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 306, + 680, + 336, + 707 + ], + "score": 1.0, + "content": ", where", + "type": "text" + }, + { + "bbox": [ + 337, + 685, + 403, + 701 + ], + "score": 0.94, + "content": "\\begin{array} { r } { \\alpha = \\frac { \\delta } { 4 \\beta \\| \\hat { \\eta } \\| _ { 2 } } \\leq 1 } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 404, + 680, + 464, + 707 + ], + "score": 1.0, + "content": ". we know that", + "type": "text" + }, + { + "bbox": [ + 464, + 685, + 470, + 696 + ], + "score": 0.84, + "content": "\\tilde { \\theta }", + "type": "inline_equation" + }, + { + "bbox": [ + 470, + 680, + 509, + 707 + ], + "score": 1.0, + "content": "satisfies", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 107, + 698, + 190, + 716 + ], + "spans": [ + { + "bbox": [ + 107, + 700, + 160, + 714 + ], + "score": 0.94, + "content": "V ( D ; \\tilde { \\theta } ) \\le \\delta", + "type": "inline_equation" + }, + { + "bbox": [ + 160, + 698, + 190, + 716 + ], + "score": 1.0, + "content": ". Then,", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 26.5 + }, + { + "type": "interline_equation", + "bbox": [ + 212, + 712, + 398, + 736 + ], + "lines": [ + { + "bbox": [ + 212, + 712, + 398, + 736 + ], + "spans": [ + { + "bbox": [ + 212, + 712, + 398, + 736 + ], + "score": 0.93, + "content": "\\Delta _ { l } ( \\hat { \\theta } , \\hat { \\theta } _ { \\delta } ) \\leq \\Delta _ { l } ( \\hat { \\theta } , \\tilde { \\theta } ) = \\frac { 1 } { n } ( l ( D ; \\hat { \\theta } ) - l ( D ; \\tilde { \\theta } ) )", + "type": "interline_equation", + "image_path": "c1fcc0092b696e4da1a312f8b6458cf0d0eef8199b61893891850a8a867ca24f.jpg" + } + ] + } + ], + "index": 28, + "virtual_lines": [ + { + "bbox": [ + 212, + 712, + 398, + 736 + ], + "spans": [], + "index": 28 + } + ] + } + ], + "page_idx": 20, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 106, + 26, + 293, + 38 + ], + "lines": [ + { + "bbox": [ + 106, + 25, + 294, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 25, + 294, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2017", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 494, + 603, + 505, + 614 + ], + "lines": [ + { + "bbox": [ + 495, + 605, + 505, + 614 + ], + "spans": [ + { + "bbox": [ + 495, + 605, + 505, + 614 + ], + "score": 0.999, + "content": "□", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 494, + 365, + 505, + 375 + ], + "lines": [ + { + "bbox": [ + 495, + 366, + 505, + 377 + ], + "spans": [ + { + "bbox": [ + 495, + 366, + 505, + 377 + ], + "score": 0.996, + "content": "□", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 300, + 751, + 311, + 761 + ], + "lines": [ + { + "bbox": [ + 298, + 750, + 312, + 764 + ], + "spans": [ + { + "bbox": [ + 298, + 750, + 312, + 764 + ], + "score": 1.0, + "content": "21", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 106, + 81, + 337, + 95 + ], + "lines": [ + { + "bbox": [ + 106, + 82, + 338, + 95 + ], + "spans": [ + { + "bbox": [ + 106, + 82, + 241, + 95 + ], + "score": 1.0, + "content": "Lemma 19. If y satisfies Lemma", + "type": "text" + }, + { + "bbox": [ + 241, + 83, + 253, + 93 + ], + "score": 0.6, + "content": "^ { 1 7 }", + "type": "inline_equation" + }, + { + "bbox": [ + 254, + 82, + 271, + 95 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 271, + 82, + 314, + 95 + ], + "score": 0.92, + "content": "g _ { s } ( \\alpha ) \\geq 0", + "type": "inline_equation" + }, + { + "bbox": [ + 314, + 82, + 338, + 95 + ], + "score": 1.0, + "content": ", then", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0, + "bbox_fs": [ + 106, + 82, + 338, + 95 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 249, + 100, + 361, + 115 + ], + "lines": [ + { + "bbox": [ + 249, + 100, + 361, + 115 + ], + "spans": [ + { + "bbox": [ + 249, + 100, + 361, + 115 + ], + "score": 0.9, + "content": "\\operatorname { V a r } _ { Y } [ m ( s , Y ) ] \\geq m ( s , y ) ^ { 2 }", + "type": "interline_equation", + "image_path": "048d7f26290bb0297b24ca5371fd210ccb1b05310eda30500492162aec6844d3.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 249, + 100, + 361, + 115 + ], + "spans": [], + "index": 1 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 126, + 192, + 138 + ], + "lines": [ + { + "bbox": [ + 105, + 124, + 192, + 140 + ], + "spans": [ + { + "bbox": [ + 105, + 124, + 192, + 140 + ], + "score": 1.0, + "content": "Proof. First we have", + "type": "text" + } + ], + "index": 2 + } + ], + "index": 2, + "bbox_fs": [ + 105, + 124, + 192, + 140 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 161, + 143, + 450, + 164 + ], + "lines": [ + { + "bbox": [ + 161, + 143, + 450, + 164 + ], + "spans": [ + { + "bbox": [ + 161, + 143, + 450, + 164 + ], + "score": 0.91, + "content": "\\begin{array} { r } { m ( s , y ) = \\log p ( y | x , s ; \\tilde { \\theta } ) - \\log 1 / k - K L \\left( p ( \\cdot | x , s ; \\tilde { \\theta } ) | \\mathrm { U n i f } ( \\mathcal { V } ) \\right) \\leq 0 } \\end{array}", + "type": "interline_equation", + "image_path": "7227f25607da27c4ad3695e7189c09657460a58dccfbbe3c327aa16b468d9818.jpg" + } + ] + } + ], + "index": 3, + "virtual_lines": [ + { + "bbox": [ + 161, + 143, + 450, + 164 + ], + "spans": [], + "index": 3 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 169, + 155, + 181 + ], + "lines": [ + { + "bbox": [ + 105, + 167, + 155, + 182 + ], + "spans": [ + { + "bbox": [ + 105, + 167, + 155, + 182 + ], + "score": 1.0, + "content": "So we have", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 4, + "bbox_fs": [ + 105, + 167, + 155, + 182 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 119, + 184, + 492, + 308 + ], + "lines": [ + { + "bbox": [ + 119, + 184, + 492, + 308 + ], + "spans": [ + { + "bbox": [ + 119, + 184, + 492, + 308 + ], + "score": 0.96, + "content": "\\begin{array} { r c l } { \\big ( \\mathrm { V a r } _ { Y } [ m ( s , Y ) ] \\big ) ^ { 1 / 2 } } & { = } & { \\sqrt { \\mathrm { E } _ { Y } \\left[ \\Big ( \\log p ( Y | x , s ; \\widetilde { \\theta } ) - \\mathrm { E } _ { Y } \\left[ \\log p ( Y | x , s ; \\widetilde { \\theta } ) \\right] \\Big ) ^ { 2 } \\right] } } \\\\ & { \\ge } & { \\mathrm { E } _ { Y } \\left[ \\Big | \\log p ( Y | x , s ; \\widetilde { \\theta } ) - \\mathrm { E } _ { Y } \\left[ \\log p ( Y | x , s ; \\widetilde { \\theta } ) \\right] \\Big | \\right] } \\\\ & { = } & { \\mathrm { E } _ { Y } \\left[ \\Big | K L \\left( p ( \\cdot | x , s ; \\widetilde { \\theta } ) | \\mathrm { U n i f } ( y ) \\right) + \\log 1 / k - \\log p ( Y | x , s ; \\widetilde { \\theta } ) \\Big | \\right] } \\\\ & { = } & { \\mathrm { E } _ { Y } \\left[ K L \\left( p ( \\cdot | x , s ; \\widetilde { \\theta } ) | \\mathrm { U n i f } ( y ) \\right) + \\Big | \\log 1 / k - \\log p ( Y | x , s ; \\widetilde { \\theta } ) \\Big | \\right] } \\\\ & { \\ge } & { K L \\left( p ( \\cdot | x , s ; \\widetilde { \\theta } ) | \\mathrm { U n i f } ( y ) \\right) + \\mathrm { E } _ { Y } \\left[ \\log p ( Y | x , s ; \\widetilde { \\theta } ) - \\log 1 / k \\right] } \\\\ & { = } & { 2 K L \\left( p ( \\cdot | x , s ; \\widetilde { \\theta } ) | \\mathrm { U n i f } ( y ) \\right) + \\mathrm { E } _ { Y } \\left[ \\log p ( Y | x , s ; \\widetilde { \\theta } ) - \\log 1 / k \\right] } \\\\ & { = } & { 2 K L \\left( p ( \\cdot | x , s ; \\widetilde { \\theta } ) | \\mathrm { U n i f } ( y ) \\right) } \\end{array}", + "type": "interline_equation", + "image_path": "0994c138afa288462d675d69c8054cfda78336493b85cfbd05bf23688e6aa3af.jpg" + } + ] + } + ], + "index": 6, + "virtual_lines": [ + { + "bbox": [ + 119, + 184, + 492, + 225.33333333333334 + ], + "spans": [], + "index": 5 + }, + { + "bbox": [ + 119, + 225.33333333333334, + 492, + 266.6666666666667 + ], + "spans": [], + "index": 6 + }, + { + "bbox": [ + 119, + 266.6666666666667, + 492, + 308.0 + ], + "spans": [], + "index": 7 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 313, + 423, + 332 + ], + "lines": [ + { + "bbox": [ + 103, + 310, + 427, + 334 + ], + "spans": [ + { + "bbox": [ + 103, + 310, + 119, + 334 + ], + "score": 1.0, + "content": "As", + "type": "text" + }, + { + "bbox": [ + 120, + 313, + 249, + 334 + ], + "score": 0.93, + "content": "K L \\left( p ( \\cdot | x , s ; \\tilde { \\theta } ) | \\mathrm { U n i f } ( y ) \\right) \\geq 0", + "type": "inline_equation" + }, + { + "bbox": [ + 249, + 310, + 267, + 334 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 267, + 315, + 371, + 330 + ], + "score": 0.91, + "content": "\\log p ( y | x , s ; \\tilde { \\theta } ) \\geq \\log 1 / k", + "type": "inline_equation" + }, + { + "bbox": [ + 371, + 310, + 427, + 334 + ], + "score": 1.0, + "content": ". So we have", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 8, + "bbox_fs": [ + 103, + 310, + 427, + 334 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 111, + 338, + 505, + 360 + ], + "lines": [ + { + "bbox": [ + 111, + 338, + 505, + 360 + ], + "spans": [ + { + "bbox": [ + 111, + 338, + 505, + 360 + ], + "score": 0.86, + "content": "\\cdot K L \\left( p ( \\cdot | x , s ; \\tilde { \\theta } ) | \\mathrm { U n i f } ( y ) \\right) \\geq K L \\left( p ( \\cdot | x , s ; \\tilde { \\theta } ) | \\mathrm { U n i f } ( y ) \\right) + \\log 1 / k - \\log p ( y | x , s ; \\tilde { \\theta } ) = - m ( s , y )", + "type": "interline_equation", + "image_path": "15cb499486001036467273902f3214c34c30f2a1cdc7a554c71700e5aa76733e.jpg" + } + ] + } + ], + "index": 9, + "virtual_lines": [ + { + "bbox": [ + 111, + 338, + 505, + 360 + ], + "spans": [], + "index": 9 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 364, + 207, + 376 + ], + "lines": [ + { + "bbox": [ + 105, + 363, + 208, + 377 + ], + "spans": [ + { + "bbox": [ + 105, + 363, + 208, + 377 + ], + "score": 1.0, + "content": "Then the lemma follows.", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 10, + "bbox_fs": [ + 105, + 363, + 208, + 377 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 388, + 485, + 401 + ], + "lines": [ + { + "bbox": [ + 105, + 388, + 485, + 403 + ], + "spans": [ + { + "bbox": [ + 105, + 388, + 364, + 403 + ], + "score": 1.0, + "content": "From Lemma 19 and Eq. (9), we have for each training instance", + "type": "text" + }, + { + "bbox": [ + 365, + 389, + 415, + 401 + ], + "score": 0.93, + "content": "( x _ { i } , y _ { i } ) \\in D", + "type": "inline_equation" + }, + { + "bbox": [ + 415, + 388, + 435, + 403 + ], + "score": 1.0, + "content": ", and", + "type": "text" + }, + { + "bbox": [ + 436, + 389, + 481, + 401 + ], + "score": 0.92, + "content": "\\forall \\alpha \\in [ 0 , 1 ]", + "type": "inline_equation" + }, + { + "bbox": [ + 481, + 388, + 485, + 403 + ], + "score": 1.0, + "content": ",", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 11, + "bbox_fs": [ + 105, + 388, + 485, + 403 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 247, + 406, + 363, + 421 + ], + "lines": [ + { + "bbox": [ + 247, + 406, + 363, + 421 + ], + "spans": [ + { + "bbox": [ + 247, + 406, + 363, + 421 + ], + "score": 0.91, + "content": "\\operatorname { V a r } _ { Y } [ m ( s , Y ) ] \\geq m ( s , y _ { i } ) ^ { 2 }", + "type": "interline_equation", + "image_path": "303909a583a4b3abe3e8fe1d7788ef7f95418740ae3a1cb0c55583dcb1d06541.jpg" + } + ] + } + ], + "index": 12, + "virtual_lines": [ + { + "bbox": [ + 247, + 406, + 363, + 421 + ], + "spans": [], + "index": 12 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 426, + 423, + 439 + ], + "lines": [ + { + "bbox": [ + 106, + 425, + 424, + 440 + ], + "spans": [ + { + "bbox": [ + 106, + 425, + 267, + 440 + ], + "score": 1.0, + "content": "Lemma 20. For each training instance", + "type": "text" + }, + { + "bbox": [ + 267, + 426, + 318, + 439 + ], + "score": 0.92, + "content": "( x _ { i } , y _ { i } ) \\in D", + "type": "inline_equation" + }, + { + "bbox": [ + 318, + 425, + 339, + 440 + ], + "score": 1.0, + "content": ", and", + "type": "text" + }, + { + "bbox": [ + 339, + 426, + 384, + 439 + ], + "score": 0.9, + "content": "\\forall \\alpha \\in [ 0 , 1 ]", + "type": "inline_equation" + }, + { + "bbox": [ + 385, + 425, + 424, + 440 + ], + "score": 1.0, + "content": ", we have", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 13, + "bbox_fs": [ + 106, + 425, + 424, + 440 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 151, + 443, + 459, + 460 + ], + "lines": [ + { + "bbox": [ + 151, + 443, + 459, + 460 + ], + "spans": [ + { + "bbox": [ + 151, + 443, + 459, + 460 + ], + "score": 0.89, + "content": "\\log p ( y _ { i } | x _ { i } ; \\{ \\hat { \\lambda } , \\alpha \\hat { \\eta } \\} ) \\ge ( 1 - \\alpha ) \\log p ( y _ { i } | x _ { i } ; \\{ \\hat { \\lambda } , 0 \\} ) + \\alpha \\log p ( y _ { i } | x _ { i } ; \\{ \\hat { \\lambda } , \\hat { \\eta } \\} )", + "type": "interline_equation", + "image_path": "31312a464d0947b6310478eb773e0b1e85dfd1f923c01606f67000b7ff625ff0.jpg" + } + ] + } + ], + "index": 14, + "virtual_lines": [ + { + "bbox": [ + 151, + 443, + 459, + 460 + ], + "spans": [], + "index": 14 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 471, + 178, + 483 + ], + "lines": [ + { + "bbox": [ + 105, + 470, + 179, + 484 + ], + "spans": [ + { + "bbox": [ + 105, + 470, + 179, + 484 + ], + "score": 1.0, + "content": "Proof. We define", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 15, + "bbox_fs": [ + 105, + 470, + 179, + 484 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 135, + 487, + 476, + 504 + ], + "lines": [ + { + "bbox": [ + 135, + 487, + 476, + 504 + ], + "spans": [ + { + "bbox": [ + 135, + 487, + 476, + 504 + ], + "score": 0.88, + "content": "f ( \\alpha ) = \\log p ( y _ { i } | x _ { i } ; \\{ \\hat { \\lambda } , \\alpha \\hat { \\eta } \\} ) - ( 1 - \\alpha ) \\log p ( y _ { i } | x _ { i } ; \\{ \\hat { \\lambda } , 0 \\} ) - \\alpha \\log p ( y _ { i } | x _ { i } ; \\{ \\hat { \\lambda } , \\hat { \\eta } \\} )", + "type": "interline_equation", + "image_path": "e7750537e15cbb94b2b4fe2afafe9080382ab3e6791aa28ce54612256f152cfa.jpg" + } + ] + } + ], + "index": 16, + "virtual_lines": [ + { + "bbox": [ + 135, + 487, + 476, + 504 + ], + "spans": [], + "index": 16 + } + ] + }, + { + "type": "text", + "bbox": [ + 109, + 508, + 466, + 522 + ], + "lines": [ + { + "bbox": [ + 106, + 508, + 466, + 523 + ], + "spans": [ + { + "bbox": [ + 106, + 508, + 142, + 523 + ], + "score": 1.0, + "content": "Because", + "type": "text" + }, + { + "bbox": [ + 142, + 509, + 212, + 522 + ], + "score": 0.94, + "content": "f ( 0 ) = f ( 1 ) = 0", + "type": "inline_equation" + }, + { + "bbox": [ + 213, + 508, + 324, + 523 + ], + "score": 1.0, + "content": ", we only need to prove that", + "type": "text" + }, + { + "bbox": [ + 325, + 509, + 345, + 521 + ], + "score": 0.92, + "content": "f ( \\alpha )", + "type": "inline_equation" + }, + { + "bbox": [ + 346, + 508, + 403, + 523 + ], + "score": 1.0, + "content": "is concave on", + "type": "text" + }, + { + "bbox": [ + 404, + 509, + 424, + 521 + ], + "score": 0.25, + "content": "[ 0 , 1 ]", + "type": "inline_equation" + }, + { + "bbox": [ + 424, + 508, + 466, + 523 + ], + "score": 1.0, + "content": ". We have", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 17, + "bbox_fs": [ + 106, + 508, + 466, + 523 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 174, + 526, + 437, + 542 + ], + "lines": [ + { + "bbox": [ + 174, + 526, + 437, + 542 + ], + "spans": [ + { + "bbox": [ + 174, + 526, + 437, + 542 + ], + "score": 0.91, + "content": "\\nabla ^ { 2 } f ( \\alpha ) = - \\mathrm { E } _ { S \\left. Y = y _ { i } \\right. } \\left[ \\mathrm { V a r } _ { Y } \\left[ m ( S , Y ) \\right] \\right] + \\mathrm { V a r } _ { S \\left. Y = y _ { i } \\right. } \\left[ m ( S , y _ { i } ) \\right]", + "type": "interline_equation", + "image_path": "a74ed9efe4939afe9a8966000b7b430533af6d5390fb6a0d0378f7197ebdac5d.jpg" + } + ] + } + ], + "index": 18, + "virtual_lines": [ + { + "bbox": [ + 174, + 526, + 437, + 542 + ], + "spans": [], + "index": 18 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 549, + 462, + 577 + ], + "lines": [ + { + "bbox": [ + 103, + 546, + 466, + 567 + ], + "spans": [ + { + "bbox": [ + 103, + 546, + 466, + 567 + ], + "score": 1.0, + "content": "where S|Y = yi is under the probability distribution p(s|Y = yi, xi; ˜θ) = p(yi|xi,S;θ˜)p(s)p(y |x ;θ˜)", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 564, + 204, + 578 + ], + "spans": [ + { + "bbox": [ + 105, + 564, + 204, + 578 + ], + "score": 1.0, + "content": "From Eq. (10), we have", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 19.5, + "bbox_fs": [ + 103, + 546, + 466, + 578 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 152, + 581, + 459, + 597 + ], + "lines": [ + { + "bbox": [ + 152, + 581, + 459, + 597 + ], + "spans": [ + { + "bbox": [ + 152, + 581, + 459, + 597 + ], + "score": 0.88, + "content": "\\mathrm { E } _ { S | Y = y _ { i } } \\left[ \\operatorname { V a r } _ { Y } \\left[ m ( S , Y ) \\right] \\right] \\geq \\mathrm { E } _ { S | Y = y _ { i } } \\left[ m ( S , y _ { i } ) ^ { 2 } \\right] \\geq \\operatorname { V a r } _ { S | Y = y _ { i } } \\left[ m ( S , y _ { i } ) \\right]", + "type": "interline_equation", + "image_path": "d1af464146c492bc402682def612c0800730d275d4c7a26e1a209ef01c3c2e33.jpg" + } + ] + } + ], + "index": 21, + "virtual_lines": [ + { + "bbox": [ + 152, + 581, + 459, + 597 + ], + "spans": [], + "index": 21 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 602, + 292, + 615 + ], + "lines": [ + { + "bbox": [ + 106, + 601, + 294, + 617 + ], + "spans": [ + { + "bbox": [ + 106, + 601, + 155, + 617 + ], + "score": 1.0, + "content": "So we have", + "type": "text" + }, + { + "bbox": [ + 155, + 603, + 207, + 615 + ], + "score": 0.93, + "content": "\\nabla ^ { 2 } f ( \\alpha ) \\leq 0", + "type": "inline_equation" + }, + { + "bbox": [ + 207, + 601, + 294, + 617 + ], + "score": 1.0, + "content": ". The lemma follows.", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 22, + "bbox_fs": [ + 106, + 601, + 294, + 617 + ] + }, + { + "type": "text", + "bbox": [ + 105, + 627, + 505, + 651 + ], + "lines": [ + { + "bbox": [ + 105, + 627, + 506, + 641 + ], + "spans": [ + { + "bbox": [ + 105, + 627, + 506, + 641 + ], + "score": 1.0, + "content": "Now, we can prove Theorem 6 by using the same construction of an expectation-linearizing parameter", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 639, + 176, + 650 + ], + "spans": [ + { + "bbox": [ + 105, + 639, + 176, + 650 + ], + "score": 1.0, + "content": "as in Theorem 5.", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 23.5, + "bbox_fs": [ + 105, + 627, + 506, + 650 + ] + }, + { + "type": "title", + "bbox": [ + 106, + 662, + 192, + 674 + ], + "lines": [ + { + "bbox": [ + 105, + 661, + 192, + 676 + ], + "spans": [ + { + "bbox": [ + 105, + 661, + 192, + 676 + ], + "score": 1.0, + "content": "Proof of Theorem 6", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 25 + }, + { + "type": "text", + "bbox": [ + 106, + 684, + 505, + 713 + ], + "lines": [ + { + "bbox": [ + 102, + 680, + 509, + 707 + ], + "spans": [ + { + "bbox": [ + 102, + 680, + 254, + 707 + ], + "score": 1.0, + "content": "Proof. Consider the same parameter", + "type": "text" + }, + { + "bbox": [ + 255, + 684, + 306, + 698 + ], + "score": 0.94, + "content": "\\tilde { \\theta } = \\{ \\hat { \\lambda } , \\alpha \\hat { \\eta } \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 306, + 680, + 336, + 707 + ], + "score": 1.0, + "content": ", where", + "type": "text" + }, + { + "bbox": [ + 337, + 685, + 403, + 701 + ], + "score": 0.94, + "content": "\\begin{array} { r } { \\alpha = \\frac { \\delta } { 4 \\beta \\| \\hat { \\eta } \\| _ { 2 } } \\leq 1 } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 404, + 680, + 464, + 707 + ], + "score": 1.0, + "content": ". we know that", + "type": "text" + }, + { + "bbox": [ + 464, + 685, + 470, + 696 + ], + "score": 0.84, + "content": "\\tilde { \\theta }", + "type": "inline_equation" + }, + { + "bbox": [ + 470, + 680, + 509, + 707 + ], + "score": 1.0, + "content": "satisfies", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 107, + 698, + 190, + 716 + ], + "spans": [ + { + "bbox": [ + 107, + 700, + 160, + 714 + ], + "score": 0.94, + "content": "V ( D ; \\tilde { \\theta } ) \\le \\delta", + "type": "inline_equation" + }, + { + "bbox": [ + 160, + 698, + 190, + 716 + ], + "score": 1.0, + "content": ". Then,", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 26.5, + "bbox_fs": [ + 102, + 680, + 509, + 716 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 212, + 712, + 398, + 736 + ], + "lines": [ + { + "bbox": [ + 212, + 712, + 398, + 736 + ], + "spans": [ + { + "bbox": [ + 212, + 712, + 398, + 736 + ], + "score": 0.93, + "content": "\\Delta _ { l } ( \\hat { \\theta } , \\hat { \\theta } _ { \\delta } ) \\leq \\Delta _ { l } ( \\hat { \\theta } , \\tilde { \\theta } ) = \\frac { 1 } { n } ( l ( D ; \\hat { \\theta } ) - l ( D ; \\tilde { \\theta } ) )", + "type": "interline_equation", + "image_path": "c1fcc0092b696e4da1a312f8b6458cf0d0eef8199b61893891850a8a867ca24f.jpg" + } + ] + } + ], + "index": 28, + "virtual_lines": [ + { + "bbox": [ + 212, + 712, + 398, + 736 + ], + "spans": [], + "index": 28 + } + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 107, + 82, + 213, + 93 + ], + "lines": [ + { + "bbox": [ + 106, + 82, + 214, + 94 + ], + "spans": [ + { + "bbox": [ + 106, + 82, + 214, + 94 + ], + "score": 1.0, + "content": "From Lemma 20 we have:", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "interline_equation", + "bbox": [ + 174, + 97, + 437, + 113 + ], + "lines": [ + { + "bbox": [ + 174, + 97, + 437, + 113 + ], + "spans": [ + { + "bbox": [ + 174, + 97, + 437, + 113 + ], + "score": 0.86, + "content": "l ( D ; \\tilde { \\theta } ) = l ( D ; \\{ \\hat { \\lambda } , \\alpha \\hat { \\eta } \\} ) \\geq ( 1 - \\alpha ) l ( D ; \\{ \\hat { \\lambda } , 0 \\} ) + \\alpha l ( D ; \\{ \\hat { \\lambda } , \\hat { \\eta } \\} )", + "type": "interline_equation", + "image_path": "78e5c5ebdac47bd9fd7e9307dba99bad374a292c5518230532ac9f4293ec8f8c.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 174, + 97, + 437, + 113 + ], + "spans": [], + "index": 1 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 119, + 120, + 129 + ], + "lines": [ + { + "bbox": [ + 105, + 118, + 121, + 131 + ], + "spans": [ + { + "bbox": [ + 105, + 118, + 121, + 131 + ], + "score": 1.0, + "content": "So", + "type": "text" + } + ], + "index": 2 + } + ], + "index": 2 + }, + { + "type": "interline_equation", + "bbox": [ + 184, + 126, + 428, + 200 + ], + "lines": [ + { + "bbox": [ + 184, + 126, + 428, + 200 + ], + "spans": [ + { + "bbox": [ + 184, + 126, + 428, + 200 + ], + "score": 0.91, + "content": "\\begin{array} { r c l } { \\Delta _ { l } ( \\hat { \\theta } , \\hat { \\theta } _ { \\delta } ) } & { \\leq } & { ( 1 - \\alpha ) \\frac { 1 } { n } \\left( l ( D ; \\hat { \\theta } ) - l ( D ; \\{ \\hat { \\lambda } , 0 \\} ) \\right) } \\\\ & { = } & { ( 1 - \\alpha ) \\frac { 1 } { n } \\displaystyle \\sum _ { i = 1 } ^ { n } \\log p ( y _ { i } | x _ { i } ; \\hat { \\theta } ) - \\log \\mathrm { U n i f } ( \\mathcal { V } ) } \\\\ & { \\asymp } & { ( 1 - \\alpha ) \\mathrm { E } \\left[ \\mathrm { K L } \\left( p ( \\cdot | X ; \\theta ) \\| \\mathrm { U n i f } ( \\mathcal { V } ) \\right) \\right] } \\\\ & { \\le } & { \\left( 1 - \\frac { \\delta } { 4 \\beta \\| \\hat { \\eta } \\| _ { 2 } } \\right) \\mathrm { E } \\left[ \\mathrm { K L } \\left( p ( \\cdot | X ; \\theta ) \\| \\mathrm { U n i f } ( \\mathcal { V } ) \\right) \\right] } \\end{array}", + "type": "interline_equation", + "image_path": "54c9a655a4774c8cf5e2e7e9cdbce408317245e22aa1e063e249116a0ee9e06e.jpg" + } + ] + } + ], + "index": 5, + "virtual_lines": [ + { + "bbox": [ + 184, + 126, + 428, + 140.8 + ], + "spans": [], + "index": 3 + }, + { + "bbox": [ + 184, + 140.8, + 428, + 155.60000000000002 + ], + "spans": [], + "index": 4 + }, + { + "bbox": [ + 184, + 155.60000000000002, + 428, + 170.40000000000003 + ], + "spans": [], + "index": 5 + }, + { + "bbox": [ + 184, + 170.40000000000003, + 428, + 185.20000000000005 + ], + "spans": [], + "index": 6 + }, + { + "bbox": [ + 184, + 185.20000000000005, + 428, + 200.00000000000006 + ], + "spans": [], + "index": 7 + } + ] + }, + { + "type": "title", + "bbox": [ + 106, + 228, + 349, + 241 + ], + "lines": [ + { + "bbox": [ + 105, + 228, + 350, + 243 + ], + "spans": [ + { + "bbox": [ + 105, + 228, + 350, + 243 + ], + "score": 1.0, + "content": "D DETAILED DESCRIPTION OF EXPERIMENTS", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 8 + }, + { + "type": "text", + "bbox": [ + 107, + 253, + 293, + 265 + ], + "lines": [ + { + "bbox": [ + 106, + 253, + 294, + 266 + ], + "spans": [ + { + "bbox": [ + 106, + 253, + 294, + 266 + ], + "score": 1.0, + "content": "D.1 NEURAL NETWORK ARCHITECTURES", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 9 + }, + { + "type": "text", + "bbox": [ + 107, + 274, + 505, + 307 + ], + "lines": [ + { + "bbox": [ + 105, + 273, + 505, + 287 + ], + "spans": [ + { + "bbox": [ + 105, + 273, + 505, + 287 + ], + "score": 1.0, + "content": "MNIST For MNIST, we train 6 different fully-connected (dense) neural networks with 2 or 3 layers", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 284, + 504, + 298 + ], + "spans": [ + { + "bbox": [ + 105, + 284, + 337, + 298 + ], + "score": 1.0, + "content": "(see Table 1). For all architectures, we used dropout rate", + "type": "text" + }, + { + "bbox": [ + 337, + 286, + 370, + 297 + ], + "score": 0.91, + "content": "p = 0 . 5", + "type": "inline_equation" + }, + { + "bbox": [ + 370, + 284, + 471, + 298 + ], + "score": 1.0, + "content": "for all hidden layers and", + "type": "text" + }, + { + "bbox": [ + 472, + 286, + 504, + 297 + ], + "score": 0.9, + "content": "p = 0 . 2", + "type": "inline_equation" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 296, + 182, + 309 + ], + "spans": [ + { + "bbox": [ + 105, + 296, + 182, + 309 + ], + "score": 1.0, + "content": "for the input layer.", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 11 + }, + { + "type": "text", + "bbox": [ + 107, + 319, + 505, + 397 + ], + "lines": [ + { + "bbox": [ + 106, + 320, + 506, + 332 + ], + "spans": [ + { + "bbox": [ + 106, + 320, + 506, + 332 + ], + "score": 1.0, + "content": "CIFAR-10 and CIFAR-100 For the two CIFAR datasets, we used the same architecture in Srivas-", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 106, + 331, + 505, + 343 + ], + "spans": [ + { + "bbox": [ + 106, + 331, + 505, + 343 + ], + "score": 1.0, + "content": "tava et al. (2014) — three convolutional layers followed by two fully-connected hidden layers. The", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 341, + 506, + 355 + ], + "spans": [ + { + "bbox": [ + 105, + 341, + 363, + 355 + ], + "score": 1.0, + "content": "convolutional layers have 96, 128, 265 filters respectively, with a", + "type": "text" + }, + { + "bbox": [ + 364, + 342, + 388, + 352 + ], + "score": 0.89, + "content": "5 \\times 5", + "type": "inline_equation" + }, + { + "bbox": [ + 388, + 341, + 506, + 355 + ], + "score": 1.0, + "content": "receptive field applied with a", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 352, + 505, + 366 + ], + "spans": [ + { + "bbox": [ + 105, + 352, + 412, + 366 + ], + "score": 1.0, + "content": "stride of 1. Each convolutional layer is followed by a max pooling layer pools", + "type": "text" + }, + { + "bbox": [ + 413, + 353, + 435, + 363 + ], + "score": 0.9, + "content": "3 \\times 3", + "type": "inline_equation" + }, + { + "bbox": [ + 436, + 352, + 505, + 366 + ], + "score": 1.0, + "content": "regions at strides", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 106, + 364, + 504, + 375 + ], + "spans": [ + { + "bbox": [ + 106, + 364, + 504, + 375 + ], + "score": 1.0, + "content": "of 2. The fully-connected layers have 2048 units each. All units use the rectified linear activation", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 375, + 504, + 388 + ], + "spans": [ + { + "bbox": [ + 105, + 375, + 369, + 388 + ], + "score": 1.0, + "content": "function. Dropout was applied to all the layers with dropout rate", + "type": "text" + }, + { + "bbox": [ + 369, + 375, + 504, + 387 + ], + "score": 0.88, + "content": "p = ( 0 . 1 , 0 . 2 5 , 0 . 2 5 , 0 . 5 , 0 . 5 , 0 . 5 )", + "type": "inline_equation" + } + ], + "index": 18 + }, + { + "bbox": [ + 106, + 386, + 429, + 398 + ], + "spans": [ + { + "bbox": [ + 106, + 386, + 429, + 398 + ], + "score": 1.0, + "content": "for the layers going from input to convolutional layers to fully-connected layers.", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 16 + }, + { + "type": "title", + "bbox": [ + 108, + 411, + 264, + 422 + ], + "lines": [ + { + "bbox": [ + 106, + 410, + 265, + 423 + ], + "spans": [ + { + "bbox": [ + 106, + 410, + 265, + 423 + ], + "score": 1.0, + "content": "D.2 NEURAL NETWORK TRAINING", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 20 + }, + { + "type": "text", + "bbox": [ + 107, + 431, + 505, + 486 + ], + "lines": [ + { + "bbox": [ + 106, + 431, + 505, + 443 + ], + "spans": [ + { + "bbox": [ + 106, + 431, + 505, + 443 + ], + "score": 1.0, + "content": "Neural network training in all the experiments is performed with mini-batch stochastic gradient", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 442, + 505, + 454 + ], + "spans": [ + { + "bbox": [ + 105, + 442, + 394, + 454 + ], + "score": 1.0, + "content": "descent (SGD) with momentum. We choose an initial learning rate of", + "type": "text" + }, + { + "bbox": [ + 394, + 443, + 405, + 453 + ], + "score": 0.86, + "content": "\\eta _ { 0 }", + "type": "inline_equation" + }, + { + "bbox": [ + 405, + 442, + 505, + 454 + ], + "score": 1.0, + "content": ", and the learning rate is", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 452, + 506, + 467 + ], + "spans": [ + { + "bbox": [ + 105, + 452, + 252, + 467 + ], + "score": 1.0, + "content": "updated on each epoch of training as", + "type": "text" + }, + { + "bbox": [ + 253, + 453, + 323, + 465 + ], + "score": 0.93, + "content": "\\eta _ { t } = \\eta _ { 0 } / ( 1 + \\rho t )", + "type": "inline_equation" + }, + { + "bbox": [ + 323, + 452, + 353, + 467 + ], + "score": 1.0, + "content": ", where", + "type": "text" + }, + { + "bbox": [ + 353, + 455, + 360, + 465 + ], + "score": 0.82, + "content": "\\rho", + "type": "inline_equation" + }, + { + "bbox": [ + 360, + 452, + 443, + 467 + ], + "score": 1.0, + "content": "is the decay rate and", + "type": "text" + }, + { + "bbox": [ + 443, + 454, + 448, + 463 + ], + "score": 0.72, + "content": "t", + "type": "inline_equation" + }, + { + "bbox": [ + 449, + 452, + 506, + 467 + ], + "score": 1.0, + "content": "is the number", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 462, + 506, + 478 + ], + "spans": [ + { + "bbox": [ + 105, + 462, + 506, + 478 + ], + "score": 1.0, + "content": "of epoch completed. We run each experiment with 2,000 epochs and choose the parameters achieving", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 106, + 475, + 267, + 487 + ], + "spans": [ + { + "bbox": [ + 106, + 475, + 267, + 487 + ], + "score": 1.0, + "content": "the best performance on validation sets.", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 23 + }, + { + "type": "text", + "bbox": [ + 107, + 492, + 505, + 569 + ], + "lines": [ + { + "bbox": [ + 105, + 491, + 505, + 504 + ], + "spans": [ + { + "bbox": [ + 105, + 491, + 505, + 504 + ], + "score": 1.0, + "content": "Table 3 summarizes the chosen hyper-parameters for all experiments. Most of the hyper-parameters", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 502, + 505, + 516 + ], + "spans": [ + { + "bbox": [ + 105, + 502, + 505, + 516 + ], + "score": 1.0, + "content": "are chosen from Srivastava et al. (2014). But for some experiments, we cannot reproduce the", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 514, + 505, + 526 + ], + "spans": [ + { + "bbox": [ + 105, + 514, + 505, + 526 + ], + "score": 1.0, + "content": "performance reported in Srivastava et al. (2014) (We guess one of the possible reasons is that we used", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 524, + 505, + 537 + ], + "spans": [ + { + "bbox": [ + 105, + 524, + 505, + 537 + ], + "score": 1.0, + "content": "different library for implementation.). For these experiments, we tune the hyper-parameters on the", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 534, + 506, + 549 + ], + "spans": [ + { + "bbox": [ + 105, + 534, + 506, + 549 + ], + "score": 1.0, + "content": "validation sets by random search. Due to time constrains it is infeasible to do a random search across", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 547, + 506, + 560 + ], + "spans": [ + { + "bbox": [ + 105, + 547, + 506, + 560 + ], + "score": 1.0, + "content": "the full hyper-parameter space. Thus, we try to use as many hyper-parameters reported in Srivastava", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 558, + 206, + 570 + ], + "spans": [ + { + "bbox": [ + 105, + 558, + 206, + 570 + ], + "score": 1.0, + "content": "et al. (2014) as possible.", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 29 + }, + { + "type": "title", + "bbox": [ + 107, + 582, + 348, + 594 + ], + "lines": [ + { + "bbox": [ + 106, + 582, + 348, + 595 + ], + "spans": [ + { + "bbox": [ + 106, + 582, + 340, + 595 + ], + "score": 1.0, + "content": "D.3 EFFECT OF EXPECTATION-LINEARIZATION RATE", + "type": "text" + }, + { + "bbox": [ + 340, + 583, + 348, + 592 + ], + "score": 0.31, + "content": "\\lambda", + "type": "inline_equation" + } + ], + "index": 33 + } + ], + "index": 33 + }, + { + "type": "text", + "bbox": [ + 107, + 603, + 505, + 649 + ], + "lines": [ + { + "bbox": [ + 106, + 603, + 505, + 615 + ], + "spans": [ + { + "bbox": [ + 106, + 603, + 399, + 615 + ], + "score": 1.0, + "content": "Table 4 illustrates the detailed results of the experiments on the effect of", + "type": "text" + }, + { + "bbox": [ + 400, + 604, + 407, + 613 + ], + "score": 0.7, + "content": "\\lambda", + "type": "inline_equation" + }, + { + "bbox": [ + 407, + 603, + 505, + 615 + ], + "score": 1.0, + "content": ". For MNIST, it lists the", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 614, + 506, + 626 + ], + "spans": [ + { + "bbox": [ + 105, + 614, + 209, + 626 + ], + "score": 1.0, + "content": "error rates under different", + "type": "text" + }, + { + "bbox": [ + 209, + 615, + 216, + 624 + ], + "score": 0.76, + "content": "\\lambda", + "type": "inline_equation" + }, + { + "bbox": [ + 217, + 614, + 506, + 626 + ], + "score": 1.0, + "content": "values for six different network architectures. For two datasets of CIFAR,", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 106, + 625, + 505, + 637 + ], + "spans": [ + { + "bbox": [ + 106, + 625, + 258, + 637 + ], + "score": 1.0, + "content": "it gives the error rates under different", + "type": "text" + }, + { + "bbox": [ + 259, + 626, + 266, + 635 + ], + "score": 0.77, + "content": "\\lambda", + "type": "inline_equation" + }, + { + "bbox": [ + 266, + 625, + 505, + 637 + ], + "score": 1.0, + "content": "values, among with the empirical expectation-linearization", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 104, + 636, + 137, + 649 + ], + "spans": [ + { + "bbox": [ + 104, + 636, + 124, + 649 + ], + "score": 1.0, + "content": "risk", + "type": "text" + }, + { + "bbox": [ + 124, + 636, + 133, + 648 + ], + "score": 0.78, + "content": "\\hat { \\Delta }", + "type": "inline_equation" + }, + { + "bbox": [ + 134, + 636, + 137, + 649 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 35.5 + } + ], + "page_idx": 21, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 26, + 293, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 25, + 294, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 25, + 294, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2017", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 300, + 751, + 311, + 760 + ], + "lines": [ + { + "bbox": [ + 299, + 750, + 312, + 764 + ], + "spans": [ + { + "bbox": [ + 299, + 750, + 312, + 764 + ], + "score": 1.0, + "content": "22", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 494, + 201, + 505, + 212 + ], + "lines": [ + { + "bbox": [ + 496, + 203, + 505, + 213 + ], + "spans": [ + { + "bbox": [ + 496, + 203, + 505, + 213 + ], + "score": 1.0, + "content": "□", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 107, + 82, + 213, + 93 + ], + "lines": [ + { + "bbox": [ + 106, + 82, + 214, + 94 + ], + "spans": [ + { + "bbox": [ + 106, + 82, + 214, + 94 + ], + "score": 1.0, + "content": "From Lemma 20 we have:", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0, + "bbox_fs": [ + 106, + 82, + 214, + 94 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 174, + 97, + 437, + 113 + ], + "lines": [ + { + "bbox": [ + 174, + 97, + 437, + 113 + ], + "spans": [ + { + "bbox": [ + 174, + 97, + 437, + 113 + ], + "score": 0.86, + "content": "l ( D ; \\tilde { \\theta } ) = l ( D ; \\{ \\hat { \\lambda } , \\alpha \\hat { \\eta } \\} ) \\geq ( 1 - \\alpha ) l ( D ; \\{ \\hat { \\lambda } , 0 \\} ) + \\alpha l ( D ; \\{ \\hat { \\lambda } , \\hat { \\eta } \\} )", + "type": "interline_equation", + "image_path": "78e5c5ebdac47bd9fd7e9307dba99bad374a292c5518230532ac9f4293ec8f8c.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 174, + 97, + 437, + 113 + ], + "spans": [], + "index": 1 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 119, + 120, + 129 + ], + "lines": [ + { + "bbox": [ + 105, + 118, + 121, + 131 + ], + "spans": [ + { + "bbox": [ + 105, + 118, + 121, + 131 + ], + "score": 1.0, + "content": "So", + "type": "text" + } + ], + "index": 2 + } + ], + "index": 2, + "bbox_fs": [ + 105, + 118, + 121, + 131 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 184, + 126, + 428, + 200 + ], + "lines": [ + { + "bbox": [ + 184, + 126, + 428, + 200 + ], + "spans": [ + { + "bbox": [ + 184, + 126, + 428, + 200 + ], + "score": 0.91, + "content": "\\begin{array} { r c l } { \\Delta _ { l } ( \\hat { \\theta } , \\hat { \\theta } _ { \\delta } ) } & { \\leq } & { ( 1 - \\alpha ) \\frac { 1 } { n } \\left( l ( D ; \\hat { \\theta } ) - l ( D ; \\{ \\hat { \\lambda } , 0 \\} ) \\right) } \\\\ & { = } & { ( 1 - \\alpha ) \\frac { 1 } { n } \\displaystyle \\sum _ { i = 1 } ^ { n } \\log p ( y _ { i } | x _ { i } ; \\hat { \\theta } ) - \\log \\mathrm { U n i f } ( \\mathcal { V } ) } \\\\ & { \\asymp } & { ( 1 - \\alpha ) \\mathrm { E } \\left[ \\mathrm { K L } \\left( p ( \\cdot | X ; \\theta ) \\| \\mathrm { U n i f } ( \\mathcal { V } ) \\right) \\right] } \\\\ & { \\le } & { \\left( 1 - \\frac { \\delta } { 4 \\beta \\| \\hat { \\eta } \\| _ { 2 } } \\right) \\mathrm { E } \\left[ \\mathrm { K L } \\left( p ( \\cdot | X ; \\theta ) \\| \\mathrm { U n i f } ( \\mathcal { V } ) \\right) \\right] } \\end{array}", + "type": "interline_equation", + "image_path": "54c9a655a4774c8cf5e2e7e9cdbce408317245e22aa1e063e249116a0ee9e06e.jpg" + } + ] + } + ], + "index": 5, + "virtual_lines": [ + { + "bbox": [ + 184, + 126, + 428, + 140.8 + ], + "spans": [], + "index": 3 + }, + { + "bbox": [ + 184, + 140.8, + 428, + 155.60000000000002 + ], + "spans": [], + "index": 4 + }, + { + "bbox": [ + 184, + 155.60000000000002, + 428, + 170.40000000000003 + ], + "spans": [], + "index": 5 + }, + { + "bbox": [ + 184, + 170.40000000000003, + 428, + 185.20000000000005 + ], + "spans": [], + "index": 6 + }, + { + "bbox": [ + 184, + 185.20000000000005, + 428, + 200.00000000000006 + ], + "spans": [], + "index": 7 + } + ] + }, + { + "type": "title", + "bbox": [ + 106, + 228, + 349, + 241 + ], + "lines": [ + { + "bbox": [ + 105, + 228, + 350, + 243 + ], + "spans": [ + { + "bbox": [ + 105, + 228, + 350, + 243 + ], + "score": 1.0, + "content": "D DETAILED DESCRIPTION OF EXPERIMENTS", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 8 + }, + { + "type": "text", + "bbox": [ + 107, + 253, + 293, + 265 + ], + "lines": [ + { + "bbox": [ + 106, + 253, + 294, + 266 + ], + "spans": [ + { + "bbox": [ + 106, + 253, + 294, + 266 + ], + "score": 1.0, + "content": "D.1 NEURAL NETWORK ARCHITECTURES", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 9, + "bbox_fs": [ + 106, + 253, + 294, + 266 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 274, + 505, + 307 + ], + "lines": [ + { + "bbox": [ + 105, + 273, + 505, + 287 + ], + "spans": [ + { + "bbox": [ + 105, + 273, + 505, + 287 + ], + "score": 1.0, + "content": "MNIST For MNIST, we train 6 different fully-connected (dense) neural networks with 2 or 3 layers", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 284, + 504, + 298 + ], + "spans": [ + { + "bbox": [ + 105, + 284, + 337, + 298 + ], + "score": 1.0, + "content": "(see Table 1). For all architectures, we used dropout rate", + "type": "text" + }, + { + "bbox": [ + 337, + 286, + 370, + 297 + ], + "score": 0.91, + "content": "p = 0 . 5", + "type": "inline_equation" + }, + { + "bbox": [ + 370, + 284, + 471, + 298 + ], + "score": 1.0, + "content": "for all hidden layers and", + "type": "text" + }, + { + "bbox": [ + 472, + 286, + 504, + 297 + ], + "score": 0.9, + "content": "p = 0 . 2", + "type": "inline_equation" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 296, + 182, + 309 + ], + "spans": [ + { + "bbox": [ + 105, + 296, + 182, + 309 + ], + "score": 1.0, + "content": "for the input layer.", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 11, + "bbox_fs": [ + 105, + 273, + 505, + 309 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 319, + 505, + 397 + ], + "lines": [ + { + "bbox": [ + 106, + 320, + 506, + 332 + ], + "spans": [ + { + "bbox": [ + 106, + 320, + 506, + 332 + ], + "score": 1.0, + "content": "CIFAR-10 and CIFAR-100 For the two CIFAR datasets, we used the same architecture in Srivas-", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 106, + 331, + 505, + 343 + ], + "spans": [ + { + "bbox": [ + 106, + 331, + 505, + 343 + ], + "score": 1.0, + "content": "tava et al. (2014) — three convolutional layers followed by two fully-connected hidden layers. The", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 341, + 506, + 355 + ], + "spans": [ + { + "bbox": [ + 105, + 341, + 363, + 355 + ], + "score": 1.0, + "content": "convolutional layers have 96, 128, 265 filters respectively, with a", + "type": "text" + }, + { + "bbox": [ + 364, + 342, + 388, + 352 + ], + "score": 0.89, + "content": "5 \\times 5", + "type": "inline_equation" + }, + { + "bbox": [ + 388, + 341, + 506, + 355 + ], + "score": 1.0, + "content": "receptive field applied with a", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 352, + 505, + 366 + ], + "spans": [ + { + "bbox": [ + 105, + 352, + 412, + 366 + ], + "score": 1.0, + "content": "stride of 1. Each convolutional layer is followed by a max pooling layer pools", + "type": "text" + }, + { + "bbox": [ + 413, + 353, + 435, + 363 + ], + "score": 0.9, + "content": "3 \\times 3", + "type": "inline_equation" + }, + { + "bbox": [ + 436, + 352, + 505, + 366 + ], + "score": 1.0, + "content": "regions at strides", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 106, + 364, + 504, + 375 + ], + "spans": [ + { + "bbox": [ + 106, + 364, + 504, + 375 + ], + "score": 1.0, + "content": "of 2. The fully-connected layers have 2048 units each. All units use the rectified linear activation", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 375, + 504, + 388 + ], + "spans": [ + { + "bbox": [ + 105, + 375, + 369, + 388 + ], + "score": 1.0, + "content": "function. Dropout was applied to all the layers with dropout rate", + "type": "text" + }, + { + "bbox": [ + 369, + 375, + 504, + 387 + ], + "score": 0.88, + "content": "p = ( 0 . 1 , 0 . 2 5 , 0 . 2 5 , 0 . 5 , 0 . 5 , 0 . 5 )", + "type": "inline_equation" + } + ], + "index": 18 + }, + { + "bbox": [ + 106, + 386, + 429, + 398 + ], + "spans": [ + { + "bbox": [ + 106, + 386, + 429, + 398 + ], + "score": 1.0, + "content": "for the layers going from input to convolutional layers to fully-connected layers.", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 16, + "bbox_fs": [ + 105, + 320, + 506, + 398 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 411, + 264, + 422 + ], + "lines": [ + { + "bbox": [ + 106, + 410, + 265, + 423 + ], + "spans": [ + { + "bbox": [ + 106, + 410, + 265, + 423 + ], + "score": 1.0, + "content": "D.2 NEURAL NETWORK TRAINING", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 20 + }, + { + "type": "text", + "bbox": [ + 107, + 431, + 505, + 486 + ], + "lines": [ + { + "bbox": [ + 106, + 431, + 505, + 443 + ], + "spans": [ + { + "bbox": [ + 106, + 431, + 505, + 443 + ], + "score": 1.0, + "content": "Neural network training in all the experiments is performed with mini-batch stochastic gradient", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 442, + 505, + 454 + ], + "spans": [ + { + "bbox": [ + 105, + 442, + 394, + 454 + ], + "score": 1.0, + "content": "descent (SGD) with momentum. We choose an initial learning rate of", + "type": "text" + }, + { + "bbox": [ + 394, + 443, + 405, + 453 + ], + "score": 0.86, + "content": "\\eta _ { 0 }", + "type": "inline_equation" + }, + { + "bbox": [ + 405, + 442, + 505, + 454 + ], + "score": 1.0, + "content": ", and the learning rate is", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 452, + 506, + 467 + ], + "spans": [ + { + "bbox": [ + 105, + 452, + 252, + 467 + ], + "score": 1.0, + "content": "updated on each epoch of training as", + "type": "text" + }, + { + "bbox": [ + 253, + 453, + 323, + 465 + ], + "score": 0.93, + "content": "\\eta _ { t } = \\eta _ { 0 } / ( 1 + \\rho t )", + "type": "inline_equation" + }, + { + "bbox": [ + 323, + 452, + 353, + 467 + ], + "score": 1.0, + "content": ", where", + "type": "text" + }, + { + "bbox": [ + 353, + 455, + 360, + 465 + ], + "score": 0.82, + "content": "\\rho", + "type": "inline_equation" + }, + { + "bbox": [ + 360, + 452, + 443, + 467 + ], + "score": 1.0, + "content": "is the decay rate and", + "type": "text" + }, + { + "bbox": [ + 443, + 454, + 448, + 463 + ], + "score": 0.72, + "content": "t", + "type": "inline_equation" + }, + { + "bbox": [ + 449, + 452, + 506, + 467 + ], + "score": 1.0, + "content": "is the number", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 462, + 506, + 478 + ], + "spans": [ + { + "bbox": [ + 105, + 462, + 506, + 478 + ], + "score": 1.0, + "content": "of epoch completed. We run each experiment with 2,000 epochs and choose the parameters achieving", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 106, + 475, + 267, + 487 + ], + "spans": [ + { + "bbox": [ + 106, + 475, + 267, + 487 + ], + "score": 1.0, + "content": "the best performance on validation sets.", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 23, + "bbox_fs": [ + 105, + 431, + 506, + 487 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 492, + 505, + 569 + ], + "lines": [ + { + "bbox": [ + 105, + 491, + 505, + 504 + ], + "spans": [ + { + "bbox": [ + 105, + 491, + 505, + 504 + ], + "score": 1.0, + "content": "Table 3 summarizes the chosen hyper-parameters for all experiments. Most of the hyper-parameters", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 502, + 505, + 516 + ], + "spans": [ + { + "bbox": [ + 105, + 502, + 505, + 516 + ], + "score": 1.0, + "content": "are chosen from Srivastava et al. (2014). But for some experiments, we cannot reproduce the", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 514, + 505, + 526 + ], + "spans": [ + { + "bbox": [ + 105, + 514, + 505, + 526 + ], + "score": 1.0, + "content": "performance reported in Srivastava et al. (2014) (We guess one of the possible reasons is that we used", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 524, + 505, + 537 + ], + "spans": [ + { + "bbox": [ + 105, + 524, + 505, + 537 + ], + "score": 1.0, + "content": "different library for implementation.). For these experiments, we tune the hyper-parameters on the", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 534, + 506, + 549 + ], + "spans": [ + { + "bbox": [ + 105, + 534, + 506, + 549 + ], + "score": 1.0, + "content": "validation sets by random search. Due to time constrains it is infeasible to do a random search across", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 547, + 506, + 560 + ], + "spans": [ + { + "bbox": [ + 105, + 547, + 506, + 560 + ], + "score": 1.0, + "content": "the full hyper-parameter space. Thus, we try to use as many hyper-parameters reported in Srivastava", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 558, + 206, + 570 + ], + "spans": [ + { + "bbox": [ + 105, + 558, + 206, + 570 + ], + "score": 1.0, + "content": "et al. (2014) as possible.", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 29, + "bbox_fs": [ + 105, + 491, + 506, + 570 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 582, + 348, + 594 + ], + "lines": [ + { + "bbox": [ + 106, + 582, + 348, + 595 + ], + "spans": [ + { + "bbox": [ + 106, + 582, + 340, + 595 + ], + "score": 1.0, + "content": "D.3 EFFECT OF EXPECTATION-LINEARIZATION RATE", + "type": "text" + }, + { + "bbox": [ + 340, + 583, + 348, + 592 + ], + "score": 0.31, + "content": "\\lambda", + "type": "inline_equation" + } + ], + "index": 33 + } + ], + "index": 33 + }, + { + "type": "text", + "bbox": [ + 107, + 603, + 505, + 649 + ], + "lines": [ + { + "bbox": [ + 106, + 603, + 505, + 615 + ], + "spans": [ + { + "bbox": [ + 106, + 603, + 399, + 615 + ], + "score": 1.0, + "content": "Table 4 illustrates the detailed results of the experiments on the effect of", + "type": "text" + }, + { + "bbox": [ + 400, + 604, + 407, + 613 + ], + "score": 0.7, + "content": "\\lambda", + "type": "inline_equation" + }, + { + "bbox": [ + 407, + 603, + 505, + 615 + ], + "score": 1.0, + "content": ". For MNIST, it lists the", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 614, + 506, + 626 + ], + "spans": [ + { + "bbox": [ + 105, + 614, + 209, + 626 + ], + "score": 1.0, + "content": "error rates under different", + "type": "text" + }, + { + "bbox": [ + 209, + 615, + 216, + 624 + ], + "score": 0.76, + "content": "\\lambda", + "type": "inline_equation" + }, + { + "bbox": [ + 217, + 614, + 506, + 626 + ], + "score": 1.0, + "content": "values for six different network architectures. For two datasets of CIFAR,", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 106, + 625, + 505, + 637 + ], + "spans": [ + { + "bbox": [ + 106, + 625, + 258, + 637 + ], + "score": 1.0, + "content": "it gives the error rates under different", + "type": "text" + }, + { + "bbox": [ + 259, + 626, + 266, + 635 + ], + "score": 0.77, + "content": "\\lambda", + "type": "inline_equation" + }, + { + "bbox": [ + 266, + 625, + 505, + 637 + ], + "score": 1.0, + "content": "values, among with the empirical expectation-linearization", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 104, + 636, + 137, + 649 + ], + "spans": [ + { + "bbox": [ + 104, + 636, + 124, + 649 + ], + "score": 1.0, + "content": "risk", + "type": "text" + }, + { + "bbox": [ + 124, + 636, + 133, + 648 + ], + "score": 0.78, + "content": "\\hat { \\Delta }", + "type": "inline_equation" + }, + { + "bbox": [ + 134, + 636, + 137, + 649 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 35.5, + "bbox_fs": [ + 104, + 603, + 506, + 649 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "table", + "bbox": [ + 145, + 166, + 466, + 345 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 211, + 146, + 399, + 158 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 210, + 145, + 400, + 159 + ], + "spans": [ + { + "bbox": [ + 210, + 145, + 400, + 159 + ], + "score": 1.0, + "content": "Table 3: Hyper-parameters for all experiments.", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "table_body", + "bbox": [ + 145, + 166, + 466, + 345 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 145, + 166, + 466, + 345 + ], + "spans": [ + { + "bbox": [ + 145, + 166, + 466, + 345 + ], + "score": 0.985, + "html": "
ExperimentHyper-parameter
MNISTbatch sizeinitial learning rate modecay rate pmomentummomentum typemax-norm constrain2000.10.0250.9standard3.5
CIFARbatch sizeinitial learning rate nofor conv layersinitial learning rate nofor dense layersdecay rate pmomentummomentum typemax-norm constrainL2-norm decay10 100
100 1000.001 0.0010.1 0.020.005 0.0050.95 0.95standard nesterov4.0 2.00.001 0.001
", + "type": "table", + "image_path": "6c78b624c51f63534652177067ceb2c4db23692e4159dbdbe5974922f4efd02e.jpg" + } + ] + } + ], + "index": 2, + "virtual_lines": [ + { + "bbox": [ + 145, + 166, + 466, + 225.66666666666666 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 145, + 225.66666666666666, + 466, + 285.3333333333333 + ], + "spans": [], + "index": 2 + }, + { + "bbox": [ + 145, + 285.3333333333333, + 466, + 345.0 + ], + "spans": [], + "index": 3 + } + ] + } + ], + "index": 1.0 + }, + { + "type": "table", + "bbox": [ + 106, + 503, + 525, + 665 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 186, + 482, + 424, + 494 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 186, + 482, + 424, + 495 + ], + "spans": [ + { + "bbox": [ + 186, + 482, + 414, + 495 + ], + "score": 1.0, + "content": "Table 4: Detailed results for experiments on the effect of", + "type": "text" + }, + { + "bbox": [ + 414, + 483, + 421, + 492 + ], + "score": 0.62, + "content": "\\lambda", + "type": "inline_equation" + }, + { + "bbox": [ + 421, + 482, + 424, + 495 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 4 + }, + { + "type": "table_body", + "bbox": [ + 106, + 503, + 525, + 665 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 106, + 503, + 525, + 665 + ], + "spans": [ + { + "bbox": [ + 106, + 503, + 525, + 665 + ], + "score": 0.985, + "html": "
Experiment
0.00.51.02.03.05.07.010.0
MNISTmodel 11.231.121.121.081.071.101.251.35
model 21.191.141.081.041.031.071.131.21
model 31.051.040.981.031.051.051.101.12
model 41.071.020.970.940.961.011.051.20
model 5 model 61.030.950.950.900.920.981.031.08
0.990.980.930.87 入0.960.981.051.10
error rate0.0 12.820.1 12.520.5 12.381.0 12.202.0 12.605.0 12.8410.0 13.10
CIFAR-10 CIFAR-100A error rate0.01390.01280.01040.00950.00890.00850.0077 38.01
A37.22 0.088136.75 0.071136.25 0.059037.01 0.052937.18 0.050037.58 0.04670.0411
", + "type": "table", + "image_path": "739cedb9dba2581f0f1664cf81469a684c0cafb4304dcc63d8a66cd25ad43c03.jpg" + } + ] + } + ], + "index": 6, + "virtual_lines": [ + { + "bbox": [ + 106, + 503, + 525, + 557.0 + ], + "spans": [], + "index": 5 + }, + { + "bbox": [ + 106, + 557.0, + 525, + 611.0 + ], + "spans": [], + "index": 6 + }, + { + "bbox": [ + 106, + 611.0, + 525, + 665.0 + ], + "spans": [], + "index": 7 + } + ] + } + ], + "index": 5.0 + } + ], + "page_idx": 22, + "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": [ + 298, + 750, + 313, + 764 + ], + "spans": [ + { + "bbox": [ + 298, + 750, + 313, + 764 + ], + "score": 1.0, + "content": "", + "type": "text", + "height": 14, + "width": 15 + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "table", + "bbox": [ + 145, + 166, + 466, + 345 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 211, + 146, + 399, + 158 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 210, + 145, + 400, + 159 + ], + "spans": [ + { + "bbox": [ + 210, + 145, + 400, + 159 + ], + "score": 1.0, + "content": "Table 3: Hyper-parameters for all experiments.", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "table_body", + "bbox": [ + 145, + 166, + 466, + 345 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 145, + 166, + 466, + 345 + ], + "spans": [ + { + "bbox": [ + 145, + 166, + 466, + 345 + ], + "score": 0.985, + "html": "
ExperimentHyper-parameter
MNISTbatch sizeinitial learning rate modecay rate pmomentummomentum typemax-norm constrain2000.10.0250.9standard3.5
CIFARbatch sizeinitial learning rate nofor conv layersinitial learning rate nofor dense layersdecay rate pmomentummomentum typemax-norm constrainL2-norm decay10 100
100 1000.001 0.0010.1 0.020.005 0.0050.95 0.95standard nesterov4.0 2.00.001 0.001
", + "type": "table", + "image_path": "6c78b624c51f63534652177067ceb2c4db23692e4159dbdbe5974922f4efd02e.jpg" + } + ] + } + ], + "index": 2, + "virtual_lines": [ + { + "bbox": [ + 145, + 166, + 466, + 225.66666666666666 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 145, + 225.66666666666666, + 466, + 285.3333333333333 + ], + "spans": [], + "index": 2 + }, + { + "bbox": [ + 145, + 285.3333333333333, + 466, + 345.0 + ], + "spans": [], + "index": 3 + } + ] + } + ], + "index": 1.0 + }, + { + "type": "table", + "bbox": [ + 106, + 503, + 525, + 665 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 186, + 482, + 424, + 494 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 186, + 482, + 424, + 495 + ], + "spans": [ + { + "bbox": [ + 186, + 482, + 414, + 495 + ], + "score": 1.0, + "content": "Table 4: Detailed results for experiments on the effect of", + "type": "text" + }, + { + "bbox": [ + 414, + 483, + 421, + 492 + ], + "score": 0.62, + "content": "\\lambda", + "type": "inline_equation" + }, + { + "bbox": [ + 421, + 482, + 424, + 495 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 4 + }, + { + "type": "table_body", + "bbox": [ + 106, + 503, + 525, + 665 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 106, + 503, + 525, + 665 + ], + "spans": [ + { + "bbox": [ + 106, + 503, + 525, + 665 + ], + "score": 0.985, + "html": "
Experiment
0.00.51.02.03.05.07.010.0
MNISTmodel 11.231.121.121.081.071.101.251.35
model 21.191.141.081.041.031.071.131.21
model 31.051.040.981.031.051.051.101.12
model 41.071.020.970.940.961.011.051.20
model 5 model 61.030.950.950.900.920.981.031.08
0.990.980.930.87 入0.960.981.051.10
error rate0.0 12.820.1 12.520.5 12.381.0 12.202.0 12.605.0 12.8410.0 13.10
CIFAR-10 CIFAR-100A error rate0.01390.01280.01040.00950.00890.00850.0077 38.01
A37.22 0.088136.75 0.071136.25 0.059037.01 0.052937.18 0.050037.58 0.04670.0411
", + "type": "table", + "image_path": "739cedb9dba2581f0f1664cf81469a684c0cafb4304dcc63d8a66cd25ad43c03.jpg" + } + ] + } + ], + "index": 6, + "virtual_lines": [ + { + "bbox": [ + 106, + 503, + 525, + 557.0 + ], + "spans": [], + "index": 5 + }, + { + "bbox": [ + 106, + 557.0, + 525, + 611.0 + ], + "spans": [], + "index": 6 + }, + { + "bbox": [ + 106, + 611.0, + 525, + 665.0 + ], + "spans": [], + "index": 7 + } + ] + } + ], + "index": 5.0 + } + ] + } + ], + "_backend": "pipeline", + "_version_name": "2.2.2" +} \ No newline at end of file diff --git a/parse/train/rkGabzZgl/rkGabzZgl_model.json b/parse/train/rkGabzZgl/rkGabzZgl_model.json new file mode 100644 index 0000000000000000000000000000000000000000..9903223c31705426c070bb8d25aa010e0e635882 --- /dev/null +++ b/parse/train/rkGabzZgl/rkGabzZgl_model.json @@ -0,0 +1,33133 @@ +[ + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 398, + 819, + 1305, + 819, + 1305, + 1277, + 398, + 1277 + ], + "score": 0.984 + }, + { + "category_id": 1, + "poly": [ + 298, + 1406, + 1404, + 1406, + 1404, + 1743, + 298, + 1743 + ], + "score": 0.984 + }, + { + "category_id": 1, + "poly": [ + 298, + 1758, + 1405, + 1758, + 1405, + 2035, + 298, + 2035 + ], + "score": 0.982 + }, + { + "category_id": 0, + "poly": [ + 297, + 221, + 1095, + 221, + 1095, + 322, + 297, + 322 + ], + "score": 0.96 + }, + { + "category_id": 1, + "poly": [ + 850, + 377, + 1384, + 377, + 1384, + 499, + 850, + 499 + ], + "score": 0.946 + }, + { + "category_id": 1, + "poly": [ + 313, + 546, + 814, + 546, + 814, + 668, + 313, + 668 + ], + "score": 0.932 + }, + { + "category_id": 1, + "poly": [ + 314, + 376, + 816, + 376, + 816, + 500, + 314, + 500 + ], + "score": 0.918 + }, + { + "category_id": 0, + "poly": [ + 302, + 1337, + 573, + 1337, + 573, + 1372, + 302, + 1372 + ], + "score": 0.899 + }, + { + "category_id": 0, + "poly": [ + 773, + 750, + 927, + 750, + 927, + 783, + 773, + 783 + ], + "score": 0.873 + }, + { + "category_id": 2, + "poly": [ + 299, + 75, + 815, + 75, + 815, + 104, + 299, + 104 + ], + "score": 0.872 + }, + { + "category_id": 1, + "poly": [ + 931, + 546, + 1296, + 546, + 1296, + 669, + 931, + 669 + ], + "score": 0.828 + }, + { + "category_id": 2, + "poly": [ + 841, + 2089, + 856, + 2089, + 856, + 2112, + 841, + 2112 + ], + "score": 0.726 + }, + { + "category_id": 0, + "poly": [ + 933, + 547, + 1094, + 547, + 1094, + 576, + 933, + 576 + ], + "score": 0.204 + }, + { + "category_id": 0, + "poly": [ + 316, + 548, + 481, + 548, + 481, + 577, + 316, + 577 + ], + "score": 0.154 + }, + { + "category_id": 15, + "poly": [ + 295.0, + 220.0, + 1101.0, + 220.0, + 1101.0, + 273.0, + 295.0, + 273.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 279.0, + 674.0, + 279.0, + 674.0, + 328.0, + 296.0, + 328.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1334.0, + 579.0, + 1334.0, + 579.0, + 1381.0, + 294.0, + 1381.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 768.0, + 746.0, + 934.0, + 746.0, + 934.0, + 789.0, + 768.0, + 789.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, + 2088.0, + 859.0, + 2088.0, + 859.0, + 2118.0, + 840.0, + 2118.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 929.0, + 541.0, + 1100.0, + 541.0, + 1100.0, + 585.0, + 929.0, + 585.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 313.0, + 541.0, + 487.0, + 541.0, + 487.0, + 585.0, + 313.0, + 585.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 819.0, + 1307.0, + 819.0, + 1307.0, + 854.0, + 393.0, + 854.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 852.0, + 1307.0, + 852.0, + 1307.0, + 884.0, + 394.0, + 884.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 881.0, + 1309.0, + 881.0, + 1309.0, + 916.0, + 394.0, + 916.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 910.0, + 1309.0, + 910.0, + 1309.0, + 946.0, + 393.0, + 946.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 941.0, + 1306.0, + 941.0, + 1306.0, + 975.0, + 393.0, + 975.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 973.0, + 1306.0, + 973.0, + 1306.0, + 1008.0, + 394.0, + 1008.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 1003.0, + 1306.0, + 1003.0, + 1306.0, + 1037.0, + 394.0, + 1037.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 1034.0, + 1308.0, + 1034.0, + 1308.0, + 1065.0, + 393.0, + 1065.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 1063.0, + 1307.0, + 1063.0, + 1307.0, + 1098.0, + 394.0, + 1098.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 1094.0, + 1306.0, + 1094.0, + 1306.0, + 1129.0, + 393.0, + 1129.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 1123.0, + 1306.0, + 1123.0, + 1306.0, + 1160.0, + 393.0, + 1160.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 1156.0, + 1307.0, + 1156.0, + 1307.0, + 1190.0, + 393.0, + 1190.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 1185.0, + 1305.0, + 1185.0, + 1305.0, + 1220.0, + 394.0, + 1220.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 1214.0, + 1306.0, + 1214.0, + 1306.0, + 1252.0, + 393.0, + 1252.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 1246.0, + 1110.0, + 1246.0, + 1110.0, + 1283.0, + 393.0, + 1283.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1407.0, + 1406.0, + 1407.0, + 1406.0, + 1442.0, + 294.0, + 1442.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1437.0, + 1406.0, + 1437.0, + 1406.0, + 1474.0, + 293.0, + 1474.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1468.0, + 1406.0, + 1468.0, + 1406.0, + 1505.0, + 293.0, + 1505.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1499.0, + 1407.0, + 1499.0, + 1407.0, + 1536.0, + 292.0, + 1536.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1530.0, + 1405.0, + 1530.0, + 1405.0, + 1565.0, + 294.0, + 1565.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1561.0, + 1406.0, + 1561.0, + 1406.0, + 1596.0, + 293.0, + 1596.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1591.0, + 1406.0, + 1591.0, + 1406.0, + 1625.0, + 293.0, + 1625.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1619.0, + 1408.0, + 1619.0, + 1408.0, + 1658.0, + 293.0, + 1658.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1651.0, + 1406.0, + 1651.0, + 1406.0, + 1686.0, + 294.0, + 1686.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1680.0, + 1405.0, + 1680.0, + 1405.0, + 1720.0, + 293.0, + 1720.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1715.0, + 913.0, + 1715.0, + 913.0, + 1746.0, + 297.0, + 1746.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1756.0, + 1406.0, + 1756.0, + 1406.0, + 1796.0, + 293.0, + 1796.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1788.0, + 1405.0, + 1788.0, + 1405.0, + 1826.0, + 292.0, + 1826.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1818.0, + 1409.0, + 1818.0, + 1409.0, + 1859.0, + 293.0, + 1859.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1851.0, + 1406.0, + 1851.0, + 1406.0, + 1887.0, + 295.0, + 1887.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1879.0, + 1407.0, + 1879.0, + 1407.0, + 1919.0, + 293.0, + 1919.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1911.0, + 1405.0, + 1911.0, + 1405.0, + 1948.0, + 295.0, + 1948.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1942.0, + 1406.0, + 1942.0, + 1406.0, + 1979.0, + 295.0, + 1979.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1971.0, + 1407.0, + 1971.0, + 1407.0, + 2012.0, + 293.0, + 2012.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 2001.0, + 1407.0, + 2001.0, + 1407.0, + 2042.0, + 293.0, + 2042.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 848.0, + 376.0, + 1144.0, + 376.0, + 1144.0, + 410.0, + 848.0, + 410.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 848.0, + 406.0, + 1197.0, + 406.0, + 1197.0, + 441.0, + 848.0, + 441.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 847.0, + 435.0, + 1165.0, + 435.0, + 1165.0, + 473.0, + 847.0, + 473.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 851.0, + 469.0, + 1386.0, + 469.0, + 1386.0, + 502.0, + 851.0, + 502.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 313.0, + 541.0, + 486.0, + 541.0, + 486.0, + 583.0, + 313.0, + 583.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 312.0, + 574.0, + 816.0, + 574.0, + 816.0, + 611.0, + 312.0, + 611.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 312.0, + 605.0, + 532.0, + 605.0, + 532.0, + 641.0, + 312.0, + 641.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 314.0, + 640.0, + 669.0, + 640.0, + 669.0, + 671.0, + 314.0, + 671.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 377.0, + 623.0, + 377.0, + 623.0, + 409.0, + 320.0, + 409.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 310.0, + 407.0, + 681.0, + 407.0, + 681.0, + 440.0, + 310.0, + 440.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 312.0, + 437.0, + 628.0, + 437.0, + 628.0, + 471.0, + 312.0, + 471.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 315.0, + 469.0, + 817.0, + 469.0, + 817.0, + 500.0, + 315.0, + 500.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 929.0, + 541.0, + 1099.0, + 541.0, + 1099.0, + 582.0, + 929.0, + 582.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 929.0, + 578.0, + 1298.0, + 578.0, + 1298.0, + 609.0, + 929.0, + 609.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 929.0, + 604.0, + 1246.0, + 604.0, + 1246.0, + 642.0, + 929.0, + 642.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 929.0, + 639.0, + 1137.0, + 639.0, + 1137.0, + 671.0, + 929.0, + 671.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 0, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 298, + 721, + 1404, + 721, + 1404, + 1209, + 298, + 1209 + ], + "score": 0.983 + }, + { + "category_id": 1, + "poly": [ + 298, + 229, + 1404, + 229, + 1404, + 475, + 298, + 475 + ], + "score": 0.981 + }, + { + "category_id": 1, + "poly": [ + 298, + 489, + 1405, + 489, + 1405, + 706, + 298, + 706 + ], + "score": 0.981 + }, + { + "category_id": 1, + "poly": [ + 297, + 1630, + 1404, + 1630, + 1404, + 1823, + 297, + 1823 + ], + "score": 0.98 + }, + { + "category_id": 1, + "poly": [ + 299, + 1901, + 1402, + 1901, + 1402, + 2035, + 299, + 2035 + ], + "score": 0.977 + }, + { + "category_id": 1, + "poly": [ + 298, + 1490, + 1404, + 1490, + 1404, + 1616, + 298, + 1616 + ], + "score": 0.976 + }, + { + "category_id": 1, + "poly": [ + 295, + 1329, + 1401, + 1329, + 1401, + 1391, + 295, + 1391 + ], + "score": 0.953 + }, + { + "category_id": 8, + "poly": [ + 600, + 1842, + 1099, + 1842, + 1099, + 1886, + 600, + 1886 + ], + "score": 0.941 + }, + { + "category_id": 0, + "poly": [ + 302, + 1257, + 796, + 1257, + 796, + 1292, + 302, + 1292 + ], + "score": 0.905 + }, + { + "category_id": 0, + "poly": [ + 300, + 1432, + 648, + 1432, + 648, + 1464, + 300, + 1464 + ], + "score": 0.897 + }, + { + "category_id": 2, + "poly": [ + 300, + 76, + 815, + 76, + 815, + 104, + 300, + 104 + ], + "score": 0.895 + }, + { + "category_id": 9, + "poly": [ + 1366, + 1850, + 1399, + 1850, + 1399, + 1880, + 1366, + 1880 + ], + "score": 0.88 + }, + { + "category_id": 2, + "poly": [ + 841, + 2088, + 858, + 2088, + 858, + 2112, + 841, + 2112 + ], + "score": 0.717 + }, + { + "category_id": 2, + "poly": [ + 841, + 2088, + 859, + 2088, + 859, + 2112, + 841, + 2112 + ], + "score": 0.234 + }, + { + "category_id": 13, + "poly": [ + 1011, + 1967, + 1144, + 1967, + 1144, + 2000, + 1011, + 2000 + ], + "score": 0.94, + "latex": "\\mathbf { h } ^ { ( l ) } ( x , s ; \\theta )" + }, + { + "category_id": 13, + "poly": [ + 298, + 1964, + 507, + 1964, + 507, + 2007, + 298, + 2007 + ], + "score": 0.92, + "latex": "\\begin{array} { r } { \\sigma ( x ) = \\frac { 1 } { 1 + \\exp ( - x ) } } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 403, + 1758, + 694, + 1758, + 694, + 1795, + 403, + 1795 + ], + "score": 0.92, + "latex": "S = \\{ \\bar { \\Gamma ^ { ( l ) } } : l = 1 , \\dots , \\bar { L } \\}" + }, + { + "category_id": 13, + "poly": [ + 836, + 1664, + 939, + 1664, + 939, + 1696, + 836, + 1696 + ], + "score": 0.92, + "latex": "\\mathbf { h } ^ { ( 0 ) } = x" + }, + { + "category_id": 13, + "poly": [ + 572, + 1698, + 839, + 1698, + 839, + 1731, + 572, + 1731 + ], + "score": 0.92, + "latex": "\\theta = \\{ \\theta _ { l } : l = 1 , \\ldots , L \\}" + }, + { + "category_id": 13, + "poly": [ + 573, + 1966, + 809, + 1966, + 809, + 2000, + 573, + 2000 + ], + "score": 0.92, + "latex": "f _ { l } ( x ) = \\sigma ( W x + b ) )" + }, + { + "category_id": 13, + "poly": [ + 1119, + 1631, + 1292, + 1631, + 1292, + 1666, + 1119, + 1666 + ], + "score": 0.91, + "latex": "l \\in \\{ 1 , \\ldots , L \\}" + }, + { + "category_id": 14, + "poly": [ + 599, + 1842, + 1099, + 1842, + 1099, + 1884, + 599, + 1884 + ], + "score": 0.91, + "latex": "\\mathbf { h } ^ { ( l ) } = f _ { l } ( \\mathbf { h } ^ { ( l - 1 ) } \\odot \\boldsymbol { \\gamma } ^ { ( l ) } ; \\boldsymbol { \\theta } _ { l } ) , \\quad l = 1 , \\ldots , L ," + }, + { + "category_id": 13, + "poly": [ + 980, + 1552, + 1325, + 1552, + 1325, + 1586, + 980, + 1586 + ], + "score": 0.91, + "latex": "D = \\{ ( x _ { 1 } , y _ { 1 } ) , \\dotsc , ( x _ { N } , y _ { N } ) \\}" + }, + { + "category_id": 13, + "poly": [ + 558, + 1585, + 744, + 1585, + 744, + 1615, + 558, + 1615 + ], + "score": 0.9, + "latex": "x _ { i } , i = 1 , \\ldots , N" + }, + { + "category_id": 13, + "poly": [ + 608, + 1553, + 688, + 1553, + 688, + 1582, + 608, + 1582 + ], + "score": 0.9, + "latex": "Y \\in \\mathcal { V }" + }, + { + "category_id": 13, + "poly": [ + 780, + 1758, + 825, + 1758, + 825, + 1789, + 780, + 1789 + ], + "score": 0.9, + "latex": "\\Gamma ^ { ( l ) }" + }, + { + "category_id": 13, + "poly": [ + 1129, + 1665, + 1182, + 1665, + 1182, + 1696, + 1129, + 1696 + ], + "score": 0.89, + "latex": "\\mathbf { h } ^ { ( L ) }" + }, + { + "category_id": 13, + "poly": [ + 1231, + 1523, + 1323, + 1523, + 1323, + 1551, + 1231, + 1551 + ], + "score": 0.89, + "latex": "X \\in { \\mathcal { X } }" + }, + { + "category_id": 13, + "poly": [ + 1356, + 1628, + 1402, + 1628, + 1402, + 1661, + 1356, + 1661 + ], + "score": 0.87, + "latex": "\\mathbf { h } ^ { ( l ) }" + }, + { + "category_id": 13, + "poly": [ + 940, + 2008, + 954, + 2008, + 954, + 2030, + 940, + 2030 + ], + "score": 0.86, + "latex": "\\theta" + }, + { + "category_id": 13, + "poly": [ + 755, + 1905, + 778, + 1905, + 778, + 1935, + 755, + 1935 + ], + "score": 0.86, + "latex": "f _ { l }" + }, + { + "category_id": 13, + "poly": [ + 298, + 1729, + 321, + 1729, + 321, + 1759, + 298, + 1759 + ], + "score": 0.86, + "latex": "\\theta _ { l }" + }, + { + "category_id": 13, + "poly": [ + 371, + 1906, + 395, + 1906, + 395, + 1931, + 371, + 1931 + ], + "score": 0.85, + "latex": "\\odot" + }, + { + "category_id": 13, + "poly": [ + 1032, + 1938, + 1045, + 1938, + 1045, + 1960, + 1032, + 1960 + ], + "score": 0.84, + "latex": "b" + }, + { + "category_id": 13, + "poly": [ + 865, + 1939, + 895, + 1939, + 895, + 1960, + 865, + 1960 + ], + "score": 0.82, + "latex": "W" + }, + { + "category_id": 13, + "poly": [ + 789, + 1634, + 810, + 1634, + 810, + 1660, + 789, + 1660 + ], + "score": 0.81, + "latex": "L" + }, + { + "category_id": 13, + "poly": [ + 726, + 2014, + 739, + 2014, + 739, + 2029, + 726, + 2029 + ], + "score": 0.8, + "latex": "s" + }, + { + "category_id": 13, + "poly": [ + 1177, + 1586, + 1205, + 1586, + 1205, + 1611, + 1177, + 1611 + ], + "score": 0.78, + "latex": "X" + }, + { + "category_id": 13, + "poly": [ + 825, + 1588, + 851, + 1588, + 851, + 1615, + 825, + 1615 + ], + "score": 0.77, + "latex": "y _ { i }" + }, + { + "category_id": 13, + "poly": [ + 496, + 2012, + 514, + 2012, + 514, + 2029, + 496, + 2029 + ], + "score": 0.76, + "latex": "x" + }, + { + "category_id": 13, + "poly": [ + 706, + 1734, + 718, + 1734, + 718, + 1756, + 706, + 1756 + ], + "score": 0.69, + "latex": "l" + }, + { + "category_id": 13, + "poly": [ + 360, + 2006, + 371, + 2006, + 371, + 2029, + 360, + 2029 + ], + "score": 0.68, + "latex": "l" + }, + { + "category_id": 13, + "poly": [ + 1276, + 1763, + 1288, + 1763, + 1288, + 1789, + 1276, + 1789 + ], + "score": 0.68, + "latex": "l" + }, + { + "category_id": 13, + "poly": [ + 358, + 1935, + 369, + 1935, + 369, + 1960, + 358, + 1960 + ], + "score": 0.66, + "latex": "l" + }, + { + "category_id": 13, + "poly": [ + 700, + 1669, + 712, + 1669, + 712, + 1695, + 700, + 1695 + ], + "score": 0.64, + "latex": "l" + }, + { + "category_id": 13, + "poly": [ + 1279, + 1586, + 1304, + 1586, + 1304, + 1611, + 1279, + 1611 + ], + "score": 0.62, + "latex": "Y" + }, + { + "category_id": 13, + "poly": [ + 1206, + 1904, + 1217, + 1904, + 1217, + 1930, + 1206, + 1930 + ], + "score": 0.53, + "latex": "l" + }, + { + "category_id": 13, + "poly": [ + 1284, + 1699, + 1318, + 1699, + 1318, + 1726, + 1284, + 1726 + ], + "score": 0.48, + "latex": "\\mathbf { M }" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1252.0, + 800.0, + 1252.0, + 800.0, + 1299.0, + 292.0, + 1299.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1428.0, + 652.0, + 1428.0, + 652.0, + 1470.0, + 293.0, + 1470.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, + 862.0, + 2085.0, + 862.0, + 2120.0, + 839.0, + 2120.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 838.0, + 2085.0, + 862.0, + 2085.0, + 862.0, + 2120.0, + 838.0, + 2120.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 721.0, + 1408.0, + 721.0, + 1408.0, + 756.0, + 294.0, + 756.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 752.0, + 1406.0, + 752.0, + 1406.0, + 786.0, + 296.0, + 786.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 780.0, + 1403.0, + 780.0, + 1403.0, + 817.0, + 293.0, + 817.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 811.0, + 1404.0, + 811.0, + 1404.0, + 849.0, + 293.0, + 849.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 841.0, + 1405.0, + 841.0, + 1405.0, + 879.0, + 294.0, + 879.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 871.0, + 1406.0, + 871.0, + 1406.0, + 910.0, + 292.0, + 910.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 900.0, + 1409.0, + 900.0, + 1409.0, + 942.0, + 292.0, + 942.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 934.0, + 1405.0, + 934.0, + 1405.0, + 969.0, + 296.0, + 969.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 964.0, + 1404.0, + 964.0, + 1404.0, + 998.0, + 293.0, + 998.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 996.0, + 1406.0, + 996.0, + 1406.0, + 1027.0, + 292.0, + 1027.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1024.0, + 1406.0, + 1024.0, + 1406.0, + 1061.0, + 292.0, + 1061.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1054.0, + 1409.0, + 1054.0, + 1409.0, + 1092.0, + 293.0, + 1092.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1085.0, + 1405.0, + 1085.0, + 1405.0, + 1121.0, + 293.0, + 1121.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1113.0, + 1405.0, + 1113.0, + 1405.0, + 1154.0, + 292.0, + 1154.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1144.0, + 1406.0, + 1144.0, + 1406.0, + 1183.0, + 293.0, + 1183.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1178.0, + 1132.0, + 1178.0, + 1132.0, + 1212.0, + 294.0, + 1212.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 228.0, + 1406.0, + 228.0, + 1406.0, + 267.0, + 292.0, + 267.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 262.0, + 1404.0, + 262.0, + 1404.0, + 296.0, + 294.0, + 296.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 292.0, + 1404.0, + 292.0, + 1404.0, + 326.0, + 294.0, + 326.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 322.0, + 1404.0, + 322.0, + 1404.0, + 356.0, + 293.0, + 356.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 353.0, + 1405.0, + 353.0, + 1405.0, + 387.0, + 294.0, + 387.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 382.0, + 1407.0, + 382.0, + 1407.0, + 417.0, + 292.0, + 417.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 413.0, + 1405.0, + 413.0, + 1405.0, + 448.0, + 293.0, + 448.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 446.0, + 979.0, + 446.0, + 979.0, + 479.0, + 294.0, + 479.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 489.0, + 1405.0, + 489.0, + 1405.0, + 526.0, + 293.0, + 526.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 519.0, + 1405.0, + 519.0, + 1405.0, + 558.0, + 293.0, + 558.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 552.0, + 1405.0, + 552.0, + 1405.0, + 586.0, + 295.0, + 586.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 578.0, + 1410.0, + 578.0, + 1410.0, + 621.0, + 291.0, + 621.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 612.0, + 1410.0, + 612.0, + 1410.0, + 647.0, + 295.0, + 647.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 640.0, + 1408.0, + 640.0, + 1408.0, + 679.0, + 293.0, + 679.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 672.0, + 1040.0, + 672.0, + 1040.0, + 709.0, + 293.0, + 709.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1628.0, + 788.0, + 1628.0, + 788.0, + 1666.0, + 292.0, + 1666.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 811.0, + 1628.0, + 1118.0, + 1628.0, + 1118.0, + 1666.0, + 811.0, + 1666.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1293.0, + 1628.0, + 1355.0, + 1628.0, + 1355.0, + 1666.0, + 1293.0, + 1666.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1662.0, + 699.0, + 1662.0, + 699.0, + 1703.0, + 294.0, + 1703.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 713.0, + 1662.0, + 835.0, + 1662.0, + 835.0, + 1703.0, + 713.0, + 1703.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 940.0, + 1662.0, + 1128.0, + 1662.0, + 1128.0, + 1703.0, + 940.0, + 1703.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1183.0, + 1662.0, + 1405.0, + 1662.0, + 1405.0, + 1703.0, + 1183.0, + 1703.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1695.0, + 571.0, + 1695.0, + 571.0, + 1732.0, + 292.0, + 1732.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 840.0, + 1695.0, + 1283.0, + 1695.0, + 1283.0, + 1732.0, + 840.0, + 1732.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1319.0, + 1695.0, + 1405.0, + 1695.0, + 1405.0, + 1732.0, + 1319.0, + 1732.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1728.0, + 705.0, + 1728.0, + 705.0, + 1764.0, + 322.0, + 1764.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 719.0, + 1728.0, + 1404.0, + 1728.0, + 1404.0, + 1764.0, + 719.0, + 1764.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1757.0, + 402.0, + 1757.0, + 402.0, + 1797.0, + 294.0, + 1797.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 695.0, + 1757.0, + 779.0, + 1757.0, + 779.0, + 1797.0, + 695.0, + 1797.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 826.0, + 1757.0, + 1275.0, + 1757.0, + 1275.0, + 1797.0, + 826.0, + 1797.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1289.0, + 1757.0, + 1406.0, + 1757.0, + 1406.0, + 1797.0, + 1289.0, + 1797.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1792.0, + 794.0, + 1792.0, + 794.0, + 1825.0, + 296.0, + 1825.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1900.0, + 370.0, + 1900.0, + 370.0, + 1938.0, + 293.0, + 1938.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 396.0, + 1900.0, + 754.0, + 1900.0, + 754.0, + 1938.0, + 396.0, + 1938.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 779.0, + 1900.0, + 1205.0, + 1900.0, + 1205.0, + 1938.0, + 779.0, + 1938.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1218.0, + 1900.0, + 1407.0, + 1900.0, + 1407.0, + 1938.0, + 1218.0, + 1938.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1934.0, + 357.0, + 1934.0, + 357.0, + 1968.0, + 295.0, + 1968.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 370.0, + 1934.0, + 864.0, + 1934.0, + 864.0, + 1968.0, + 370.0, + 1968.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 896.0, + 1934.0, + 1031.0, + 1934.0, + 1031.0, + 1968.0, + 896.0, + 1968.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1046.0, + 1934.0, + 1406.0, + 1934.0, + 1406.0, + 1968.0, + 1046.0, + 1968.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 508.0, + 1966.0, + 572.0, + 1966.0, + 572.0, + 2001.0, + 508.0, + 2001.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 810.0, + 1966.0, + 1010.0, + 1966.0, + 1010.0, + 2001.0, + 810.0, + 2001.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1145.0, + 1966.0, + 1407.0, + 1966.0, + 1407.0, + 2001.0, + 1145.0, + 2001.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 2001.0, + 359.0, + 2001.0, + 359.0, + 2039.0, + 294.0, + 2039.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 372.0, + 2001.0, + 495.0, + 2001.0, + 495.0, + 2039.0, + 372.0, + 2039.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 515.0, + 2001.0, + 725.0, + 2001.0, + 725.0, + 2039.0, + 515.0, + 2039.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 740.0, + 2001.0, + 939.0, + 2001.0, + 939.0, + 2039.0, + 740.0, + 2039.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 955.0, + 2001.0, + 967.0, + 2001.0, + 967.0, + 2039.0, + 955.0, + 2039.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1964.0, + 525.0, + 1964.0, + 525.0, + 2012.0, + 291.0, + 2012.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1488.0, + 1408.0, + 1488.0, + 1408.0, + 1526.0, + 292.0, + 1526.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1521.0, + 1230.0, + 1521.0, + 1230.0, + 1558.0, + 293.0, + 1558.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1324.0, + 1521.0, + 1406.0, + 1521.0, + 1406.0, + 1558.0, + 1324.0, + 1558.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1552.0, + 607.0, + 1552.0, + 607.0, + 1588.0, + 294.0, + 1588.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 689.0, + 1552.0, + 979.0, + 1552.0, + 979.0, + 1588.0, + 689.0, + 1588.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1326.0, + 1552.0, + 1408.0, + 1552.0, + 1408.0, + 1588.0, + 1326.0, + 1588.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1585.0, + 557.0, + 1585.0, + 557.0, + 1618.0, + 296.0, + 1618.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 745.0, + 1585.0, + 824.0, + 1585.0, + 824.0, + 1618.0, + 745.0, + 1618.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 852.0, + 1585.0, + 1176.0, + 1585.0, + 1176.0, + 1618.0, + 852.0, + 1618.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1206.0, + 1585.0, + 1278.0, + 1585.0, + 1278.0, + 1618.0, + 1206.0, + 1618.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1305.0, + 1585.0, + 1323.0, + 1585.0, + 1323.0, + 1618.0, + 1305.0, + 1618.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1328.0, + 1403.0, + 1328.0, + 1403.0, + 1364.0, + 295.0, + 1364.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1357.0, + 1353.0, + 1357.0, + 1353.0, + 1395.0, + 294.0, + 1395.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 1, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 297, + 1551, + 1404, + 1551, + 1404, + 1769, + 297, + 1769 + ], + "score": 0.981 + }, + { + "category_id": 1, + "poly": [ + 297, + 1213, + 1404, + 1213, + 1404, + 1369, + 297, + 1369 + ], + "score": 0.981 + }, + { + "category_id": 1, + "poly": [ + 298, + 966, + 1404, + 966, + 1404, + 1121, + 298, + 1121 + ], + "score": 0.98 + }, + { + "category_id": 1, + "poly": [ + 297, + 797, + 1403, + 797, + 1403, + 953, + 297, + 953 + ], + "score": 0.979 + }, + { + "category_id": 1, + "poly": [ + 298, + 416, + 1404, + 416, + 1404, + 572, + 298, + 572 + ], + "score": 0.979 + }, + { + "category_id": 1, + "poly": [ + 299, + 1880, + 1404, + 1880, + 1404, + 2035, + 299, + 2035 + ], + "score": 0.977 + }, + { + "category_id": 1, + "poly": [ + 298, + 1444, + 1403, + 1444, + 1403, + 1539, + 298, + 1539 + ], + "score": 0.976 + }, + { + "category_id": 1, + "poly": [ + 297, + 228, + 1403, + 228, + 1403, + 324, + 297, + 324 + ], + "score": 0.966 + }, + { + "category_id": 1, + "poly": [ + 298, + 585, + 1404, + 585, + 1404, + 680, + 298, + 680 + ], + "score": 0.961 + }, + { + "category_id": 8, + "poly": [ + 633, + 1387, + 1066, + 1387, + 1066, + 1435, + 633, + 1435 + ], + "score": 0.945 + }, + { + "category_id": 8, + "poly": [ + 417, + 695, + 1282, + 695, + 1282, + 785, + 417, + 785 + ], + "score": 0.944 + }, + { + "category_id": 0, + "poly": [ + 299, + 359, + 613, + 359, + 613, + 391, + 299, + 391 + ], + "score": 0.912 + }, + { + "category_id": 0, + "poly": [ + 299, + 1811, + 952, + 1811, + 952, + 1847, + 299, + 1847 + ], + "score": 0.91 + }, + { + "category_id": 2, + "poly": [ + 300, + 75, + 815, + 75, + 815, + 105, + 300, + 105 + ], + "score": 0.903 + }, + { + "category_id": 9, + "poly": [ + 1366, + 1400, + 1400, + 1400, + 1400, + 1429, + 1366, + 1429 + ], + "score": 0.9 + }, + { + "category_id": 0, + "poly": [ + 300, + 1157, + 745, + 1157, + 745, + 1189, + 300, + 1189 + ], + "score": 0.899 + }, + { + "category_id": 9, + "poly": [ + 1366, + 724, + 1400, + 724, + 1400, + 754, + 1366, + 754 + ], + "score": 0.884 + }, + { + "category_id": 2, + "poly": [ + 841, + 2088, + 858, + 2088, + 858, + 2112, + 841, + 2112 + ], + "score": 0.61 + }, + { + "category_id": 2, + "poly": [ + 841, + 2088, + 859, + 2088, + 859, + 2112, + 841, + 2112 + ], + "score": 0.447 + }, + { + "category_id": 14, + "poly": [ + 417, + 690, + 1280, + 690, + 1280, + 787, + 417, + 787 + ], + "score": 0.94, + "latex": "\\theta ^ { * } = \\underset { \\theta } { \\operatorname { a r g m i n } } \\operatorname { E } _ { S _ { D } } [ - l ( D , S _ { D } ; \\theta ) ] = \\underset { \\theta } { \\operatorname { a r g m i n } } \\operatorname { E } _ { S _ { D } } \\Big [ - \\sum _ { i = 1 } ^ { N } \\log p ( y _ { i } | x _ { i } , S _ { i } ; \\theta ) \\Big ] ," + }, + { + "category_id": 14, + "poly": [ + 631, + 1383, + 1066, + 1383, + 1066, + 1433, + 631, + 1433 + ], + "score": 0.93, + "latex": "\\mathrm { E } _ { S } [ \\mathbf { H } ^ { ( L ) } ( x , S ; \\theta ) ] \\stackrel { ? } { \\approx } \\mathbf { h } ^ { ( L ) } ( x , \\mathrm { E } [ S ] ; \\theta ) ," + }, + { + "category_id": 13, + "poly": [ + 794, + 798, + 1034, + 798, + 1034, + 833, + 794, + 833 + ], + "score": 0.93, + "latex": "{ { S } _ { D } } = \\left\\{ { { S } _ { 1 } } , \\ldots , { { S } _ { N } } \\right\\}" + }, + { + "category_id": 13, + "poly": [ + 616, + 830, + 746, + 830, + 746, + 862, + 616, + 862 + ], + "score": 0.93, + "latex": "l ( D , S _ { D } ; \\theta )" + }, + { + "category_id": 13, + "poly": [ + 557, + 861, + 684, + 861, + 684, + 894, + 557, + 894 + ], + "score": 0.93, + "latex": "p ( \\boldsymbol { y } | \\boldsymbol { x } , s ; \\theta )" + }, + { + "category_id": 13, + "poly": [ + 1067, + 227, + 1113, + 227, + 1113, + 259, + 1067, + 259 + ], + "score": 0.9, + "latex": "\\Gamma ^ { ( l ) }" + }, + { + "category_id": 13, + "poly": [ + 1143, + 263, + 1216, + 263, + 1216, + 294, + 1143, + 294 + ], + "score": 0.9, + "latex": "1 - p _ { l }" + }, + { + "category_id": 13, + "poly": [ + 712, + 892, + 752, + 892, + 752, + 921, + 712, + 921 + ], + "score": 0.89, + "latex": "\\mathrm { E } _ { Z }" + }, + { + "category_id": 13, + "poly": [ + 982, + 1912, + 1040, + 1912, + 1040, + 1942, + 982, + 1942 + ], + "score": 0.87, + "latex": "\\ S \\ 3 . 1" + }, + { + "category_id": 13, + "poly": [ + 1121, + 1943, + 1183, + 1943, + 1183, + 1973, + 1121, + 1973 + ], + "score": 0.85, + "latex": "\\ S \\ 3 . 2" + }, + { + "category_id": 13, + "poly": [ + 947, + 266, + 974, + 266, + 974, + 293, + 947, + 293 + ], + "score": 0.84, + "latex": "p _ { l }" + }, + { + "category_id": 13, + "poly": [ + 497, + 801, + 524, + 801, + 524, + 827, + 497, + 827 + ], + "score": 0.83, + "latex": "D" + }, + { + "category_id": 13, + "poly": [ + 1142, + 298, + 1168, + 298, + 1168, + 324, + 1142, + 324 + ], + "score": 0.82, + "latex": "p _ { l }" + }, + { + "category_id": 13, + "poly": [ + 793, + 866, + 812, + 866, + 812, + 892, + 793, + 892 + ], + "score": 0.8, + "latex": "y" + }, + { + "category_id": 13, + "poly": [ + 1155, + 862, + 1172, + 862, + 1172, + 888, + 1155, + 888 + ], + "score": 0.79, + "latex": "\\theta" + }, + { + "category_id": 13, + "poly": [ + 482, + 922, + 506, + 922, + 506, + 948, + 482, + 948 + ], + "score": 0.79, + "latex": "Z" + }, + { + "category_id": 13, + "poly": [ + 942, + 866, + 960, + 866, + 960, + 888, + 942, + 888 + ], + "score": 0.77, + "latex": "x" + }, + { + "category_id": 13, + "poly": [ + 298, + 896, + 313, + 896, + 313, + 918, + 298, + 918 + ], + "score": 0.47, + "latex": "s" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 356.0, + 616.0, + 356.0, + 616.0, + 396.0, + 294.0, + 396.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1807.0, + 954.0, + 1807.0, + 954.0, + 1852.0, + 291.0, + 1852.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": [ + 295.0, + 1157.0, + 748.0, + 1157.0, + 748.0, + 1193.0, + 295.0, + 1193.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 839.0, + 2085.0, + 860.0, + 2085.0, + 860.0, + 2116.0, + 839.0, + 2116.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 838.0, + 2085.0, + 862.0, + 2085.0, + 862.0, + 2118.0, + 838.0, + 2118.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1553.0, + 1406.0, + 1553.0, + 1406.0, + 1588.0, + 295.0, + 1588.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1584.0, + 1406.0, + 1584.0, + 1406.0, + 1619.0, + 294.0, + 1619.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1615.0, + 1405.0, + 1615.0, + 1405.0, + 1650.0, + 295.0, + 1650.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1645.0, + 1404.0, + 1645.0, + 1404.0, + 1680.0, + 295.0, + 1680.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1675.0, + 1406.0, + 1675.0, + 1406.0, + 1713.0, + 294.0, + 1713.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1705.0, + 1407.0, + 1705.0, + 1407.0, + 1741.0, + 292.0, + 1741.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1737.0, + 1297.0, + 1737.0, + 1297.0, + 1772.0, + 295.0, + 1772.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1212.0, + 1406.0, + 1212.0, + 1406.0, + 1251.0, + 294.0, + 1251.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1247.0, + 1405.0, + 1247.0, + 1405.0, + 1280.0, + 295.0, + 1280.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1272.0, + 1407.0, + 1272.0, + 1407.0, + 1315.0, + 294.0, + 1315.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1307.0, + 1405.0, + 1307.0, + 1405.0, + 1344.0, + 295.0, + 1344.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1339.0, + 1055.0, + 1339.0, + 1055.0, + 1372.0, + 296.0, + 1372.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 965.0, + 1408.0, + 965.0, + 1408.0, + 1004.0, + 295.0, + 1004.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 997.0, + 1406.0, + 997.0, + 1406.0, + 1034.0, + 294.0, + 1034.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1026.0, + 1407.0, + 1026.0, + 1407.0, + 1065.0, + 291.0, + 1065.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1058.0, + 1404.0, + 1058.0, + 1404.0, + 1095.0, + 293.0, + 1095.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1089.0, + 974.0, + 1089.0, + 974.0, + 1126.0, + 294.0, + 1126.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 798.0, + 496.0, + 798.0, + 496.0, + 835.0, + 295.0, + 835.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 525.0, + 798.0, + 793.0, + 798.0, + 793.0, + 835.0, + 525.0, + 835.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1035.0, + 798.0, + 1407.0, + 798.0, + 1407.0, + 835.0, + 1035.0, + 835.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 828.0, + 615.0, + 828.0, + 615.0, + 866.0, + 295.0, + 866.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 747.0, + 828.0, + 1405.0, + 828.0, + 1405.0, + 866.0, + 747.0, + 866.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 859.0, + 556.0, + 859.0, + 556.0, + 896.0, + 295.0, + 896.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 685.0, + 859.0, + 792.0, + 859.0, + 792.0, + 896.0, + 685.0, + 896.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 813.0, + 859.0, + 941.0, + 859.0, + 941.0, + 896.0, + 813.0, + 896.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 961.0, + 859.0, + 1154.0, + 859.0, + 1154.0, + 896.0, + 961.0, + 896.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1173.0, + 859.0, + 1405.0, + 859.0, + 1405.0, + 896.0, + 1173.0, + 896.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 890.0, + 297.0, + 890.0, + 297.0, + 926.0, + 292.0, + 926.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 314.0, + 890.0, + 711.0, + 890.0, + 711.0, + 926.0, + 314.0, + 926.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 753.0, + 890.0, + 1405.0, + 890.0, + 1405.0, + 926.0, + 753.0, + 926.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 922.0, + 481.0, + 922.0, + 481.0, + 955.0, + 296.0, + 955.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 507.0, + 922.0, + 727.0, + 922.0, + 727.0, + 955.0, + 507.0, + 955.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 418.0, + 1405.0, + 418.0, + 1405.0, + 451.0, + 296.0, + 451.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 447.0, + 1404.0, + 447.0, + 1404.0, + 481.0, + 294.0, + 481.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 478.0, + 1404.0, + 478.0, + 1404.0, + 511.0, + 294.0, + 511.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 507.0, + 1404.0, + 507.0, + 1404.0, + 545.0, + 294.0, + 545.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 541.0, + 1400.0, + 541.0, + 1400.0, + 574.0, + 296.0, + 574.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1882.0, + 1404.0, + 1882.0, + 1404.0, + 1915.0, + 295.0, + 1915.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1910.0, + 981.0, + 1910.0, + 981.0, + 1943.0, + 297.0, + 1943.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1041.0, + 1910.0, + 1403.0, + 1910.0, + 1403.0, + 1943.0, + 1041.0, + 1943.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1942.0, + 1120.0, + 1942.0, + 1120.0, + 1979.0, + 294.0, + 1979.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1184.0, + 1942.0, + 1406.0, + 1942.0, + 1406.0, + 1979.0, + 1184.0, + 1979.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1973.0, + 1406.0, + 1973.0, + 1406.0, + 2007.0, + 295.0, + 2007.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 2004.0, + 1405.0, + 2004.0, + 1405.0, + 2037.0, + 295.0, + 2037.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1443.0, + 1404.0, + 1443.0, + 1404.0, + 1482.0, + 293.0, + 1482.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1473.0, + 1405.0, + 1473.0, + 1405.0, + 1512.0, + 292.0, + 1512.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1506.0, + 1326.0, + 1506.0, + 1326.0, + 1544.0, + 294.0, + 1544.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 223.0, + 1066.0, + 223.0, + 1066.0, + 267.0, + 291.0, + 267.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1114.0, + 223.0, + 1407.0, + 223.0, + 1407.0, + 267.0, + 1114.0, + 267.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 261.0, + 946.0, + 261.0, + 946.0, + 296.0, + 296.0, + 296.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 975.0, + 261.0, + 1142.0, + 261.0, + 1142.0, + 296.0, + 975.0, + 296.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1217.0, + 261.0, + 1403.0, + 261.0, + 1403.0, + 296.0, + 1217.0, + 296.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 288.0, + 1141.0, + 288.0, + 1141.0, + 330.0, + 294.0, + 330.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1169.0, + 288.0, + 1180.0, + 288.0, + 1180.0, + 330.0, + 1169.0, + 330.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 585.0, + 1406.0, + 585.0, + 1406.0, + 623.0, + 293.0, + 623.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 612.0, + 1409.0, + 612.0, + 1409.0, + 654.0, + 292.0, + 654.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 646.0, + 1347.0, + 646.0, + 1347.0, + 682.0, + 295.0, + 682.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 2, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 297, + 1314, + 1406, + 1314, + 1406, + 1562, + 297, + 1562 + ], + "score": 0.983 + }, + { + "category_id": 1, + "poly": [ + 298, + 845, + 1405, + 845, + 1405, + 969, + 298, + 969 + ], + "score": 0.981 + }, + { + "category_id": 1, + "poly": [ + 297, + 384, + 1406, + 384, + 1406, + 571, + 297, + 571 + ], + "score": 0.981 + }, + { + "category_id": 1, + "poly": [ + 298, + 1671, + 1404, + 1671, + 1404, + 1797, + 298, + 1797 + ], + "score": 0.98 + }, + { + "category_id": 1, + "poly": [ + 298, + 659, + 1404, + 659, + 1404, + 753, + 298, + 753 + ], + "score": 0.976 + }, + { + "category_id": 8, + "poly": [ + 637, + 581, + 1060, + 581, + 1060, + 651, + 637, + 651 + ], + "score": 0.955 + }, + { + "category_id": 1, + "poly": [ + 299, + 1081, + 1403, + 1081, + 1403, + 1176, + 299, + 1176 + ], + "score": 0.953 + }, + { + "category_id": 8, + "poly": [ + 535, + 982, + 1162, + 982, + 1162, + 1070, + 535, + 1070 + ], + "score": 0.953 + }, + { + "category_id": 1, + "poly": [ + 297, + 229, + 1402, + 229, + 1402, + 294, + 297, + 294 + ], + "score": 0.953 + }, + { + "category_id": 1, + "poly": [ + 294, + 1181, + 1400, + 1181, + 1400, + 1244, + 294, + 1244 + ], + "score": 0.946 + }, + { + "category_id": 1, + "poly": [ + 296, + 1810, + 1399, + 1810, + 1399, + 1874, + 296, + 1874 + ], + "score": 0.945 + }, + { + "category_id": 8, + "poly": [ + 667, + 1252, + 1034, + 1252, + 1034, + 1294, + 667, + 1294 + ], + "score": 0.942 + }, + { + "category_id": 1, + "poly": [ + 295, + 1880, + 1401, + 1880, + 1401, + 1942, + 295, + 1942 + ], + "score": 0.938 + }, + { + "category_id": 8, + "poly": [ + 617, + 1950, + 1084, + 1950, + 1084, + 1993, + 617, + 1993 + ], + "score": 0.938 + }, + { + "category_id": 0, + "poly": [ + 299, + 1602, + 1129, + 1602, + 1129, + 1641, + 299, + 1641 + ], + "score": 0.931 + }, + { + "category_id": 1, + "poly": [ + 291, + 2001, + 1355, + 2001, + 1355, + 2036, + 291, + 2036 + ], + "score": 0.92 + }, + { + "category_id": 2, + "poly": [ + 299, + 74, + 815, + 74, + 815, + 105, + 299, + 105 + ], + "score": 0.912 + }, + { + "category_id": 0, + "poly": [ + 301, + 327, + 821, + 327, + 821, + 361, + 301, + 361 + ], + "score": 0.907 + }, + { + "category_id": 9, + "poly": [ + 1366, + 599, + 1400, + 599, + 1400, + 629, + 1366, + 629 + ], + "score": 0.889 + }, + { + "category_id": 9, + "poly": [ + 1366, + 1011, + 1400, + 1011, + 1400, + 1041, + 1366, + 1041 + ], + "score": 0.887 + }, + { + "category_id": 9, + "poly": [ + 1366, + 1258, + 1400, + 1258, + 1400, + 1287, + 1366, + 1287 + ], + "score": 0.873 + }, + { + "category_id": 9, + "poly": [ + 1366, + 1957, + 1400, + 1957, + 1400, + 1986, + 1366, + 1986 + ], + "score": 0.855 + }, + { + "category_id": 0, + "poly": [ + 300, + 788, + 1119, + 788, + 1119, + 821, + 300, + 821 + ], + "score": 0.844 + }, + { + "category_id": 2, + "poly": [ + 840, + 2088, + 857, + 2088, + 857, + 2111, + 840, + 2111 + ], + "score": 0.799 + }, + { + "category_id": 14, + "poly": [ + 636, + 578, + 1061, + 578, + 1061, + 651, + 636, + 651 + ], + "score": 0.94, + "latex": "p ( y | x ; \\theta ) = \\int _ { S } p ( y | x , s ; \\theta ) p ( s ) d \\mu ( s ) ," + }, + { + "category_id": 14, + "poly": [ + 536, + 977, + 1160, + 977, + 1160, + 1073, + 536, + 1073 + ], + "score": 0.94, + "latex": "\\theta ^ { * } = \\underset { \\theta } { \\operatorname { a r g m i n } } - l ( D ; \\theta ) = \\underset { \\theta } { \\operatorname { a r g m i n } } - \\sum _ { i = 1 } ^ { N } \\log p ( y _ { i } | x _ { i } ; \\theta ) ," + }, + { + "category_id": 13, + "poly": [ + 933, + 1881, + 1116, + 1881, + 1116, + 1915, + 933, + 1915 + ], + "score": 0.93, + "latex": "\\mathbf { h } = f ( x \\odot \\gamma ; \\theta )" + }, + { + "category_id": 13, + "poly": [ + 375, + 1082, + 477, + 1082, + 477, + 1115, + 375, + 1115 + ], + "score": 0.93, + "latex": "p ( \\boldsymbol { y } | \\boldsymbol { x } ; \\boldsymbol { \\theta } )" + }, + { + "category_id": 13, + "poly": [ + 416, + 1409, + 517, + 1409, + 517, + 1440, + 416, + 1440 + ], + "score": 0.92, + "latex": "p ( \\boldsymbol { y } | \\boldsymbol { x } ; \\boldsymbol { \\theta } )" + }, + { + "category_id": 13, + "poly": [ + 370, + 660, + 496, + 660, + 496, + 694, + 370, + 694 + ], + "score": 0.92, + "latex": "p ( \\boldsymbol { y } | \\boldsymbol { x } , s ; \\theta )" + }, + { + "category_id": 13, + "poly": [ + 684, + 721, + 738, + 721, + 738, + 754, + 684, + 754 + ], + "score": 0.92, + "latex": "\\mu ( s )" + }, + { + "category_id": 13, + "poly": [ + 1162, + 1469, + 1246, + 1469, + 1246, + 1502, + 1162, + 1502 + ], + "score": 0.92, + "latex": "( x _ { i } , y _ { i } )" + }, + { + "category_id": 13, + "poly": [ + 529, + 691, + 580, + 691, + 580, + 724, + 529, + 724 + ], + "score": 0.91, + "latex": "p ( s )" + }, + { + "category_id": 13, + "poly": [ + 1150, + 1081, + 1368, + 1081, + 1368, + 1116, + 1150, + 1116 + ], + "score": 0.91, + "latex": "\\operatorname { E } _ { S _ { D } } [ - l ( D , S _ { D } ; \\theta ) ]" + }, + { + "category_id": 14, + "poly": [ + 661, + 1253, + 1036, + 1253, + 1036, + 1292, + 661, + 1292 + ], + "score": 0.91, + "latex": "- l ( D ; \\theta ) \\leq \\mathrm { E } _ { S _ { D } } [ - l ( D , S _ { D } ; \\theta ) ] ." + }, + { + "category_id": 13, + "poly": [ + 506, + 1765, + 560, + 1765, + 560, + 1798, + 506, + 1798 + ], + "score": 0.91, + "latex": "p ( x )" + }, + { + "category_id": 13, + "poly": [ + 469, + 1912, + 563, + 1912, + 563, + 1943, + 469, + 1943 + ], + "score": 0.91, + "latex": "{ { \\mathcal { X } } ^ { \\prime } } \\subseteq { { \\mathcal { X } } }" + }, + { + "category_id": 14, + "poly": [ + 613, + 1950, + 1087, + 1950, + 1087, + 1994, + 613, + 1994 + ], + "score": 0.91, + "latex": "\\left\\| \\operatorname { E } [ f ( x \\odot \\Gamma ; \\theta ) ] - f ( x \\odot \\operatorname { E } [ \\Gamma ] ; \\theta ) \\right\\| _ { 2 } = 0 ." + }, + { + "category_id": 13, + "poly": [ + 673, + 1915, + 755, + 1915, + 755, + 1940, + 673, + 1940 + ], + "score": 0.89, + "latex": "x \\in \\mathcal { X } ^ { \\prime }" + }, + { + "category_id": 13, + "poly": [ + 723, + 1470, + 753, + 1470, + 753, + 1499, + 723, + 1499 + ], + "score": 0.88, + "latex": "S _ { i }" + }, + { + "category_id": 13, + "poly": [ + 561, + 2005, + 594, + 2005, + 594, + 2029, + 561, + 2029 + ], + "score": 0.86, + "latex": "\\mathcal { X } ^ { \\prime }" + }, + { + "category_id": 13, + "poly": [ + 1318, + 2006, + 1350, + 2006, + 1350, + 2030, + 1318, + 2030 + ], + "score": 0.85, + "latex": "\\mathcal { X } ^ { \\prime }" + }, + { + "category_id": 13, + "poly": [ + 905, + 1675, + 945, + 1675, + 945, + 1704, + 905, + 1704 + ], + "score": 0.85, + "latex": "\\ S \\ O 3" + }, + { + "category_id": 13, + "poly": [ + 606, + 510, + 632, + 510, + 632, + 536, + 606, + 536 + ], + "score": 0.84, + "latex": "\\mathcal { X }" + }, + { + "category_id": 13, + "poly": [ + 1107, + 723, + 1128, + 723, + 1128, + 748, + 1107, + 748 + ], + "score": 0.83, + "latex": "s" + }, + { + "category_id": 13, + "poly": [ + 1091, + 510, + 1113, + 510, + 1113, + 536, + 1091, + 536 + ], + "score": 0.83, + "latex": "s" + }, + { + "category_id": 13, + "poly": [ + 954, + 2004, + 971, + 2004, + 971, + 2030, + 954, + 2030 + ], + "score": 0.82, + "latex": "\\theta" + }, + { + "category_id": 13, + "poly": [ + 531, + 909, + 557, + 909, + 557, + 935, + 531, + 935 + ], + "score": 0.82, + "latex": "D" + }, + { + "category_id": 13, + "poly": [ + 1220, + 1503, + 1236, + 1503, + 1236, + 1527, + 1220, + 1527 + ], + "score": 0.82, + "latex": "\\theta" + }, + { + "category_id": 13, + "poly": [ + 588, + 544, + 606, + 544, + 606, + 571, + 588, + 571 + ], + "score": 0.81, + "latex": "y" + }, + { + "category_id": 13, + "poly": [ + 1099, + 453, + 1117, + 453, + 1117, + 480, + 1099, + 480 + ], + "score": 0.81, + "latex": "y" + }, + { + "category_id": 13, + "poly": [ + 491, + 1442, + 512, + 1442, + 512, + 1466, + 491, + 1466 + ], + "score": 0.81, + "latex": "S" + }, + { + "category_id": 13, + "poly": [ + 1006, + 692, + 1027, + 692, + 1027, + 719, + 1006, + 719 + ], + "score": 0.81, + "latex": "S" + }, + { + "category_id": 13, + "poly": [ + 887, + 541, + 903, + 541, + 903, + 565, + 887, + 565 + ], + "score": 0.81, + "latex": "\\theta" + }, + { + "category_id": 13, + "poly": [ + 831, + 510, + 855, + 510, + 855, + 538, + 831, + 538 + ], + "score": 0.8, + "latex": "\\mathcal { V }" + }, + { + "category_id": 13, + "poly": [ + 676, + 545, + 695, + 545, + 695, + 566, + 676, + 566 + ], + "score": 0.78, + "latex": "x" + }, + { + "category_id": 13, + "poly": [ + 1266, + 232, + 1283, + 232, + 1283, + 258, + 1266, + 258 + ], + "score": 0.77, + "latex": "\\theta" + }, + { + "category_id": 13, + "poly": [ + 950, + 453, + 968, + 453, + 968, + 475, + 950, + 475 + ], + "score": 0.77, + "latex": "x" + }, + { + "category_id": 13, + "poly": [ + 608, + 727, + 626, + 727, + 626, + 748, + 608, + 748 + ], + "score": 0.76, + "latex": "x" + }, + { + "category_id": 13, + "poly": [ + 725, + 484, + 740, + 484, + 740, + 505, + 725, + 505 + ], + "score": 0.73, + "latex": "s" + }, + { + "category_id": 13, + "poly": [ + 1385, + 668, + 1401, + 668, + 1401, + 688, + 1385, + 688 + ], + "score": 0.59, + "latex": "s" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1600.0, + 1133.0, + 1600.0, + 1133.0, + 1647.0, + 292.0, + 1647.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": [ + 295.0, + 328.0, + 826.0, + 328.0, + 826.0, + 364.0, + 295.0, + 364.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 787.0, + 1122.0, + 787.0, + 1122.0, + 825.0, + 294.0, + 825.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 838.0, + 2086.0, + 861.0, + 2086.0, + 861.0, + 2118.0, + 838.0, + 2118.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1315.0, + 1404.0, + 1315.0, + 1404.0, + 1352.0, + 294.0, + 1352.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1341.0, + 1408.0, + 1341.0, + 1408.0, + 1385.0, + 292.0, + 1385.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1376.0, + 1406.0, + 1376.0, + 1406.0, + 1413.0, + 294.0, + 1413.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1407.0, + 415.0, + 1407.0, + 415.0, + 1444.0, + 294.0, + 1444.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 518.0, + 1407.0, + 1407.0, + 1407.0, + 1407.0, + 1444.0, + 518.0, + 1444.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1438.0, + 490.0, + 1438.0, + 490.0, + 1475.0, + 294.0, + 1475.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 513.0, + 1438.0, + 1406.0, + 1438.0, + 1406.0, + 1475.0, + 513.0, + 1475.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1468.0, + 722.0, + 1468.0, + 722.0, + 1506.0, + 292.0, + 1506.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 754.0, + 1468.0, + 1161.0, + 1468.0, + 1161.0, + 1506.0, + 754.0, + 1506.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1247.0, + 1468.0, + 1407.0, + 1468.0, + 1407.0, + 1506.0, + 1247.0, + 1506.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1501.0, + 1219.0, + 1501.0, + 1219.0, + 1535.0, + 294.0, + 1535.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1237.0, + 1501.0, + 1403.0, + 1501.0, + 1403.0, + 1535.0, + 1237.0, + 1535.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1531.0, + 975.0, + 1531.0, + 975.0, + 1565.0, + 295.0, + 1565.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 845.0, + 1405.0, + 845.0, + 1405.0, + 880.0, + 293.0, + 880.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 878.0, + 1406.0, + 878.0, + 1406.0, + 911.0, + 295.0, + 911.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 905.0, + 530.0, + 905.0, + 530.0, + 946.0, + 290.0, + 946.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 558.0, + 905.0, + 1408.0, + 905.0, + 1408.0, + 946.0, + 558.0, + 946.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 939.0, + 1131.0, + 939.0, + 1131.0, + 971.0, + 293.0, + 971.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 387.0, + 1404.0, + 387.0, + 1404.0, + 419.0, + 294.0, + 419.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 416.0, + 1409.0, + 416.0, + 1409.0, + 452.0, + 294.0, + 452.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 445.0, + 949.0, + 445.0, + 949.0, + 483.0, + 292.0, + 483.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 969.0, + 445.0, + 1098.0, + 445.0, + 1098.0, + 483.0, + 969.0, + 483.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1118.0, + 445.0, + 1406.0, + 445.0, + 1406.0, + 483.0, + 1118.0, + 483.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 479.0, + 724.0, + 479.0, + 724.0, + 511.0, + 295.0, + 511.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 741.0, + 479.0, + 1407.0, + 479.0, + 1407.0, + 511.0, + 741.0, + 511.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 507.0, + 605.0, + 507.0, + 605.0, + 544.0, + 292.0, + 544.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 633.0, + 507.0, + 830.0, + 507.0, + 830.0, + 544.0, + 633.0, + 544.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 856.0, + 507.0, + 1090.0, + 507.0, + 1090.0, + 544.0, + 856.0, + 544.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1114.0, + 507.0, + 1407.0, + 507.0, + 1407.0, + 544.0, + 1114.0, + 544.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 539.0, + 587.0, + 539.0, + 587.0, + 574.0, + 294.0, + 574.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 607.0, + 539.0, + 675.0, + 539.0, + 675.0, + 574.0, + 607.0, + 574.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 696.0, + 539.0, + 886.0, + 539.0, + 886.0, + 574.0, + 696.0, + 574.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 904.0, + 539.0, + 1102.0, + 539.0, + 1102.0, + 574.0, + 904.0, + 574.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1673.0, + 904.0, + 1673.0, + 904.0, + 1706.0, + 294.0, + 1706.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 946.0, + 1673.0, + 1404.0, + 1673.0, + 1404.0, + 1706.0, + 946.0, + 1706.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1705.0, + 1406.0, + 1705.0, + 1406.0, + 1738.0, + 294.0, + 1738.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1733.0, + 1405.0, + 1733.0, + 1405.0, + 1772.0, + 293.0, + 1772.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1765.0, + 505.0, + 1765.0, + 505.0, + 1800.0, + 293.0, + 1800.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 561.0, + 1765.0, + 777.0, + 1765.0, + 777.0, + 1800.0, + 561.0, + 1800.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 657.0, + 369.0, + 657.0, + 369.0, + 695.0, + 294.0, + 695.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 497.0, + 657.0, + 1384.0, + 657.0, + 1384.0, + 695.0, + 497.0, + 695.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1402.0, + 657.0, + 1405.0, + 657.0, + 1405.0, + 695.0, + 1402.0, + 695.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 689.0, + 528.0, + 689.0, + 528.0, + 723.0, + 294.0, + 723.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 581.0, + 689.0, + 1005.0, + 689.0, + 1005.0, + 723.0, + 581.0, + 723.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1028.0, + 689.0, + 1404.0, + 689.0, + 1404.0, + 723.0, + 1028.0, + 723.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 721.0, + 607.0, + 721.0, + 607.0, + 755.0, + 294.0, + 755.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 627.0, + 721.0, + 683.0, + 721.0, + 683.0, + 755.0, + 627.0, + 755.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 739.0, + 721.0, + 1106.0, + 721.0, + 1106.0, + 755.0, + 739.0, + 755.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1129.0, + 721.0, + 1140.0, + 721.0, + 1140.0, + 755.0, + 1129.0, + 755.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1076.0, + 374.0, + 1076.0, + 374.0, + 1120.0, + 292.0, + 1120.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 478.0, + 1076.0, + 1149.0, + 1076.0, + 1149.0, + 1120.0, + 478.0, + 1120.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1369.0, + 1076.0, + 1407.0, + 1076.0, + 1407.0, + 1120.0, + 1369.0, + 1120.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1110.0, + 1405.0, + 1110.0, + 1405.0, + 1148.0, + 294.0, + 1148.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1142.0, + 458.0, + 1142.0, + 458.0, + 1181.0, + 294.0, + 1181.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 229.0, + 1265.0, + 229.0, + 1265.0, + 265.0, + 296.0, + 265.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1284.0, + 229.0, + 1404.0, + 229.0, + 1404.0, + 265.0, + 1284.0, + 265.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 260.0, + 742.0, + 260.0, + 742.0, + 298.0, + 294.0, + 298.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1178.0, + 1405.0, + 1178.0, + 1405.0, + 1220.0, + 293.0, + 1220.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1213.0, + 851.0, + 1213.0, + 851.0, + 1248.0, + 296.0, + 1248.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1806.0, + 1404.0, + 1806.0, + 1404.0, + 1848.0, + 292.0, + 1848.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1841.0, + 990.0, + 1841.0, + 990.0, + 1879.0, + 295.0, + 1879.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1876.0, + 932.0, + 1876.0, + 932.0, + 1917.0, + 293.0, + 1917.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1117.0, + 1876.0, + 1405.0, + 1876.0, + 1405.0, + 1917.0, + 1117.0, + 1917.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1908.0, + 468.0, + 1908.0, + 468.0, + 1948.0, + 293.0, + 1948.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 564.0, + 1908.0, + 672.0, + 1908.0, + 672.0, + 1948.0, + 564.0, + 1948.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 756.0, + 1908.0, + 859.0, + 1908.0, + 859.0, + 1948.0, + 756.0, + 1948.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1999.0, + 560.0, + 1999.0, + 560.0, + 2038.0, + 294.0, + 2038.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 595.0, + 1999.0, + 953.0, + 1999.0, + 953.0, + 2038.0, + 595.0, + 2038.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 972.0, + 1999.0, + 1317.0, + 1999.0, + 1317.0, + 2038.0, + 972.0, + 2038.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1351.0, + 1999.0, + 1360.0, + 1999.0, + 1360.0, + 2038.0, + 1351.0, + 2038.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 3, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 297, + 366, + 1405, + 366, + 1405, + 645, + 297, + 645 + ], + "score": 0.983 + }, + { + "category_id": 1, + "poly": [ + 297, + 882, + 1404, + 882, + 1404, + 1070, + 297, + 1070 + ], + "score": 0.979 + }, + { + "category_id": 1, + "poly": [ + 297, + 1612, + 1405, + 1612, + 1405, + 1800, + 297, + 1800 + ], + "score": 0.978 + }, + { + "category_id": 1, + "poly": [ + 298, + 1255, + 1404, + 1255, + 1404, + 1411, + 298, + 1411 + ], + "score": 0.978 + }, + { + "category_id": 1, + "poly": [ + 298, + 228, + 1402, + 228, + 1402, + 353, + 298, + 353 + ], + "score": 0.976 + }, + { + "category_id": 1, + "poly": [ + 298, + 1496, + 1405, + 1496, + 1405, + 1592, + 298, + 1592 + ], + "score": 0.969 + }, + { + "category_id": 8, + "poly": [ + 616, + 1120, + 1084, + 1120, + 1084, + 1186, + 616, + 1186 + ], + "score": 0.949 + }, + { + "category_id": 1, + "poly": [ + 299, + 1425, + 1399, + 1425, + 1399, + 1489, + 299, + 1489 + ], + "score": 0.947 + }, + { + "category_id": 1, + "poly": [ + 298, + 797, + 1402, + 797, + 1402, + 860, + 298, + 860 + ], + "score": 0.945 + }, + { + "category_id": 8, + "poly": [ + 524, + 1929, + 1173, + 1929, + 1173, + 1986, + 524, + 1986 + ], + "score": 0.942 + }, + { + "category_id": 1, + "poly": [ + 296, + 651, + 1402, + 651, + 1402, + 715, + 296, + 715 + ], + "score": 0.942 + }, + { + "category_id": 8, + "poly": [ + 542, + 728, + 1154, + 728, + 1154, + 784, + 542, + 784 + ], + "score": 0.938 + }, + { + "category_id": 1, + "poly": [ + 301, + 1200, + 1137, + 1200, + 1137, + 1234, + 301, + 1234 + ], + "score": 0.937 + }, + { + "category_id": 1, + "poly": [ + 294, + 1853, + 1402, + 1853, + 1402, + 1918, + 294, + 1918 + ], + "score": 0.932 + }, + { + "category_id": 1, + "poly": [ + 295, + 2002, + 1328, + 2002, + 1328, + 2036, + 295, + 2036 + ], + "score": 0.927 + }, + { + "category_id": 1, + "poly": [ + 302, + 1075, + 1393, + 1075, + 1393, + 1109, + 302, + 1109 + ], + "score": 0.917 + }, + { + "category_id": 2, + "poly": [ + 300, + 75, + 815, + 75, + 815, + 105, + 300, + 105 + ], + "score": 0.909 + }, + { + "category_id": 1, + "poly": [ + 293, + 1813, + 1379, + 1813, + 1379, + 1847, + 293, + 1847 + ], + "score": 0.907 + }, + { + "category_id": 9, + "poly": [ + 1352, + 1942, + 1400, + 1942, + 1400, + 1972, + 1352, + 1972 + ], + "score": 0.879 + }, + { + "category_id": 9, + "poly": [ + 1366, + 742, + 1400, + 742, + 1400, + 771, + 1366, + 771 + ], + "score": 0.879 + }, + { + "category_id": 9, + "poly": [ + 1365, + 1135, + 1400, + 1135, + 1400, + 1165, + 1365, + 1165 + ], + "score": 0.871 + }, + { + "category_id": 2, + "poly": [ + 841, + 2088, + 859, + 2088, + 859, + 2112, + 841, + 2112 + ], + "score": 0.765 + }, + { + "category_id": 14, + "poly": [ + 616, + 1120, + 1081, + 1120, + 1081, + 1190, + 616, + 1190 + ], + "score": 0.94, + "latex": "\\operatorname { E } \\Big [ \\operatorname* { i n f } _ { x ^ { * } \\in \\mathcal { X } ^ { \\prime } } \\operatorname* { s u p } _ { \\gamma \\in S } \\| X \\odot \\gamma - x ^ { * } \\odot \\gamma \\| _ { 2 } \\Big ] \\leq C ," + }, + { + "category_id": 13, + "poly": [ + 371, + 1999, + 561, + 1999, + 561, + 2036, + 371, + 2036 + ], + "score": 0.93, + "latex": "\\mathbf { h } ^ { ( L ) } ( X , \\operatorname { E } [ S ] ; \\theta )" + }, + { + "category_id": 13, + "poly": [ + 1284, + 977, + 1337, + 977, + 1337, + 1009, + 1284, + 1009 + ], + "score": 0.93, + "latex": "p ( x )" + }, + { + "category_id": 13, + "poly": [ + 938, + 1737, + 1021, + 1737, + 1021, + 1770, + 938, + 1770 + ], + "score": 0.92, + "latex": "\\| W \\| _ { \\mathsf { o p } }" + }, + { + "category_id": 13, + "poly": [ + 1008, + 1076, + 1061, + 1076, + 1061, + 1110, + 1008, + 1110 + ], + "score": 0.92, + "latex": "p ( x )" + }, + { + "category_id": 13, + "poly": [ + 1017, + 683, + 1071, + 683, + 1071, + 716, + 1017, + 716 + ], + "score": 0.92, + "latex": "p ( x )" + }, + { + "category_id": 13, + "poly": [ + 562, + 797, + 616, + 797, + 616, + 831, + 562, + 831 + ], + "score": 0.92, + "latex": "p ( x )" + }, + { + "category_id": 14, + "poly": [ + 543, + 726, + 1154, + 726, + 1154, + 785, + 543, + 785 + ], + "score": 0.92, + "latex": "\\mathbb { E } _ { X } \\Big [ \\big \\| \\mathbb { E } _ { \\Gamma } \\big [ f ( X \\odot \\Gamma ; \\theta ) | X \\big ] - f ( X \\odot \\mathbb { E } [ \\Gamma ] ; \\theta ) \\big \\| _ { 2 } \\Big ] < \\delta ." + }, + { + "category_id": 13, + "poly": [ + 429, + 1257, + 482, + 1257, + 482, + 1291, + 429, + 1291 + ], + "score": 0.92, + "latex": "p ( x )" + }, + { + "category_id": 14, + "poly": [ + 526, + 1929, + 1173, + 1929, + 1173, + 1988, + 526, + 1988 + ], + "score": 0.92, + "latex": "\\mathrm { E } _ { X } \\Big [ \\big \\| \\mathrm { E } _ { S } \\big [ \\mathbf { H } ^ { ( L ) } ( X , S ; \\theta ) | X \\big ] - \\mathbf { h } ^ { ( L ) } ( X , \\mathrm { E } [ S ] ; \\theta ) \\big \\| _ { 2 } \\Big ] < \\delta ." + }, + { + "category_id": 13, + "poly": [ + 907, + 1614, + 962, + 1614, + 962, + 1648, + 907, + 1648 + ], + "score": 0.91, + "latex": "p ( x )" + }, + { + "category_id": 13, + "poly": [ + 1161, + 651, + 1371, + 651, + 1371, + 686, + 1161, + 686 + ], + "score": 0.91, + "latex": "\\mathbf { h } \\ = \\ f ( x \\odot \\gamma ; \\theta )" + }, + { + "category_id": 13, + "poly": [ + 688, + 1497, + 864, + 1497, + 864, + 1530, + 688, + 1530 + ], + "score": 0.91, + "latex": "\\mathbf { h } = f ( x \\odot \\gamma ; \\theta )" + }, + { + "category_id": 13, + "poly": [ + 879, + 1319, + 983, + 1319, + 983, + 1352, + 879, + 1352 + ], + "score": 0.91, + "latex": "( [ - \\alpha , \\alpha ] )" + }, + { + "category_id": 13, + "poly": [ + 1184, + 1528, + 1260, + 1528, + 1260, + 1562, + 1184, + 1562 + ], + "score": 0.91, + "latex": "\\| \\cdot \\| _ { \\mathsf { o p } }" + }, + { + "category_id": 13, + "poly": [ + 1271, + 1077, + 1365, + 1077, + 1365, + 1107, + 1271, + 1107 + ], + "score": 0.91, + "latex": "{ { \\mathcal { X } } ^ { \\prime } } \\subseteq { { \\mathcal { X } } }" + }, + { + "category_id": 13, + "poly": [ + 432, + 1736, + 764, + 1736, + 764, + 1770, + 432, + 1770 + ], + "score": 0.91, + "latex": "\\| \\nabla \\bar { f ( \\cdot ) } \\| _ { \\mathsf { o p } } = | \\sigma ^ { \\prime } \\bar { ( \\cdot ) } | \\cdot \\| W \\| _ { \\mathsf { o p } }" + }, + { + "category_id": 13, + "poly": [ + 1276, + 1737, + 1347, + 1737, + 1347, + 1770, + 1276, + 1770 + ], + "score": 0.91, + "latex": "| \\sigma ^ { \\prime } ( \\cdot ) |" + }, + { + "category_id": 13, + "poly": [ + 399, + 1528, + 454, + 1528, + 454, + 1561, + 399, + 1561 + ], + "score": 0.91, + "latex": "p ( x )" + }, + { + "category_id": 13, + "poly": [ + 983, + 1888, + 1036, + 1888, + 1036, + 1918, + 983, + 1918 + ], + "score": 0.91, + "latex": "p ( x )" + }, + { + "category_id": 13, + "poly": [ + 383, + 292, + 478, + 292, + 478, + 319, + 383, + 319 + ], + "score": 0.9, + "latex": "\\mathcal { X } ^ { \\prime } = \\mathcal { X }" + }, + { + "category_id": 13, + "poly": [ + 1303, + 1497, + 1398, + 1497, + 1398, + 1528, + 1303, + 1528 + ], + "score": 0.9, + "latex": "{ { \\mathcal { X } } ^ { \\prime } } \\subseteq { { \\mathcal { X } } }" + }, + { + "category_id": 13, + "poly": [ + 543, + 1558, + 597, + 1558, + 597, + 1592, + 543, + 1592 + ], + "score": 0.9, + "latex": "p ( x )" + }, + { + "category_id": 13, + "poly": [ + 952, + 1676, + 996, + 1676, + 996, + 1707, + 952, + 1707 + ], + "score": 0.9, + "latex": "\\nabla f" + }, + { + "category_id": 13, + "poly": [ + 617, + 1528, + 652, + 1528, + 652, + 1555, + 617, + 1555 + ], + "score": 0.87, + "latex": "\\mathcal { X } ^ { \\prime }" + }, + { + "category_id": 13, + "poly": [ + 1065, + 400, + 1099, + 400, + 1099, + 427, + 1065, + 427 + ], + "score": 0.87, + "latex": "\\mathcal { X } ^ { \\prime }" + }, + { + "category_id": 13, + "poly": [ + 733, + 401, + 752, + 401, + 752, + 431, + 733, + 431 + ], + "score": 0.86, + "latex": "f" + }, + { + "category_id": 13, + "poly": [ + 621, + 521, + 655, + 521, + 655, + 550, + 621, + 550 + ], + "score": 0.86, + "latex": "\\mathcal { X } ^ { \\prime }" + }, + { + "category_id": 13, + "poly": [ + 1008, + 262, + 1028, + 262, + 1028, + 294, + 1008, + 294 + ], + "score": 0.86, + "latex": "f" + }, + { + "category_id": 13, + "poly": [ + 706, + 1258, + 741, + 1258, + 741, + 1285, + 706, + 1285 + ], + "score": 0.86, + "latex": "\\mathcal { X } ^ { \\prime }" + }, + { + "category_id": 13, + "poly": [ + 1097, + 1890, + 1121, + 1890, + 1121, + 1911, + 1097, + 1911 + ], + "score": 0.85, + "latex": "\\mathcal { X }" + }, + { + "category_id": 13, + "poly": [ + 1091, + 1078, + 1115, + 1078, + 1115, + 1104, + 1091, + 1104 + ], + "score": 0.85, + "latex": "C" + }, + { + "category_id": 13, + "poly": [ + 1131, + 684, + 1157, + 684, + 1157, + 710, + 1131, + 710 + ], + "score": 0.84, + "latex": "\\mathcal { X }" + }, + { + "category_id": 13, + "poly": [ + 359, + 1291, + 392, + 1291, + 392, + 1316, + 359, + 1316 + ], + "score": 0.84, + "latex": "\\mathcal { X } ^ { \\prime }" + }, + { + "category_id": 13, + "poly": [ + 1169, + 799, + 1185, + 799, + 1185, + 825, + 1169, + 825 + ], + "score": 0.83, + "latex": "\\theta" + }, + { + "category_id": 13, + "poly": [ + 516, + 1259, + 541, + 1259, + 541, + 1286, + 516, + 1286 + ], + "score": 0.82, + "latex": "C" + }, + { + "category_id": 13, + "poly": [ + 488, + 1203, + 510, + 1203, + 510, + 1229, + 488, + 1229 + ], + "score": 0.82, + "latex": "s" + }, + { + "category_id": 13, + "poly": [ + 1206, + 1320, + 1230, + 1320, + 1230, + 1346, + 1206, + 1346 + ], + "score": 0.82, + "latex": "C" + }, + { + "category_id": 13, + "poly": [ + 512, + 323, + 530, + 323, + 530, + 349, + 512, + 349 + ], + "score": 0.81, + "latex": "\\theta" + }, + { + "category_id": 13, + "poly": [ + 488, + 1529, + 513, + 1529, + 513, + 1556, + 488, + 1556 + ], + "score": 0.8, + "latex": "C" + }, + { + "category_id": 13, + "poly": [ + 1041, + 1264, + 1059, + 1264, + 1059, + 1290, + 1041, + 1290 + ], + "score": 0.8, + "latex": "p" + }, + { + "category_id": 13, + "poly": [ + 1215, + 799, + 1231, + 799, + 1231, + 825, + 1215, + 825 + ], + "score": 0.79, + "latex": "\\delta" + }, + { + "category_id": 13, + "poly": [ + 416, + 1886, + 432, + 1886, + 432, + 1912, + 416, + 1912 + ], + "score": 0.79, + "latex": "\\delta" + }, + { + "category_id": 13, + "poly": [ + 1268, + 1857, + 1289, + 1857, + 1289, + 1882, + 1268, + 1882 + ], + "score": 0.79, + "latex": "L" + }, + { + "category_id": 13, + "poly": [ + 790, + 1528, + 1094, + 1528, + 1094, + 1561, + 790, + 1561 + ], + "score": 0.78, + "latex": "x \\in \\mathcal { X } , \\| \\nabla _ { x } f ( x ) \\| _ { \\mathsf { o p } } \\leq B ," + }, + { + "category_id": 13, + "poly": [ + 1376, + 1258, + 1401, + 1258, + 1401, + 1286, + 1376, + 1286 + ], + "score": 0.78, + "latex": "C" + }, + { + "category_id": 13, + "poly": [ + 628, + 1559, + 688, + 1559, + 688, + 1587, + 628, + 1587 + ], + "score": 0.78, + "latex": "2 B C" + }, + { + "category_id": 13, + "poly": [ + 646, + 798, + 663, + 798, + 663, + 825, + 646, + 825 + ], + "score": 0.77, + "latex": "\\delta" + }, + { + "category_id": 13, + "poly": [ + 298, + 685, + 313, + 685, + 313, + 710, + 298, + 710 + ], + "score": 0.76, + "latex": "\\delta" + }, + { + "category_id": 13, + "poly": [ + 363, + 1773, + 383, + 1773, + 383, + 1795, + 363, + 1795 + ], + "score": 0.76, + "latex": "\\sigma" + }, + { + "category_id": 13, + "poly": [ + 643, + 1774, + 663, + 1774, + 663, + 1795, + 643, + 1795 + ], + "score": 0.76, + "latex": "\\sigma" + }, + { + "category_id": 13, + "poly": [ + 1218, + 1708, + 1232, + 1708, + 1232, + 1734, + 1218, + 1734 + ], + "score": 0.76, + "latex": "b" + }, + { + "category_id": 13, + "poly": [ + 945, + 1499, + 962, + 1499, + 962, + 1525, + 945, + 1525 + ], + "score": 0.74, + "latex": "\\theta" + }, + { + "category_id": 13, + "poly": [ + 1046, + 1707, + 1079, + 1707, + 1079, + 1735, + 1046, + 1735 + ], + "score": 0.67, + "latex": "W" + }, + { + "category_id": 13, + "poly": [ + 400, + 1742, + 419, + 1742, + 419, + 1764, + 400, + 1764 + ], + "score": 0.66, + "latex": "\\sigma" + }, + { + "category_id": 13, + "poly": [ + 789, + 1531, + 873, + 1531, + 873, + 1558, + 789, + 1558 + ], + "score": 0.62, + "latex": "x \\in \\mathcal { X }" + }, + { + "category_id": 13, + "poly": [ + 848, + 323, + 868, + 323, + 868, + 349, + 848, + 349 + ], + "score": 0.55, + "latex": "\\Gamma" + }, + { + "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": [ + 838.0, + 2085.0, + 862.0, + 2085.0, + 862.0, + 2119.0, + 838.0, + 2119.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 366.0, + 1408.0, + 366.0, + 1408.0, + 404.0, + 295.0, + 404.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 399.0, + 732.0, + 399.0, + 732.0, + 436.0, + 295.0, + 436.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 753.0, + 399.0, + 1064.0, + 399.0, + 1064.0, + 436.0, + 753.0, + 436.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1100.0, + 399.0, + 1406.0, + 399.0, + 1406.0, + 436.0, + 1100.0, + 436.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 428.0, + 1407.0, + 428.0, + 1407.0, + 466.0, + 292.0, + 466.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 459.0, + 1405.0, + 459.0, + 1405.0, + 495.0, + 294.0, + 495.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 491.0, + 1405.0, + 491.0, + 1405.0, + 524.0, + 294.0, + 524.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 521.0, + 620.0, + 521.0, + 620.0, + 558.0, + 295.0, + 558.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 656.0, + 521.0, + 1405.0, + 521.0, + 1405.0, + 558.0, + 656.0, + 558.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 550.0, + 1403.0, + 550.0, + 1403.0, + 587.0, + 295.0, + 587.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 583.0, + 1405.0, + 583.0, + 1405.0, + 616.0, + 292.0, + 616.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 612.0, + 617.0, + 612.0, + 617.0, + 648.0, + 294.0, + 648.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 883.0, + 1406.0, + 883.0, + 1406.0, + 919.0, + 295.0, + 919.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 916.0, + 1402.0, + 916.0, + 1402.0, + 948.0, + 295.0, + 948.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 944.0, + 1406.0, + 944.0, + 1406.0, + 981.0, + 292.0, + 981.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 977.0, + 1283.0, + 977.0, + 1283.0, + 1009.0, + 296.0, + 1009.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1338.0, + 977.0, + 1402.0, + 977.0, + 1402.0, + 1009.0, + 1338.0, + 1009.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1007.0, + 1405.0, + 1007.0, + 1405.0, + 1043.0, + 294.0, + 1043.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1038.0, + 989.0, + 1038.0, + 989.0, + 1072.0, + 295.0, + 1072.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1613.0, + 906.0, + 1613.0, + 906.0, + 1649.0, + 295.0, + 1649.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 963.0, + 1613.0, + 1405.0, + 1613.0, + 1405.0, + 1649.0, + 963.0, + 1649.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1644.0, + 1408.0, + 1644.0, + 1408.0, + 1680.0, + 294.0, + 1680.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1673.0, + 951.0, + 1673.0, + 951.0, + 1710.0, + 292.0, + 1710.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 997.0, + 1673.0, + 1406.0, + 1673.0, + 1406.0, + 1710.0, + 997.0, + 1710.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1707.0, + 1045.0, + 1707.0, + 1045.0, + 1739.0, + 296.0, + 1739.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1080.0, + 1707.0, + 1217.0, + 1707.0, + 1217.0, + 1739.0, + 1080.0, + 1739.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1233.0, + 1707.0, + 1403.0, + 1707.0, + 1403.0, + 1739.0, + 1233.0, + 1739.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1732.0, + 399.0, + 1732.0, + 399.0, + 1774.0, + 292.0, + 1774.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 420.0, + 1732.0, + 431.0, + 1732.0, + 431.0, + 1774.0, + 420.0, + 1774.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 765.0, + 1732.0, + 937.0, + 1732.0, + 937.0, + 1774.0, + 765.0, + 1774.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1022.0, + 1732.0, + 1275.0, + 1732.0, + 1275.0, + 1774.0, + 1022.0, + 1774.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1348.0, + 1732.0, + 1407.0, + 1732.0, + 1407.0, + 1774.0, + 1348.0, + 1774.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1769.0, + 362.0, + 1769.0, + 362.0, + 1801.0, + 296.0, + 1801.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 384.0, + 1769.0, + 642.0, + 1769.0, + 642.0, + 1801.0, + 384.0, + 1801.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 664.0, + 1769.0, + 763.0, + 1769.0, + 763.0, + 1801.0, + 664.0, + 1801.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1257.0, + 428.0, + 1257.0, + 428.0, + 1290.0, + 296.0, + 1290.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 483.0, + 1257.0, + 515.0, + 1257.0, + 515.0, + 1290.0, + 483.0, + 1290.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 542.0, + 1257.0, + 705.0, + 1257.0, + 705.0, + 1290.0, + 542.0, + 1290.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 742.0, + 1257.0, + 1040.0, + 1257.0, + 1040.0, + 1290.0, + 742.0, + 1290.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1060.0, + 1257.0, + 1375.0, + 1257.0, + 1375.0, + 1290.0, + 1060.0, + 1290.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1288.0, + 358.0, + 1288.0, + 358.0, + 1321.0, + 296.0, + 1321.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 1288.0, + 1404.0, + 1288.0, + 1404.0, + 1321.0, + 393.0, + 1321.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1314.0, + 878.0, + 1314.0, + 878.0, + 1354.0, + 293.0, + 1354.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 984.0, + 1314.0, + 1205.0, + 1314.0, + 1205.0, + 1354.0, + 984.0, + 1354.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1231.0, + 1314.0, + 1406.0, + 1314.0, + 1406.0, + 1354.0, + 1231.0, + 1354.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1349.0, + 1405.0, + 1349.0, + 1405.0, + 1382.0, + 296.0, + 1382.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1380.0, + 504.0, + 1380.0, + 504.0, + 1414.0, + 294.0, + 1414.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 228.0, + 1406.0, + 228.0, + 1406.0, + 267.0, + 293.0, + 267.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 262.0, + 1007.0, + 262.0, + 1007.0, + 295.0, + 296.0, + 295.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1029.0, + 262.0, + 1404.0, + 262.0, + 1404.0, + 295.0, + 1029.0, + 295.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 289.0, + 382.0, + 289.0, + 382.0, + 327.0, + 294.0, + 327.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 479.0, + 289.0, + 1404.0, + 289.0, + 1404.0, + 327.0, + 479.0, + 327.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 322.0, + 511.0, + 322.0, + 511.0, + 355.0, + 293.0, + 355.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 531.0, + 322.0, + 847.0, + 322.0, + 847.0, + 355.0, + 531.0, + 355.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 869.0, + 322.0, + 878.0, + 322.0, + 878.0, + 355.0, + 869.0, + 355.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1495.0, + 687.0, + 1495.0, + 687.0, + 1533.0, + 295.0, + 1533.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 865.0, + 1495.0, + 944.0, + 1495.0, + 944.0, + 1533.0, + 865.0, + 1533.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 963.0, + 1495.0, + 1302.0, + 1495.0, + 1302.0, + 1533.0, + 963.0, + 1533.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1399.0, + 1495.0, + 1407.0, + 1495.0, + 1407.0, + 1533.0, + 1399.0, + 1533.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1524.0, + 398.0, + 1524.0, + 398.0, + 1562.0, + 295.0, + 1562.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 455.0, + 1524.0, + 487.0, + 1524.0, + 487.0, + 1562.0, + 455.0, + 1562.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 514.0, + 1524.0, + 616.0, + 1524.0, + 616.0, + 1562.0, + 514.0, + 1562.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 653.0, + 1524.0, + 788.0, + 1524.0, + 788.0, + 1562.0, + 653.0, + 1562.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1095.0, + 1524.0, + 1183.0, + 1524.0, + 1183.0, + 1562.0, + 1095.0, + 1562.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1261.0, + 1524.0, + 1406.0, + 1524.0, + 1406.0, + 1562.0, + 1261.0, + 1562.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1556.0, + 542.0, + 1556.0, + 542.0, + 1594.0, + 293.0, + 1594.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 598.0, + 1556.0, + 627.0, + 1556.0, + 627.0, + 1594.0, + 598.0, + 1594.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 689.0, + 1556.0, + 1142.0, + 1556.0, + 1142.0, + 1594.0, + 689.0, + 1594.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1424.0, + 1404.0, + 1424.0, + 1404.0, + 1461.0, + 294.0, + 1461.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1457.0, + 842.0, + 1457.0, + 842.0, + 1493.0, + 295.0, + 1493.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 793.0, + 561.0, + 793.0, + 561.0, + 835.0, + 292.0, + 835.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 617.0, + 793.0, + 645.0, + 793.0, + 645.0, + 835.0, + 617.0, + 835.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 664.0, + 793.0, + 1168.0, + 793.0, + 1168.0, + 835.0, + 664.0, + 835.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1186.0, + 793.0, + 1214.0, + 793.0, + 1214.0, + 835.0, + 1186.0, + 835.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1232.0, + 793.0, + 1403.0, + 793.0, + 1403.0, + 835.0, + 1232.0, + 835.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 826.0, + 568.0, + 826.0, + 568.0, + 866.0, + 293.0, + 866.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 648.0, + 1160.0, + 648.0, + 1160.0, + 688.0, + 294.0, + 688.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1372.0, + 648.0, + 1407.0, + 648.0, + 1407.0, + 688.0, + 1372.0, + 688.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 682.0, + 297.0, + 682.0, + 297.0, + 715.0, + 294.0, + 715.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 314.0, + 682.0, + 1016.0, + 682.0, + 1016.0, + 715.0, + 314.0, + 715.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1072.0, + 682.0, + 1130.0, + 682.0, + 1130.0, + 715.0, + 1072.0, + 715.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1158.0, + 682.0, + 1188.0, + 682.0, + 1188.0, + 715.0, + 1158.0, + 715.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1198.0, + 487.0, + 1198.0, + 487.0, + 1237.0, + 296.0, + 1237.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 511.0, + 1198.0, + 1139.0, + 1198.0, + 1139.0, + 1237.0, + 511.0, + 1237.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1853.0, + 1267.0, + 1853.0, + 1267.0, + 1889.0, + 296.0, + 1889.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1290.0, + 1853.0, + 1408.0, + 1853.0, + 1408.0, + 1889.0, + 1290.0, + 1889.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1883.0, + 415.0, + 1883.0, + 415.0, + 1920.0, + 293.0, + 1920.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 433.0, + 1883.0, + 982.0, + 1883.0, + 982.0, + 1920.0, + 433.0, + 1920.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1037.0, + 1883.0, + 1096.0, + 1883.0, + 1096.0, + 1920.0, + 1037.0, + 1920.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1122.0, + 1883.0, + 1154.0, + 1883.0, + 1154.0, + 1920.0, + 1122.0, + 1920.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1997.0, + 370.0, + 1997.0, + 370.0, + 2039.0, + 295.0, + 2039.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 562.0, + 1997.0, + 1334.0, + 1997.0, + 1334.0, + 2039.0, + 562.0, + 2039.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1071.0, + 1007.0, + 1071.0, + 1007.0, + 1114.0, + 295.0, + 1114.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1062.0, + 1071.0, + 1090.0, + 1071.0, + 1090.0, + 1114.0, + 1062.0, + 1114.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1116.0, + 1071.0, + 1270.0, + 1071.0, + 1270.0, + 1114.0, + 1116.0, + 1114.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1366.0, + 1071.0, + 1398.0, + 1071.0, + 1398.0, + 1114.0, + 1366.0, + 1114.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1812.0, + 1383.0, + 1812.0, + 1383.0, + 1851.0, + 295.0, + 1851.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 4, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 297, + 1115, + 1406, + 1115, + 1406, + 1332, + 297, + 1332 + ], + "score": 0.982 + }, + { + "category_id": 1, + "poly": [ + 297, + 681, + 1404, + 681, + 1404, + 867, + 297, + 867 + ], + "score": 0.978 + }, + { + "category_id": 1, + "poly": [ + 297, + 880, + 1405, + 880, + 1405, + 1005, + 297, + 1005 + ], + "score": 0.976 + }, + { + "category_id": 1, + "poly": [ + 297, + 511, + 1405, + 511, + 1405, + 668, + 297, + 668 + ], + "score": 0.975 + }, + { + "category_id": 1, + "poly": [ + 297, + 1524, + 1403, + 1524, + 1403, + 1668, + 297, + 1668 + ], + "score": 0.974 + }, + { + "category_id": 1, + "poly": [ + 298, + 1423, + 1403, + 1423, + 1403, + 1519, + 298, + 1519 + ], + "score": 0.974 + }, + { + "category_id": 1, + "poly": [ + 297, + 299, + 1406, + 299, + 1406, + 401, + 297, + 401 + ], + "score": 0.972 + }, + { + "category_id": 8, + "poly": [ + 557, + 1866, + 1140, + 1866, + 1140, + 1946, + 557, + 1946 + ], + "score": 0.955 + }, + { + "category_id": 1, + "poly": [ + 293, + 229, + 1402, + 229, + 1402, + 293, + 293, + 293 + ], + "score": 0.951 + }, + { + "category_id": 1, + "poly": [ + 301, + 1971, + 1403, + 1971, + 1403, + 2035, + 301, + 2035 + ], + "score": 0.951 + }, + { + "category_id": 8, + "poly": [ + 574, + 412, + 1122, + 412, + 1122, + 488, + 574, + 488 + ], + "score": 0.946 + }, + { + "category_id": 8, + "poly": [ + 537, + 1761, + 1113, + 1761, + 1113, + 1814, + 537, + 1814 + ], + "score": 0.937 + }, + { + "category_id": 0, + "poly": [ + 298, + 1048, + 1042, + 1048, + 1042, + 1085, + 298, + 1085 + ], + "score": 0.927 + }, + { + "category_id": 1, + "poly": [ + 305, + 1821, + 815, + 1821, + 815, + 1855, + 305, + 1855 + ], + "score": 0.924 + }, + { + "category_id": 2, + "poly": [ + 299, + 75, + 815, + 75, + 815, + 105, + 299, + 105 + ], + "score": 0.911 + }, + { + "category_id": 8, + "poly": [ + 538, + 1679, + 1158, + 1679, + 1158, + 1753, + 538, + 1753 + ], + "score": 0.908 + }, + { + "category_id": 9, + "poly": [ + 1352, + 434, + 1400, + 434, + 1400, + 466, + 1352, + 466 + ], + "score": 0.905 + }, + { + "category_id": 9, + "poly": [ + 1352, + 1893, + 1400, + 1893, + 1400, + 1923, + 1352, + 1923 + ], + "score": 0.901 + }, + { + "category_id": 9, + "poly": [ + 1356, + 1773, + 1401, + 1773, + 1401, + 1802, + 1356, + 1802 + ], + "score": 0.89 + }, + { + "category_id": 9, + "poly": [ + 1356, + 1702, + 1400, + 1702, + 1400, + 1730, + 1356, + 1730 + ], + "score": 0.886 + }, + { + "category_id": 2, + "poly": [ + 840, + 2088, + 859, + 2088, + 859, + 2112, + 840, + 2112 + ], + "score": 0.814 + }, + { + "category_id": 1, + "poly": [ + 296, + 1366, + 1378, + 1366, + 1378, + 1400, + 296, + 1400 + ], + "score": 0.66 + }, + { + "category_id": 0, + "poly": [ + 296, + 1366, + 1378, + 1366, + 1378, + 1400, + 296, + 1400 + ], + "score": 0.328 + }, + { + "category_id": 14, + "poly": [ + 574, + 411, + 1125, + 411, + 1125, + 489, + 574, + 489 + ], + "score": 0.93, + "latex": "\\Delta = ( B \\gamma ) ^ { L - 1 } \\delta + ( \\delta + B \\gamma \\sigma ) \\Bigg ( \\frac { 1 - ( B \\gamma ) ^ { L - 1 } } { 1 - B \\gamma } \\Bigg ) ." + }, + { + "category_id": 14, + "poly": [ + 536, + 1676, + 1160, + 1676, + 1160, + 1816, + 536, + 1816 + ], + "score": 0.93, + "latex": "\\begin{array} { l } { \\displaystyle \\hat { \\Delta } = \\frac { 1 } { n } \\sum _ { i = 1 } ^ { n } \\big \\| \\mathrm { E } _ { S _ { i } } \\big [ \\mathbf { H } ^ { ( L ) } ( X _ { i } , S _ { i } ; \\theta ) \\big ] - \\mathbf { h } ^ { ( L ) } ( X _ { i } , \\mathrm { E } [ S _ { i } ] ; \\theta ) \\big \\| _ { 2 } , } \\\\ { \\displaystyle \\Delta = \\mathrm { E } _ { X } \\Big [ \\big \\| \\mathrm { E } _ { S } \\big [ \\mathbf { H } ^ { ( L ) } ( X , S ; \\theta ) \\big ] - \\mathbf { h } ^ { ( L ) } ( X , \\mathrm { E } [ S ] ; \\theta ) \\big \\| _ { 2 } \\Big ] . } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 347, + 363, + 597, + 363, + 597, + 402, + 347, + 402 + ], + "score": 0.92, + "latex": "\\mathrm { E } \\big [ \\mathrm { V a r } [ \\mathbf { H } ^ { ( l ) } | X ] \\big ] \\leq \\sigma ^ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 1174, + 913, + 1265, + 913, + 1265, + 944, + 1174, + 944 + ], + "score": 0.92, + "latex": "B \\gamma > 1" + }, + { + "category_id": 13, + "poly": [ + 939, + 943, + 1036, + 943, + 1036, + 974, + 939, + 974 + ], + "score": 0.92, + "latex": "B \\gamma < 1" + }, + { + "category_id": 14, + "poly": [ + 555, + 1864, + 1141, + 1864, + 1141, + 1946, + 555, + 1946 + ], + "score": 0.92, + "latex": "\\operatorname* { s u p } _ { \\theta \\in \\Theta } | \\Delta - \\hat { \\Delta } | < \\frac { 2 \\alpha B ^ { L } ( \\gamma ^ { L / 2 } + 1 ) } { \\sqrt { n } } + \\beta \\sqrt { \\frac { \\log ( 1 / \\nu ) } { n } } ." + }, + { + "category_id": 13, + "poly": [ + 490, + 1524, + 817, + 1524, + 817, + 1564, + 490, + 1564 + ], + "score": 0.92, + "latex": "\\mathcal { H } = \\left\\{ \\mathbf { h } ^ { ( L ) } ( x , s ; \\theta ) : \\theta \\in \\Theta \\right\\}" + }, + { + "category_id": 13, + "poly": [ + 299, + 330, + 422, + 330, + 422, + 364, + 299, + 364 + ], + "score": 0.91, + "latex": "\\{ 1 , \\ldots , L \\}" + }, + { + "category_id": 13, + "poly": [ + 662, + 882, + 754, + 882, + 754, + 913, + 662, + 913 + ], + "score": 0.91, + "latex": "B \\gamma < 1" + }, + { + "category_id": 13, + "poly": [ + 1328, + 640, + 1398, + 640, + 1398, + 669, + 1328, + 669 + ], + "score": 0.89, + "latex": "\\gamma = p" + }, + { + "category_id": 13, + "poly": [ + 666, + 914, + 758, + 914, + 758, + 944, + 666, + 944 + ], + "score": 0.88, + "latex": "B \\gamma = 1" + }, + { + "category_id": 13, + "poly": [ + 645, + 1825, + 711, + 1825, + 711, + 1852, + 645, + 1852 + ], + "score": 0.87, + "latex": "1 - \\nu" + }, + { + "category_id": 13, + "poly": [ + 1213, + 1596, + 1352, + 1596, + 1352, + 1633, + 1213, + 1633 + ], + "score": 0.86, + "latex": "\\mathrm { E } ( \\Gamma ^ { ( l ) } ) \\le \\gamma" + }, + { + "category_id": 13, + "poly": [ + 1356, + 301, + 1404, + 301, + 1404, + 330, + 1356, + 330 + ], + "score": 0.85, + "latex": "l \\in" + }, + { + "category_id": 13, + "poly": [ + 1061, + 636, + 1263, + 636, + 1263, + 669, + 1061, + 669 + ], + "score": 0.85, + "latex": "\\Gamma \\sim \\mathrm { B e r n o u l l i } ( p )" + }, + { + "category_id": 13, + "poly": [ + 1029, + 883, + 1055, + 883, + 1055, + 909, + 1029, + 909 + ], + "score": 0.82, + "latex": "\\Delta" + }, + { + "category_id": 13, + "poly": [ + 587, + 2006, + 608, + 2006, + 608, + 2030, + 587, + 2030 + ], + "score": 0.81, + "latex": "L" + }, + { + "category_id": 13, + "poly": [ + 330, + 944, + 356, + 944, + 356, + 971, + 330, + 971 + ], + "score": 0.81, + "latex": "\\Delta" + }, + { + "category_id": 13, + "poly": [ + 435, + 1600, + 462, + 1600, + 462, + 1627, + 435, + 1627 + ], + "score": 0.81, + "latex": "\\mathcal { H }" + }, + { + "category_id": 13, + "poly": [ + 398, + 641, + 418, + 641, + 418, + 668, + 398, + 668 + ], + "score": 0.8, + "latex": "\\gamma" + }, + { + "category_id": 13, + "poly": [ + 747, + 1598, + 1203, + 1598, + 1203, + 1633, + 747, + 1633 + ], + "score": 0.79, + "latex": ") \\forall x \\in \\mathcal { X } , \\| x \\| _ { 2 } \\leq \\alpha ; 2 ) \\forall l \\in \\{ 1 , \\ldots , L \\}" + }, + { + "category_id": 13, + "poly": [ + 542, + 1564, + 763, + 1564, + 763, + 1595, + 542, + 1595 + ], + "score": 0.79, + "latex": "\\mathbf { h } ^ { ( L ) } : \\mathcal { X } \\times \\mathcal { S } \\mathcal { R }" + }, + { + "category_id": 13, + "poly": [ + 837, + 367, + 862, + 367, + 862, + 394, + 837, + 394 + ], + "score": 0.79, + "latex": "\\Delta" + }, + { + "category_id": 13, + "poly": [ + 1323, + 607, + 1359, + 607, + 1359, + 637, + 1323, + 637 + ], + "score": 0.78, + "latex": "( \\gamma )" + }, + { + "category_id": 13, + "poly": [ + 1025, + 914, + 1047, + 914, + 1047, + 941, + 1025, + 941 + ], + "score": 0.78, + "latex": "L" + }, + { + "category_id": 13, + "poly": [ + 815, + 1566, + 839, + 1566, + 839, + 1593, + 815, + 1593 + ], + "score": 0.78, + "latex": "\\Theta" + }, + { + "category_id": 13, + "poly": [ + 745, + 606, + 788, + 606, + 788, + 636, + 745, + 636 + ], + "score": 0.78, + "latex": "( B )" + }, + { + "category_id": 13, + "poly": [ + 906, + 329, + 1398, + 329, + 1398, + 366, + 906, + 366 + ], + "score": 0.75, + "latex": "\\begin{array} { r } { p ( \\hat { \\mathbf { h } } ^ { ( l ) } ) , \\mathrm { E } [ \\Gamma ^ { ( l ) } ] \\stackrel { } { \\leq } \\gamma , \\operatorname* { s u p } _ { x } \\| \\nabla f _ { l } ( x ) \\| _ { \\mathrm { o p } } \\leq B } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 973, + 576, + 1010, + 576, + 1010, + 606, + 973, + 606 + ], + "score": 0.74, + "latex": "( \\sigma )" + }, + { + "category_id": 13, + "poly": [ + 298, + 1630, + 634, + 1630, + 634, + 1668, + 298, + 1668 + ], + "score": 0.73, + "latex": "\\| \\nabla f _ { l } \\| _ { o p } \\leq B ; 3 ) \\| \\mathbf { h } ^ { ( L ) } \\| \\leq \\beta" + }, + { + "category_id": 13, + "poly": [ + 443, + 1567, + 458, + 1567, + 458, + 1593, + 443, + 1593 + ], + "score": 0.73, + "latex": "\\theta" + }, + { + "category_id": 13, + "poly": [ + 452, + 332, + 468, + 332, + 468, + 358, + 452, + 358 + ], + "score": 0.72, + "latex": "\\delta" + }, + { + "category_id": 13, + "poly": [ + 1026, + 1566, + 1043, + 1566, + 1043, + 1593, + 1026, + 1593 + ], + "score": 0.7, + "latex": "\\theta" + }, + { + "category_id": 13, + "poly": [ + 567, + 301, + 589, + 301, + 589, + 328, + 567, + 328 + ], + "score": 0.7, + "latex": "L" + }, + { + "category_id": 13, + "poly": [ + 769, + 914, + 796, + 914, + 796, + 941, + 769, + 941 + ], + "score": 0.69, + "latex": "\\Delta" + }, + { + "category_id": 13, + "poly": [ + 542, + 576, + 575, + 576, + 575, + 606, + 542, + 606 + ], + "score": 0.68, + "latex": "( \\delta )" + }, + { + "category_id": 13, + "poly": [ + 1027, + 1529, + 1048, + 1529, + 1048, + 1557, + 1027, + 1557 + ], + "score": 0.66, + "latex": "L" + }, + { + "category_id": 13, + "poly": [ + 499, + 1629, + 634, + 1629, + 634, + 1667, + 499, + 1667 + ], + "score": 0.52, + "latex": "\\| \\mathbf { h } ^ { ( L ) } \\| \\leq \\beta" + }, + { + "category_id": 13, + "poly": [ + 759, + 1598, + 851, + 1598, + 851, + 1630, + 759, + 1630 + ], + "score": 0.35, + "latex": "\\forall x \\in { \\mathcal { X } }" + }, + { + "category_id": 13, + "poly": [ + 1227, + 636, + 1262, + 636, + 1262, + 669, + 1227, + 669 + ], + "score": 0.32, + "latex": "( p )" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1047.0, + 1045.0, + 1047.0, + 1045.0, + 1088.0, + 293.0, + 1088.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 73.0, + 816.0, + 73.0, + 816.0, + 108.0, + 295.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 840.0, + 2086.0, + 862.0, + 2086.0, + 862.0, + 2116.0, + 840.0, + 2116.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1365.0, + 1385.0, + 1365.0, + 1385.0, + 1403.0, + 293.0, + 1403.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1116.0, + 1404.0, + 1116.0, + 1404.0, + 1153.0, + 294.0, + 1153.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1148.0, + 1406.0, + 1148.0, + 1406.0, + 1183.0, + 295.0, + 1183.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1179.0, + 1406.0, + 1179.0, + 1406.0, + 1214.0, + 295.0, + 1214.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1209.0, + 1403.0, + 1209.0, + 1403.0, + 1243.0, + 295.0, + 1243.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1240.0, + 1408.0, + 1240.0, + 1408.0, + 1274.0, + 295.0, + 1274.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1271.0, + 1404.0, + 1271.0, + 1404.0, + 1305.0, + 294.0, + 1305.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1297.0, + 1408.0, + 1297.0, + 1408.0, + 1337.0, + 292.0, + 1337.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 683.0, + 1402.0, + 683.0, + 1402.0, + 715.0, + 296.0, + 715.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 711.0, + 1405.0, + 711.0, + 1405.0, + 748.0, + 291.0, + 748.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 743.0, + 1405.0, + 743.0, + 1405.0, + 779.0, + 294.0, + 779.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 771.0, + 1406.0, + 771.0, + 1406.0, + 810.0, + 294.0, + 810.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 805.0, + 1406.0, + 805.0, + 1406.0, + 840.0, + 294.0, + 840.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 833.0, + 947.0, + 833.0, + 947.0, + 871.0, + 294.0, + 871.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 882.0, + 661.0, + 882.0, + 661.0, + 914.0, + 294.0, + 914.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 755.0, + 882.0, + 1028.0, + 882.0, + 1028.0, + 914.0, + 755.0, + 914.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1056.0, + 882.0, + 1403.0, + 882.0, + 1403.0, + 914.0, + 1056.0, + 914.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 913.0, + 665.0, + 913.0, + 665.0, + 945.0, + 292.0, + 945.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 759.0, + 913.0, + 768.0, + 913.0, + 768.0, + 945.0, + 759.0, + 945.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 797.0, + 913.0, + 1024.0, + 913.0, + 1024.0, + 945.0, + 797.0, + 945.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1048.0, + 913.0, + 1173.0, + 913.0, + 1173.0, + 945.0, + 1048.0, + 945.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1266.0, + 913.0, + 1405.0, + 913.0, + 1405.0, + 945.0, + 1266.0, + 945.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 940.0, + 329.0, + 940.0, + 329.0, + 979.0, + 292.0, + 979.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 357.0, + 940.0, + 938.0, + 940.0, + 938.0, + 979.0, + 357.0, + 979.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1037.0, + 940.0, + 1408.0, + 940.0, + 1408.0, + 979.0, + 1037.0, + 979.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 975.0, + 720.0, + 975.0, + 720.0, + 1007.0, + 293.0, + 1007.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 512.0, + 1407.0, + 512.0, + 1407.0, + 548.0, + 295.0, + 548.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 543.0, + 1407.0, + 543.0, + 1407.0, + 580.0, + 295.0, + 580.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 573.0, + 541.0, + 573.0, + 541.0, + 611.0, + 295.0, + 611.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 576.0, + 573.0, + 972.0, + 573.0, + 972.0, + 611.0, + 576.0, + 611.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1011.0, + 573.0, + 1406.0, + 573.0, + 1406.0, + 611.0, + 1011.0, + 611.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 603.0, + 744.0, + 603.0, + 744.0, + 642.0, + 294.0, + 642.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 789.0, + 603.0, + 1322.0, + 603.0, + 1322.0, + 642.0, + 789.0, + 642.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1360.0, + 603.0, + 1405.0, + 603.0, + 1405.0, + 642.0, + 1360.0, + 642.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 631.0, + 397.0, + 631.0, + 397.0, + 675.0, + 292.0, + 675.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 419.0, + 631.0, + 1060.0, + 631.0, + 1060.0, + 675.0, + 419.0, + 675.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1264.0, + 631.0, + 1327.0, + 631.0, + 1327.0, + 675.0, + 1264.0, + 675.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1399.0, + 631.0, + 1411.0, + 631.0, + 1411.0, + 675.0, + 1399.0, + 675.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1524.0, + 489.0, + 1524.0, + 489.0, + 1566.0, + 294.0, + 1566.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 818.0, + 1524.0, + 1026.0, + 1524.0, + 1026.0, + 1566.0, + 818.0, + 1566.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1049.0, + 1524.0, + 1407.0, + 1524.0, + 1407.0, + 1566.0, + 1049.0, + 1566.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1559.0, + 442.0, + 1559.0, + 442.0, + 1601.0, + 294.0, + 1601.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 459.0, + 1559.0, + 541.0, + 1559.0, + 541.0, + 1601.0, + 459.0, + 1601.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 764.0, + 1559.0, + 814.0, + 1559.0, + 814.0, + 1601.0, + 764.0, + 1601.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 840.0, + 1559.0, + 1025.0, + 1559.0, + 1025.0, + 1601.0, + 840.0, + 1601.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1044.0, + 1559.0, + 1407.0, + 1559.0, + 1407.0, + 1601.0, + 1044.0, + 1601.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1596.0, + 434.0, + 1596.0, + 434.0, + 1634.0, + 292.0, + 1634.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 463.0, + 1596.0, + 746.0, + 1596.0, + 746.0, + 1634.0, + 463.0, + 1634.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1204.0, + 1596.0, + 1212.0, + 1596.0, + 1212.0, + 1634.0, + 1204.0, + 1634.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1353.0, + 1596.0, + 1406.0, + 1596.0, + 1406.0, + 1634.0, + 1353.0, + 1634.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 635.0, + 1629.0, + 1409.0, + 1629.0, + 1409.0, + 1671.0, + 635.0, + 1671.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1423.0, + 1407.0, + 1423.0, + 1407.0, + 1461.0, + 294.0, + 1461.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1458.0, + 1404.0, + 1458.0, + 1404.0, + 1488.0, + 296.0, + 1488.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1487.0, + 1284.0, + 1487.0, + 1284.0, + 1521.0, + 294.0, + 1521.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 297.0, + 566.0, + 297.0, + 566.0, + 336.0, + 294.0, + 336.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 590.0, + 297.0, + 1355.0, + 297.0, + 1355.0, + 336.0, + 590.0, + 336.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 423.0, + 325.0, + 451.0, + 325.0, + 451.0, + 368.0, + 423.0, + 368.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 469.0, + 325.0, + 905.0, + 325.0, + 905.0, + 368.0, + 469.0, + 368.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1399.0, + 325.0, + 1408.0, + 325.0, + 1408.0, + 368.0, + 1399.0, + 368.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 361.0, + 346.0, + 361.0, + 346.0, + 404.0, + 294.0, + 404.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 598.0, + 361.0, + 836.0, + 361.0, + 836.0, + 404.0, + 598.0, + 404.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 863.0, + 361.0, + 1299.0, + 361.0, + 1299.0, + 404.0, + 863.0, + 404.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 229.0, + 1404.0, + 229.0, + 1404.0, + 265.0, + 295.0, + 265.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 260.0, + 937.0, + 260.0, + 937.0, + 296.0, + 295.0, + 296.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1970.0, + 1403.0, + 1970.0, + 1403.0, + 2008.0, + 295.0, + 2008.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 2002.0, + 586.0, + 2002.0, + 586.0, + 2039.0, + 295.0, + 2039.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 609.0, + 2002.0, + 1405.0, + 2002.0, + 1405.0, + 2039.0, + 609.0, + 2039.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 301.0, + 1818.0, + 644.0, + 1818.0, + 644.0, + 1859.0, + 301.0, + 1859.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 712.0, + 1818.0, + 819.0, + 1818.0, + 819.0, + 1859.0, + 712.0, + 1859.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1365.0, + 1385.0, + 1365.0, + 1385.0, + 1403.0, + 293.0, + 1403.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 5, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 298, + 1057, + 1406, + 1057, + 1406, + 1187, + 298, + 1187 + ], + "score": 0.979 + }, + { + "category_id": 1, + "poly": [ + 298, + 1276, + 1407, + 1276, + 1407, + 1401, + 298, + 1401 + ], + "score": 0.978 + }, + { + "category_id": 1, + "poly": [ + 297, + 337, + 1404, + 337, + 1404, + 493, + 297, + 493 + ], + "score": 0.977 + }, + { + "category_id": 1, + "poly": [ + 298, + 1415, + 1406, + 1415, + 1406, + 1511, + 298, + 1511 + ], + "score": 0.976 + }, + { + "category_id": 1, + "poly": [ + 298, + 583, + 1406, + 583, + 1406, + 677, + 298, + 677 + ], + "score": 0.966 + }, + { + "category_id": 1, + "poly": [ + 302, + 228, + 1400, + 228, + 1400, + 323, + 302, + 323 + ], + "score": 0.963 + }, + { + "category_id": 1, + "poly": [ + 298, + 890, + 1402, + 890, + 1402, + 955, + 298, + 955 + ], + "score": 0.955 + }, + { + "category_id": 1, + "poly": [ + 300, + 1651, + 1403, + 1651, + 1403, + 1716, + 300, + 1716 + ], + "score": 0.952 + }, + { + "category_id": 8, + "poly": [ + 520, + 965, + 1180, + 965, + 1180, + 1051, + 520, + 1051 + ], + "score": 0.951 + }, + { + "category_id": 1, + "poly": [ + 293, + 724, + 1403, + 724, + 1403, + 787, + 293, + 787 + ], + "score": 0.949 + }, + { + "category_id": 8, + "poly": [ + 481, + 797, + 1218, + 797, + 1218, + 883, + 481, + 883 + ], + "score": 0.948 + }, + { + "category_id": 8, + "poly": [ + 653, + 1787, + 1048, + 1787, + 1048, + 1845, + 653, + 1845 + ], + "score": 0.947 + }, + { + "category_id": 1, + "poly": [ + 298, + 1729, + 1400, + 1729, + 1400, + 1788, + 298, + 1788 + ], + "score": 0.942 + }, + { + "category_id": 8, + "poly": [ + 433, + 1886, + 1259, + 1886, + 1259, + 1995, + 433, + 1995 + ], + "score": 0.94 + }, + { + "category_id": 8, + "poly": [ + 688, + 1584, + 1010, + 1584, + 1010, + 1644, + 688, + 1644 + ], + "score": 0.935 + }, + { + "category_id": 8, + "poly": [ + 642, + 681, + 1057, + 681, + 1057, + 718, + 642, + 718 + ], + "score": 0.933 + }, + { + "category_id": 8, + "poly": [ + 696, + 1519, + 1009, + 1519, + 1009, + 1575, + 696, + 1575 + ], + "score": 0.923 + }, + { + "category_id": 0, + "poly": [ + 297, + 526, + 995, + 526, + 995, + 558, + 297, + 558 + ], + "score": 0.921 + }, + { + "category_id": 1, + "poly": [ + 293, + 2000, + 1197, + 2000, + 1197, + 2039, + 293, + 2039 + ], + "score": 0.92 + }, + { + "category_id": 1, + "poly": [ + 300, + 1846, + 1354, + 1846, + 1354, + 1878, + 300, + 1878 + ], + "score": 0.919 + }, + { + "category_id": 2, + "poly": [ + 300, + 75, + 815, + 75, + 815, + 105, + 300, + 105 + ], + "score": 0.909 + }, + { + "category_id": 9, + "poly": [ + 1352, + 685, + 1400, + 685, + 1400, + 715, + 1352, + 715 + ], + "score": 0.907 + }, + { + "category_id": 0, + "poly": [ + 298, + 1219, + 1079, + 1219, + 1079, + 1253, + 298, + 1253 + ], + "score": 0.895 + }, + { + "category_id": 9, + "poly": [ + 1352, + 824, + 1400, + 824, + 1400, + 855, + 1352, + 855 + ], + "score": 0.892 + }, + { + "category_id": 9, + "poly": [ + 1352, + 1589, + 1400, + 1589, + 1400, + 1619, + 1352, + 1619 + ], + "score": 0.892 + }, + { + "category_id": 9, + "poly": [ + 1352, + 1523, + 1400, + 1523, + 1400, + 1554, + 1352, + 1554 + ], + "score": 0.891 + }, + { + "category_id": 9, + "poly": [ + 1352, + 991, + 1400, + 991, + 1400, + 1023, + 1352, + 1023 + ], + "score": 0.889 + }, + { + "category_id": 9, + "poly": [ + 1352, + 1801, + 1400, + 1801, + 1400, + 1831, + 1352, + 1831 + ], + "score": 0.883 + }, + { + "category_id": 9, + "poly": [ + 1351, + 1912, + 1400, + 1912, + 1400, + 1942, + 1351, + 1942 + ], + "score": 0.878 + }, + { + "category_id": 2, + "poly": [ + 841, + 2087, + 858, + 2087, + 858, + 2111, + 841, + 2111 + ], + "score": 0.773 + }, + { + "category_id": 14, + "poly": [ + 650, + 1781, + 1049, + 1781, + 1049, + 1847, + 650, + 1847 + ], + "score": 0.95, + "latex": "\\Delta _ { l } ( \\hat { \\theta } , \\hat { \\theta } _ { \\delta } ) = \\frac { 1 } { n } ( l ( D ; \\hat { \\theta } ) - l ( D ; \\hat { \\theta } _ { \\delta } ) )" + }, + { + "category_id": 14, + "poly": [ + 519, + 959, + 1179, + 959, + 1179, + 1054, + 519, + 1054 + ], + "score": 0.94, + "latex": "V ( D ; \\theta ) \\approx \\frac { 1 } { N } \\sum _ { i = 1 } ^ { N } \\big \\| \\mathbf { h } ^ { ( L ) } ( x _ { i } , s _ { i } ; \\theta ) - \\mathbf { h } ^ { ( L ) } ( x _ { i } , \\mathrm { E } [ S _ { i } ] ; \\theta ) \\big \\| _ { 2 } ^ { 2 } ," + }, + { + "category_id": 14, + "poly": [ + 481, + 791, + 1219, + 791, + 1219, + 887, + 481, + 887 + ], + "score": 0.94, + "latex": "V ( D ; \\theta ) = \\frac { 1 } { N } \\sum _ { i = 1 } ^ { N } \\big \\| \\mathrm { E } _ { S _ { i } } \\big [ \\mathbf { H } ^ { ( L ) } ( x _ { i } , S _ { i } ; \\theta ) \\big ] - \\mathbf { h } ^ { ( L ) } ( x _ { i } , \\mathrm { E } [ S _ { i } ] ; \\theta ) \\big \\| _ { 2 } ^ { 2 } ." + }, + { + "category_id": 13, + "poly": [ + 1056, + 1652, + 1151, + 1652, + 1151, + 1686, + 1056, + 1686 + ], + "score": 0.93, + "latex": "V ( D ; \\theta )" + }, + { + "category_id": 14, + "poly": [ + 433, + 1880, + 1260, + 1880, + 1260, + 1998, + 433, + 1998 + ], + "score": 0.93, + "latex": "p ( \\boldsymbol { y } | \\boldsymbol { x } , s ; \\theta ) = \\mathbf { h } _ { \\boldsymbol { y } } ^ { ( L ) } ( \\boldsymbol { x } , s ; \\theta ) = f _ { L } \\big ( \\mathbf { h } ^ { ( L - 1 ) } ( \\boldsymbol { x } , s ) ; \\eta \\big ) = \\frac { e ^ { \\eta _ { \\boldsymbol { y } } ^ { T } \\mathbf { h } ^ { ( L - 1 ) } ( \\boldsymbol { x } , s ) } } { \\displaystyle \\sum _ { \\boldsymbol { y ^ { \\prime } } \\in \\boldsymbol { y } } e ^ { \\eta _ { \\boldsymbol { y ^ { \\prime } } } ^ { T } \\mathbf { h } ^ { ( L - 1 ) } ( \\boldsymbol { x } , s ) } }" + }, + { + "category_id": 13, + "poly": [ + 490, + 923, + 585, + 923, + 585, + 956, + 490, + 956 + ], + "score": 0.93, + "latex": "V ( D ; \\theta )" + }, + { + "category_id": 13, + "poly": [ + 371, + 1652, + 474, + 1652, + 474, + 1685, + 371, + 1685 + ], + "score": 0.93, + "latex": "- l ( D ; \\theta )" + }, + { + "category_id": 14, + "poly": [ + 642, + 681, + 1056, + 681, + 1056, + 719, + 642, + 719 + ], + "score": 0.92, + "latex": "l o s s ( D ; \\theta ) = - l ( D ; \\theta ) + \\lambda V ( D ; \\theta ) ," + }, + { + "category_id": 13, + "poly": [ + 866, + 2002, + 1065, + 2002, + 1065, + 2038, + 866, + 2038 + ], + "score": 0.92, + "latex": "\\eta = \\{ \\eta _ { y } : y \\in \\mathcal { V } \\}" + }, + { + "category_id": 13, + "poly": [ + 345, + 756, + 440, + 756, + 440, + 788, + 345, + 788 + ], + "score": 0.92, + "latex": "V ( D ; \\theta )" + }, + { + "category_id": 13, + "poly": [ + 774, + 1060, + 855, + 1060, + 855, + 1092, + 774, + 1092 + ], + "score": 0.92, + "latex": "l ( D ; \\theta )" + }, + { + "category_id": 13, + "poly": [ + 834, + 231, + 916, + 231, + 916, + 262, + 834, + 262 + ], + "score": 0.92, + "latex": "B \\geq 1 " + }, + { + "category_id": 13, + "poly": [ + 373, + 724, + 476, + 724, + 476, + 757, + 373, + 757 + ], + "score": 0.92, + "latex": "- l ( D ; \\theta )" + }, + { + "category_id": 13, + "poly": [ + 1102, + 1091, + 1300, + 1091, + 1300, + 1127, + 1102, + 1127 + ], + "score": 0.91, + "latex": "\\mathbf { h } ^ { ( L ) } ( x _ { i } , \\mathrm { E } [ S _ { i } ] ; \\theta )" + }, + { + "category_id": 13, + "poly": [ + 663, + 893, + 784, + 893, + 784, + 925, + 663, + 925 + ], + "score": 0.91, + "latex": "l o s s ( D ; \\theta )" + }, + { + "category_id": 13, + "poly": [ + 512, + 1478, + 845, + 1478, + 845, + 1511, + 512, + 1511 + ], + "score": 0.9, + "latex": "D = \\{ ( x _ { 1 } , y _ { 1 } ) , \\dotsc , ( x _ { n } , y _ { n } ) \\}" + }, + { + "category_id": 13, + "poly": [ + 1020, + 725, + 1091, + 725, + 1091, + 754, + 1020, + 754 + ], + "score": 0.88, + "latex": "\\lambda > 0" + }, + { + "category_id": 14, + "poly": [ + 687, + 1516, + 1014, + 1516, + 1014, + 1647, + 687, + 1647 + ], + "score": 0.87, + "latex": "\\begin{array} { r l } { \\hat { \\theta } = } & { \\underset { \\theta \\in \\Theta } { \\mathrm { a r g m i n } } \\quad - l ( D ; \\theta ) } \\\\ { \\hat { \\theta } _ { \\delta } = } & { \\underset { \\theta \\in \\Theta , V ( D ; \\theta ) \\leq \\delta } { \\mathrm { a r g m i n } } - l ( D ; \\theta ) } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 1067, + 400, + 1126, + 400, + 1126, + 431, + 1067, + 431 + ], + "score": 0.86, + "latex": "\\ S 5 . 3" + }, + { + "category_id": 13, + "poly": [ + 372, + 1063, + 397, + 1063, + 397, + 1090, + 372, + 1090 + ], + "score": 0.85, + "latex": "s _ { i }" + }, + { + "category_id": 13, + "poly": [ + 648, + 430, + 687, + 430, + 687, + 460, + 648, + 460 + ], + "score": 0.85, + "latex": "\\ S 6" + }, + { + "category_id": 13, + "poly": [ + 371, + 2001, + 814, + 2001, + 814, + 2037, + 371, + 2037 + ], + "score": 0.76, + "latex": "\\boldsymbol { \\theta } = \\{ \\theta _ { 1 } , \\ldots , \\theta _ { L - 1 } , \\eta \\} , \\mathcal { V } = \\{ 1 , \\ldots , k \\}" + }, + { + "category_id": 13, + "poly": [ + 400, + 231, + 444, + 231, + 444, + 262, + 400, + 262 + ], + "score": 0.74, + "latex": "( B )" + }, + { + "category_id": 13, + "poly": [ + 604, + 263, + 642, + 263, + 642, + 293, + 604, + 293 + ], + "score": 0.73, + "latex": "( n )" + }, + { + "category_id": 13, + "poly": [ + 635, + 2002, + 813, + 2002, + 813, + 2037, + 635, + 2037 + ], + "score": 0.31, + "latex": "\\mathcal { V } = \\{ 1 , \\ldots , k \\}" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 523.0, + 998.0, + 523.0, + 998.0, + 564.0, + 293.0, + 564.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": [ + 293.0, + 1218.0, + 1081.0, + 1218.0, + 1081.0, + 1257.0, + 293.0, + 1257.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": [ + 293.0, + 1056.0, + 371.0, + 1056.0, + 371.0, + 1097.0, + 293.0, + 1097.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 398.0, + 1056.0, + 773.0, + 1056.0, + 773.0, + 1097.0, + 398.0, + 1097.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 856.0, + 1056.0, + 1409.0, + 1056.0, + 1409.0, + 1097.0, + 856.0, + 1097.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1088.0, + 1101.0, + 1088.0, + 1101.0, + 1130.0, + 292.0, + 1130.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1301.0, + 1088.0, + 1408.0, + 1088.0, + 1408.0, + 1130.0, + 1301.0, + 1130.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1123.0, + 1406.0, + 1123.0, + 1406.0, + 1160.0, + 293.0, + 1160.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1156.0, + 496.0, + 1156.0, + 496.0, + 1187.0, + 296.0, + 1187.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1278.0, + 1407.0, + 1278.0, + 1407.0, + 1314.0, + 293.0, + 1314.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1310.0, + 1408.0, + 1310.0, + 1408.0, + 1343.0, + 295.0, + 1343.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1337.0, + 1410.0, + 1337.0, + 1410.0, + 1376.0, + 292.0, + 1376.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1371.0, + 563.0, + 1371.0, + 563.0, + 1401.0, + 296.0, + 1401.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 338.0, + 1402.0, + 338.0, + 1402.0, + 371.0, + 295.0, + 371.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 367.0, + 1402.0, + 367.0, + 1402.0, + 400.0, + 296.0, + 400.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 399.0, + 1066.0, + 399.0, + 1066.0, + 435.0, + 294.0, + 435.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1127.0, + 399.0, + 1404.0, + 399.0, + 1404.0, + 435.0, + 1127.0, + 435.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 430.0, + 647.0, + 430.0, + 647.0, + 467.0, + 294.0, + 467.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 688.0, + 430.0, + 1404.0, + 430.0, + 1404.0, + 467.0, + 688.0, + 467.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 460.0, + 1035.0, + 460.0, + 1035.0, + 498.0, + 295.0, + 498.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1414.0, + 1404.0, + 1414.0, + 1404.0, + 1451.0, + 293.0, + 1451.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1446.0, + 1407.0, + 1446.0, + 1407.0, + 1483.0, + 293.0, + 1483.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1478.0, + 511.0, + 1478.0, + 511.0, + 1513.0, + 293.0, + 1513.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 846.0, + 1478.0, + 970.0, + 1478.0, + 970.0, + 1513.0, + 846.0, + 1513.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 580.0, + 1406.0, + 580.0, + 1406.0, + 620.0, + 292.0, + 620.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 617.0, + 1409.0, + 617.0, + 1409.0, + 651.0, + 295.0, + 651.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 646.0, + 1067.0, + 646.0, + 1067.0, + 680.0, + 295.0, + 680.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 227.0, + 399.0, + 227.0, + 399.0, + 266.0, + 294.0, + 266.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 445.0, + 227.0, + 833.0, + 227.0, + 833.0, + 266.0, + 445.0, + 266.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 917.0, + 227.0, + 1404.0, + 227.0, + 1404.0, + 266.0, + 917.0, + 266.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 260.0, + 603.0, + 260.0, + 603.0, + 297.0, + 296.0, + 297.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 643.0, + 260.0, + 1404.0, + 260.0, + 1404.0, + 297.0, + 643.0, + 297.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 293.0, + 449.0, + 293.0, + 449.0, + 325.0, + 294.0, + 325.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 886.0, + 662.0, + 886.0, + 662.0, + 929.0, + 293.0, + 929.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 785.0, + 886.0, + 1407.0, + 886.0, + 1407.0, + 929.0, + 785.0, + 929.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 921.0, + 489.0, + 921.0, + 489.0, + 957.0, + 296.0, + 957.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 586.0, + 921.0, + 805.0, + 921.0, + 805.0, + 957.0, + 586.0, + 957.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1651.0, + 370.0, + 1651.0, + 370.0, + 1687.0, + 296.0, + 1687.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 475.0, + 1651.0, + 1055.0, + 1651.0, + 1055.0, + 1687.0, + 475.0, + 1687.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1152.0, + 1651.0, + 1407.0, + 1651.0, + 1407.0, + 1687.0, + 1152.0, + 1687.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1683.0, + 725.0, + 1683.0, + 725.0, + 1720.0, + 295.0, + 1720.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 720.0, + 372.0, + 720.0, + 372.0, + 762.0, + 292.0, + 762.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 477.0, + 720.0, + 1019.0, + 720.0, + 1019.0, + 762.0, + 477.0, + 762.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1092.0, + 720.0, + 1408.0, + 720.0, + 1408.0, + 762.0, + 1092.0, + 762.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 754.0, + 344.0, + 754.0, + 344.0, + 790.0, + 295.0, + 790.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 441.0, + 754.0, + 1072.0, + 754.0, + 1072.0, + 790.0, + 441.0, + 790.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1725.0, + 1404.0, + 1725.0, + 1404.0, + 1768.0, + 293.0, + 1768.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1756.0, + 425.0, + 1756.0, + 425.0, + 1795.0, + 294.0, + 1795.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1996.0, + 370.0, + 1996.0, + 370.0, + 2043.0, + 293.0, + 2043.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 815.0, + 1996.0, + 865.0, + 1996.0, + 865.0, + 2043.0, + 815.0, + 2043.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1066.0, + 1996.0, + 1199.0, + 1996.0, + 1199.0, + 2043.0, + 1066.0, + 2043.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1843.0, + 1357.0, + 1843.0, + 1357.0, + 1881.0, + 294.0, + 1881.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 6, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 297, + 1204, + 1406, + 1204, + 1406, + 1662, + 297, + 1662 + ], + "score": 0.985 + }, + { + "category_id": 1, + "poly": [ + 296, + 225, + 1404, + 225, + 1404, + 405, + 296, + 405 + ], + "score": 0.978 + }, + { + "category_id": 1, + "poly": [ + 298, + 1755, + 1405, + 1755, + 1405, + 1879, + 298, + 1879 + ], + "score": 0.977 + }, + { + "category_id": 1, + "poly": [ + 298, + 624, + 1405, + 624, + 1405, + 723, + 298, + 723 + ], + "score": 0.97 + }, + { + "category_id": 1, + "poly": [ + 301, + 1000, + 1402, + 1000, + 1402, + 1094, + 301, + 1094 + ], + "score": 0.965 + }, + { + "category_id": 1, + "poly": [ + 295, + 923, + 1400, + 923, + 1400, + 987, + 295, + 987 + ], + "score": 0.956 + }, + { + "category_id": 1, + "poly": [ + 299, + 547, + 1403, + 547, + 1403, + 611, + 299, + 611 + ], + "score": 0.953 + }, + { + "category_id": 8, + "poly": [ + 604, + 411, + 1094, + 411, + 1094, + 489, + 604, + 489 + ], + "score": 0.952 + }, + { + "category_id": 1, + "poly": [ + 297, + 725, + 1403, + 725, + 1403, + 821, + 297, + 821 + ], + "score": 0.95 + }, + { + "category_id": 1, + "poly": [ + 297, + 1971, + 1401, + 1971, + 1401, + 2034, + 297, + 2034 + ], + "score": 0.943 + }, + { + "category_id": 8, + "poly": [ + 524, + 828, + 1174, + 828, + 1174, + 905, + 524, + 905 + ], + "score": 0.937 + }, + { + "category_id": 1, + "poly": [ + 297, + 492, + 899, + 492, + 899, + 526, + 297, + 526 + ], + "score": 0.922 + }, + { + "category_id": 0, + "poly": [ + 299, + 1137, + 557, + 1137, + 557, + 1172, + 299, + 1172 + ], + "score": 0.908 + }, + { + "category_id": 9, + "poly": [ + 1351, + 849, + 1400, + 849, + 1400, + 881, + 1351, + 881 + ], + "score": 0.907 + }, + { + "category_id": 9, + "poly": [ + 1351, + 435, + 1400, + 435, + 1400, + 466, + 1351, + 466 + ], + "score": 0.904 + }, + { + "category_id": 0, + "poly": [ + 301, + 1914, + 704, + 1914, + 704, + 1946, + 301, + 1946 + ], + "score": 0.901 + }, + { + "category_id": 2, + "poly": [ + 299, + 75, + 815, + 75, + 815, + 105, + 299, + 105 + ], + "score": 0.899 + }, + { + "category_id": 0, + "poly": [ + 298, + 1698, + 460, + 1698, + 460, + 1729, + 298, + 1729 + ], + "score": 0.879 + }, + { + "category_id": 2, + "poly": [ + 840, + 2088, + 858, + 2088, + 858, + 2112, + 840, + 2112 + ], + "score": 0.796 + }, + { + "category_id": 14, + "poly": [ + 605, + 409, + 1094, + 409, + 1094, + 490, + 605, + 490 + ], + "score": 0.94, + "latex": "\\Delta _ { l } ( \\hat { \\theta } , \\hat { \\theta } _ { \\delta } ) \\leq c _ { 1 } \\beta ^ { 2 } \\left( \\| \\hat { \\eta } \\| _ { 2 } - \\frac { \\delta } { 4 \\beta } \\right) ^ { 2 } e ^ { - c _ { 2 } \\delta / 4 \\beta }" + }, + { + "category_id": 13, + "poly": [ + 922, + 656, + 1023, + 656, + 1023, + 694, + 922, + 694 + ], + "score": 0.93, + "latex": "p ( \\boldsymbol { y } | \\boldsymbol { x } ; \\hat { \\boldsymbol { \\theta } } )" + }, + { + "category_id": 13, + "poly": [ + 743, + 656, + 870, + 656, + 870, + 694, + 743, + 694 + ], + "score": 0.93, + "latex": "p ( \\boldsymbol { y } | \\boldsymbol { x } , s ; \\hat { \\theta } )" + }, + { + "category_id": 13, + "poly": [ + 1180, + 728, + 1399, + 728, + 1399, + 763, + 1180, + 763 + ], + "score": 0.93, + "latex": "( x _ { i } , y _ { i } ) \\in D , s \\in \\mathcal { S } " + }, + { + "category_id": 13, + "poly": [ + 696, + 327, + 1093, + 327, + 1093, + 367, + 696, + 367 + ], + "score": 0.92, + "latex": "\\hat { \\eta } _ { y } ^ { T } \\mathbf { h } ^ { ( L - 1 ) } ( x , s ) < \\hat { \\eta } _ { y ^ { \\ast } } ^ { T } \\mathbf { h } ^ { ( L - 1 ) } ( x , s )" + }, + { + "category_id": 13, + "poly": [ + 1176, + 1001, + 1252, + 1001, + 1252, + 1035, + 1176, + 1035 + ], + "score": 0.92, + "latex": "p ( y | x )" + }, + { + "category_id": 13, + "poly": [ + 397, + 292, + 523, + 292, + 523, + 329, + 397, + 329 + ], + "score": 0.92, + "latex": "p ( \\boldsymbol { y } | \\boldsymbol { x } , s ; \\hat { \\theta } )" + }, + { + "category_id": 13, + "poly": [ + 813, + 227, + 956, + 227, + 956, + 264, + 813, + 264 + ], + "score": 0.91, + "latex": "\\mathbf { h } ^ { ( L ) } ( x , s ; \\theta )" + }, + { + "category_id": 13, + "poly": [ + 683, + 366, + 879, + 366, + 879, + 404, + 683, + 404 + ], + "score": 0.91, + "latex": "\\forall y , p ( y | x ; \\hat { \\theta } ) > 0" + }, + { + "category_id": 13, + "poly": [ + 1085, + 296, + 1239, + 296, + 1239, + 328, + 1085, + 328 + ], + "score": 0.91, + "latex": "x \\in \\mathcal { X } , s \\in \\mathcal { S }" + }, + { + "category_id": 13, + "poly": [ + 382, + 332, + 470, + 332, + 470, + 363, + 382, + 363 + ], + "score": 0.9, + "latex": "y ^ { \\ast } \\in \\mathcal { V }" + }, + { + "category_id": 14, + "poly": [ + 522, + 828, + 1175, + 828, + 1175, + 904, + 522, + 904 + ], + "score": 0.9, + "latex": "\\Delta _ { l } ( \\hat { \\theta } , \\hat { \\theta } _ { \\delta } ) \\leq \\left( 1 - \\frac { \\delta } { 4 \\beta \\| \\hat { \\eta } \\| _ { 2 } } \\right) \\mathrm { E } \\left[ \\mathrm { K L } \\left( p ( \\cdot | X ; \\theta ) \\| \\mathrm { U n i f } ( \\mathcal { V } ) \\right) \\right]" + }, + { + "category_id": 13, + "poly": [ + 1056, + 263, + 1129, + 263, + 1129, + 294, + 1056, + 294 + ], + "score": 0.9, + "latex": "y \\in \\mathcal { V }" + }, + { + "category_id": 13, + "poly": [ + 297, + 1419, + 404, + 1419, + 404, + 1448, + 297, + 1448 + ], + "score": 0.89, + "latex": "m = 1 0 0" + }, + { + "category_id": 13, + "poly": [ + 296, + 2003, + 388, + 2003, + 388, + 2033, + 296, + 2033 + ], + "score": 0.89, + "latex": "3 2 \\times 3 2" + }, + { + "category_id": 13, + "poly": [ + 583, + 330, + 682, + 330, + 682, + 364, + 583, + 364 + ], + "score": 0.89, + "latex": "\\forall y \\ne y ^ { * }" + }, + { + "category_id": 13, + "poly": [ + 704, + 262, + 774, + 262, + 774, + 291, + 704, + 291 + ], + "score": 0.89, + "latex": "s \\in S" + }, + { + "category_id": 13, + "poly": [ + 422, + 262, + 495, + 262, + 495, + 290, + 422, + 290 + ], + "score": 0.88, + "latex": "\\theta \\in \\Theta" + }, + { + "category_id": 13, + "poly": [ + 851, + 265, + 929, + 265, + 929, + 291, + 851, + 291 + ], + "score": 0.88, + "latex": "x \\in \\mathcal { X }" + }, + { + "category_id": 13, + "poly": [ + 668, + 724, + 920, + 724, + 920, + 763, + 668, + 763 + ], + "score": 0.88, + "latex": "\\| \\mathbf { h } ^ { ( L - 1 ) } ( x , s ; \\hat { \\theta } ) \\| \\leq \\beta" + }, + { + "category_id": 13, + "poly": [ + 1317, + 1756, + 1397, + 1756, + 1397, + 1787, + 1317, + 1787 + ], + "score": 0.87, + "latex": "2 8 \\times 2 8" + }, + { + "category_id": 13, + "poly": [ + 1137, + 770, + 1226, + 770, + 1226, + 794, + 1137, + 794 + ], + "score": 0.86, + "latex": "n \\to \\infty" + }, + { + "category_id": 13, + "poly": [ + 371, + 498, + 398, + 498, + 398, + 524, + 371, + 524 + ], + "score": 0.85, + "latex": "c _ { 1 }" + }, + { + "category_id": 13, + "poly": [ + 301, + 761, + 859, + 761, + 859, + 822, + 301, + 822 + ], + "score": 0.83, + "latex": "\\log \\frac { 1 } { k } \\le \\log p ( y _ { i } | x _ { i } , s ; \\hat { \\theta } ) \\le \\frac { 1 } { k } \\sum _ { y \\in \\mathcal { V } } \\log p ( y | x _ { i } , s ; \\hat { \\theta } )" + }, + { + "category_id": 13, + "poly": [ + 451, + 498, + 478, + 498, + 478, + 524, + 451, + 524 + ], + "score": 0.83, + "latex": "c _ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 372, + 365, + 622, + 365, + 622, + 404, + 372, + 404 + ], + "score": 0.78, + "latex": "\\| \\mathbf { h } ^ { ( L - 1 ) } ( x , s ; \\hat { \\theta } ) \\| \\leq \\beta" + }, + { + "category_id": 13, + "poly": [ + 593, + 729, + 654, + 729, + 654, + 761, + 593, + 761 + ], + "score": 0.7, + "latex": "\\forall x , s" + }, + { + "category_id": 13, + "poly": [ + 551, + 232, + 572, + 232, + 572, + 258, + 551, + 258 + ], + "score": 0.65, + "latex": "L" + }, + { + "category_id": 13, + "poly": [ + 296, + 370, + 357, + 370, + 357, + 402, + 296, + 402 + ], + "score": 0.64, + "latex": "\\forall x , s" + }, + { + "category_id": 13, + "poly": [ + 1381, + 1510, + 1402, + 1510, + 1402, + 1538, + 1381, + 1538 + ], + "score": 0.62, + "latex": "\\lambda" + }, + { + "category_id": 13, + "poly": [ + 297, + 302, + 317, + 302, + 317, + 323, + 297, + 323 + ], + "score": 0.51, + "latex": "x" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1133.0, + 561.0, + 1133.0, + 561.0, + 1178.0, + 293.0, + 1178.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1912.0, + 706.0, + 1912.0, + 706.0, + 1952.0, + 295.0, + 1952.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": [ + 294.0, + 1695.0, + 465.0, + 1695.0, + 465.0, + 1735.0, + 294.0, + 1735.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 836.0, + 2085.0, + 859.0, + 2085.0, + 859.0, + 2116.0, + 836.0, + 2116.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1205.0, + 1404.0, + 1205.0, + 1404.0, + 1240.0, + 294.0, + 1240.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1236.0, + 1408.0, + 1236.0, + 1408.0, + 1269.0, + 292.0, + 1269.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1265.0, + 1409.0, + 1265.0, + 1409.0, + 1302.0, + 294.0, + 1302.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1297.0, + 1409.0, + 1297.0, + 1409.0, + 1332.0, + 295.0, + 1332.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1327.0, + 1407.0, + 1327.0, + 1407.0, + 1362.0, + 295.0, + 1362.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1356.0, + 1408.0, + 1356.0, + 1408.0, + 1394.0, + 292.0, + 1394.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1386.0, + 1406.0, + 1386.0, + 1406.0, + 1426.0, + 292.0, + 1426.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 405.0, + 1419.0, + 1406.0, + 1419.0, + 1406.0, + 1454.0, + 405.0, + 1454.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1449.0, + 1408.0, + 1449.0, + 1408.0, + 1484.0, + 295.0, + 1484.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1479.0, + 1406.0, + 1479.0, + 1406.0, + 1514.0, + 294.0, + 1514.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1508.0, + 1380.0, + 1508.0, + 1380.0, + 1545.0, + 292.0, + 1545.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1403.0, + 1508.0, + 1406.0, + 1508.0, + 1406.0, + 1545.0, + 1403.0, + 1545.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1539.0, + 1407.0, + 1539.0, + 1407.0, + 1579.0, + 291.0, + 1579.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1572.0, + 1404.0, + 1572.0, + 1404.0, + 1604.0, + 296.0, + 1604.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1600.0, + 1406.0, + 1600.0, + 1406.0, + 1640.0, + 291.0, + 1640.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1634.0, + 722.0, + 1634.0, + 722.0, + 1665.0, + 295.0, + 1665.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 225.0, + 550.0, + 225.0, + 550.0, + 265.0, + 294.0, + 265.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 573.0, + 225.0, + 812.0, + 225.0, + 812.0, + 265.0, + 573.0, + 265.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 957.0, + 225.0, + 1405.0, + 225.0, + 1405.0, + 265.0, + 957.0, + 265.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 260.0, + 421.0, + 260.0, + 421.0, + 298.0, + 293.0, + 298.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 496.0, + 260.0, + 703.0, + 260.0, + 703.0, + 298.0, + 496.0, + 298.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 775.0, + 260.0, + 850.0, + 260.0, + 850.0, + 298.0, + 775.0, + 298.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 930.0, + 260.0, + 1055.0, + 260.0, + 1055.0, + 298.0, + 930.0, + 298.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1130.0, + 260.0, + 1404.0, + 260.0, + 1404.0, + 298.0, + 1130.0, + 298.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 318.0, + 295.0, + 396.0, + 295.0, + 396.0, + 330.0, + 318.0, + 330.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 524.0, + 295.0, + 1084.0, + 295.0, + 1084.0, + 330.0, + 524.0, + 330.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1240.0, + 295.0, + 1406.0, + 295.0, + 1406.0, + 330.0, + 1240.0, + 330.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 325.0, + 381.0, + 325.0, + 381.0, + 367.0, + 293.0, + 367.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 471.0, + 325.0, + 582.0, + 325.0, + 582.0, + 367.0, + 471.0, + 367.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 683.0, + 325.0, + 695.0, + 325.0, + 695.0, + 367.0, + 683.0, + 367.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1094.0, + 325.0, + 1406.0, + 325.0, + 1406.0, + 367.0, + 1094.0, + 367.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 358.0, + 366.0, + 371.0, + 366.0, + 371.0, + 405.0, + 358.0, + 405.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 623.0, + 366.0, + 682.0, + 366.0, + 682.0, + 405.0, + 623.0, + 405.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 880.0, + 366.0, + 954.0, + 366.0, + 954.0, + 405.0, + 880.0, + 405.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1756.0, + 1316.0, + 1756.0, + 1316.0, + 1789.0, + 295.0, + 1789.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1398.0, + 1756.0, + 1407.0, + 1756.0, + 1407.0, + 1789.0, + 1398.0, + 1789.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1784.0, + 1405.0, + 1784.0, + 1405.0, + 1822.0, + 293.0, + 1822.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1817.0, + 1407.0, + 1817.0, + 1407.0, + 1853.0, + 295.0, + 1853.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1849.0, + 978.0, + 1849.0, + 978.0, + 1881.0, + 296.0, + 1881.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 624.0, + 1403.0, + 624.0, + 1403.0, + 659.0, + 296.0, + 659.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 657.0, + 742.0, + 657.0, + 742.0, + 696.0, + 293.0, + 696.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 871.0, + 657.0, + 921.0, + 657.0, + 921.0, + 696.0, + 871.0, + 696.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1024.0, + 657.0, + 1403.0, + 657.0, + 1403.0, + 696.0, + 1024.0, + 696.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 692.0, + 843.0, + 692.0, + 843.0, + 723.0, + 297.0, + 723.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1001.0, + 1175.0, + 1001.0, + 1175.0, + 1035.0, + 297.0, + 1035.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1253.0, + 1001.0, + 1404.0, + 1001.0, + 1404.0, + 1035.0, + 1253.0, + 1035.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1030.0, + 1404.0, + 1030.0, + 1404.0, + 1068.0, + 296.0, + 1068.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1064.0, + 708.0, + 1064.0, + 708.0, + 1094.0, + 297.0, + 1094.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 919.0, + 1405.0, + 919.0, + 1405.0, + 959.0, + 294.0, + 959.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 955.0, + 586.0, + 955.0, + 586.0, + 988.0, + 295.0, + 988.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 547.0, + 1405.0, + 547.0, + 1405.0, + 583.0, + 295.0, + 583.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 580.0, + 1097.0, + 580.0, + 1097.0, + 610.0, + 295.0, + 610.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 719.0, + 592.0, + 719.0, + 592.0, + 769.0, + 291.0, + 769.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 655.0, + 719.0, + 667.0, + 719.0, + 667.0, + 769.0, + 655.0, + 769.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 921.0, + 719.0, + 1179.0, + 719.0, + 1179.0, + 769.0, + 921.0, + 769.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1400.0, + 719.0, + 1412.0, + 719.0, + 1412.0, + 769.0, + 1400.0, + 769.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 761.0, + 300.0, + 761.0, + 300.0, + 804.0, + 293.0, + 804.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 860.0, + 761.0, + 1136.0, + 761.0, + 1136.0, + 804.0, + 860.0, + 804.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1227.0, + 761.0, + 1243.0, + 761.0, + 1243.0, + 804.0, + 1227.0, + 804.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1969.0, + 1403.0, + 1969.0, + 1403.0, + 2008.0, + 293.0, + 2008.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 2000.0, + 295.0, + 2000.0, + 295.0, + 2037.0, + 292.0, + 2037.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 389.0, + 2000.0, + 1403.0, + 2000.0, + 1403.0, + 2037.0, + 389.0, + 2037.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 490.0, + 370.0, + 490.0, + 370.0, + 531.0, + 295.0, + 531.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 399.0, + 490.0, + 450.0, + 490.0, + 450.0, + 531.0, + 399.0, + 531.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 479.0, + 490.0, + 900.0, + 490.0, + 900.0, + 531.0, + 479.0, + 531.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 7, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 297, + 1728, + 1405, + 1728, + 1405, + 1922, + 297, + 1922 + ], + "score": 0.978 + }, + { + "category_id": 1, + "poly": [ + 298, + 1341, + 1405, + 1341, + 1405, + 1617, + 298, + 1617 + ], + "score": 0.977 + }, + { + "category_id": 1, + "poly": [ + 298, + 1095, + 1406, + 1095, + 1406, + 1187, + 298, + 1187 + ], + "score": 0.972 + }, + { + "category_id": 1, + "poly": [ + 300, + 1942, + 1403, + 1942, + 1403, + 2034, + 300, + 2034 + ], + "score": 0.971 + }, + { + "category_id": 5, + "poly": [ + 295, + 342, + 1416, + 342, + 1416, + 631, + 295, + 631 + ], + "score": 0.968, + "html": "
DataArchitecturew.0. ELw. EL
StandardMCStandardMC
MNIST3 dense,1024,logistic1.23±0.031.06±0.021.07±0.021.06±0.03
3 dense,1024,relu1.19±0.021.04±0.021.03±0.021.05±0.03
3 dense,1024,relu+max-norm1.05±0.031.02±0.020.98±0.031.02±0.02
3 dense,2048,relu+max-norm1.07±0.021.00±0.020.94±0.020.97±0.03
2 dense,4096,relu+max-norm1.03±0.020.92±0.030.90±0.020.93±0.02
CIFAR-102 dense,8192,relu+max-norm0.99±0.020.96±0.020.87±0.020.92±0.03
3 conv+2 dense,relu+max-norm12.82±0.1012.16±0.1212.20±0.1412.21±0.15
CIFAR-1003 conv+2 dense,relu+max-norm37.22±0.2236.01±0.2136.25±0.1236.10±0.18
" + }, + { + "category_id": 1, + "poly": [ + 299, + 1203, + 1405, + 1203, + 1405, + 1325, + 299, + 1325 + ], + "score": 0.968 + }, + { + "category_id": 3, + "poly": [ + 304, + 673, + 1417, + 673, + 1417, + 986, + 304, + 986 + ], + "score": 0.964 + }, + { + "category_id": 4, + "poly": [ + 421, + 1007, + 1276, + 1007, + 1276, + 1039, + 421, + 1039 + ], + "score": 0.929 + }, + { + "category_id": 2, + "poly": [ + 300, + 76, + 814, + 76, + 814, + 104, + 300, + 104 + ], + "score": 0.893 + }, + { + "category_id": 0, + "poly": [ + 298, + 1667, + 878, + 1667, + 878, + 1698, + 298, + 1698 + ], + "score": 0.875 + }, + { + "category_id": 6, + "poly": [ + 297, + 224, + 1408, + 224, + 1408, + 317, + 297, + 317 + ], + "score": 0.872 + }, + { + "category_id": 2, + "poly": [ + 840, + 2088, + 858, + 2088, + 858, + 2111, + 840, + 2111 + ], + "score": 0.791 + }, + { + "category_id": 13, + "poly": [ + 1311, + 1295, + 1398, + 1295, + 1398, + 1324, + 1311, + 1324 + ], + "score": 0.88, + "latex": "3 6 . 2 5 \\%" + }, + { + "category_id": 13, + "poly": [ + 706, + 1265, + 796, + 1265, + 796, + 1294, + 706, + 1294 + ], + "score": 0.88, + "latex": "1 2 . 2 0 \\%" + }, + { + "category_id": 13, + "poly": [ + 889, + 1295, + 964, + 1295, + 964, + 1324, + 889, + 1324 + ], + "score": 0.87, + "latex": "0 . 9 7 \\%" + }, + { + "category_id": 13, + "poly": [ + 576, + 1265, + 667, + 1265, + 667, + 1294, + 576, + 1294 + ], + "score": 0.87, + "latex": "1 2 . 8 2 \\%" + }, + { + "category_id": 13, + "poly": [ + 1192, + 1295, + 1280, + 1295, + 1280, + 1324, + 1192, + 1324 + ], + "score": 0.87, + "latex": "3 7 . 2 2 \\%" + }, + { + "category_id": 13, + "poly": [ + 907, + 1855, + 933, + 1855, + 933, + 1887, + 907, + 1887 + ], + "score": 0.87, + "latex": "\\hat { \\Delta }" + }, + { + "category_id": 13, + "poly": [ + 1101, + 1265, + 1178, + 1265, + 1178, + 1294, + 1101, + 1294 + ], + "score": 0.86, + "latex": "0 . 6 2 \\%" + }, + { + "category_id": 13, + "poly": [ + 1244, + 1820, + 1271, + 1820, + 1271, + 1854, + 1244, + 1854 + ], + "score": 0.84, + "latex": "\\hat { \\Delta }" + }, + { + "category_id": 13, + "poly": [ + 726, + 1947, + 744, + 1947, + 744, + 1970, + 726, + 1970 + ], + "score": 0.81, + "latex": "\\lambda" + }, + { + "category_id": 13, + "poly": [ + 1374, + 1937, + 1402, + 1937, + 1402, + 1970, + 1374, + 1970 + ], + "score": 0.79, + "latex": "\\hat { \\Delta }" + }, + { + "category_id": 13, + "poly": [ + 929, + 1792, + 949, + 1792, + 949, + 1819, + 929, + 1819 + ], + "score": 0.79, + "latex": "\\lambda" + }, + { + "category_id": 13, + "poly": [ + 348, + 1761, + 368, + 1761, + 368, + 1787, + 348, + 1787 + ], + "score": 0.77, + "latex": "\\lambda" + }, + { + "category_id": 13, + "poly": [ + 1017, + 1761, + 1038, + 1761, + 1038, + 1787, + 1017, + 1787 + ], + "score": 0.77, + "latex": "\\lambda" + }, + { + "category_id": 13, + "poly": [ + 877, + 1590, + 905, + 1590, + 905, + 1614, + 877, + 1614 + ], + "score": 0.76, + "latex": "m" + }, + { + "category_id": 13, + "poly": [ + 1196, + 1974, + 1215, + 1974, + 1215, + 2001, + 1196, + 2001 + ], + "score": 0.74, + "latex": "\\lambda" + }, + { + "category_id": 13, + "poly": [ + 591, + 1590, + 619, + 1590, + 619, + 1613, + 591, + 1613 + ], + "score": 0.74, + "latex": "m" + }, + { + "category_id": 13, + "poly": [ + 447, + 1860, + 468, + 1860, + 468, + 1888, + 447, + 1888 + ], + "score": 0.73, + "latex": "\\lambda" + }, + { + "category_id": 13, + "poly": [ + 1250, + 1008, + 1269, + 1008, + 1269, + 1034, + 1250, + 1034 + ], + "score": 0.71, + "latex": "\\lambda" + }, + { + "category_id": 13, + "poly": [ + 857, + 1669, + 878, + 1669, + 878, + 1695, + 857, + 1695 + ], + "score": 0.47, + "latex": "\\lambda" + }, + { + "category_id": 15, + "poly": [ + 928.0, + 652.0, + 1055.0, + 652.0, + 1055.0, + 993.0, + 928.0, + 993.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1331.0, + 657.0, + 1440.0, + 657.0, + 1440.0, + 988.0, + 1331.0, + 988.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 459.0, + 673.0, + 519.0, + 673.0, + 519.0, + 699.0, + 459.0, + 699.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 783.0, + 675.0, + 866.0, + 675.0, + 866.0, + 699.0, + 783.0, + 699.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1176.0, + 675.0, + 1267.0, + 675.0, + 1267.0, + 699.0, + 1176.0, + 699.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 682.0, + 355.0, + 682.0, + 355.0, + 707.0, + 323.0, + 707.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 651.0, + 704.0, + 686.0, + 704.0, + 686.0, + 729.0, + 651.0, + 729.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1046.0, + 694.0, + 1085.0, + 694.0, + 1085.0, + 722.0, + 1046.0, + 722.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1339.0, + 704.0, + 1346.0, + 704.0, + 1346.0, + 711.0, + 1339.0, + 711.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 725.0, + 354.0, + 725.0, + 354.0, + 749.0, + 323.0, + 749.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 651.0, + 726.0, + 686.0, + 726.0, + 686.0, + 751.0, + 651.0, + 751.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 960.0, + 712.0, + 1007.0, + 712.0, + 1007.0, + 739.0, + 960.0, + 739.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1045.0, + 717.0, + 1085.0, + 717.0, + 1085.0, + 747.0, + 1045.0, + 747.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1360.0, + 720.0, + 1395.0, + 720.0, + 1395.0, + 744.0, + 1360.0, + 744.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 651.0, + 747.0, + 686.0, + 747.0, + 686.0, + 771.0, + 651.0, + 771.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 962.0, + 747.0, + 1006.0, + 747.0, + 1006.0, + 770.0, + 962.0, + 770.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1048.0, + 744.0, + 1084.0, + 744.0, + 1084.0, + 769.0, + 1048.0, + 769.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1360.0, + 756.0, + 1395.0, + 756.0, + 1395.0, + 779.0, + 1360.0, + 779.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 301.0, + 768.0, + 353.0, + 768.0, + 353.0, + 878.0, + 301.0, + 878.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 609.0, + 774.0, + 618.0, + 774.0, + 618.0, + 786.0, + 609.0, + 786.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 628.0, + 766.0, + 687.0, + 766.0, + 687.0, + 879.0, + 628.0, + 879.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1027.0, + 768.0, + 1084.0, + 768.0, + 1084.0, + 879.0, + 1027.0, + 879.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 651.0, + 787.0, + 687.0, + 787.0, + 687.0, + 817.0, + 651.0, + 817.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 962.0, + 780.0, + 1006.0, + 780.0, + 1006.0, + 804.0, + 962.0, + 804.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1045.0, + 789.0, + 1087.0, + 789.0, + 1087.0, + 823.0, + 1045.0, + 823.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1360.0, + 792.0, + 1395.0, + 792.0, + 1395.0, + 817.0, + 1360.0, + 817.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 808.0, + 353.0, + 808.0, + 353.0, + 835.0, + 323.0, + 835.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 649.0, + 806.0, + 687.0, + 806.0, + 687.0, + 837.0, + 649.0, + 837.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 962.0, + 811.0, + 1003.0, + 811.0, + 1003.0, + 835.0, + 962.0, + 835.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1045.0, + 807.0, + 1088.0, + 807.0, + 1088.0, + 846.0, + 1045.0, + 846.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 575.0, + 842.0, + 622.0, + 842.0, + 622.0, + 864.0, + 575.0, + 864.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 649.0, + 829.0, + 687.0, + 829.0, + 687.0, + 858.0, + 649.0, + 858.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 962.0, + 844.0, + 1006.0, + 844.0, + 1006.0, + 867.0, + 962.0, + 867.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1046.0, + 837.0, + 1085.0, + 837.0, + 1085.0, + 867.0, + 1046.0, + 867.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1360.0, + 828.0, + 1395.0, + 828.0, + 1395.0, + 853.0, + 1360.0, + 853.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 573.0, + 859.0, + 623.0, + 859.0, + 623.0, + 897.0, + 573.0, + 897.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 652.0, + 875.0, + 686.0, + 875.0, + 686.0, + 899.0, + 652.0, + 899.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 963.0, + 876.0, + 1006.0, + 876.0, + 1006.0, + 898.0, + 963.0, + 898.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1049.0, + 866.0, + 1084.0, + 866.0, + 1084.0, + 890.0, + 1049.0, + 890.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1360.0, + 866.0, + 1395.0, + 866.0, + 1395.0, + 890.0, + 1360.0, + 890.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 895.0, + 354.0, + 895.0, + 354.0, + 920.0, + 322.0, + 920.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 574.0, + 891.0, + 624.0, + 891.0, + 624.0, + 948.0, + 574.0, + 948.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 651.0, + 894.0, + 687.0, + 894.0, + 687.0, + 943.0, + 651.0, + 943.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 723.0, + 925.0, + 780.0, + 925.0, + 780.0, + 947.0, + 723.0, + 947.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 934.0, + 924.0, + 951.0, + 924.0, + 951.0, + 940.0, + 934.0, + 940.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 962.0, + 907.0, + 1006.0, + 907.0, + 1006.0, + 930.0, + 962.0, + 930.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1046.0, + 889.0, + 1085.0, + 889.0, + 1085.0, + 940.0, + 1046.0, + 940.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1120.0, + 925.0, + 1178.0, + 925.0, + 1178.0, + 947.0, + 1120.0, + 947.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1331.0, + 919.0, + 1351.0, + 919.0, + 1351.0, + 942.0, + 1331.0, + 942.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1356.0, + 901.0, + 1396.0, + 901.0, + 1396.0, + 925.0, + 1356.0, + 925.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 938.0, + 354.0, + 938.0, + 354.0, + 961.0, + 323.0, + 961.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 652.0, + 938.0, + 687.0, + 938.0, + 687.0, + 962.0, + 652.0, + 962.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 962.0, + 939.0, + 1005.0, + 939.0, + 1005.0, + 961.0, + 962.0, + 961.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1046.0, + 937.0, + 1087.0, + 937.0, + 1087.0, + 964.0, + 1046.0, + 964.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1360.0, + 939.0, + 1396.0, + 939.0, + 1396.0, + 961.0, + 1360.0, + 961.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 358.0, + 955.0, + 374.0, + 955.0, + 374.0, + 970.0, + 358.0, + 970.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 384.0, + 956.0, + 396.0, + 956.0, + 396.0, + 968.0, + 384.0, + 968.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 407.0, + 955.0, + 423.0, + 955.0, + 423.0, + 971.0, + 407.0, + 971.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 432.0, + 955.0, + 449.0, + 955.0, + 449.0, + 970.0, + 432.0, + 970.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 457.0, + 955.0, + 473.0, + 955.0, + 473.0, + 970.0, + 457.0, + 970.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 483.0, + 955.0, + 499.0, + 955.0, + 499.0, + 971.0, + 483.0, + 971.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 508.0, + 955.0, + 523.0, + 955.0, + 523.0, + 970.0, + 508.0, + 970.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 535.0, + 956.0, + 545.0, + 956.0, + 545.0, + 968.0, + 535.0, + 968.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 556.0, + 953.0, + 574.0, + 953.0, + 574.0, + 970.0, + 556.0, + 970.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 581.0, + 953.0, + 599.0, + 953.0, + 599.0, + 970.0, + 581.0, + 970.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 601.0, + 952.0, + 627.0, + 952.0, + 627.0, + 971.0, + 601.0, + 971.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 695.0, + 955.0, + 711.0, + 955.0, + 711.0, + 971.0, + 695.0, + 971.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 720.0, + 955.0, + 735.0, + 955.0, + 735.0, + 970.0, + 720.0, + 970.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 743.0, + 955.0, + 761.0, + 955.0, + 761.0, + 971.0, + 743.0, + 971.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 767.0, + 955.0, + 783.0, + 955.0, + 783.0, + 971.0, + 767.0, + 971.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 791.0, + 955.0, + 807.0, + 955.0, + 807.0, + 970.0, + 791.0, + 970.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 816.0, + 955.0, + 833.0, + 955.0, + 833.0, + 971.0, + 816.0, + 971.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 840.0, + 955.0, + 857.0, + 955.0, + 857.0, + 971.0, + 840.0, + 971.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 866.0, + 956.0, + 878.0, + 956.0, + 878.0, + 968.0, + 866.0, + 968.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 888.0, + 955.0, + 905.0, + 955.0, + 905.0, + 970.0, + 888.0, + 970.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 911.0, + 953.0, + 957.0, + 953.0, + 957.0, + 971.0, + 911.0, + 971.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1093.0, + 955.0, + 1109.0, + 955.0, + 1109.0, + 971.0, + 1093.0, + 971.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1120.0, + 956.0, + 1131.0, + 956.0, + 1131.0, + 969.0, + 1120.0, + 969.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1141.0, + 955.0, + 1159.0, + 955.0, + 1159.0, + 971.0, + 1141.0, + 971.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1164.0, + 955.0, + 1181.0, + 955.0, + 1181.0, + 971.0, + 1164.0, + 971.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1189.0, + 955.0, + 1205.0, + 955.0, + 1205.0, + 970.0, + 1189.0, + 970.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1214.0, + 955.0, + 1231.0, + 955.0, + 1231.0, + 971.0, + 1214.0, + 971.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1238.0, + 955.0, + 1255.0, + 955.0, + 1255.0, + 971.0, + 1238.0, + 971.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1261.0, + 955.0, + 1277.0, + 955.0, + 1277.0, + 969.0, + 1261.0, + 969.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1286.0, + 955.0, + 1303.0, + 955.0, + 1303.0, + 970.0, + 1286.0, + 970.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1309.0, + 953.0, + 1353.0, + 953.0, + 1353.0, + 973.0, + 1309.0, + 973.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 483.0, + 970.0, + 498.0, + 970.0, + 498.0, + 986.0, + 483.0, + 986.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 818.0, + 970.0, + 833.0, + 970.0, + 833.0, + 987.0, + 818.0, + 987.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1216.0, + 970.0, + 1231.0, + 970.0, + 1231.0, + 986.0, + 1216.0, + 986.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 357.0, + 831.0, + 375.0, + 831.0, + 375.0, + 850.0, + 357.0, + 850.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 851.5, + 352.0, + 851.5, + 352.0, + 874.5, + 324.0, + 874.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 649.0, + 851.0, + 686.0, + 851.0, + 686.0, + 879.0, + 649.0, + 879.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 418.0, + 1003.0, + 1249.0, + 1003.0, + 1249.0, + 1043.0, + 418.0, + 1043.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1270.0, + 1003.0, + 1279.0, + 1003.0, + 1279.0, + 1043.0, + 1270.0, + 1043.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 73.0, + 817.0, + 73.0, + 817.0, + 108.0, + 295.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1665.0, + 856.0, + 1665.0, + 856.0, + 1701.0, + 296.0, + 1701.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 221.0, + 1406.0, + 221.0, + 1406.0, + 261.0, + 292.0, + 261.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 252.0, + 1404.0, + 252.0, + 1404.0, + 286.0, + 295.0, + 286.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 286.0, + 716.0, + 286.0, + 716.0, + 320.0, + 295.0, + 320.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 839.0, + 2087.0, + 860.0, + 2087.0, + 860.0, + 2117.0, + 839.0, + 2117.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1727.0, + 1405.0, + 1727.0, + 1405.0, + 1765.0, + 294.0, + 1765.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1759.0, + 347.0, + 1759.0, + 347.0, + 1792.0, + 295.0, + 1792.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 369.0, + 1759.0, + 1016.0, + 1759.0, + 1016.0, + 1792.0, + 369.0, + 1792.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1039.0, + 1759.0, + 1407.0, + 1759.0, + 1407.0, + 1792.0, + 1039.0, + 1792.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1791.0, + 928.0, + 1791.0, + 928.0, + 1824.0, + 295.0, + 1824.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 950.0, + 1791.0, + 1407.0, + 1791.0, + 1407.0, + 1824.0, + 950.0, + 1824.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1824.0, + 1243.0, + 1824.0, + 1243.0, + 1860.0, + 295.0, + 1860.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1272.0, + 1824.0, + 1407.0, + 1824.0, + 1407.0, + 1860.0, + 1272.0, + 1860.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1858.0, + 446.0, + 1858.0, + 446.0, + 1895.0, + 295.0, + 1895.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 469.0, + 1858.0, + 906.0, + 1858.0, + 906.0, + 1895.0, + 469.0, + 1895.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 934.0, + 1858.0, + 1405.0, + 1858.0, + 1405.0, + 1895.0, + 934.0, + 1895.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1888.0, + 543.0, + 1888.0, + 543.0, + 1929.0, + 294.0, + 1929.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1341.0, + 1403.0, + 1341.0, + 1403.0, + 1376.0, + 295.0, + 1376.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1372.0, + 1402.0, + 1372.0, + 1402.0, + 1405.0, + 296.0, + 1405.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1401.0, + 1407.0, + 1401.0, + 1407.0, + 1440.0, + 292.0, + 1440.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1432.0, + 1406.0, + 1432.0, + 1406.0, + 1469.0, + 295.0, + 1469.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1462.0, + 1408.0, + 1462.0, + 1408.0, + 1502.0, + 293.0, + 1502.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1493.0, + 1405.0, + 1493.0, + 1405.0, + 1530.0, + 293.0, + 1530.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1522.0, + 1406.0, + 1522.0, + 1406.0, + 1560.0, + 292.0, + 1560.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1553.0, + 1406.0, + 1553.0, + 1406.0, + 1590.0, + 295.0, + 1590.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1585.0, + 590.0, + 1585.0, + 590.0, + 1621.0, + 295.0, + 1621.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 620.0, + 1585.0, + 876.0, + 1585.0, + 876.0, + 1621.0, + 620.0, + 1621.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 906.0, + 1585.0, + 1406.0, + 1585.0, + 1406.0, + 1621.0, + 906.0, + 1621.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1094.0, + 1404.0, + 1094.0, + 1404.0, + 1128.0, + 293.0, + 1128.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1125.0, + 1409.0, + 1125.0, + 1409.0, + 1158.0, + 292.0, + 1158.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1157.0, + 993.0, + 1157.0, + 993.0, + 1190.0, + 296.0, + 1190.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1938.0, + 725.0, + 1938.0, + 725.0, + 1977.0, + 293.0, + 1977.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 745.0, + 1938.0, + 1373.0, + 1938.0, + 1373.0, + 1977.0, + 745.0, + 1977.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1970.0, + 1195.0, + 1970.0, + 1195.0, + 2008.0, + 294.0, + 2008.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1216.0, + 1970.0, + 1405.0, + 1970.0, + 1405.0, + 2008.0, + 1216.0, + 2008.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 2001.0, + 1409.0, + 2001.0, + 1409.0, + 2037.0, + 294.0, + 2037.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1203.0, + 1404.0, + 1203.0, + 1404.0, + 1237.0, + 294.0, + 1237.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1235.0, + 1405.0, + 1235.0, + 1405.0, + 1267.0, + 295.0, + 1267.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1267.0, + 575.0, + 1267.0, + 575.0, + 1296.0, + 295.0, + 1296.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 668.0, + 1267.0, + 705.0, + 1267.0, + 705.0, + 1296.0, + 668.0, + 1296.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 797.0, + 1267.0, + 1100.0, + 1267.0, + 1100.0, + 1296.0, + 797.0, + 1296.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1179.0, + 1267.0, + 1403.0, + 1267.0, + 1403.0, + 1296.0, + 1179.0, + 1296.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1294.0, + 888.0, + 1294.0, + 888.0, + 1326.0, + 295.0, + 1326.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 965.0, + 1294.0, + 1191.0, + 1294.0, + 1191.0, + 1326.0, + 965.0, + 1326.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1281.0, + 1294.0, + 1310.0, + 1294.0, + 1310.0, + 1326.0, + 1281.0, + 1326.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1399.0, + 1294.0, + 1407.0, + 1294.0, + 1407.0, + 1326.0, + 1399.0, + 1326.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 8, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 298, + 970, + 1404, + 970, + 1404, + 1217, + 298, + 1217 + ], + "score": 0.979 + }, + { + "category_id": 1, + "poly": [ + 298, + 560, + 1403, + 560, + 1403, + 684, + 298, + 684 + ], + "score": 0.977 + }, + { + "category_id": 1, + "poly": [ + 298, + 699, + 1404, + 699, + 1404, + 851, + 298, + 851 + ], + "score": 0.975 + }, + { + "category_id": 1, + "poly": [ + 299, + 1336, + 1404, + 1336, + 1404, + 1428, + 299, + 1428 + ], + "score": 0.973 + }, + { + "category_id": 5, + "poly": [ + 366, + 342, + 1334, + 342, + 1334, + 443, + 366, + 443 + ], + "score": 0.971, + "html": "
DataNetworkStandardMCw. ELDistillation
CIFAR-10AllConv11.18±0.1110.58±0.2110.86±0.0810.81±0.14
CIFAR-100AllConv35.50±0.2334.43±0.2535.10±0.1335.07±0.20
" + }, + { + "category_id": 6, + "poly": [ + 297, + 224, + 1405, + 224, + 1405, + 317, + 297, + 317 + ], + "score": 0.946 + }, + { + "category_id": 1, + "poly": [ + 299, + 1531, + 1406, + 1531, + 1406, + 1623, + 299, + 1623 + ], + "score": 0.932 + }, + { + "category_id": 2, + "poly": [ + 294, + 1978, + 1406, + 1978, + 1406, + 2033, + 294, + 2033 + ], + "score": 0.918 + }, + { + "category_id": 1, + "poly": [ + 304, + 1886, + 1403, + 1886, + 1403, + 1948, + 304, + 1948 + ], + "score": 0.892 + }, + { + "category_id": 0, + "poly": [ + 298, + 501, + 901, + 501, + 901, + 534, + 298, + 534 + ], + "score": 0.89 + }, + { + "category_id": 1, + "poly": [ + 296, + 1649, + 1403, + 1649, + 1403, + 1711, + 296, + 1711 + ], + "score": 0.89 + }, + { + "category_id": 0, + "poly": [ + 301, + 900, + 561, + 900, + 561, + 936, + 301, + 936 + ], + "score": 0.887 + }, + { + "category_id": 2, + "poly": [ + 300, + 75, + 814, + 75, + 814, + 104, + 300, + 104 + ], + "score": 0.886 + }, + { + "category_id": 1, + "poly": [ + 300, + 1739, + 1402, + 1739, + 1402, + 1801, + 300, + 1801 + ], + "score": 0.886 + }, + { + "category_id": 0, + "poly": [ + 301, + 1267, + 625, + 1267, + 625, + 1298, + 301, + 1298 + ], + "score": 0.878 + }, + { + "category_id": 1, + "poly": [ + 300, + 1827, + 1130, + 1827, + 1130, + 1860, + 300, + 1860 + ], + "score": 0.873 + }, + { + "category_id": 0, + "poly": [ + 299, + 1479, + 488, + 1479, + 488, + 1511, + 299, + 1511 + ], + "score": 0.862 + }, + { + "category_id": 2, + "poly": [ + 836, + 2088, + 864, + 2088, + 864, + 2113, + 836, + 2113 + ], + "score": 0.851 + }, + { + "category_id": 13, + "poly": [ + 908, + 2006, + 944, + 2006, + 944, + 2031, + 908, + 2031 + ], + "score": 0.79, + "latex": "3 \\%" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 221.0, + 1406.0, + 221.0, + 1406.0, + 260.0, + 291.0, + 260.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 254.0, + 1407.0, + 254.0, + 1407.0, + 291.0, + 294.0, + 291.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 284.0, + 1266.0, + 284.0, + 1266.0, + 320.0, + 295.0, + 320.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 331.0, + 1973.0, + 1406.0, + 1973.0, + 1406.0, + 2010.0, + 331.0, + 2010.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 2003.0, + 907.0, + 2003.0, + 907.0, + 2037.0, + 294.0, + 2037.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 945.0, + 2003.0, + 1022.0, + 2003.0, + 1022.0, + 2037.0, + 945.0, + 2037.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 500.0, + 903.0, + 500.0, + 903.0, + 537.0, + 295.0, + 537.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 893.0, + 566.0, + 893.0, + 566.0, + 946.0, + 291.0, + 946.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": [ + 299.0, + 1267.0, + 628.0, + 1267.0, + 628.0, + 1303.0, + 299.0, + 1303.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1476.0, + 491.0, + 1476.0, + 491.0, + 1516.0, + 296.0, + 1516.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 831.0, + 2085.0, + 869.0, + 2085.0, + 869.0, + 2123.0, + 831.0, + 2123.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 969.0, + 1405.0, + 969.0, + 1405.0, + 1006.0, + 293.0, + 1006.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1002.0, + 1405.0, + 1002.0, + 1405.0, + 1036.0, + 294.0, + 1036.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1031.0, + 1404.0, + 1031.0, + 1404.0, + 1069.0, + 293.0, + 1069.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1061.0, + 1405.0, + 1061.0, + 1405.0, + 1100.0, + 292.0, + 1100.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1095.0, + 1406.0, + 1095.0, + 1406.0, + 1128.0, + 296.0, + 1128.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1124.0, + 1406.0, + 1124.0, + 1406.0, + 1159.0, + 293.0, + 1159.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1154.0, + 1406.0, + 1154.0, + 1406.0, + 1191.0, + 293.0, + 1191.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1185.0, + 892.0, + 1185.0, + 892.0, + 1222.0, + 293.0, + 1222.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 558.0, + 1405.0, + 558.0, + 1405.0, + 596.0, + 292.0, + 596.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 592.0, + 1405.0, + 592.0, + 1405.0, + 623.0, + 293.0, + 623.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 620.0, + 1407.0, + 620.0, + 1407.0, + 658.0, + 293.0, + 658.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 654.0, + 1358.0, + 654.0, + 1358.0, + 690.0, + 294.0, + 690.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 696.0, + 1405.0, + 696.0, + 1405.0, + 734.0, + 293.0, + 734.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 730.0, + 1405.0, + 730.0, + 1405.0, + 763.0, + 297.0, + 763.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 751.0, + 1406.0, + 751.0, + 1406.0, + 800.0, + 291.0, + 800.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 789.0, + 1404.0, + 789.0, + 1404.0, + 828.0, + 293.0, + 828.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 820.0, + 551.0, + 820.0, + 551.0, + 856.0, + 293.0, + 856.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1334.0, + 1408.0, + 1334.0, + 1408.0, + 1370.0, + 293.0, + 1370.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1368.0, + 1404.0, + 1368.0, + 1404.0, + 1400.0, + 294.0, + 1400.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1399.0, + 1096.0, + 1399.0, + 1096.0, + 1429.0, + 297.0, + 1429.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1530.0, + 1407.0, + 1530.0, + 1407.0, + 1564.0, + 294.0, + 1564.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1560.0, + 1409.0, + 1560.0, + 1409.0, + 1597.0, + 321.0, + 1597.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1590.0, + 463.0, + 1590.0, + 463.0, + 1625.0, + 321.0, + 1625.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1882.0, + 1407.0, + 1882.0, + 1407.0, + 1923.0, + 297.0, + 1923.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1914.0, + 1176.0, + 1914.0, + 1176.0, + 1950.0, + 323.0, + 1950.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1647.0, + 1406.0, + 1647.0, + 1406.0, + 1685.0, + 293.0, + 1685.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 319.0, + 1677.0, + 399.0, + 1677.0, + 399.0, + 1715.0, + 319.0, + 1715.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1738.0, + 1404.0, + 1738.0, + 1404.0, + 1774.0, + 296.0, + 1774.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 1769.0, + 805.0, + 1769.0, + 805.0, + 1803.0, + 320.0, + 1803.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1825.0, + 1132.0, + 1825.0, + 1132.0, + 1867.0, + 294.0, + 1867.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.885 + }, + { + "category_id": 2, + "poly": [ + 835, + 2088, + 862, + 2088, + 862, + 2113, + 835, + 2113 + ], + "score": 0.8 + }, + { + "category_id": 1, + "poly": [ + 302, + 1337, + 1370, + 1337, + 1370, + 1374, + 302, + 1374 + ], + "score": 0.722 + }, + { + "category_id": 1, + "poly": [ + 299, + 1390, + 1399, + 1390, + 1399, + 1456, + 299, + 1456 + ], + "score": 0.71 + }, + { + "category_id": 1, + "poly": [ + 297, + 1254, + 1393, + 1254, + 1393, + 1320, + 297, + 1320 + ], + "score": 0.709 + }, + { + "category_id": 1, + "poly": [ + 298, + 1201, + 1175, + 1201, + 1175, + 1237, + 298, + 1237 + ], + "score": 0.671 + }, + { + "category_id": 1, + "poly": [ + 298, + 726, + 1405, + 726, + 1405, + 791, + 298, + 791 + ], + "score": 0.667 + }, + { + "category_id": 1, + "poly": [ + 298, + 1473, + 1402, + 1473, + 1402, + 1537, + 298, + 1537 + ], + "score": 0.663 + }, + { + "category_id": 1, + "poly": [ + 296, + 809, + 1403, + 809, + 1403, + 874, + 296, + 874 + ], + "score": 0.659 + }, + { + "category_id": 1, + "poly": [ + 294, + 644, + 1403, + 644, + 1403, + 709, + 294, + 709 + ], + "score": 0.643 + }, + { + "category_id": 1, + "poly": [ + 298, + 892, + 1402, + 892, + 1402, + 988, + 298, + 988 + ], + "score": 0.632 + }, + { + "category_id": 1, + "poly": [ + 299, + 1118, + 1401, + 1118, + 1401, + 1185, + 299, + 1185 + ], + "score": 0.627 + }, + { + "category_id": 1, + "poly": [ + 300, + 560, + 1403, + 560, + 1403, + 625, + 300, + 625 + ], + "score": 0.624 + }, + { + "category_id": 1, + "poly": [ + 298, + 1005, + 1401, + 1005, + 1401, + 1101, + 298, + 1101 + ], + "score": 0.621 + }, + { + "category_id": 1, + "poly": [ + 298, + 1555, + 1400, + 1555, + 1400, + 1622, + 298, + 1622 + ], + "score": 0.605 + }, + { + "category_id": 1, + "poly": [ + 297, + 1638, + 1400, + 1638, + 1400, + 1706, + 297, + 1706 + ], + "score": 0.603 + }, + { + "category_id": 1, + "poly": [ + 298, + 477, + 1403, + 477, + 1403, + 542, + 298, + 542 + ], + "score": 0.584 + }, + { + "category_id": 1, + "poly": [ + 297, + 311, + 1402, + 311, + 1402, + 377, + 297, + 377 + ], + "score": 0.581 + }, + { + "category_id": 1, + "poly": [ + 297, + 1971, + 1400, + 1971, + 1400, + 2034, + 297, + 2034 + ], + "score": 0.564 + }, + { + "category_id": 1, + "poly": [ + 297, + 394, + 1402, + 394, + 1402, + 460, + 297, + 460 + ], + "score": 0.543 + }, + { + "category_id": 1, + "poly": [ + 294, + 1721, + 1403, + 1721, + 1403, + 1758, + 294, + 1758 + ], + "score": 0.536 + }, + { + "category_id": 1, + "poly": [ + 292, + 228, + 1402, + 228, + 1402, + 295, + 292, + 295 + ], + "score": 0.529 + }, + { + "category_id": 1, + "poly": [ + 303, + 1774, + 1401, + 1774, + 1401, + 1870, + 303, + 1870 + ], + "score": 0.47 + }, + { + "category_id": 1, + "poly": [ + 296, + 1888, + 1399, + 1888, + 1399, + 1953, + 296, + 1953 + ], + "score": 0.467 + }, + { + "category_id": 15, + "poly": [ + 295.0, + 73.0, + 816.0, + 73.0, + 816.0, + 108.0, + 295.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 831.0, + 2085.0, + 867.0, + 2085.0, + 867.0, + 2125.0, + 831.0, + 2125.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1336.0, + 1373.0, + 1336.0, + 1373.0, + 1376.0, + 297.0, + 1376.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1391.0, + 1403.0, + 1391.0, + 1403.0, + 1427.0, + 295.0, + 1427.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 1422.0, + 1189.0, + 1422.0, + 1189.0, + 1458.0, + 324.0, + 1458.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1253.0, + 1399.0, + 1253.0, + 1399.0, + 1291.0, + 297.0, + 1291.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1287.0, + 1159.0, + 1287.0, + 1159.0, + 1319.0, + 322.0, + 1319.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1200.0, + 1173.0, + 1200.0, + 1173.0, + 1240.0, + 296.0, + 1240.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 722.0, + 1409.0, + 722.0, + 1409.0, + 765.0, + 293.0, + 765.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 753.0, + 399.0, + 753.0, + 399.0, + 792.0, + 320.0, + 792.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1470.0, + 1409.0, + 1470.0, + 1409.0, + 1510.0, + 293.0, + 1510.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 319.0, + 1501.0, + 398.0, + 1501.0, + 398.0, + 1540.0, + 319.0, + 1540.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 811.0, + 1405.0, + 811.0, + 1405.0, + 847.0, + 296.0, + 847.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 842.0, + 707.0, + 842.0, + 707.0, + 875.0, + 320.0, + 875.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 639.0, + 1404.0, + 639.0, + 1404.0, + 686.0, + 293.0, + 686.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 674.0, + 982.0, + 674.0, + 982.0, + 709.0, + 321.0, + 709.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 893.0, + 1406.0, + 893.0, + 1406.0, + 928.0, + 297.0, + 928.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 925.0, + 1404.0, + 925.0, + 1404.0, + 960.0, + 323.0, + 960.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 956.0, + 596.0, + 956.0, + 596.0, + 985.0, + 322.0, + 985.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1119.0, + 1405.0, + 1119.0, + 1405.0, + 1155.0, + 295.0, + 1155.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1150.0, + 1341.0, + 1150.0, + 1341.0, + 1187.0, + 323.0, + 1187.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 559.0, + 1405.0, + 559.0, + 1405.0, + 599.0, + 294.0, + 599.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 593.0, + 597.0, + 593.0, + 597.0, + 622.0, + 321.0, + 622.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1003.0, + 1406.0, + 1003.0, + 1406.0, + 1043.0, + 292.0, + 1043.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1036.0, + 1405.0, + 1036.0, + 1405.0, + 1073.0, + 323.0, + 1073.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1069.0, + 610.0, + 1069.0, + 610.0, + 1098.0, + 323.0, + 1098.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1556.0, + 1405.0, + 1556.0, + 1405.0, + 1592.0, + 296.0, + 1592.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1589.0, + 1182.0, + 1589.0, + 1182.0, + 1622.0, + 323.0, + 1622.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1640.0, + 1404.0, + 1640.0, + 1404.0, + 1673.0, + 296.0, + 1673.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 318.0, + 1671.0, + 1153.0, + 1671.0, + 1153.0, + 1706.0, + 318.0, + 1706.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 479.0, + 1404.0, + 479.0, + 1404.0, + 515.0, + 296.0, + 515.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 510.0, + 597.0, + 510.0, + 597.0, + 540.0, + 322.0, + 540.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 310.0, + 1406.0, + 310.0, + 1406.0, + 349.0, + 296.0, + 349.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 343.0, + 803.0, + 343.0, + 803.0, + 379.0, + 324.0, + 379.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1969.0, + 1406.0, + 1969.0, + 1406.0, + 2009.0, + 295.0, + 2009.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 2001.0, + 677.0, + 2001.0, + 677.0, + 2036.0, + 322.0, + 2036.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 393.0, + 1404.0, + 393.0, + 1404.0, + 432.0, + 296.0, + 432.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 426.0, + 1215.0, + 426.0, + 1215.0, + 459.0, + 322.0, + 459.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1720.0, + 1408.0, + 1720.0, + 1408.0, + 1759.0, + 294.0, + 1759.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 229.0, + 1404.0, + 229.0, + 1404.0, + 265.0, + 295.0, + 265.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 260.0, + 1190.0, + 260.0, + 1190.0, + 295.0, + 321.0, + 295.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1774.0, + 1407.0, + 1774.0, + 1407.0, + 1812.0, + 295.0, + 1812.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1807.0, + 1404.0, + 1807.0, + 1404.0, + 1842.0, + 323.0, + 1842.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1838.0, + 825.0, + 1838.0, + 825.0, + 1872.0, + 323.0, + 1872.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1888.0, + 1405.0, + 1888.0, + 1405.0, + 1924.0, + 295.0, + 1924.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1918.0, + 943.0, + 1918.0, + 943.0, + 1953.0, + 321.0, + 1953.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 10, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 2, + "poly": [ + 299, + 75, + 816, + 75, + 816, + 105, + 299, + 105 + ], + "score": 0.859 + }, + { + "category_id": 2, + "poly": [ + 835, + 2088, + 864, + 2088, + 864, + 2113, + 835, + 2113 + ], + "score": 0.835 + }, + { + "category_id": 1, + "poly": [ + 295, + 228, + 1402, + 228, + 1402, + 294, + 295, + 294 + ], + "score": 0.613 + }, + { + "category_id": 1, + "poly": [ + 299, + 311, + 1402, + 311, + 1402, + 377, + 299, + 377 + ], + "score": 0.556 + }, + { + "category_id": 1, + "poly": [ + 300, + 395, + 1401, + 395, + 1401, + 460, + 300, + 460 + ], + "score": 0.511 + }, + { + "category_id": 15, + "poly": [ + 295.0, + 73.0, + 817.0, + 73.0, + 817.0, + 108.0, + 295.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 831.0, + 2085.0, + 869.0, + 2085.0, + 869.0, + 2124.0, + 831.0, + 2124.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 226.0, + 1405.0, + 226.0, + 1405.0, + 268.0, + 294.0, + 268.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 319.0, + 260.0, + 1126.0, + 260.0, + 1126.0, + 296.0, + 319.0, + 296.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 312.0, + 1406.0, + 312.0, + 1406.0, + 348.0, + 295.0, + 348.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 344.0, + 1408.0, + 344.0, + 1408.0, + 379.0, + 323.0, + 379.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 395.0, + 1406.0, + 395.0, + 1406.0, + 431.0, + 295.0, + 431.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 426.0, + 934.0, + 426.0, + 934.0, + 461.0, + 324.0, + 461.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 11, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 8, + "poly": [ + 398, + 483, + 1299, + 483, + 1299, + 630, + 398, + 630 + ], + "score": 0.968 + }, + { + "category_id": 8, + "poly": [ + 325, + 1911, + 1371, + 1911, + 1371, + 2044, + 325, + 2044 + ], + "score": 0.957 + }, + { + "category_id": 8, + "poly": [ + 520, + 1505, + 1178, + 1505, + 1178, + 1580, + 520, + 1580 + ], + "score": 0.954 + }, + { + "category_id": 8, + "poly": [ + 623, + 1398, + 1077, + 1398, + 1077, + 1446, + 623, + 1446 + ], + "score": 0.948 + }, + { + "category_id": 8, + "poly": [ + 509, + 696, + 1192, + 696, + 1192, + 768, + 509, + 768 + ], + "score": 0.946 + }, + { + "category_id": 8, + "poly": [ + 441, + 807, + 1254, + 807, + 1254, + 897, + 441, + 897 + ], + "score": 0.945 + }, + { + "category_id": 8, + "poly": [ + 685, + 1293, + 1018, + 1293, + 1018, + 1333, + 685, + 1333 + ], + "score": 0.939 + }, + { + "category_id": 8, + "poly": [ + 566, + 1163, + 1132, + 1163, + 1132, + 1207, + 566, + 1207 + ], + "score": 0.939 + }, + { + "category_id": 8, + "poly": [ + 324, + 1645, + 1371, + 1645, + 1371, + 1778, + 324, + 1778 + ], + "score": 0.936 + }, + { + "category_id": 1, + "poly": [ + 295, + 1458, + 977, + 1458, + 977, + 1493, + 295, + 1493 + ], + "score": 0.933 + }, + { + "category_id": 1, + "poly": [ + 295, + 1345, + 1197, + 1345, + 1197, + 1380, + 295, + 1380 + ], + "score": 0.933 + }, + { + "category_id": 8, + "poly": [ + 643, + 1820, + 1055, + 1820, + 1055, + 1861, + 643, + 1861 + ], + "score": 0.933 + }, + { + "category_id": 1, + "poly": [ + 298, + 1594, + 805, + 1594, + 805, + 1631, + 298, + 1631 + ], + "score": 0.927 + }, + { + "category_id": 1, + "poly": [ + 297, + 1217, + 1090, + 1217, + 1090, + 1273, + 297, + 1273 + ], + "score": 0.925 + }, + { + "category_id": 1, + "poly": [ + 297, + 646, + 998, + 646, + 998, + 681, + 297, + 681 + ], + "score": 0.921 + }, + { + "category_id": 1, + "poly": [ + 298, + 1106, + 601, + 1106, + 601, + 1142, + 298, + 1142 + ], + "score": 0.921 + }, + { + "category_id": 0, + "poly": [ + 296, + 369, + 532, + 369, + 532, + 404, + 296, + 404 + ], + "score": 0.918 + }, + { + "category_id": 2, + "poly": [ + 298, + 73, + 816, + 73, + 816, + 106, + 298, + 106 + ], + "score": 0.916 + }, + { + "category_id": 1, + "poly": [ + 296, + 781, + 358, + 781, + 358, + 812, + 296, + 812 + ], + "score": 0.914 + }, + { + "category_id": 0, + "poly": [ + 297, + 980, + 1137, + 980, + 1137, + 1019, + 297, + 1019 + ], + "score": 0.91 + }, + { + "category_id": 1, + "poly": [ + 297, + 436, + 370, + 436, + 370, + 468, + 297, + 468 + ], + "score": 0.905 + }, + { + "category_id": 1, + "poly": [ + 297, + 1792, + 568, + 1792, + 568, + 1823, + 297, + 1823 + ], + "score": 0.904 + }, + { + "category_id": 1, + "poly": [ + 299, + 297, + 1262, + 297, + 1262, + 338, + 299, + 338 + ], + "score": 0.896 + }, + { + "category_id": 1, + "poly": [ + 297, + 1867, + 365, + 1867, + 365, + 1896, + 297, + 1896 + ], + "score": 0.887 + }, + { + "category_id": 2, + "poly": [ + 835, + 2087, + 864, + 2087, + 864, + 2113, + 835, + 2113 + ], + "score": 0.861 + }, + { + "category_id": 2, + "poly": [ + 1373, + 903, + 1405, + 903, + 1405, + 936, + 1373, + 936 + ], + "score": 0.819 + }, + { + "category_id": 0, + "poly": [ + 290, + 224, + 1292, + 224, + 1292, + 264, + 290, + 264 + ], + "score": 0.646 + }, + { + "category_id": 0, + "poly": [ + 299, + 1050, + 641, + 1050, + 641, + 1082, + 299, + 1082 + ], + "score": 0.617 + }, + { + "category_id": 1, + "poly": [ + 299, + 1050, + 641, + 1050, + 641, + 1082, + 299, + 1082 + ], + "score": 0.333 + }, + { + "category_id": 1, + "poly": [ + 290, + 224, + 1292, + 224, + 1292, + 264, + 290, + 264 + ], + "score": 0.309 + }, + { + "category_id": 14, + "poly": [ + 323, + 1644, + 1377, + 1644, + 1377, + 1779, + 323, + 1779 + ], + "score": 0.94, + "latex": "\\begin{array} { r l } & { \\mathrm { E r } [ f ( X \\odot \\Gamma ) - f ( X \\odot \\gamma ^ { * } ) ] } \\\\ { = } & { \\mathrm { E r } [ f ( X ^ { * } \\odot \\Gamma + X ^ { - } \\odot \\Gamma ) - f ( X ^ { * } \\odot \\gamma ^ { * } + X ^ { - } \\odot \\gamma ^ { * } ) ] } \\\\ { = } & { \\mathrm { E r } [ f ( X ^ { * } \\odot \\Gamma ) - f ( X ^ { * } \\odot \\gamma ^ { * } ) + f ^ { \\prime } ( X ^ { \\prime } \\odot \\Gamma ) ( X ^ { - } \\odot \\Gamma ) - f ^ { \\prime } ( X ^ { \\prime \\prime } \\odot \\gamma ^ { * } ) ( X ^ { - } \\odot \\gamma ^ { * } ) ] } \\\\ { = } & { \\mathrm { E r } [ f ( X ^ { * } \\odot \\Gamma ) - f ( X ^ { * } \\odot \\gamma ^ { * } ) ] + \\mathrm { E r } [ f ^ { \\prime } ( X ^ { \\prime } \\odot \\Gamma ) ( X ^ { - } \\odot \\Gamma ) - f ^ { \\prime } ( X ^ { \\prime \\prime } \\odot \\gamma ^ { * } ) ( X ^ { - } \\odot \\gamma ^ { * } ) ] } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 700, + 1459, + 845, + 1459, + 845, + 1492, + 700, + 1492 + ], + "score": 0.94, + "latex": "X ^ { \\prime } , X ^ { \\prime \\prime } \\in \\mathcal { X }" + }, + { + "category_id": 14, + "poly": [ + 399, + 483, + 1298, + 483, + 1298, + 634, + 399, + 634 + ], + "score": 0.93, + "latex": "\\begin{array} { r c l } { \\operatorname { E } _ { S _ { D } } [ l ( D , S _ { D } ; \\theta ) ] } & { = } & { \\displaystyle \\int _ { S } \\prod _ { i = 1 } ^ { N } p ( s _ { i } ) \\Big ( \\sum _ { i = 1 } ^ { N } \\log p ( y _ { i } | x _ { i } , s _ { i } ; \\theta ) \\Big ) d \\mu ( s _ { 1 } ) \\dots d \\mu ( s _ { N } ) } \\\\ & { = } & { \\displaystyle \\sum _ { i = 1 } ^ { N } \\int _ { S } p ( s _ { i } ) \\log p ( y _ { i } | x _ { i } , s _ { i } ; \\theta ) d \\mu ( s _ { i } ) } \\end{array}" + }, + { + "category_id": 14, + "poly": [ + 322, + 1911, + 1371, + 1911, + 1371, + 2044, + 322, + 2044 + ], + "score": 0.93, + "latex": "\\begin{array} { r l } & { \\mathrm { E r } [ f ( X \\odot \\Gamma ) - f ( X \\odot \\gamma ^ { * } ) ] } \\\\ { = } & { \\mathrm { E } _ { \\Gamma } [ f ^ { \\prime } ( X ^ { \\prime } \\odot \\Gamma ) ( X ^ { - } \\odot \\Gamma ) - f ^ { \\prime } ( X ^ { \\prime \\prime } \\odot \\gamma ^ { * } ) ( X ^ { - } \\odot \\gamma ^ { * } ) ] } \\\\ { = } & { \\mathrm { E } _ { \\Gamma } \\big [ ( f ^ { \\prime } ( X ^ { \\prime } \\odot \\Gamma ) - f ^ { \\prime } ( X ^ { \\prime \\prime } \\odot \\gamma ^ { * } ) ) ( X ^ { - } \\odot \\Gamma ) \\big ] + \\mathrm { E } _ { \\Gamma } [ f ^ { \\prime } ( X ^ { \\prime \\prime } \\odot \\gamma ^ { * } ) ( X ^ { - } \\odot \\Gamma - X ^ { - } \\odot \\gamma ^ { * } ) ] } \\\\ { = } & { \\mathrm { E } _ { \\Gamma } \\big [ ( f ^ { \\prime } ( X ^ { \\prime } \\odot \\Gamma ) - f ^ { \\prime } ( X ^ { \\prime \\prime } \\odot \\gamma ^ { * } ) ) ( X ^ { - } \\odot \\Gamma ) \\big ] } \\end{array}" + }, + { + "category_id": 14, + "poly": [ + 442, + 803, + 1257, + 803, + 1257, + 899, + 442, + 899 + ], + "score": 0.93, + "latex": "\\mathrm { E } _ { S _ { D } } [ - l ( D , S _ { D } ; \\theta ) ] \\geq \\sum _ { i = 1 } ^ { N } \\log \\int _ { S } p ( s _ { i } ) p ( y _ { i } | x _ { i } , s _ { i } ; \\theta ) d \\mu ( s _ { i } ) = - l ( D ; \\theta ) ." + }, + { + "category_id": 13, + "poly": [ + 423, + 1108, + 543, + 1108, + 543, + 1142, + 423, + 1142 + ], + "score": 0.93, + "latex": "\\gamma ^ { * } = \\operatorname { E } [ \\Gamma ]" + }, + { + "category_id": 14, + "poly": [ + 509, + 693, + 1188, + 693, + 1188, + 768, + 509, + 768 + ], + "score": 0.93, + "latex": "\\int _ { S } p ( s ) \\log p ( y | x , s ; \\theta ) d \\mu ( s ) \\leq \\log \\int _ { S } p ( s ) p ( y | x , s ; \\theta ) d \\mu ( s )" + }, + { + "category_id": 13, + "poly": [ + 492, + 1594, + 722, + 1594, + 722, + 1632, + 492, + 1632 + ], + "score": 0.92, + "latex": "f ^ { \\prime } ( x ) = ( \\nabla _ { x } f ( x ) ) ^ { T }" + }, + { + "category_id": 14, + "poly": [ + 621, + 1395, + 1077, + 1395, + 1077, + 1445, + 621, + 1445 + ], + "score": 0.92, + "latex": "\\operatorname { E } _ { \\Gamma } { \\big [ } f ( X \\odot \\Gamma ; \\theta ) { \\big ] } \\triangleq \\operatorname { E } \\left[ f ( X \\odot \\Gamma ; \\theta ) | X \\right]" + }, + { + "category_id": 14, + "poly": [ + 520, + 1505, + 1180, + 1505, + 1180, + 1581, + 520, + 1581 + ], + "score": 0.92, + "latex": "\\begin{array} { r c l } { f ( X \\odot \\Gamma ) } & { = } & { f ( X ^ { * } \\odot \\Gamma ) + f ^ { \\prime } ( X ^ { \\prime } \\odot \\Gamma ) ( X ^ { - } \\odot \\Gamma ) } \\\\ { f ( X \\odot \\gamma ^ { * } ) } & { = } & { f ( X ^ { * } \\odot \\gamma ^ { * } ) + f ^ { \\prime } ( X ^ { \\prime \\prime } \\odot \\gamma ^ { * } ) ( X ^ { - } \\odot \\gamma ^ { * } ) } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 828, + 1219, + 1008, + 1219, + 1008, + 1250, + 828, + 1250 + ], + "score": 0.91, + "latex": "X ^ { - } = X - X ^ { * }" + }, + { + "category_id": 13, + "poly": [ + 396, + 647, + 464, + 647, + 464, + 681, + 396, + 681 + ], + "score": 0.91, + "latex": "\\log ( \\cdot )" + }, + { + "category_id": 14, + "poly": [ + 681, + 1292, + 1019, + 1292, + 1019, + 1331, + 681, + 1331 + ], + "score": 0.91, + "latex": "X \\odot \\gamma = X ^ { * } \\odot \\gamma + X ^ { - } \\odot \\gamma" + }, + { + "category_id": 13, + "poly": [ + 342, + 1218, + 770, + 1218, + 770, + 1275, + 342, + 1275 + ], + "score": 0.91, + "latex": "X ^ { * } = \\underset { x \\in A } { \\operatorname { a r g m i n } } \\ \\underset { \\gamma \\in S } { \\operatorname* { s u p } } \\| X \\odot \\gamma - x \\odot \\gamma \\| _ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 366, + 1793, + 461, + 1793, + 461, + 1821, + 366, + 1821 + ], + "score": 0.91, + "latex": "X ^ { * } \\in A" + }, + { + "category_id": 14, + "poly": [ + 565, + 1159, + 1133, + 1159, + 1133, + 1205, + 565, + 1205 + ], + "score": 0.88, + "latex": "A \\triangleq \\{ x : \\| \\mathrm { E } [ f ( x \\odot \\Gamma ; \\theta ) ] - f ( x \\odot \\gamma ^ { * } ; \\theta ) \\| _ { 2 } = 0 \\}" + }, + { + "category_id": 14, + "poly": [ + 642, + 1820, + 1054, + 1820, + 1054, + 1858, + 642, + 1858 + ], + "score": 0.87, + "latex": "\\operatorname { E } _ { \\Gamma } [ f ( X ^ { * } \\odot \\Gamma ) - f ( X ^ { * } \\odot \\gamma ^ { * } ) ] = 0 ." + }, + { + "category_id": 13, + "poly": [ + 744, + 1348, + 761, + 1348, + 761, + 1374, + 744, + 1374 + ], + "score": 0.84, + "latex": "\\theta" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 371.0, + 534.0, + 371.0, + 534.0, + 404.0, + 295.0, + 404.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": [ + 291.0, + 978.0, + 1138.0, + 978.0, + 1138.0, + 1023.0, + 291.0, + 1023.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 831.0, + 2085.0, + 868.0, + 2085.0, + 868.0, + 2124.0, + 831.0, + 2124.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1378.0, + 909.0, + 1403.0, + 909.0, + 1403.0, + 937.0, + 1378.0, + 937.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 225.0, + 1294.0, + 225.0, + 1294.0, + 268.0, + 295.0, + 268.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1048.0, + 642.0, + 1048.0, + 642.0, + 1085.0, + 295.0, + 1085.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1457.0, + 699.0, + 1457.0, + 699.0, + 1497.0, + 295.0, + 1497.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 846.0, + 1457.0, + 978.0, + 1457.0, + 978.0, + 1497.0, + 846.0, + 1497.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1344.0, + 743.0, + 1344.0, + 743.0, + 1383.0, + 294.0, + 1383.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 762.0, + 1344.0, + 1198.0, + 1344.0, + 1198.0, + 1383.0, + 762.0, + 1383.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1593.0, + 491.0, + 1593.0, + 491.0, + 1634.0, + 295.0, + 1634.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 723.0, + 1593.0, + 806.0, + 1593.0, + 806.0, + 1634.0, + 723.0, + 1634.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1216.0, + 341.0, + 1216.0, + 341.0, + 1256.0, + 294.0, + 1256.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 771.0, + 1216.0, + 827.0, + 1216.0, + 827.0, + 1256.0, + 771.0, + 1256.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1009.0, + 1216.0, + 1093.0, + 1216.0, + 1093.0, + 1256.0, + 1009.0, + 1256.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 639.0, + 395.0, + 639.0, + 395.0, + 688.0, + 293.0, + 688.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 465.0, + 639.0, + 1000.0, + 639.0, + 1000.0, + 688.0, + 465.0, + 688.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1105.0, + 422.0, + 1105.0, + 422.0, + 1145.0, + 295.0, + 1145.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 544.0, + 1105.0, + 602.0, + 1105.0, + 602.0, + 1145.0, + 544.0, + 1145.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 778.0, + 362.0, + 778.0, + 362.0, + 816.0, + 293.0, + 816.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 431.0, + 377.0, + 431.0, + 377.0, + 478.0, + 290.0, + 478.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1787.0, + 365.0, + 1787.0, + 365.0, + 1828.0, + 295.0, + 1828.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 462.0, + 1787.0, + 570.0, + 1787.0, + 570.0, + 1828.0, + 462.0, + 1828.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 298.0, + 1263.0, + 298.0, + 1263.0, + 341.0, + 293.0, + 341.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1862.0, + 373.0, + 1862.0, + 373.0, + 1907.0, + 292.0, + 1907.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1048.0, + 642.0, + 1048.0, + 642.0, + 1085.0, + 295.0, + 1085.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 225.0, + 1294.0, + 225.0, + 1294.0, + 268.0, + 295.0, + 268.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 12, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 8, + "poly": [ + 516, + 657, + 1178, + 657, + 1178, + 802, + 516, + 802 + ], + "score": 0.973 + }, + { + "category_id": 8, + "poly": [ + 405, + 1531, + 1290, + 1531, + 1290, + 1855, + 405, + 1855 + ], + "score": 0.968 + }, + { + "category_id": 8, + "poly": [ + 541, + 420, + 1154, + 420, + 1154, + 609, + 541, + 609 + ], + "score": 0.968 + }, + { + "category_id": 8, + "poly": [ + 404, + 1905, + 1294, + 1905, + 1294, + 2045, + 404, + 2045 + ], + "score": 0.966 + }, + { + "category_id": 1, + "poly": [ + 299, + 329, + 1404, + 329, + 1404, + 413, + 299, + 413 + ], + "score": 0.965 + }, + { + "category_id": 1, + "poly": [ + 293, + 1366, + 1408, + 1366, + 1408, + 1437, + 293, + 1437 + ], + "score": 0.946 + }, + { + "category_id": 8, + "poly": [ + 534, + 1064, + 1161, + 1064, + 1161, + 1122, + 534, + 1122 + ], + "score": 0.945 + }, + { + "category_id": 8, + "poly": [ + 569, + 1178, + 1128, + 1178, + 1128, + 1252, + 569, + 1252 + ], + "score": 0.944 + }, + { + "category_id": 1, + "poly": [ + 296, + 618, + 485, + 618, + 485, + 650, + 296, + 650 + ], + "score": 0.931 + }, + { + "category_id": 0, + "poly": [ + 298, + 876, + 640, + 876, + 640, + 908, + 298, + 908 + ], + "score": 0.931 + }, + { + "category_id": 8, + "poly": [ + 430, + 1302, + 1273, + 1302, + 1273, + 1356, + 430, + 1356 + ], + "score": 0.929 + }, + { + "category_id": 8, + "poly": [ + 552, + 253, + 1147, + 253, + 1147, + 324, + 552, + 324 + ], + "score": 0.927 + }, + { + "category_id": 1, + "poly": [ + 297, + 1494, + 559, + 1494, + 559, + 1526, + 297, + 1526 + ], + "score": 0.927 + }, + { + "category_id": 1, + "poly": [ + 298, + 1862, + 794, + 1862, + 794, + 1895, + 298, + 1895 + ], + "score": 0.926 + }, + { + "category_id": 1, + "poly": [ + 298, + 1260, + 1137, + 1260, + 1137, + 1293, + 298, + 1293 + ], + "score": 0.926 + }, + { + "category_id": 2, + "poly": [ + 297, + 73, + 816, + 73, + 816, + 106, + 297, + 106 + ], + "score": 0.92 + }, + { + "category_id": 1, + "poly": [ + 296, + 230, + 366, + 230, + 366, + 262, + 296, + 262 + ], + "score": 0.91 + }, + { + "category_id": 8, + "poly": [ + 593, + 1444, + 1105, + 1444, + 1105, + 1491, + 593, + 1491 + ], + "score": 0.903 + }, + { + "category_id": 1, + "poly": [ + 293, + 1132, + 1276, + 1132, + 1276, + 1169, + 293, + 1169 + ], + "score": 0.901 + }, + { + "category_id": 9, + "poly": [ + 1365, + 1079, + 1402, + 1079, + 1402, + 1110, + 1365, + 1110 + ], + "score": 0.883 + }, + { + "category_id": 9, + "poly": [ + 1365, + 1313, + 1401, + 1313, + 1401, + 1344, + 1365, + 1344 + ], + "score": 0.867 + }, + { + "category_id": 2, + "poly": [ + 835, + 2088, + 864, + 2088, + 864, + 2113, + 835, + 2113 + ], + "score": 0.865 + }, + { + "category_id": 9, + "poly": [ + 1364, + 1958, + 1402, + 1958, + 1402, + 1989, + 1364, + 1989 + ], + "score": 0.847 + }, + { + "category_id": 2, + "poly": [ + 1373, + 808, + 1405, + 808, + 1405, + 839, + 1373, + 839 + ], + "score": 0.832 + }, + { + "category_id": 1, + "poly": [ + 301, + 996, + 1255, + 996, + 1255, + 1057, + 301, + 1057 + ], + "score": 0.611 + }, + { + "category_id": 1, + "poly": [ + 300, + 934, + 1240, + 934, + 1240, + 966, + 300, + 966 + ], + "score": 0.573 + }, + { + "category_id": 1, + "poly": [ + 328, + 967, + 942, + 967, + 942, + 995, + 328, + 995 + ], + "score": 0.192 + }, + { + "category_id": 14, + "poly": [ + 404, + 1531, + 1292, + 1531, + 1292, + 1858, + 404, + 1858 + ], + "score": 0.95, + "latex": "\\begin{array} { r l } & { \\mathrm { E } _ { X } [ \\| \\mathrm { E } _ { S _ { L + 1 } } [ \\mathbf { H } ^ { ( L + 1 ) } ] - \\mathbf { h } ^ { ( L + 1 ) } \\| _ { 2 } ] } \\\\ { = } & { \\mathrm { E } _ { X } [ \\| \\mathrm { E } _ { S _ { L } } [ \\mathrm { E } _ { \\Gamma ( L + 1 ) } [ f _ { L + 1 } ( \\mathbf { H } ^ { ( L ) } \\odot \\Gamma ^ { ( L + 1 ) } ) ] - f _ { L + 1 } ( \\mathbf { h } ^ { ( L ) } \\odot \\gamma ^ { ( L + 1 ) } ) ] } \\\\ & { + \\mathrm { E } _ { S _ { L } } [ f _ { L + 1 } ( \\mathbf { H } ^ { ( L ) } \\odot \\gamma ^ { ( L + 1 ) } ) ] - f _ { L + 1 } ( \\mathbf { h } ^ { ( L ) } \\odot \\gamma ^ { ( L + 1 ) } ) \\| _ { 2 } ] } \\\\ { \\le } & { \\mathrm { E } _ { X } [ \\| \\mathrm { E } _ { S _ { L } } [ \\mathrm { E } _ { \\Gamma ( L + 1 ) } [ f _ { L + 1 } ( \\mathbf { H } ^ { ( L ) } \\odot \\Gamma ^ { ( L + 1 ) } ) ] - f _ { L + 1 } ( \\mathbf { h } ^ { ( L ) } \\odot \\gamma ^ { ( L + 1 ) } ) ] \\| _ { 2 } ] } \\\\ & { + \\mathrm { E } _ { X } [ \\| \\mathrm { E } _ { S _ { L } } [ f _ { L + 1 } ( \\mathbf { H } ^ { ( L ) } \\odot \\gamma ^ { ( L + 1 ) } ) ] - f _ { L + 1 } ( \\mathbf { h } ^ { ( L ) } \\odot \\gamma ^ { ( L + 1 ) } ) \\| _ { 2 } ] } \\end{array} ." + }, + { + "category_id": 14, + "poly": [ + 512, + 659, + 1183, + 659, + 1183, + 802, + 512, + 802 + ], + "score": 0.94, + "latex": "\\begin{array} { r l } & { \\mathrm { E } _ { X } \\bigg [ \\| \\mathrm { E } _ { \\Gamma } [ ( f ^ { \\prime } ( X ^ { \\prime } \\odot \\Gamma ) - f ^ { \\prime } ( X ^ { \\prime \\prime } \\odot \\gamma ^ { * } ) ) ( X ^ { - } \\odot \\Gamma ) ] \\| _ { 2 } \\bigg ] } \\\\ { \\le } & { 2 B \\mathrm { E } \\bigg [ \\underset { x \\in A } { \\operatorname* { i n f } } \\underset { \\gamma \\in S } { \\operatorname* { s u p } } \\| X \\odot \\gamma - x \\odot \\gamma \\| _ { 2 } \\bigg ] \\le 2 B C } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 1212, + 1366, + 1348, + 1366, + 1348, + 1404, + 1212, + 1404 + ], + "score": 0.94, + "latex": "\\mathbf { H } ^ { ( l ) } ( X , S _ { l } )" + }, + { + "category_id": 14, + "poly": [ + 568, + 1174, + 1131, + 1174, + 1131, + 1255, + 568, + 1255 + ], + "score": 0.93, + "latex": "\\Delta _ { L } = ( B \\gamma ) ^ { L - 1 } \\delta + ( \\delta + B \\gamma \\sigma ) \\bigg ( { \\frac { 1 - ( B \\gamma ) ^ { L - 1 } } { 1 - B \\gamma } } \\bigg )" + }, + { + "category_id": 14, + "poly": [ + 536, + 418, + 1157, + 418, + 1157, + 613, + 536, + 613 + ], + "score": 0.93, + "latex": "\\begin{array} { r l } & { \\| \\mathrm { E } _ { \\Gamma } [ ( f ^ { \\prime } ( X ^ { \\prime } \\odot \\Gamma ) - f ^ { \\prime } ( X ^ { \\prime \\prime } \\odot \\gamma ^ { * } ) ) ( X ^ { - } \\odot \\Gamma ) ] \\| _ { 2 } } \\\\ { \\le } & { \\mathrm { E } _ { \\Gamma } \\Big [ \\| f ^ { \\prime } ( X ^ { \\prime } \\odot \\Gamma ) - f ^ { \\prime } ( X ^ { \\prime \\prime } \\odot \\gamma ^ { * } ) \\| _ { o p } \\| X ^ { - } \\odot \\Gamma \\| _ { 2 } \\Big ] } \\\\ { \\le } & { 2 B \\mathrm { E } _ { \\Gamma } \\Big [ \\| X ^ { - } \\odot \\Gamma \\| _ { 2 } \\Big ] } \\\\ { \\le } & { 2 B \\underset { x \\in A } { \\operatorname* { i n f } } \\underset { \\gamma \\in S } { \\operatorname* { s u p } } \\| X \\odot \\gamma - x \\odot \\gamma \\| _ { 2 } } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 345, + 1367, + 784, + 1367, + 784, + 1404, + 345, + 1404 + ], + "score": 0.92, + "latex": "\\operatorname { E } [ \\Gamma ^ { ( l ) } ] ~ = ~ \\gamma ^ { ( l ) } , \\forall l ~ \\in ~ \\{ 1 , \\dots , L + 1 \\}" + }, + { + "category_id": 13, + "poly": [ + 371, + 1131, + 632, + 1131, + 632, + 1170, + 371, + 1170 + ], + "score": 0.92, + "latex": "{ \\cal S } _ { \\cal L } = \\{ \\Gamma ^ { ( 1 ) } , \\dots , \\Gamma ^ { ( L ) } \\}" + }, + { + "category_id": 13, + "poly": [ + 297, + 1403, + 466, + 1403, + 466, + 1438, + 297, + 1438 + ], + "score": 0.92, + "latex": "\\mathbf { h } ^ { ( l ) } ( X , \\mathrm { E } ( S _ { l } ) )" + }, + { + "category_id": 14, + "poly": [ + 399, + 1902, + 1294, + 1902, + 1294, + 2046, + 399, + 2046 + ], + "score": 0.92, + "latex": "\\begin{array} { r l } & { \\mathbf { E } _ { X } \\bigg [ \\Big \\| \\mathrm { E } _ { S _ { L } } \\Big [ \\mathrm { E } _ { \\Gamma ^ { ( L + 1 ) } } \\big [ f _ { L + 1 } ( \\mathbf { H } ^ { ( L ) } \\odot \\Gamma ^ { ( L + 1 ) } ) \\big ] - f _ { L + 1 } ( \\mathbf { h } ^ { ( L ) } \\odot \\gamma ^ { ( L + 1 ) } ) \\Big ] \\Big \\| _ { 2 } \\bigg ] } \\\\ { \\le } & { \\mathrm { E } _ { \\mathbf { H } ^ { ( L ) } } \\bigg [ \\Big \\| \\mathrm { E } _ { \\Gamma ^ { ( L + 1 ) } } \\big [ f _ { L + 1 } ( \\mathbf { H } ^ { ( L ) } \\odot \\Gamma ^ { ( L + 1 ) } ) \\big ] - f _ { L + 1 } ( \\mathbf { h } ^ { ( L ) } \\odot \\gamma ^ { ( L + 1 ) } ) \\Big \\| _ { 2 } \\bigg ] \\le \\delta } \\end{array}" + }, + { + "category_id": 14, + "poly": [ + 590, + 1443, + 1106, + 1443, + 1106, + 1489, + 590, + 1489 + ], + "score": 0.92, + "latex": "\\operatorname { E } _ { S } \\big [ \\mathbf { H } ^ { ( L ) } ( X , S ; \\theta ) \\big ] = \\operatorname { E } _ { S } \\big [ \\mathbf { H } ^ { ( L ) } ( X , S ; \\theta ) \\big | X \\big ]" + }, + { + "category_id": 13, + "poly": [ + 509, + 965, + 581, + 965, + 581, + 993, + 509, + 993 + ], + "score": 0.91, + "latex": "L = 1" + }, + { + "category_id": 14, + "poly": [ + 536, + 1063, + 1162, + 1063, + 1162, + 1123, + 536, + 1123 + ], + "score": 0.91, + "latex": "\\begin{array} { r } { \\mathrm { E } _ { X } \\Big [ \\big \\| \\mathrm { E } _ { S _ { L } } \\big [ \\mathbf { H } ^ { ( L ) } ( X , S _ { L } ) \\big ] - \\mathbf { h } ^ { ( L ) } ( X , \\mathrm { E } [ S _ { L } ] ) \\big \\| _ { 2 } \\Big ] \\leq \\Delta _ { L } } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 472, + 1262, + 542, + 1262, + 542, + 1290, + 472, + 1290 + ], + "score": 0.9, + "latex": "L + 1" + }, + { + "category_id": 13, + "poly": [ + 561, + 1027, + 630, + 1027, + 630, + 1055, + 561, + 1055 + ], + "score": 0.9, + "latex": "L + 1" + }, + { + "category_id": 14, + "poly": [ + 427, + 1299, + 1272, + 1299, + 1272, + 1358, + 427, + 1358 + ], + "score": 0.9, + "latex": "\\begin{array} { r } { \\mathrm { E } _ { \\mathbf { H } ^ { ( L ) } } \\Big [ \\big \\lVert \\mathrm { E } _ { \\Gamma ^ { ( L + 1 ) } } \\left[ f _ { L + 1 } ( \\mathbf { H } ^ { ( L ) } \\odot \\Gamma ^ { ( L + 1 ) } ) \\right] - f _ { L + 1 } ( \\mathbf { H } ^ { ( L ) } \\odot \\boldsymbol { \\gamma } ^ { ( L + 1 ) } ) \\big \\rVert _ { 2 } \\Big ] \\leq \\delta } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 892, + 1367, + 946, + 1367, + 946, + 1399, + 892, + 1399 + ], + "score": 0.9, + "latex": "\\mathbf { H } ^ { ( l ) }" + }, + { + "category_id": 13, + "poly": [ + 1006, + 1366, + 1053, + 1366, + 1053, + 1399, + 1006, + 1399 + ], + "score": 0.89, + "latex": "\\mathbf { h } ^ { ( l ) }" + }, + { + "category_id": 14, + "poly": [ + 546, + 256, + 1151, + 256, + 1151, + 325, + 546, + 325 + ], + "score": 0.87, + "latex": "\\begin{array} { r l } & { \\| \\mathrm { E } _ { \\Gamma } [ f ( X \\odot \\Gamma ) ] - f ( X \\odot \\gamma ^ { * } ) \\| _ { 2 } } \\\\ { = } & { \\| \\mathrm { E } _ { \\Gamma } [ ( f ^ { \\prime } ( X ^ { \\prime } \\odot \\Gamma ) - f ^ { \\prime } ( X ^ { \\prime \\prime } \\odot \\gamma ^ { * } ) ) ( X ^ { - } \\odot \\Gamma ) ] \\| _ { 2 } } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 364, + 330, + 1073, + 330, + 1073, + 385, + 364, + 385 + ], + "score": 0.84, + "latex": "\\| X ^ { - } \\odot \\gamma ^ { \\prime } \\| _ { 2 } \\leq \\operatorname* { s u p } _ { \\gamma \\in S } \\| X ^ { - } \\odot \\gamma \\| _ { 2 } = \\operatorname* { i n f } _ { x \\in A } \\operatorname* { s u p } _ { \\gamma \\in S } \\| X \\odot \\gamma - x \\odot \\gamma \\| _ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 634, + 1262, + 650, + 1262, + 650, + 1288, + 634, + 1288 + ], + "score": 0.84, + "latex": "\\delta" + }, + { + "category_id": 13, + "poly": [ + 1122, + 1137, + 1144, + 1137, + 1144, + 1162, + 1122, + 1162 + ], + "score": 0.83, + "latex": "L" + }, + { + "category_id": 13, + "poly": [ + 1150, + 998, + 1172, + 998, + 1172, + 1023, + 1150, + 1023 + ], + "score": 0.82, + "latex": "L" + }, + { + "category_id": 13, + "poly": [ + 1215, + 937, + 1231, + 937, + 1231, + 961, + 1215, + 961 + ], + "score": 0.8, + "latex": "\\theta" + }, + { + "category_id": 13, + "poly": [ + 803, + 936, + 825, + 936, + 825, + 962, + 803, + 962 + ], + "score": 0.78, + "latex": "L" + }, + { + "category_id": 13, + "poly": [ + 456, + 997, + 478, + 997, + 478, + 1023, + 456, + 1023 + ], + "score": 0.63, + "latex": "L" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 874.0, + 643.0, + 874.0, + 643.0, + 911.0, + 294.0, + 911.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 72.0, + 817.0, + 72.0, + 817.0, + 108.0, + 296.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 831.0, + 2085.0, + 869.0, + 2085.0, + 869.0, + 2123.0, + 831.0, + 2123.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1378.0, + 813.0, + 1403.0, + 813.0, + 1403.0, + 841.0, + 1378.0, + 841.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 325.0, + 363.0, + 325.0, + 363.0, + 368.0, + 294.0, + 368.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1074.0, + 325.0, + 1406.0, + 325.0, + 1406.0, + 368.0, + 1074.0, + 368.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 379.0, + 647.0, + 379.0, + 647.0, + 418.0, + 294.0, + 418.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 757.0, + 353.5, + 859.0, + 353.5, + 859.0, + 385.0, + 757.0, + 385.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1361.0, + 344.0, + 1361.0, + 344.0, + 1407.0, + 292.0, + 1407.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 785.0, + 1361.0, + 891.0, + 1361.0, + 891.0, + 1407.0, + 785.0, + 1407.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 947.0, + 1361.0, + 1005.0, + 1361.0, + 1005.0, + 1407.0, + 947.0, + 1407.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1054.0, + 1361.0, + 1211.0, + 1361.0, + 1211.0, + 1407.0, + 1054.0, + 1407.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1349.0, + 1361.0, + 1407.0, + 1361.0, + 1407.0, + 1407.0, + 1349.0, + 1407.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 467.0, + 1397.0, + 1180.0, + 1397.0, + 1180.0, + 1443.0, + 467.0, + 1443.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 614.0, + 490.0, + 614.0, + 490.0, + 656.0, + 292.0, + 656.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1490.0, + 561.0, + 1490.0, + 561.0, + 1530.0, + 295.0, + 1530.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1857.0, + 795.0, + 1857.0, + 795.0, + 1900.0, + 294.0, + 1900.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1258.0, + 471.0, + 1258.0, + 471.0, + 1297.0, + 295.0, + 1297.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 543.0, + 1258.0, + 633.0, + 1258.0, + 633.0, + 1297.0, + 543.0, + 1297.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 651.0, + 1258.0, + 1140.0, + 1258.0, + 1140.0, + 1297.0, + 651.0, + 1297.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 227.0, + 371.0, + 227.0, + 371.0, + 268.0, + 293.0, + 268.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 1126.0, + 370.0, + 1126.0, + 370.0, + 1175.0, + 290.0, + 1175.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 633.0, + 1126.0, + 1121.0, + 1126.0, + 1121.0, + 1175.0, + 633.0, + 1175.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1145.0, + 1126.0, + 1280.0, + 1126.0, + 1280.0, + 1175.0, + 1145.0, + 1175.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 991.0, + 455.0, + 991.0, + 455.0, + 1032.0, + 293.0, + 1032.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 479.0, + 991.0, + 1149.0, + 991.0, + 1149.0, + 1032.0, + 479.0, + 1032.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1173.0, + 991.0, + 1257.0, + 991.0, + 1257.0, + 1032.0, + 1173.0, + 1032.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1020.0, + 560.0, + 1020.0, + 560.0, + 1064.0, + 292.0, + 1064.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 631.0, + 1020.0, + 1106.0, + 1020.0, + 1106.0, + 1064.0, + 631.0, + 1064.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 931.0, + 802.0, + 931.0, + 802.0, + 971.0, + 294.0, + 971.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 826.0, + 931.0, + 1214.0, + 931.0, + 1214.0, + 971.0, + 826.0, + 971.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1232.0, + 931.0, + 1242.0, + 931.0, + 1242.0, + 971.0, + 1232.0, + 971.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 962.0, + 508.0, + 962.0, + 508.0, + 1001.0, + 321.0, + 1001.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 582.0, + 962.0, + 944.0, + 962.0, + 944.0, + 1001.0, + 582.0, + 1001.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 13, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 8, + "poly": [ + 422, + 654, + 1271, + 654, + 1271, + 909, + 422, + 909 + ], + "score": 0.97 + }, + { + "category_id": 8, + "poly": [ + 421, + 250, + 1273, + 250, + 1273, + 593, + 421, + 593 + ], + "score": 0.97 + }, + { + "category_id": 8, + "poly": [ + 574, + 1149, + 1120, + 1149, + 1120, + 1308, + 574, + 1308 + ], + "score": 0.969 + }, + { + "category_id": 8, + "poly": [ + 540, + 1917, + 1155, + 1917, + 1155, + 2045, + 540, + 2045 + ], + "score": 0.966 + }, + { + "category_id": 8, + "poly": [ + 464, + 965, + 1229, + 965, + 1229, + 1090, + 464, + 1090 + ], + "score": 0.964 + }, + { + "category_id": 8, + "poly": [ + 655, + 1799, + 1044, + 1799, + 1044, + 1857, + 655, + 1857 + ], + "score": 0.955 + }, + { + "category_id": 8, + "poly": [ + 587, + 1652, + 1109, + 1652, + 1109, + 1737, + 587, + 1737 + ], + "score": 0.954 + }, + { + "category_id": 1, + "poly": [ + 298, + 1568, + 1400, + 1568, + 1400, + 1635, + 298, + 1635 + ], + "score": 0.94 + }, + { + "category_id": 1, + "poly": [ + 294, + 1869, + 1395, + 1869, + 1395, + 1904, + 294, + 1904 + ], + "score": 0.93 + }, + { + "category_id": 1, + "poly": [ + 295, + 1102, + 974, + 1102, + 974, + 1138, + 295, + 1138 + ], + "score": 0.93 + }, + { + "category_id": 1, + "poly": [ + 298, + 1751, + 802, + 1751, + 802, + 1785, + 298, + 1785 + ], + "score": 0.925 + }, + { + "category_id": 0, + "poly": [ + 298, + 1396, + 799, + 1396, + 799, + 1432, + 298, + 1432 + ], + "score": 0.924 + }, + { + "category_id": 1, + "poly": [ + 295, + 919, + 426, + 919, + 426, + 952, + 295, + 952 + ], + "score": 0.922 + }, + { + "category_id": 2, + "poly": [ + 297, + 73, + 816, + 73, + 816, + 106, + 297, + 106 + ], + "score": 0.917 + }, + { + "category_id": 1, + "poly": [ + 287, + 600, + 1293, + 600, + 1293, + 639, + 287, + 639 + ], + "score": 0.913 + }, + { + "category_id": 1, + "poly": [ + 296, + 231, + 345, + 231, + 345, + 261, + 296, + 261 + ], + "score": 0.896 + }, + { + "category_id": 9, + "poly": [ + 1365, + 1014, + 1402, + 1014, + 1402, + 1044, + 1365, + 1044 + ], + "score": 0.873 + }, + { + "category_id": 2, + "poly": [ + 835, + 2087, + 864, + 2087, + 864, + 2113, + 835, + 2113 + ], + "score": 0.868 + }, + { + "category_id": 9, + "poly": [ + 1364, + 765, + 1402, + 765, + 1402, + 797, + 1364, + 797 + ], + "score": 0.868 + }, + { + "category_id": 9, + "poly": [ + 1364, + 407, + 1403, + 407, + 1403, + 439, + 1364, + 439 + ], + "score": 0.851 + }, + { + "category_id": 2, + "poly": [ + 1373, + 1320, + 1405, + 1320, + 1405, + 1351, + 1373, + 1351 + ], + "score": 0.832 + }, + { + "category_id": 1, + "poly": [ + 298, + 1464, + 1014, + 1464, + 1014, + 1499, + 298, + 1499 + ], + "score": 0.781 + }, + { + "category_id": 1, + "poly": [ + 301, + 1522, + 924, + 1522, + 924, + 1556, + 301, + 1556 + ], + "score": 0.345 + }, + { + "category_id": 0, + "poly": [ + 298, + 1464, + 1014, + 1464, + 1014, + 1499, + 298, + 1499 + ], + "score": 0.179 + }, + { + "category_id": 14, + "poly": [ + 421, + 251, + 1277, + 251, + 1277, + 594, + 421, + 594 + ], + "score": 0.95, + "latex": "\\begin{array} { r l } & { \\mathrm { E } _ { X } \\left[ \\Big \\lVert \\mathrm { E } _ { S _ { L } } \\Big [ f _ { L + 1 } ( \\mathbf { H } ^ { ( L ) } \\odot \\gamma ^ { ( L + 1 ) } ) \\Big ] - f _ { L + 1 } ( \\mathbf { h } ^ { ( L ) } \\odot \\gamma ^ { ( L + 1 ) } ) \\Big \\rVert _ { 2 } \\right] } \\\\ { = } & { \\mathrm { E } _ { X } \\left[ \\Big \\lVert \\mathrm { E } _ { S _ { L } } \\Big [ f _ { L + 1 } ( \\mathbf { H } ^ { ( L ) } \\odot \\gamma ^ { ( L + 1 ) } ) \\Big ] - f _ { L + 1 } ( \\mathrm { E } _ { S _ { L } } \\big [ \\mathbf { H } ^ { ( L ) } \\big ] \\odot \\gamma ^ { ( L + 1 ) } ) \\right. } \\\\ & { \\left. + f _ { L + 1 } ( \\mathrm { E } _ { S _ { L } } \\big [ \\mathbf { H } ^ { ( L ) } \\big ] \\odot \\gamma ^ { ( L + 1 ) } ) - f _ { L + 1 } ( \\mathbf { h } ^ { ( L ) } \\odot \\gamma ^ { ( L + 1 ) } ) \\Big \\rVert _ { 2 } \\right] } \\\\ { \\le } & { \\mathrm { E } _ { X } \\left[ \\Big \\lVert \\mathrm { E } _ { S _ { L } } \\Big [ f _ { L + 1 } ( \\mathbf { H } ^ { ( L ) } \\odot \\gamma ^ { ( L + 1 ) } ) \\Big ] - f _ { L + 1 } ( \\mathrm { E } _ { S _ { L } } \\big [ \\mathbf { H } ^ { ( L ) } \\big ] \\odot \\gamma ^ { ( L + 1 ) } ) \\Big \\rVert _ { 2 } \\right] } \\\\ & { + \\mathrm { E } _ { X } \\left[ \\Big \\lVert f _ { L + 1 } ( \\mathrm { E } _ { S _ { L } } \\big [ \\mathbf { H } ^ { ( L ) } \\big ] \\odot \\gamma ^ { ( L + 1 ) } ) - f _ { L + 1 } ( \\mathbf { h } ^ { ( L ) } \\odot \\gamma ^ { ( L + 1 ) } ) \\Big \\rVert _ { 2 } \\right] } \\end{array}" + }, + { + "category_id": 14, + "poly": [ + 421, + 654, + 1277, + 654, + 1277, + 910, + 421, + 910 + ], + "score": 0.95, + "latex": "\\begin{array} { r l } & { \\mathrm { E } _ { X } \\left[ \\Big \\| \\mathrm { E } _ { S _ { L } } \\Big [ f _ { L + 1 } \\big ( \\mathbf { H } ^ { ( L ) } \\odot \\boldsymbol { \\gamma } ^ { ( L + 1 ) } \\big ) \\Big ] - f _ { L + 1 } \\big ( \\mathrm { E } _ { S _ { L } } \\big [ \\mathbf { H } ^ { ( L ) } \\big ] \\odot \\boldsymbol { \\gamma } ^ { ( L + 1 ) } \\big ) \\Big \\| _ { 2 } \\right] } \\\\ { \\leq } & { \\mathrm { E } _ { \\mathbf { H } ^ { ( L ) } } \\left[ \\Big \\| f _ { L + 1 } \\big ( \\mathbf { H } ^ { ( L ) } \\odot \\boldsymbol { \\gamma } ^ { ( L + 1 ) } \\big ) - f _ { L + 1 } \\big ( \\mathrm { E } _ { S _ { L } } \\big [ \\mathbf { H } ^ { ( L ) } \\big ] \\odot \\boldsymbol { \\gamma } ^ { ( L + 1 ) } \\big ) \\Big \\| _ { 2 } \\right] } \\\\ { \\leq } & { B \\gamma \\mathrm { E } _ { \\mathbf { H } ^ { ( L ) } } \\left[ \\big \\| \\mathbf { H } ^ { ( L ) } - \\mathrm { E } _ { S _ { L } } \\big [ \\mathbf { H } ^ { ( L ) } \\big ] \\big \\| _ { 2 } \\right] } \\\\ { \\leq } & { B \\gamma \\left( \\mathrm { E } _ { \\mathbf { H } ^ { ( L ) } } \\left[ \\big \\| \\mathbf { H } ^ { ( L ) } - \\mathrm { E } _ { S _ { L } } \\big [ \\mathbf { H } ^ { ( L ) } \\big ] \\big \\| _ { 2 } ^ { 2 } \\right] \\right) ^ { \\frac { 1 } { 2 } } \\leq B \\gamma \\sigma } \\end{array}" + }, + { + "category_id": 14, + "poly": [ + 540, + 1917, + 1156, + 1917, + 1156, + 2045, + 540, + 2045 + ], + "score": 0.94, + "latex": "\\begin{array} { r c l } { \\mathcal { R } _ { n } ( \\mathcal { H } , X ^ { n } , S ^ { n } ) } & { = } & { \\operatorname { E } _ { \\sigma } \\bigg [ \\underset { h \\in \\mathcal { H } } { \\operatorname* { s u p } } \\Big ( \\frac { 1 } { n } \\sum _ { i = 1 } ^ { n } \\sigma _ { i } h ( X _ { i } , S _ { i } ) \\Big ) \\bigg ] } \\\\ { \\mathcal { R } _ { n } ( \\mathcal { H } ) } & { = } & { \\operatorname { E } _ { X ^ { n } , S ^ { n } } \\Big [ R a d _ { n } ( \\mathcal { H } , X ^ { n } , S ^ { n } ) \\Big ] } \\end{array}" + }, + { + "category_id": 14, + "poly": [ + 587, + 1648, + 1112, + 1648, + 1112, + 1739, + 587, + 1739 + ], + "score": 0.94, + "latex": "R a d _ { n } ( \\mathcal { F } , X ^ { n } ) = \\mathrm { E } _ { \\sigma } \\left[ \\operatorname* { s u p } _ { f \\in \\mathcal { F } } \\Big ( \\frac { 1 } { n } \\sum _ { i = 1 } ^ { n } \\sigma _ { i } f ( X _ { i } ) \\Big ) \\right]" + }, + { + "category_id": 14, + "poly": [ + 571, + 1149, + 1124, + 1149, + 1124, + 1310, + 571, + 1310 + ], + "score": 0.94, + "latex": "\\begin{array} { r l } & { \\mathrm { E } _ { X } \\Big [ \\big \\| \\mathrm { E } _ { S _ { L + 1 } } \\big [ \\mathbf { H } ^ { ( L + 1 ) } \\big ] - \\mathbf { h } ^ { ( L + 1 ) } \\big \\| _ { 2 } \\Big ] } \\\\ { \\leq } & { \\delta + B \\gamma \\sigma + B \\gamma \\Delta _ { L } } \\\\ { = } & { ( B \\gamma ) ^ { L } \\delta + ( \\delta + B \\gamma \\sigma ) \\bigg ( \\frac { 1 - ( B \\gamma ) ^ { L } } { 1 - B \\gamma } \\bigg ) = \\Delta _ { L + 1 } } \\end{array}" + }, + { + "category_id": 14, + "poly": [ + 460, + 964, + 1232, + 964, + 1232, + 1093, + 460, + 1093 + ], + "score": 0.94, + "latex": "\\begin{array} { r l } & { \\mathrm { E } _ { X } \\bigg [ \\Big \\| f _ { L + 1 } \\big ( \\mathrm { E } _ { S _ { L } } \\big [ \\mathbf { H } ^ { ( L ) } \\big ] \\odot \\boldsymbol { \\gamma } ^ { ( L + 1 ) } \\big ) - f _ { L + 1 } \\big ( \\mathbf { h } ^ { ( L ) } \\odot \\boldsymbol { \\gamma } ^ { ( L + 1 ) } \\big ) \\Big \\| _ { 2 } \\bigg ] } \\\\ { = } & { B \\gamma \\mathrm { E } _ { X } \\Big [ \\big \\| \\mathrm { E } _ { S _ { L } } \\big [ \\mathbf { H } ^ { ( L ) } \\big ] - \\mathbf { h } ^ { ( L ) } \\big \\| _ { 2 } \\Big ] \\leq B \\gamma \\Delta _ { L } } \\end{array}" + }, + { + "category_id": 14, + "poly": [ + 653, + 1798, + 1046, + 1798, + 1046, + 1858, + 653, + 1858 + ], + "score": 0.93, + "latex": "R a d _ { n } ( \\mathcal { F } ) = \\mathrm { E } _ { X ^ { n } } \\Big [ R a d _ { n } ( \\mathcal { F } , X ^ { n } ) \\Big ]" + }, + { + "category_id": 13, + "poly": [ + 936, + 600, + 1186, + 600, + 1186, + 640, + 936, + 640 + ], + "score": 0.92, + "latex": "\\mathrm { E } \\big [ \\mathrm { V a r } [ \\mathbf { H } ^ { ( l ) } | X ] \\big ] \\leq \\sigma ^ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 342, + 1603, + 505, + 1603, + 505, + 1635, + 342, + 1635 + ], + "score": 0.92, + "latex": "R a d _ { n } ( \\mathcal { F } , X ^ { n } )" + }, + { + "category_id": 13, + "poly": [ + 1211, + 1571, + 1353, + 1571, + 1353, + 1599, + 1211, + 1599 + ], + "score": 0.9, + "latex": "\\mathcal { F } : \\mathcal { X } \\mathcal { R }" + }, + { + "category_id": 13, + "poly": [ + 343, + 1570, + 587, + 1570, + 587, + 1602, + 343, + 1602 + ], + "score": 0.89, + "latex": "X ^ { n } = \\{ X _ { 1 } , \\ldots , X _ { n } \\}" + }, + { + "category_id": 13, + "poly": [ + 1076, + 1603, + 1101, + 1603, + 1101, + 1629, + 1076, + 1629 + ], + "score": 0.84, + "latex": "\\mathcal { F }" + }, + { + "category_id": 13, + "poly": [ + 933, + 1572, + 960, + 1572, + 960, + 1598, + 933, + 1598 + ], + "score": 0.83, + "latex": "X" + }, + { + "category_id": 13, + "poly": [ + 714, + 1578, + 734, + 1578, + 734, + 1598, + 714, + 1598 + ], + "score": 0.77, + "latex": "n" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1394.0, + 802.0, + 1394.0, + 802.0, + 1437.0, + 295.0, + 1437.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 72.0, + 817.0, + 72.0, + 817.0, + 108.0, + 296.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 831.0, + 2085.0, + 868.0, + 2085.0, + 868.0, + 2124.0, + 831.0, + 2124.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1378.0, + 1325.0, + 1403.0, + 1325.0, + 1403.0, + 1353.0, + 1378.0, + 1353.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1463.0, + 1015.0, + 1463.0, + 1015.0, + 1503.0, + 295.0, + 1503.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1564.0, + 342.0, + 1564.0, + 342.0, + 1608.0, + 292.0, + 1608.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 588.0, + 1564.0, + 713.0, + 1564.0, + 713.0, + 1608.0, + 588.0, + 1608.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 735.0, + 1564.0, + 932.0, + 1564.0, + 932.0, + 1608.0, + 735.0, + 1608.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 961.0, + 1564.0, + 1210.0, + 1564.0, + 1210.0, + 1608.0, + 961.0, + 1608.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1354.0, + 1564.0, + 1405.0, + 1564.0, + 1405.0, + 1608.0, + 1354.0, + 1608.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1600.0, + 341.0, + 1600.0, + 341.0, + 1637.0, + 296.0, + 1637.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 506.0, + 1600.0, + 1075.0, + 1600.0, + 1075.0, + 1637.0, + 506.0, + 1637.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1102.0, + 1600.0, + 1113.0, + 1600.0, + 1113.0, + 1637.0, + 1102.0, + 1637.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1864.0, + 1399.0, + 1864.0, + 1399.0, + 1909.0, + 292.0, + 1909.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1101.0, + 974.0, + 1101.0, + 974.0, + 1141.0, + 295.0, + 1141.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1751.0, + 800.0, + 1751.0, + 800.0, + 1788.0, + 296.0, + 1788.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 916.0, + 431.0, + 916.0, + 431.0, + 956.0, + 292.0, + 956.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 598.0, + 935.0, + 598.0, + 935.0, + 643.0, + 291.0, + 643.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1187.0, + 598.0, + 1299.0, + 598.0, + 1299.0, + 643.0, + 1187.0, + 643.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 232.0, + 344.0, + 232.0, + 344.0, + 260.0, + 293.0, + 260.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1463.0, + 1015.0, + 1463.0, + 1015.0, + 1503.0, + 295.0, + 1503.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1520.0, + 927.0, + 1520.0, + 927.0, + 1559.0, + 294.0, + 1559.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 14, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 8, + "poly": [ + 473, + 775, + 1222, + 775, + 1222, + 1175, + 473, + 1175 + ], + "score": 0.966 + }, + { + "category_id": 8, + "poly": [ + 515, + 400, + 1179, + 400, + 1179, + 604, + 515, + 604 + ], + "score": 0.966 + }, + { + "category_id": 8, + "poly": [ + 562, + 1915, + 1136, + 1915, + 1136, + 1996, + 562, + 1996 + ], + "score": 0.954 + }, + { + "category_id": 1, + "poly": [ + 296, + 227, + 1406, + 227, + 1406, + 348, + 296, + 348 + ], + "score": 0.952 + }, + { + "category_id": 8, + "poly": [ + 705, + 1300, + 992, + 1300, + 992, + 1400, + 705, + 1400 + ], + "score": 0.952 + }, + { + "category_id": 8, + "poly": [ + 602, + 1666, + 1092, + 1666, + 1092, + 1742, + 602, + 1742 + ], + "score": 0.942 + }, + { + "category_id": 8, + "poly": [ + 438, + 1792, + 1257, + 1792, + 1257, + 1866, + 438, + 1866 + ], + "score": 0.936 + }, + { + "category_id": 8, + "poly": [ + 681, + 679, + 1021, + 679, + 1021, + 720, + 681, + 720 + ], + "score": 0.932 + }, + { + "category_id": 1, + "poly": [ + 296, + 1239, + 822, + 1239, + 822, + 1273, + 296, + 1273 + ], + "score": 0.925 + }, + { + "category_id": 1, + "poly": [ + 298, + 1427, + 813, + 1427, + 813, + 1461, + 298, + 1461 + ], + "score": 0.921 + }, + { + "category_id": 2, + "poly": [ + 298, + 73, + 816, + 73, + 816, + 106, + 298, + 106 + ], + "score": 0.921 + }, + { + "category_id": 0, + "poly": [ + 298, + 1556, + 533, + 1556, + 533, + 1590, + 298, + 1590 + ], + "score": 0.92 + }, + { + "category_id": 1, + "poly": [ + 297, + 357, + 814, + 357, + 814, + 391, + 297, + 391 + ], + "score": 0.92 + }, + { + "category_id": 1, + "poly": [ + 298, + 1493, + 649, + 1493, + 649, + 1526, + 298, + 1526 + ], + "score": 0.92 + }, + { + "category_id": 1, + "poly": [ + 297, + 1620, + 1236, + 1620, + 1236, + 1656, + 297, + 1656 + ], + "score": 0.918 + }, + { + "category_id": 1, + "poly": [ + 297, + 1872, + 882, + 1872, + 882, + 1906, + 297, + 1906 + ], + "score": 0.918 + }, + { + "category_id": 1, + "poly": [ + 298, + 1750, + 607, + 1750, + 607, + 1783, + 298, + 1783 + ], + "score": 0.918 + }, + { + "category_id": 1, + "poly": [ + 297, + 749, + 370, + 749, + 370, + 781, + 297, + 781 + ], + "score": 0.915 + }, + { + "category_id": 1, + "poly": [ + 297, + 1278, + 420, + 1278, + 420, + 1310, + 297, + 1310 + ], + "score": 0.887 + }, + { + "category_id": 2, + "poly": [ + 835, + 2088, + 864, + 2088, + 864, + 2113, + 835, + 2113 + ], + "score": 0.86 + }, + { + "category_id": 2, + "poly": [ + 1374, + 2003, + 1404, + 2003, + 1404, + 2032, + 1374, + 2032 + ], + "score": 0.852 + }, + { + "category_id": 2, + "poly": [ + 1374, + 1174, + 1405, + 1174, + 1405, + 1205, + 1374, + 1205 + ], + "score": 0.831 + }, + { + "category_id": 2, + "poly": [ + 1373, + 1428, + 1405, + 1428, + 1405, + 1459, + 1373, + 1459 + ], + "score": 0.822 + }, + { + "category_id": 1, + "poly": [ + 295, + 611, + 1272, + 611, + 1272, + 683, + 295, + 683 + ], + "score": 0.747 + }, + { + "category_id": 14, + "poly": [ + 474, + 776, + 1217, + 776, + 1217, + 1176, + 474, + 1176 + ], + "score": 0.96, + "latex": "\\begin{array} { r l } & { { \\mathcal { R } } _ { n } ( { \\mathcal { H } } , X ^ { n } ) = \\mathbb { E } _ { S ^ { n } } \\left[ R a d _ { n } ( { \\mathcal { H } } , X ^ { n } , S ^ { n } ) \\right] } \\\\ { = } & { \\mathbb { E } _ { S ^ { n } } \\Bigg [ \\mathbb { E } _ { \\sigma } \\Bigg [ \\underset { h \\in \\mathcal { H } } { \\operatorname* { s u p } } \\left( \\frac { 1 } { n } \\frac { \\sqrt { 2 } } { i _ { 0 } ^ { - 1 } } \\sigma _ { i } h ( X _ { i } , S _ { i } ) \\right) \\Bigg ] \\Bigg ] } \\\\ { = } & { \\mathbb { E } _ { \\sigma } \\Bigg [ \\mathbb { E } _ { S ^ { n } } \\Bigg [ \\underset { h \\in \\mathcal { H } } { \\operatorname* { s u p } } \\left( \\frac { 1 } { n } \\frac { \\sqrt { 2 } } { i _ { 0 } ^ { - 1 } } \\sigma _ { i } h ( X _ { i } , S _ { i } ) \\right) \\Bigg ] \\Bigg ] } \\\\ { \\geq } & { \\mathbb { E } _ { \\sigma } \\Bigg [ \\underset { h \\in \\mathcal { H } } { \\operatorname* { s u p } } \\mathbb { E } _ { S ^ { n } } \\Bigg [ \\left( \\frac { 1 } { n } \\frac { \\sqrt { 2 } } { i _ { 0 } ^ { - 1 } } \\sigma _ { i } h ( X _ { i } , S _ { i } ) \\right) \\Bigg ] \\Bigg ] } \\\\ { = } & { \\mathbb { E } _ { \\sigma } \\Bigg [ \\underset { h \\in \\mathcal { H } } { \\operatorname* { s u p } } \\left( \\frac { 1 } { n } \\frac { \\sqrt { 2 } } { i _ { 0 } ^ { - 1 } } \\sigma _ { i } \\mathbb { E } _ { S _ { i } } \\big [ h ( X _ { i } , S _ { i } ) \\big ] \\right) \\Bigg ] } \\\\ { = } & { \\mathbb { E } _ { \\sigma } \\Bigg [ \\underset { h \\in \\mathcal { H } } { \\operatorname* { s u p } } \\left( \\frac { 1 } { n } \\frac { \\sqrt { 2 } } { i _ { 0 } ^ { - 1 } } \\sigma _ { i } \\mathbb { E } _ { S _ { i } } \\big [ \\mathbb { H } ^ { ( L ) } ( X _ { i } , S _ { i } ; \\theta ) \\big ] \\right) \\Bigg ] = R a d _ { n } ( \\mathcal { F } , X ^ { n } ) } \\end{array}" + }, + { + "category_id": 14, + "poly": [ + 516, + 397, + 1180, + 397, + 1180, + 608, + 516, + 608 + ], + "score": 0.95, + "latex": "\\begin{array} { r c l } { \\mathcal { F } } & { = } & { \\bigg \\{ f ( x ; \\theta ) : f ( x ; \\theta ) = \\mathrm { E } _ { S } \\Big [ \\mathbf { H } ^ { ( L ) } ( x , S ; \\theta ) \\Big ] , \\theta \\in \\Theta \\bigg \\} } \\\\ { \\mathcal { G } } & { = } & { \\bigg \\{ g ( x ; \\theta ) : g ( x ; \\theta ) = \\mathbf { h } ^ { ( L ) } ( x , \\mathrm { E } [ S ] ; \\theta ) , \\theta \\in \\Theta \\bigg \\} } \\\\ { \\mathcal { H } } & { = } & { \\bigg \\{ h ( x , s ; \\theta ) : h ( x , s ; \\theta ) = \\mathbf { h } ^ { ( L ) } ( x , s ; \\theta ) , \\theta \\in \\Theta \\bigg \\} } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 931, + 291, + 1392, + 291, + 1392, + 348, + 931, + 348 + ], + "score": 0.94, + "latex": "\\mathcal { R } _ { n } ( \\mathcal { H } , X ^ { n } ) \\stackrel { \\Delta } { = } \\mathrm { E } _ { S ^ { n } } \\left[ \\stackrel { \\cdot } { R a d _ { n } } ( \\mathcal { H } , X ^ { n } , S ^ { n } ) \\right]" + }, + { + "category_id": 13, + "poly": [ + 580, + 261, + 667, + 261, + 667, + 296, + 580, + 296 + ], + "score": 0.94, + "latex": "\\textstyle { \\mathcal { R } } _ { n } ( { \\mathcal { H } } )" + }, + { + "category_id": 14, + "poly": [ + 561, + 1916, + 1135, + 1916, + 1135, + 1996, + 561, + 1996 + ], + "score": 0.94, + "latex": "\\operatorname* { s u p } _ { \\theta \\in \\Theta } | \\Delta - \\hat { \\Delta } | < \\frac { 2 \\alpha B ^ { L } ( \\gamma ^ { L / 2 } + 1 ) } { \\sqrt { n } } + \\beta \\sqrt { \\frac { \\log ( 1 / \\delta ) } { n } }" + }, + { + "category_id": 13, + "poly": [ + 607, + 613, + 836, + 613, + 836, + 648, + 607, + 648 + ], + "score": 0.93, + "latex": "v ( x ) = f ( x ) - g ( x )" + }, + { + "category_id": 14, + "poly": [ + 602, + 1662, + 1095, + 1662, + 1095, + 1744, + 602, + 1744 + ], + "score": 0.93, + "latex": "\\operatorname* { s u p } _ { v \\in \\mathcal { V } } | \\Delta - \\hat { \\Delta } | < 2 R a d _ { n } ( \\mathcal { V } ) + \\beta \\sqrt { \\frac { \\log ( 1 / \\delta ) } { n } }" + }, + { + "category_id": 13, + "poly": [ + 366, + 1752, + 499, + 1752, + 499, + 1781, + 366, + 1781 + ], + "score": 0.93, + "latex": "\\mathcal { V } = \\mathcal { F } - \\mathcal { G }" + }, + { + "category_id": 13, + "poly": [ + 582, + 1240, + 814, + 1240, + 814, + 1274, + 582, + 1274 + ], + "score": 0.92, + "latex": "R a d _ { n } ( \\mathcal { F } ) \\leq \\mathcal { R } _ { n } ( \\mathcal { H } )" + }, + { + "category_id": 14, + "poly": [ + 704, + 1301, + 993, + 1301, + 993, + 1402, + 704, + 1402 + ], + "score": 0.92, + "latex": "\\begin{array} { r l r } { \\mathcal { R } _ { n } ( \\mathcal { H } ) } & { \\leq } & { \\frac { \\alpha B ^ { L } \\gamma ^ { L / 2 } } { \\sqrt { n } } } \\\\ { R a d _ { n } ( \\mathcal { G } ) } & { \\leq } & { \\frac { \\alpha B ^ { L } } { \\sqrt { n } } } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 374, + 231, + 574, + 231, + 574, + 259, + 374, + 259 + ], + "score": 0.9, + "latex": "\\mathcal { H } : \\mathcal { X } \\times \\mathcal { S } \\mathcal { R }" + }, + { + "category_id": 14, + "poly": [ + 437, + 1790, + 1259, + 1790, + 1259, + 1867, + 437, + 1867 + ], + "score": 0.89, + "latex": "R a d _ { n } ( \\mathcal { V } ) = R a d _ { n } ( \\mathcal { F } - \\mathcal { G } ) \\leq R a d _ { n } ( \\mathcal { F } ) + R a d _ { n } ( \\mathcal { G } ) \\leq \\frac { \\alpha B ^ { L } ( \\gamma ^ { L / 2 } + 1 ) } { \\sqrt { n } }" + }, + { + "category_id": 14, + "poly": [ + 679, + 682, + 1019, + 682, + 1019, + 718, + 679, + 718 + ], + "score": 0.88, + "latex": "R a d _ { n } ( { \\mathcal { F } } , X ^ { n } ) \\leq { \\mathcal { R } } _ { n } ( { \\mathcal { H } } , X ^ { n } )" + }, + { + "category_id": 13, + "poly": [ + 867, + 616, + 1266, + 616, + 1266, + 648, + 867, + 648 + ], + "score": 0.88, + "latex": "\\mathcal { V } = \\{ f ( x ) - g ( x ) : f \\in \\mathcal { F } , g \\in \\mathcal { G } \\}" + }, + { + "category_id": 13, + "poly": [ + 339, + 262, + 524, + 262, + 524, + 296, + 339, + 296 + ], + "score": 0.88, + "latex": "\\mathcal { R } _ { n } ( \\mathcal { H } , X ^ { n } , S ^ { n } )" + }, + { + "category_id": 13, + "poly": [ + 780, + 1875, + 873, + 1875, + 873, + 1904, + 780, + 1904 + ], + "score": 0.87, + "latex": "\\geq 1 - \\delta" + }, + { + "category_id": 13, + "poly": [ + 1135, + 1626, + 1228, + 1626, + 1228, + 1653, + 1135, + 1653 + ], + "score": 0.86, + "latex": "\\geq 1 - \\delta" + }, + { + "category_id": 13, + "poly": [ + 1061, + 232, + 1088, + 232, + 1088, + 258, + 1061, + 258 + ], + "score": 0.81, + "latex": "\\mathcal { X }" + }, + { + "category_id": 13, + "poly": [ + 298, + 262, + 319, + 262, + 319, + 290, + 298, + 290 + ], + "score": 0.6, + "latex": "s" + }, + { + "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": [ + 294.0, + 1554.0, + 536.0, + 1554.0, + 536.0, + 1593.0, + 294.0, + 1593.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 831.0, + 2085.0, + 869.0, + 2085.0, + 869.0, + 2124.0, + 831.0, + 2124.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1380.0, + 2008.0, + 1402.0, + 2008.0, + 1402.0, + 2031.0, + 1380.0, + 2031.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1376.0, + 1177.0, + 1405.0, + 1177.0, + 1405.0, + 1208.0, + 1376.0, + 1208.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1380.0, + 1434.0, + 1402.0, + 1434.0, + 1402.0, + 1457.0, + 1380.0, + 1457.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 224.0, + 373.0, + 224.0, + 373.0, + 270.0, + 293.0, + 270.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 575.0, + 224.0, + 1060.0, + 224.0, + 1060.0, + 270.0, + 575.0, + 270.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1089.0, + 224.0, + 1406.0, + 224.0, + 1406.0, + 270.0, + 1089.0, + 270.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 257.0, + 297.0, + 257.0, + 297.0, + 299.0, + 294.0, + 299.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 257.0, + 338.0, + 257.0, + 338.0, + 299.0, + 320.0, + 299.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 525.0, + 257.0, + 579.0, + 257.0, + 579.0, + 299.0, + 525.0, + 299.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 668.0, + 257.0, + 1404.0, + 257.0, + 1404.0, + 299.0, + 668.0, + 299.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 294.0, + 930.0, + 294.0, + 930.0, + 346.0, + 291.0, + 346.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1393.0, + 294.0, + 1401.0, + 294.0, + 1401.0, + 346.0, + 1393.0, + 346.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1237.0, + 581.0, + 1237.0, + 581.0, + 1277.0, + 295.0, + 1277.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 815.0, + 1237.0, + 823.0, + 1237.0, + 823.0, + 1277.0, + 815.0, + 1277.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1424.0, + 816.0, + 1424.0, + 816.0, + 1465.0, + 295.0, + 1465.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 353.0, + 816.0, + 353.0, + 816.0, + 396.0, + 294.0, + 396.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1492.0, + 651.0, + 1492.0, + 651.0, + 1529.0, + 293.0, + 1529.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1618.0, + 1134.0, + 1618.0, + 1134.0, + 1659.0, + 294.0, + 1659.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1229.0, + 1618.0, + 1239.0, + 1618.0, + 1239.0, + 1659.0, + 1229.0, + 1659.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1867.0, + 779.0, + 1867.0, + 779.0, + 1911.0, + 293.0, + 1911.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 874.0, + 1867.0, + 885.0, + 1867.0, + 885.0, + 1911.0, + 874.0, + 1911.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1746.0, + 365.0, + 1746.0, + 365.0, + 1787.0, + 295.0, + 1787.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 500.0, + 1746.0, + 608.0, + 1746.0, + 608.0, + 1787.0, + 500.0, + 1787.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 744.0, + 377.0, + 744.0, + 377.0, + 791.0, + 290.0, + 791.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1273.0, + 423.0, + 1273.0, + 423.0, + 1313.0, + 294.0, + 1313.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 609.0, + 606.0, + 609.0, + 606.0, + 651.0, + 292.0, + 651.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 837.0, + 609.0, + 866.0, + 609.0, + 866.0, + 651.0, + 837.0, + 651.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1267.0, + 609.0, + 1277.0, + 609.0, + 1277.0, + 651.0, + 1267.0, + 651.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 650.0, + 426.0, + 650.0, + 426.0, + 686.0, + 293.0, + 686.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 15, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 8, + "poly": [ + 353, + 671, + 1346, + 671, + 1346, + 883, + 353, + 883 + ], + "score": 0.969 + }, + { + "category_id": 8, + "poly": [ + 441, + 1188, + 1258, + 1188, + 1258, + 1338, + 441, + 1338 + ], + "score": 0.967 + }, + { + "category_id": 1, + "poly": [ + 366, + 1553, + 1270, + 1553, + 1270, + 1727, + 366, + 1727 + ], + "score": 0.948 + }, + { + "category_id": 1, + "poly": [ + 296, + 951, + 1402, + 951, + 1402, + 1026, + 296, + 1026 + ], + "score": 0.948 + }, + { + "category_id": 1, + "poly": [ + 298, + 1054, + 1404, + 1054, + 1404, + 1130, + 298, + 1130 + ], + "score": 0.946 + }, + { + "category_id": 1, + "poly": [ + 297, + 1416, + 1405, + 1416, + 1405, + 1485, + 297, + 1485 + ], + "score": 0.946 + }, + { + "category_id": 8, + "poly": [ + 638, + 1807, + 1044, + 1807, + 1044, + 1878, + 638, + 1878 + ], + "score": 0.936 + }, + { + "category_id": 8, + "poly": [ + 767, + 1981, + 932, + 1981, + 932, + 2045, + 767, + 2045 + ], + "score": 0.935 + }, + { + "category_id": 1, + "poly": [ + 296, + 425, + 459, + 425, + 459, + 458, + 296, + 458 + ], + "score": 0.926 + }, + { + "category_id": 8, + "poly": [ + 704, + 355, + 995, + 355, + 995, + 399, + 704, + 399 + ], + "score": 0.923 + }, + { + "category_id": 1, + "poly": [ + 299, + 1927, + 1259, + 1927, + 1259, + 1968, + 299, + 1968 + ], + "score": 0.92 + }, + { + "category_id": 2, + "poly": [ + 297, + 73, + 816, + 73, + 816, + 106, + 297, + 106 + ], + "score": 0.919 + }, + { + "category_id": 1, + "poly": [ + 299, + 1140, + 1131, + 1140, + 1131, + 1180, + 299, + 1180 + ], + "score": 0.917 + }, + { + "category_id": 1, + "poly": [ + 296, + 621, + 646, + 621, + 646, + 656, + 296, + 656 + ], + "score": 0.915 + }, + { + "category_id": 1, + "poly": [ + 297, + 897, + 619, + 897, + 619, + 935, + 297, + 935 + ], + "score": 0.915 + }, + { + "category_id": 1, + "poly": [ + 294, + 534, + 844, + 534, + 844, + 606, + 294, + 606 + ], + "score": 0.912 + }, + { + "category_id": 1, + "poly": [ + 297, + 1498, + 1036, + 1498, + 1036, + 1533, + 297, + 1533 + ], + "score": 0.897 + }, + { + "category_id": 1, + "poly": [ + 294, + 226, + 1216, + 226, + 1216, + 264, + 294, + 264 + ], + "score": 0.875 + }, + { + "category_id": 2, + "poly": [ + 835, + 2087, + 864, + 2087, + 864, + 2113, + 835, + 2113 + ], + "score": 0.867 + }, + { + "category_id": 9, + "poly": [ + 1363, + 360, + 1403, + 360, + 1403, + 392, + 1363, + 392 + ], + "score": 0.857 + }, + { + "category_id": 1, + "poly": [ + 291, + 1885, + 966, + 1885, + 966, + 1920, + 291, + 1920 + ], + "score": 0.857 + }, + { + "category_id": 1, + "poly": [ + 294, + 1747, + 1407, + 1747, + 1407, + 1807, + 294, + 1807 + ], + "score": 0.852 + }, + { + "category_id": 2, + "poly": [ + 1374, + 899, + 1404, + 899, + 1404, + 930, + 1374, + 930 + ], + "score": 0.835 + }, + { + "category_id": 2, + "poly": [ + 1374, + 1350, + 1404, + 1350, + 1404, + 1381, + 1374, + 1381 + ], + "score": 0.83 + }, + { + "category_id": 1, + "poly": [ + 296, + 282, + 1295, + 282, + 1295, + 361, + 296, + 361 + ], + "score": 0.758 + }, + { + "category_id": 8, + "poly": [ + 626, + 456, + 1071, + 456, + 1071, + 524, + 626, + 524 + ], + "score": 0.656 + }, + { + "category_id": 8, + "poly": [ + 626, + 455, + 1072, + 455, + 1072, + 524, + 626, + 524 + ], + "score": 0.269 + }, + { + "category_id": 14, + "poly": [ + 351, + 669, + 1346, + 669, + 1346, + 886, + 351, + 886 + ], + "score": 0.94, + "latex": "\\begin{array} { r c l } { \\| A v \\| _ { 2 } ^ { 2 } } & { = } & { \\displaystyle \\sum _ { y \\in \\mathcal { V } } \\left( p _ { y } \\left( \\eta _ { y } - \\overline { { \\eta } } \\right) ^ { T } v \\right) ^ { 2 } \\leq \\sum _ { y \\in \\mathcal { V } } \\| p _ { y } \\left( \\eta _ { y } - \\overline { { \\eta } } \\right) \\| _ { 2 } ^ { 2 } \\| v \\| _ { 2 } ^ { 2 } = \\displaystyle \\sum _ { y \\in \\mathcal { V } } \\| p _ { y } \\left( \\eta _ { y } - \\overline { { \\eta } } \\right) \\| _ { 2 } ^ { 2 } } \\\\ & { \\leq } & { \\displaystyle \\sum _ { y \\in \\mathcal { V } } p _ { y } \\| \\eta _ { y } - \\overline { { \\eta } } \\| _ { 2 } ^ { 2 } \\leq \\sum _ { y \\in \\mathcal { V } } 2 p _ { y } \\left( \\| \\eta \\| _ { 2 } ^ { 2 } + \\sum _ { y ^ { \\prime } \\in \\mathcal { V } } p _ { y ^ { \\prime } } \\| \\eta _ { y ^ { \\prime } } \\| _ { 2 } ^ { 2 } \\right) } \\\\ & { = } & { \\displaystyle 4 \\sum _ { y \\in \\mathcal { V } } p _ { y } \\| \\eta _ { y } \\| _ { 2 } ^ { 2 } \\leq 4 \\| \\eta \\| _ { 2 } ^ { 2 } } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 588, + 951, + 711, + 951, + 711, + 990, + 588, + 990 + ], + "score": 0.94, + "latex": "\\tilde { \\theta } = \\{ \\hat { \\lambda } , \\eta \\}" + }, + { + "category_id": 13, + "poly": [ + 917, + 286, + 1041, + 286, + 1041, + 321, + 917, + 321 + ], + "score": 0.94, + "latex": "\\theta = \\{ \\lambda , \\eta \\}" + }, + { + "category_id": 13, + "poly": [ + 1009, + 1927, + 1150, + 1927, + 1150, + 1966, + 1009, + 1966 + ], + "score": 0.93, + "latex": "\\tilde { \\theta } = \\{ \\hat { \\lambda } , \\alpha \\hat { \\eta } \\}" + }, + { + "category_id": 13, + "poly": [ + 859, + 952, + 983, + 952, + 983, + 996, + 859, + 996 + ], + "score": 0.93, + "latex": "\\begin{array} { r } { \\| \\eta \\| _ { 2 } \\le \\frac { \\delta } { 4 \\beta } } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 613, + 287, + 841, + 287, + 841, + 321, + 613, + 321 + ], + "score": 0.93, + "latex": "\\lambda = \\{ \\theta _ { 1 } , \\dots , \\theta _ { L - 1 } \\}" + }, + { + "category_id": 13, + "poly": [ + 854, + 1599, + 1033, + 1599, + 1033, + 1638, + 854, + 1638 + ], + "score": 0.93, + "latex": "p ( y | x ; \\hat { \\theta } ) \\geq 1 / b" + }, + { + "category_id": 13, + "poly": [ + 1182, + 1057, + 1344, + 1057, + 1344, + 1095, + 1182, + 1095 + ], + "score": 0.93, + "latex": "\\mathbf { H } ^ { ( l ) } ( X , S _ { l } ; \\tilde { \\theta } )" + }, + { + "category_id": 13, + "poly": [ + 297, + 1093, + 492, + 1093, + 492, + 1130, + 297, + 1130 + ], + "score": 0.93, + "latex": "\\mathbf { h } ^ { ( l ) } ( X , \\mathrm { E } ( S _ { l } ) ; \\tilde { \\theta } )" + }, + { + "category_id": 13, + "poly": [ + 1279, + 956, + 1375, + 956, + 1375, + 990, + 1279, + 990 + ], + "score": 0.93, + "latex": "V ( D ; \\theta )" + }, + { + "category_id": 13, + "poly": [ + 465, + 1599, + 715, + 1599, + 715, + 1638, + 465, + 1638 + ], + "score": 0.93, + "latex": "\\forall y \\in \\mathcal { V } , p ( y | x ; \\hat { \\theta } ) > 0" + }, + { + "category_id": 13, + "poly": [ + 1049, + 951, + 1196, + 951, + 1196, + 991, + 1049, + 991 + ], + "score": 0.93, + "latex": "V ( D ; { \\tilde { \\theta } } ) \\leq \\delta" + }, + { + "category_id": 14, + "poly": [ + 768, + 1979, + 932, + 1979, + 932, + 2045, + 768, + 2045 + ], + "score": 0.92, + "latex": "p ( y | x ; \\tilde { \\theta } ) \\geq \\frac { 1 } { b }" + }, + { + "category_id": 13, + "poly": [ + 432, + 898, + 611, + 898, + 611, + 935, + 432, + 935 + ], + "score": 0.92, + "latex": "\\| A \\| _ { o p } \\leq 2 \\| \\eta \\| _ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 655, + 1647, + 783, + 1647, + 783, + 1684, + 655, + 1684 + ], + "score": 0.92, + "latex": "p ( \\boldsymbol { y } | \\boldsymbol { x } , s ; \\hat { \\theta } )" + }, + { + "category_id": 13, + "poly": [ + 1118, + 1604, + 1258, + 1604, + 1258, + 1638, + 1118, + 1638 + ], + "score": 0.92, + "latex": "b \\geq | \\mathcal { V } | = k" + }, + { + "category_id": 14, + "poly": [ + 637, + 1804, + 1040, + 1804, + 1040, + 1882, + 637, + 1882 + ], + "score": 0.92, + "latex": "v _ { i } = { \\left\\{ \\begin{array} { l l } { \\mathbf { h } ^ { ( L - 1 ) } ( x , s ; \\lambda ) } & { { \\mathrm { i f ~ } } i = y } \\\\ { 0 } & { { \\mathrm { o t h e r w i s e } } } \\end{array} \\right. }" + }, + { + "category_id": 13, + "poly": [ + 468, + 1927, + 648, + 1927, + 648, + 1966, + 468, + 1966 + ], + "score": 0.92, + "latex": "p ( y | x ; \\hat { \\theta } ) \\geq 1 / b ," + }, + { + "category_id": 13, + "poly": [ + 573, + 1141, + 1047, + 1141, + 1047, + 1179, + 573, + 1179 + ], + "score": 0.92, + "latex": "\\| f _ { L } ( x ; \\eta ) - f _ { L } ( y ; \\eta ) \\| _ { 2 } \\leq 2 \\| \\eta \\| _ { 2 } \\| x - y \\| _ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 528, + 622, + 635, + 622, + 635, + 656, + 528, + 656 + ], + "score": 0.92, + "latex": "\\| v \\| _ { 2 } = 1" + }, + { + "category_id": 13, + "poly": [ + 1093, + 1750, + 1404, + 1750, + 1404, + 1791, + 1093, + 1791 + ], + "score": 0.92, + "latex": "u _ { y } ^ { T } ( x , s ; \\lambda ) = ( v _ { 0 } ^ { T } , \\ldots , v _ { k } ^ { T } )" + }, + { + "category_id": 13, + "poly": [ + 612, + 1749, + 1007, + 1749, + 1007, + 1788, + 612, + 1788 + ], + "score": 0.92, + "latex": "\\eta ^ { T } \\mathbf { h } ^ { ( L - 1 ) } ( x , s ; \\lambda ) = \\eta ^ { T } u _ { y } ( x , s ; \\lambda )" + }, + { + "category_id": 13, + "poly": [ + 1165, + 281, + 1290, + 281, + 1290, + 322, + 1165, + 322 + ], + "score": 0.92, + "latex": "\\hat { \\theta } = \\{ \\hat { \\lambda } , \\hat { \\eta } \\}" + }, + { + "category_id": 13, + "poly": [ + 431, + 1057, + 722, + 1057, + 722, + 1095, + 431, + 1095 + ], + "score": 0.91, + "latex": "S _ { L } = \\{ \\Gamma ^ { ( 1 ) } , \\dots , \\Gamma ^ { ( L ) } \\}" + }, + { + "category_id": 13, + "poly": [ + 782, + 1556, + 935, + 1556, + 935, + 1589, + 782, + 1589 + ], + "score": 0.91, + "latex": "\\mathbf { h } ^ { ( L - 1 ) } \\in \\mathcal { R } ^ { d }" + }, + { + "category_id": 14, + "poly": [ + 703, + 352, + 996, + 352, + 996, + 396, + 703, + 396 + ], + "score": 0.91, + "latex": "\\| \\nabla f _ { L } ( \\cdot ; \\eta ) ^ { T } \\| _ { o p } \\leq 2 \\| \\eta \\| _ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 599, + 1557, + 681, + 1557, + 681, + 1588, + 599, + 1588 + ], + "score": 0.9, + "latex": "\\mathbf { h } ^ { ( L - 1 ) }" + }, + { + "category_id": 13, + "poly": [ + 711, + 1932, + 838, + 1932, + 838, + 1966, + 711, + 1966 + ], + "score": 0.9, + "latex": "\\forall \\alpha \\in [ 0 , 1 ] ," + }, + { + "category_id": 13, + "poly": [ + 841, + 1057, + 896, + 1057, + 896, + 1091, + 841, + 1091 + ], + "score": 0.88, + "latex": "\\mathbf { H } ^ { ( l ) }" + }, + { + "category_id": 13, + "poly": [ + 962, + 1057, + 1009, + 1057, + 1009, + 1090, + 962, + 1090 + ], + "score": 0.88, + "latex": "\\mathbf { h } ^ { ( l ) }" + }, + { + "category_id": 13, + "poly": [ + 450, + 1453, + 470, + 1453, + 470, + 1485, + 450, + 1485 + ], + "score": 0.84, + "latex": "\\hat { \\eta }" + }, + { + "category_id": 13, + "poly": [ + 396, + 1683, + 1060, + 1683, + 1060, + 1726, + 396, + 1726 + ], + "score": 0.83, + "latex": "\\hat { \\eta } _ { y ^ { * } } ^ { T } \\mathbf { h } ^ { ( L - 1 ) } ( x , s ; \\hat { \\lambda } ) - \\hat { \\eta } _ { y } ^ { T } \\mathbf { h } ^ { ( L - 1 ) } ( x , s ; \\hat { \\lambda } ) > c \\| \\hat { \\eta } \\| _ { 2 } , \\forall y \\neq y ^ { * } ." + }, + { + "category_id": 13, + "poly": [ + 670, + 1419, + 688, + 1419, + 688, + 1445, + 670, + 1445 + ], + "score": 0.81, + "latex": "\\theta" + }, + { + "category_id": 13, + "poly": [ + 635, + 1448, + 654, + 1448, + 654, + 1480, + 635, + 1480 + ], + "score": 0.81, + "latex": "\\hat { \\lambda }" + }, + { + "category_id": 13, + "poly": [ + 711, + 1561, + 729, + 1561, + 729, + 1588, + 711, + 1588 + ], + "score": 0.76, + "latex": "d" + }, + { + "category_id": 14, + "poly": [ + 439, + 1189, + 1257, + 1189, + 1257, + 1341, + 439, + 1341 + ], + "score": 0.76, + "latex": "\\begin{array} { r c l } { \\left\\| \\boldsymbol { \\mathrm { E } } _ { S _ { L } } \\left[ \\mathbf { H } ^ { L } \\right] - \\mathbf { h } ^ { L } \\right\\| _ { 2 } } & { = } & { \\left\\| \\boldsymbol { \\mathrm { E } } _ { S _ { L - 1 } } \\left[ f _ { L } ( \\mathbf { H } ^ { ( L - 1 ) } ; \\boldsymbol { \\eta } ) \\right] - f _ { L } ( \\mathbf { h } ^ { ( L - 1 ) } ; \\boldsymbol { \\eta } ) \\right\\| _ { 2 } } \\\\ & { \\leq } & { \\boldsymbol { \\mathrm { E } } _ { S _ { L - 1 } } \\left\\| f _ { L } ( \\mathbf { H } ^ { ( L - 1 ) } ; \\boldsymbol { \\eta } ) - f _ { L } ( \\mathbf { h } ^ { ( L - 1 ) } ; \\boldsymbol { \\eta } ) \\right\\| _ { 2 } } \\\\ & { \\leq } & { 2 \\| \\boldsymbol { \\eta } \\| _ { 2 } \\left\\| \\mathbf { H } ^ { ( L - 1 ) } - \\mathbf { h } ^ { ( L - 1 ) } \\right\\| _ { 2 } } \\\\ & { \\leq } & { 4 \\beta \\| \\boldsymbol { \\eta } \\| _ { 2 } \\leq \\delta } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 400, + 629, + 418, + 629, + 418, + 650, + 400, + 650 + ], + "score": 0.76, + "latex": "v" + }, + { + "category_id": 14, + "poly": [ + 374, + 452, + 1074, + 452, + 1074, + 610, + 374, + 610 + ], + "score": 0.63, + "latex": "\\begin{array} { c } { A = \\nabla f _ { L } ( \\cdot ; \\boldsymbol { \\eta } ) ^ { T } = \\left[ p _ { y } ( \\eta _ { y } - \\overline { { \\boldsymbol { \\eta } } } ) ^ { T } \\right] \\Big | _ { y = 1 } ^ { k } } \\\\ { p _ { y } = p ( y | \\boldsymbol { x } , s ; \\theta ) , \\overline { { \\boldsymbol { \\eta } } } = \\mathrm { E } \\left[ \\eta _ { Y } \\right] = \\displaystyle \\sum _ { y = 1 } ^ { k } p _ { y } \\eta _ { y } . } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 369, + 531, + 840, + 531, + 840, + 609, + 369, + 609 + ], + "score": 0.59, + "latex": "p _ { y } = p ( y | x , s ; \\theta ) , \\overline { { { \\eta } } } = \\mathrm { E } \\left[ \\eta _ { Y } \\right] = \\sum _ { y = 1 } ^ { k } p _ { y } \\eta _ { y } ." + }, + { + "category_id": 14, + "poly": [ + 396, + 1683, + 1060, + 1683, + 1060, + 1725, + 396, + 1725 + ], + "score": 0.53, + "latex": "\\hat { \\eta } _ { y ^ { * } } ^ { T } \\mathbf { h } ^ { ( L - 1 ) } ( x , s ; \\hat { \\lambda } ) - \\hat { \\eta } _ { y } ^ { T } \\mathbf { h } ^ { ( L - 1 ) } ( x , s ; \\hat { \\lambda } ) > c \\| \\hat { \\eta } \\| _ { 2 } , \\forall y \\neq y ^ { * } ." + }, + { + "category_id": 13, + "poly": [ + 726, + 1267, + 1073, + 1267, + 1073, + 1338, + 726, + 1338 + ], + "score": 0.28, + "latex": "\\begin{array} { r l } & { 2 \\| \\eta \\| _ { 2 } \\left\\| \\mathbf { H } ^ { ( L - 1 ) } - \\mathbf { h } ^ { ( L - 1 ) } \\right\\| _ { 2 } } \\\\ & { 4 \\beta \\| \\eta \\| _ { 2 } \\le \\delta } \\end{array}" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 72.0, + 817.0, + 72.0, + 817.0, + 108.0, + 296.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 831.0, + 2085.0, + 868.0, + 2085.0, + 868.0, + 2125.0, + 831.0, + 2125.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1378.0, + 904.0, + 1403.0, + 904.0, + 1403.0, + 930.0, + 1378.0, + 930.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1380.0, + 1356.0, + 1402.0, + 1356.0, + 1402.0, + 1379.0, + 1380.0, + 1379.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 367.0, + 1554.0, + 598.0, + 1554.0, + 598.0, + 1593.0, + 367.0, + 1593.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 682.0, + 1554.0, + 710.0, + 1554.0, + 710.0, + 1593.0, + 682.0, + 1593.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 730.0, + 1554.0, + 781.0, + 1554.0, + 781.0, + 1593.0, + 730.0, + 1593.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 936.0, + 1554.0, + 944.0, + 1554.0, + 944.0, + 1593.0, + 936.0, + 1593.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 368.0, + 1598.0, + 464.0, + 1598.0, + 464.0, + 1641.0, + 368.0, + 1641.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 716.0, + 1598.0, + 853.0, + 1598.0, + 853.0, + 1641.0, + 716.0, + 1641.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1034.0, + 1598.0, + 1117.0, + 1598.0, + 1117.0, + 1641.0, + 1034.0, + 1641.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1259.0, + 1598.0, + 1271.0, + 1598.0, + 1271.0, + 1641.0, + 1259.0, + 1641.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 369.0, + 1647.0, + 654.0, + 1647.0, + 654.0, + 1687.0, + 369.0, + 1687.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 784.0, + 1647.0, + 1190.0, + 1647.0, + 1190.0, + 1687.0, + 784.0, + 1687.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 390.0, + 1680.0, + 395.0, + 1680.0, + 395.0, + 1727.0, + 390.0, + 1727.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1061.0, + 1680.0, + 1072.0, + 1680.0, + 1072.0, + 1727.0, + 1061.0, + 1727.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 945.0, + 587.0, + 945.0, + 587.0, + 1001.0, + 290.0, + 1001.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 712.0, + 945.0, + 858.0, + 945.0, + 858.0, + 1001.0, + 712.0, + 1001.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 984.0, + 945.0, + 1048.0, + 945.0, + 1048.0, + 1001.0, + 984.0, + 1001.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1197.0, + 945.0, + 1278.0, + 945.0, + 1278.0, + 1001.0, + 1197.0, + 1001.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1376.0, + 945.0, + 1411.0, + 945.0, + 1411.0, + 1001.0, + 1376.0, + 1001.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 989.0, + 515.0, + 989.0, + 515.0, + 1028.0, + 294.0, + 1028.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1048.0, + 430.0, + 1048.0, + 430.0, + 1099.0, + 292.0, + 1099.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 723.0, + 1048.0, + 840.0, + 1048.0, + 840.0, + 1099.0, + 723.0, + 1099.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 897.0, + 1048.0, + 961.0, + 1048.0, + 961.0, + 1099.0, + 897.0, + 1099.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1010.0, + 1048.0, + 1181.0, + 1048.0, + 1181.0, + 1099.0, + 1010.0, + 1099.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1345.0, + 1048.0, + 1406.0, + 1048.0, + 1406.0, + 1099.0, + 1345.0, + 1099.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 493.0, + 1086.0, + 649.0, + 1086.0, + 649.0, + 1136.0, + 493.0, + 1136.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1412.0, + 669.0, + 1412.0, + 669.0, + 1454.0, + 292.0, + 1454.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 689.0, + 1412.0, + 1405.0, + 1412.0, + 1405.0, + 1454.0, + 689.0, + 1454.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1451.0, + 449.0, + 1451.0, + 449.0, + 1486.0, + 295.0, + 1486.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 471.0, + 1451.0, + 634.0, + 1451.0, + 634.0, + 1486.0, + 471.0, + 1486.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 655.0, + 1451.0, + 665.0, + 1451.0, + 665.0, + 1486.0, + 655.0, + 1486.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 423.0, + 461.0, + 423.0, + 461.0, + 460.0, + 294.0, + 460.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1923.0, + 467.0, + 1923.0, + 467.0, + 1973.0, + 291.0, + 1973.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 649.0, + 1923.0, + 710.0, + 1923.0, + 710.0, + 1973.0, + 649.0, + 1973.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 839.0, + 1923.0, + 1008.0, + 1923.0, + 1008.0, + 1973.0, + 839.0, + 1973.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1151.0, + 1923.0, + 1262.0, + 1923.0, + 1262.0, + 1973.0, + 1151.0, + 1973.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1137.0, + 572.0, + 1137.0, + 572.0, + 1183.0, + 292.0, + 1183.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1048.0, + 1137.0, + 1131.0, + 1137.0, + 1131.0, + 1183.0, + 1048.0, + 1183.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 616.0, + 399.0, + 616.0, + 399.0, + 660.0, + 293.0, + 660.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 419.0, + 616.0, + 527.0, + 616.0, + 527.0, + 660.0, + 419.0, + 660.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 636.0, + 616.0, + 648.0, + 616.0, + 648.0, + 660.0, + 636.0, + 660.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 892.0, + 431.0, + 892.0, + 431.0, + 940.0, + 294.0, + 940.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 612.0, + 892.0, + 623.0, + 892.0, + 623.0, + 940.0, + 612.0, + 940.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 545.0, + 368.0, + 545.0, + 368.0, + 594.0, + 293.0, + 594.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1494.0, + 1038.0, + 1494.0, + 1038.0, + 1539.0, + 292.0, + 1539.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 227.0, + 1217.0, + 227.0, + 1217.0, + 265.0, + 294.0, + 265.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1882.0, + 948.0, + 1882.0, + 948.0, + 1924.0, + 294.0, + 1924.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 1741.0, + 611.0, + 1741.0, + 611.0, + 1795.0, + 290.0, + 1795.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1008.0, + 1741.0, + 1092.0, + 1741.0, + 1092.0, + 1795.0, + 1008.0, + 1795.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1405.0, + 1741.0, + 1408.0, + 1741.0, + 1408.0, + 1795.0, + 1405.0, + 1795.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1782.0, + 349.0, + 1782.0, + 349.0, + 1817.0, + 292.0, + 1817.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 282.0, + 612.0, + 282.0, + 612.0, + 325.0, + 293.0, + 325.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 842.0, + 282.0, + 916.0, + 282.0, + 916.0, + 325.0, + 842.0, + 325.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1042.0, + 282.0, + 1164.0, + 282.0, + 1164.0, + 325.0, + 1042.0, + 325.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 326.0, + 426.0, + 326.0, + 426.0, + 363.0, + 293.0, + 363.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 16, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 8, + "poly": [ + 432, + 279, + 1262, + 279, + 1262, + 412, + 432, + 412 + ], + "score": 0.972 + }, + { + "category_id": 8, + "poly": [ + 443, + 1806, + 1254, + 1806, + 1254, + 1926, + 443, + 1926 + ], + "score": 0.967 + }, + { + "category_id": 8, + "poly": [ + 548, + 922, + 1145, + 922, + 1145, + 1031, + 548, + 1031 + ], + "score": 0.958 + }, + { + "category_id": 8, + "poly": [ + 650, + 621, + 1048, + 621, + 1048, + 686, + 650, + 686 + ], + "score": 0.957 + }, + { + "category_id": 8, + "poly": [ + 588, + 1395, + 1094, + 1395, + 1094, + 1475, + 588, + 1475 + ], + "score": 0.952 + }, + { + "category_id": 8, + "poly": [ + 681, + 1996, + 1017, + 1996, + 1017, + 2039, + 681, + 2039 + ], + "score": 0.944 + }, + { + "category_id": 8, + "poly": [ + 702, + 1306, + 995, + 1306, + 995, + 1356, + 702, + 1356 + ], + "score": 0.942 + }, + { + "category_id": 1, + "poly": [ + 298, + 428, + 1250, + 428, + 1250, + 493, + 298, + 493 + ], + "score": 0.941 + }, + { + "category_id": 1, + "poly": [ + 292, + 1097, + 1408, + 1097, + 1408, + 1166, + 292, + 1166 + ], + "score": 0.938 + }, + { + "category_id": 1, + "poly": [ + 297, + 1703, + 609, + 1703, + 609, + 1737, + 297, + 1737 + ], + "score": 0.936 + }, + { + "category_id": 8, + "poly": [ + 562, + 1168, + 1133, + 1168, + 1133, + 1212, + 562, + 1212 + ], + "score": 0.936 + }, + { + "category_id": 8, + "poly": [ + 713, + 809, + 983, + 809, + 983, + 853, + 713, + 853 + ], + "score": 0.935 + }, + { + "category_id": 1, + "poly": [ + 299, + 1592, + 1029, + 1592, + 1029, + 1628, + 299, + 1628 + ], + "score": 0.933 + }, + { + "category_id": 1, + "poly": [ + 293, + 755, + 1259, + 755, + 1259, + 794, + 293, + 794 + ], + "score": 0.933 + }, + { + "category_id": 1, + "poly": [ + 297, + 1483, + 595, + 1483, + 595, + 1515, + 297, + 1515 + ], + "score": 0.932 + }, + { + "category_id": 1, + "poly": [ + 296, + 1251, + 971, + 1251, + 971, + 1289, + 296, + 1289 + ], + "score": 0.932 + }, + { + "category_id": 8, + "poly": [ + 554, + 510, + 1147, + 510, + 1147, + 551, + 554, + 551 + ], + "score": 0.931 + }, + { + "category_id": 1, + "poly": [ + 299, + 567, + 782, + 567, + 782, + 605, + 299, + 605 + ], + "score": 0.924 + }, + { + "category_id": 8, + "poly": [ + 518, + 1644, + 1180, + 1644, + 1180, + 1691, + 518, + 1691 + ], + "score": 0.924 + }, + { + "category_id": 1, + "poly": [ + 296, + 1371, + 370, + 1371, + 370, + 1402, + 296, + 1402 + ], + "score": 0.923 + }, + { + "category_id": 2, + "poly": [ + 298, + 73, + 816, + 73, + 816, + 106, + 298, + 106 + ], + "score": 0.921 + }, + { + "category_id": 1, + "poly": [ + 296, + 891, + 370, + 891, + 370, + 924, + 296, + 924 + ], + "score": 0.921 + }, + { + "category_id": 1, + "poly": [ + 295, + 1942, + 1143, + 1942, + 1143, + 1979, + 295, + 1979 + ], + "score": 0.919 + }, + { + "category_id": 1, + "poly": [ + 297, + 229, + 495, + 229, + 495, + 262, + 297, + 262 + ], + "score": 0.915 + }, + { + "category_id": 8, + "poly": [ + 446, + 1530, + 1250, + 1530, + 1250, + 1575, + 446, + 1575 + ], + "score": 0.901 + }, + { + "category_id": 1, + "poly": [ + 297, + 1761, + 682, + 1761, + 682, + 1794, + 297, + 1794 + ], + "score": 0.863 + }, + { + "category_id": 2, + "poly": [ + 835, + 2087, + 864, + 2087, + 864, + 2114, + 835, + 2114 + ], + "score": 0.86 + }, + { + "category_id": 2, + "poly": [ + 1373, + 700, + 1405, + 700, + 1405, + 731, + 1373, + 731 + ], + "score": 0.834 + }, + { + "category_id": 2, + "poly": [ + 1373, + 1704, + 1405, + 1704, + 1405, + 1735, + 1373, + 1735 + ], + "score": 0.832 + }, + { + "category_id": 2, + "poly": [ + 1373, + 1041, + 1404, + 1041, + 1404, + 1071, + 1373, + 1071 + ], + "score": 0.756 + }, + { + "category_id": 2, + "poly": [ + 1374, + 1040, + 1404, + 1040, + 1404, + 1071, + 1374, + 1071 + ], + "score": 0.317 + }, + { + "category_id": 14, + "poly": [ + 433, + 280, + 1265, + 280, + 1265, + 412, + 433, + 412 + ], + "score": 0.95, + "latex": "f ( \\alpha ) \\overset { \\Delta } { = } ( y | x , s ; \\tilde { \\theta } ) = \\frac { e ^ { \\alpha \\eta _ { y } ^ { T } \\mathbf { h } ^ { ( L - 1 ) } ( x , s ; \\hat { \\lambda } ) } } { \\displaystyle \\sum _ { y ^ { \\prime } \\in \\mathcal { Y } } e ^ { \\alpha \\eta _ { y ^ { \\prime } } ^ { T } \\mathbf { h } ^ { ( L - 1 ) } ( x , s ; \\hat { \\lambda } ) } } = \\frac { \\left( e ^ { \\eta _ { y } ^ { T } \\mathbf { h } ^ { ( L - 1 ) } ( x , s ; \\hat { \\lambda } ) } \\right) ^ { \\alpha } } { \\displaystyle \\sum _ { y ^ { \\prime } \\in \\mathcal { Y } } \\left( e ^ { \\eta _ { y ^ { \\prime } } ^ { T } \\mathbf { h } ^ { ( L - 1 ) } ( x , s ; \\hat { \\lambda } ) } \\right) ^ { \\alpha } }" + }, + { + "category_id": 13, + "poly": [ + 759, + 1250, + 886, + 1250, + 886, + 1288, + 759, + 1288 + ], + "score": 0.94, + "latex": "p ( \\boldsymbol { y } | \\boldsymbol { x } , s ; \\tilde { \\theta } )" + }, + { + "category_id": 14, + "poly": [ + 445, + 1806, + 1253, + 1806, + 1253, + 1925, + 445, + 1925 + ], + "score": 0.94, + "latex": "\\begin{array} { r l } { A \\stackrel { \\Delta } { = } } & { \\mathrm { E } _ { S } \\left[ \\frac { p ( y | x , s ; \\tilde { \\theta } ) } { p ( y | x ; \\tilde { \\theta } ) } ( u _ { y } - \\mathrm { E } _ { Y } [ u _ { Y } ] ) ( u _ { y } - \\mathrm { E } _ { Y } [ u _ { Y } ] ) ^ { T } \\right] } \\\\ & { - \\mathrm { E } _ { S } \\left[ \\frac { p ( y | x , s ; \\tilde { \\theta } ) } { p ( y | x ; \\tilde { \\theta } ) } ( u _ { y } - \\mathrm { E } _ { Y } [ u _ { Y } ] ) \\right] \\mathrm { E } _ { S } \\left[ \\frac { p ( y | x , s ; \\tilde { \\theta } ) } { p ( y | x ; \\tilde { \\theta } ) } ( u _ { y } - \\mathrm { E } _ { Y } [ u _ { Y } ] ) \\right] ^ { T } } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 820, + 1590, + 946, + 1590, + 946, + 1628, + 820, + 1628 + ], + "score": 0.94, + "latex": "p ( \\boldsymbol { y } | \\boldsymbol { x } , s ; \\tilde { \\boldsymbol { \\theta } } )" + }, + { + "category_id": 14, + "poly": [ + 552, + 921, + 1146, + 921, + 1146, + 1032, + 552, + 1032 + ], + "score": 0.94, + "latex": "p ( y | x , s , \\widetilde { \\theta } ) = \\frac { e ^ { \\alpha \\widehat { \\eta } ^ { T } u _ { y } } } { \\displaystyle \\sum _ { y ^ { \\prime } \\in \\mathcal { V } } e ^ { \\alpha \\widehat { \\eta } ^ { T } u _ { y ^ { \\prime } } } } \\le \\frac { e ^ { \\alpha \\widehat { \\eta } ^ { T } u _ { y } } } { e ^ { \\alpha \\widehat { \\eta } ^ { T } u _ { y ^ { * } } } } \\le e ^ { - c \\alpha \\| \\widehat { \\eta } \\| _ { 2 } }" + }, + { + "category_id": 13, + "poly": [ + 990, + 1939, + 1132, + 1939, + 1132, + 1980, + 990, + 1980 + ], + "score": 0.93, + "latex": "\\tilde { \\theta } = \\{ \\hat { \\lambda } , \\alpha \\hat { \\eta } \\}" + }, + { + "category_id": 13, + "poly": [ + 298, + 1129, + 439, + 1129, + 439, + 1168, + 298, + 1168 + ], + "score": 0.93, + "latex": "\\tilde { \\theta } = \\{ \\hat { \\lambda } , \\alpha \\hat { \\eta } \\}" + }, + { + "category_id": 13, + "poly": [ + 367, + 430, + 544, + 430, + 544, + 463, + 367, + 463 + ], + "score": 0.93, + "latex": "\\mathcal { V } = \\{ 1 , \\ldots , k \\}" + }, + { + "category_id": 13, + "poly": [ + 430, + 565, + 706, + 565, + 706, + 604, + 430, + 604 + ], + "score": 0.92, + "latex": "\\forall x , s , p ( y | x , s ; \\tilde { \\theta } ) \\geq 1 / b" + }, + { + "category_id": 14, + "poly": [ + 589, + 1395, + 1092, + 1395, + 1092, + 1474, + 589, + 1474 + ], + "score": 0.92, + "latex": "v _ { y } = { \\left\\{ \\begin{array} { l l } { ( 1 - p ( y | x , s ; { \\tilde { \\theta } } ) \\mathbf { h } ^ { ( L - 1 ) } } & { { \\mathrm { i f ~ } } y = y ^ { * } } \\\\ { - p ( y | x , s ; { \\tilde { \\theta } } ) \\mathbf { h } ^ { ( L - 1 ) } } & { { \\mathrm { o t h e r w i s e } } } \\end{array} \\right. }" + }, + { + "category_id": 14, + "poly": [ + 714, + 808, + 982, + 808, + 982, + 852, + 714, + 852 + ], + "score": 0.92, + "latex": "p ( y | x , s , \\tilde { \\theta } ) \\leq e ^ { - c \\alpha \\| \\hat { \\eta } \\| _ { 2 } }" + }, + { + "category_id": 14, + "poly": [ + 650, + 620, + 1049, + 620, + 1049, + 686, + 650, + 686 + ], + "score": 0.92, + "latex": "p ( \\boldsymbol { y } | \\boldsymbol { x } ; \\tilde { \\boldsymbol { \\theta } } ) = \\mathrm { E } _ { S } \\left[ p ( \\boldsymbol { y } | \\boldsymbol { x } , S ; \\hat { \\boldsymbol { \\theta } } ) \\right] \\geq \\frac { 1 } { b }" + }, + { + "category_id": 13, + "poly": [ + 808, + 761, + 887, + 761, + 887, + 792, + 808, + 792 + ], + "score": 0.92, + "latex": "y \\neq y ^ { * }" + }, + { + "category_id": 13, + "poly": [ + 1116, + 754, + 1258, + 754, + 1258, + 793, + 1116, + 793 + ], + "score": 0.92, + "latex": "\\tilde { \\theta } = \\{ \\hat { \\lambda } , \\alpha \\hat { \\eta } \\}" + }, + { + "category_id": 14, + "poly": [ + 702, + 1304, + 996, + 1304, + 996, + 1355, + 702, + 1355 + ], + "score": 0.92, + "latex": "u _ { y } - \\mathrm { E } _ { y } [ u _ { Y } ] = \\left( v _ { y ^ { \\prime } } \\right) _ { y ^ { \\prime } = 1 } ^ { k }" + }, + { + "category_id": 13, + "poly": [ + 366, + 463, + 432, + 463, + 432, + 491, + 366, + 491 + ], + "score": 0.91, + "latex": "b \\geq k" + }, + { + "category_id": 14, + "poly": [ + 564, + 1165, + 1133, + 1165, + 1133, + 1210, + 564, + 1210 + ], + "score": 0.9, + "latex": "| p ( y | x , s ; \\tilde { \\theta } ) ( u _ { y } - \\mathrm { E } _ { Y } [ u _ { Y } ] ) | _ { i } \\le \\beta ( k - 1 ) e ^ { - c \\alpha \\| \\hat { \\eta } \\| _ { 2 } }" + }, + { + "category_id": 14, + "poly": [ + 681, + 1997, + 1017, + 1997, + 1017, + 2039, + 681, + 2039 + ], + "score": 0.88, + "latex": "| A _ { i j } | \\leq 2 b ( k - 1 ) \\beta ^ { 2 } e ^ { - c \\alpha \\| \\hat { \\eta } \\| _ { 2 } }" + }, + { + "category_id": 14, + "poly": [ + 518, + 1643, + 1181, + 1643, + 1181, + 1688, + 518, + 1688 + ], + "score": 0.88, + "latex": "| p ( y | x , s ; \\tilde { \\theta } ) ( u _ { y } - \\mathrm { E } _ { Y } [ u _ { Y } ] ) | _ { i } \\le p ( y | x , s ; \\tilde { \\theta } ) \\beta \\le \\beta e ^ { - c \\alpha \\| \\hat { \\eta } \\| _ { 2 } }" + }, + { + "category_id": 14, + "poly": [ + 553, + 510, + 1145, + 510, + 1145, + 549, + 553, + 549 + ], + "score": 0.88, + "latex": "\\log f ( \\alpha ) \\geq ( 1 - \\alpha ) \\log f ( 0 ) + \\alpha \\log f ( 1 ) \\geq - \\log b" + }, + { + "category_id": 14, + "poly": [ + 447, + 1527, + 1251, + 1527, + 1251, + 1573, + 447, + 1573 + ], + "score": 0.88, + "latex": "| p ( y | x , s ; \\tilde { \\theta } ) ( u _ { y } - \\mathrm { E } _ { Y } [ u _ { Y } ] ) | _ { i } \\le | ( u _ { y } - \\mathrm { E } _ { Y } [ u _ { Y } ] ) | _ { i } \\le \\beta ( k - 1 ) e ^ { - c \\alpha | | \\hat { \\eta } | | _ { 2 } }" + }, + { + "category_id": 13, + "poly": [ + 498, + 1601, + 516, + 1601, + 516, + 1627, + 498, + 1627 + ], + "score": 0.81, + "latex": "y" + }, + { + "category_id": 13, + "poly": [ + 480, + 1261, + 498, + 1261, + 498, + 1287, + 480, + 1287 + ], + "score": 0.8, + "latex": "y" + }, + { + "category_id": 13, + "poly": [ + 1220, + 438, + 1241, + 438, + 1241, + 458, + 1220, + 458 + ], + "score": 0.78, + "latex": "\\alpha" + }, + { + "category_id": 13, + "poly": [ + 729, + 1952, + 751, + 1952, + 751, + 1972, + 729, + 1972 + ], + "score": 0.74, + "latex": "A" + }, + { + "category_id": 13, + "poly": [ + 572, + 1106, + 590, + 1106, + 590, + 1127, + 572, + 1127 + ], + "score": 0.67, + "latex": "x" + }, + { + "category_id": 13, + "poly": [ + 656, + 429, + 921, + 429, + 921, + 464, + 656, + 464 + ], + "score": 0.63, + "latex": "x \\in { \\mathcal { X } } , s \\in { \\mathcal { S } } , \\log f ( \\alpha )" + }, + { + "category_id": 13, + "poly": [ + 820, + 430, + 921, + 430, + 921, + 464, + 820, + 464 + ], + "score": 0.53, + "latex": "\\log f ( \\alpha )" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 72.0, + 817.0, + 72.0, + 817.0, + 108.0, + 295.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 831.0, + 2085.0, + 869.0, + 2085.0, + 869.0, + 2121.0, + 831.0, + 2121.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1378.0, + 705.0, + 1403.0, + 705.0, + 1403.0, + 733.0, + 1378.0, + 733.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1378.0, + 1709.0, + 1403.0, + 1709.0, + 1403.0, + 1735.0, + 1378.0, + 1735.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1376.0, + 1044.0, + 1404.0, + 1044.0, + 1404.0, + 1075.0, + 1376.0, + 1075.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1378.0, + 1045.0, + 1403.0, + 1045.0, + 1403.0, + 1072.0, + 1378.0, + 1072.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 428.0, + 366.0, + 428.0, + 366.0, + 466.0, + 294.0, + 466.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 545.0, + 428.0, + 655.0, + 428.0, + 655.0, + 466.0, + 545.0, + 466.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 922.0, + 428.0, + 1219.0, + 428.0, + 1219.0, + 466.0, + 922.0, + 466.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1242.0, + 428.0, + 1253.0, + 428.0, + 1253.0, + 466.0, + 1242.0, + 466.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 458.0, + 365.0, + 458.0, + 365.0, + 494.0, + 295.0, + 494.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 433.0, + 458.0, + 543.0, + 458.0, + 543.0, + 494.0, + 433.0, + 494.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1095.0, + 571.0, + 1095.0, + 571.0, + 1135.0, + 294.0, + 1135.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 591.0, + 1095.0, + 1405.0, + 1095.0, + 1405.0, + 1135.0, + 591.0, + 1135.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1122.0, + 297.0, + 1122.0, + 297.0, + 1176.0, + 291.0, + 1176.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 440.0, + 1122.0, + 457.0, + 1122.0, + 457.0, + 1176.0, + 440.0, + 1176.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1700.0, + 613.0, + 1700.0, + 613.0, + 1739.0, + 297.0, + 1739.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1589.0, + 497.0, + 1589.0, + 497.0, + 1632.0, + 293.0, + 1632.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 517.0, + 1589.0, + 819.0, + 1589.0, + 819.0, + 1632.0, + 517.0, + 1632.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 947.0, + 1589.0, + 1031.0, + 1589.0, + 1031.0, + 1632.0, + 947.0, + 1632.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 753.0, + 807.0, + 753.0, + 807.0, + 798.0, + 291.0, + 798.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 888.0, + 753.0, + 1115.0, + 753.0, + 1115.0, + 798.0, + 888.0, + 798.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1479.0, + 595.0, + 1479.0, + 595.0, + 1518.0, + 295.0, + 1518.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1248.0, + 479.0, + 1248.0, + 479.0, + 1293.0, + 293.0, + 1293.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 499.0, + 1248.0, + 758.0, + 1248.0, + 758.0, + 1293.0, + 499.0, + 1293.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 887.0, + 1248.0, + 972.0, + 1248.0, + 972.0, + 1293.0, + 887.0, + 1293.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 566.0, + 429.0, + 566.0, + 429.0, + 606.0, + 296.0, + 606.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 707.0, + 566.0, + 782.0, + 566.0, + 782.0, + 606.0, + 707.0, + 606.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1367.0, + 375.0, + 1367.0, + 375.0, + 1405.0, + 293.0, + 1405.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 887.0, + 376.0, + 887.0, + 376.0, + 933.0, + 291.0, + 933.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1939.0, + 728.0, + 1939.0, + 728.0, + 1983.0, + 291.0, + 1983.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 752.0, + 1939.0, + 989.0, + 1939.0, + 989.0, + 1983.0, + 752.0, + 1983.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1133.0, + 1939.0, + 1147.0, + 1939.0, + 1147.0, + 1983.0, + 1133.0, + 1983.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 227.0, + 497.0, + 227.0, + 497.0, + 266.0, + 294.0, + 266.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1762.0, + 683.0, + 1762.0, + 683.0, + 1795.0, + 297.0, + 1795.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 17, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 296, + 1819, + 1407, + 1819, + 1407, + 1923, + 296, + 1923 + ], + "score": 0.972 + }, + { + "category_id": 8, + "poly": [ + 681, + 1606, + 1020, + 1606, + 1020, + 1693, + 681, + 1693 + ], + "score": 0.962 + }, + { + "category_id": 8, + "poly": [ + 486, + 310, + 1213, + 310, + 1213, + 408, + 486, + 408 + ], + "score": 0.957 + }, + { + "category_id": 8, + "poly": [ + 517, + 609, + 1177, + 609, + 1177, + 701, + 517, + 701 + ], + "score": 0.952 + }, + { + "category_id": 1, + "poly": [ + 292, + 225, + 1404, + 225, + 1404, + 294, + 292, + 294 + ], + "score": 0.951 + }, + { + "category_id": 8, + "poly": [ + 555, + 1387, + 1140, + 1387, + 1140, + 1479, + 555, + 1479 + ], + "score": 0.946 + }, + { + "category_id": 8, + "poly": [ + 510, + 909, + 1184, + 909, + 1184, + 961, + 510, + 961 + ], + "score": 0.944 + }, + { + "category_id": 8, + "poly": [ + 545, + 1297, + 1149, + 1297, + 1149, + 1343, + 545, + 1343 + ], + "score": 0.943 + }, + { + "category_id": 1, + "poly": [ + 296, + 1968, + 1404, + 1968, + 1404, + 2035, + 296, + 2035 + ], + "score": 0.939 + }, + { + "category_id": 8, + "poly": [ + 677, + 1737, + 1021, + 1737, + 1021, + 1781, + 677, + 1781 + ], + "score": 0.939 + }, + { + "category_id": 8, + "poly": [ + 686, + 777, + 1011, + 777, + 1011, + 821, + 686, + 821 + ], + "score": 0.936 + }, + { + "category_id": 8, + "poly": [ + 680, + 451, + 1017, + 451, + 1017, + 496, + 680, + 496 + ], + "score": 0.934 + }, + { + "category_id": 1, + "poly": [ + 298, + 1245, + 693, + 1245, + 693, + 1279, + 298, + 1279 + ], + "score": 0.933 + }, + { + "category_id": 1, + "poly": [ + 295, + 858, + 1026, + 858, + 1026, + 893, + 295, + 893 + ], + "score": 0.933 + }, + { + "category_id": 8, + "poly": [ + 478, + 1187, + 1214, + 1187, + 1214, + 1231, + 478, + 1231 + ], + "score": 0.931 + }, + { + "category_id": 1, + "poly": [ + 297, + 422, + 545, + 422, + 545, + 454, + 297, + 454 + ], + "score": 0.929 + }, + { + "category_id": 1, + "poly": [ + 297, + 1491, + 522, + 1491, + 522, + 1524, + 297, + 1524 + ], + "score": 0.929 + }, + { + "category_id": 1, + "poly": [ + 297, + 1357, + 429, + 1357, + 429, + 1388, + 297, + 1388 + ], + "score": 0.927 + }, + { + "category_id": 1, + "poly": [ + 296, + 1711, + 410, + 1711, + 410, + 1741, + 296, + 1741 + ], + "score": 0.925 + }, + { + "category_id": 8, + "poly": [ + 299, + 1025, + 1395, + 1025, + 1395, + 1118, + 299, + 1118 + ], + "score": 0.925 + }, + { + "category_id": 1, + "poly": [ + 297, + 721, + 1143, + 721, + 1143, + 760, + 297, + 760 + ], + "score": 0.924 + }, + { + "category_id": 1, + "poly": [ + 297, + 1546, + 1234, + 1546, + 1234, + 1587, + 297, + 1587 + ], + "score": 0.924 + }, + { + "category_id": 2, + "poly": [ + 297, + 73, + 816, + 73, + 816, + 106, + 297, + 106 + ], + "score": 0.921 + }, + { + "category_id": 1, + "poly": [ + 296, + 563, + 683, + 563, + 683, + 596, + 296, + 596 + ], + "score": 0.92 + }, + { + "category_id": 1, + "poly": [ + 298, + 1134, + 910, + 1134, + 910, + 1169, + 298, + 1169 + ], + "score": 0.918 + }, + { + "category_id": 1, + "poly": [ + 297, + 976, + 366, + 976, + 366, + 1008, + 297, + 1008 + ], + "score": 0.914 + }, + { + "category_id": 9, + "poly": [ + 1365, + 1631, + 1401, + 1631, + 1401, + 1662, + 1365, + 1662 + ], + "score": 0.892 + }, + { + "category_id": 2, + "poly": [ + 835, + 2087, + 864, + 2087, + 864, + 2113, + 835, + 2113 + ], + "score": 0.87 + }, + { + "category_id": 2, + "poly": [ + 1374, + 1491, + 1404, + 1491, + 1404, + 1522, + 1374, + 1522 + ], + "score": 0.847 + }, + { + "category_id": 2, + "poly": [ + 1372, + 503, + 1405, + 503, + 1405, + 536, + 1372, + 536 + ], + "score": 0.821 + }, + { + "category_id": 13, + "poly": [ + 992, + 720, + 1133, + 720, + 1133, + 759, + 992, + 759 + ], + "score": 0.94, + "latex": "\\tilde { \\theta } = \\{ \\hat { \\lambda } , \\alpha \\hat { \\eta } \\}" + }, + { + "category_id": 14, + "poly": [ + 483, + 311, + 1214, + 311, + 1214, + 407, + 483, + 407 + ], + "score": 0.94, + "latex": "\\begin{array} { r } { \\left| \\mathrm { E } _ { S } \\left[ \\frac { p ( y | x , s ; \\tilde { \\theta } ) } { p ( y | x ; \\tilde { \\theta } ) } ( u _ { y } - \\mathrm { E } _ { Y } [ u _ { Y } ] ) \\right] \\right| _ { i } \\le \\mathrm { E } _ { S } \\left[ \\frac { p ( y | x , s ; \\tilde { \\theta } ) } { p ( y | x ; \\tilde { \\theta } ) } \\beta \\right] = \\beta } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 684, + 1547, + 824, + 1547, + 824, + 1586, + 684, + 1586 + ], + "score": 0.94, + "latex": "\\tilde { \\theta } = \\{ \\hat { \\lambda } , \\alpha \\hat { \\eta } \\}" + }, + { + "category_id": 14, + "poly": [ + 517, + 608, + 1182, + 608, + 1182, + 701, + 517, + 701 + ], + "score": 0.94, + "latex": "B \\overset { \\Delta } { = } \\mathrm { E } _ { S } \\left[ \\frac { p ( y | x , s ; \\tilde { \\theta } ) } { p ( y | x ; \\tilde { \\theta } ) } \\left( \\mathrm { E } _ { Y } \\left[ u _ { Y } u _ { Y } ^ { T } \\right] - \\mathrm { E } _ { Y } [ u _ { Y } ] \\mathrm { E } _ { Y } [ u _ { Y } ] ^ { T } \\right) \\right]" + }, + { + "category_id": 13, + "poly": [ + 683, + 226, + 861, + 226, + 861, + 264, + 683, + 264 + ], + "score": 0.93, + "latex": "p ( y | x ; \\tilde { \\theta } ) \\geq 1 / b" + }, + { + "category_id": 14, + "poly": [ + 678, + 1602, + 1020, + 1602, + 1020, + 1694, + 678, + 1694 + ], + "score": 0.93, + "latex": "{ \\frac { 1 } { n } } \\sum _ { i = 1 } ^ { n } { \\big ( } A ( x _ { i } , y _ { i } ) - B ( x _ { i } , y _ { i } ) { \\big ) }" + }, + { + "category_id": 13, + "poly": [ + 296, + 1852, + 454, + 1852, + 454, + 1888, + 296, + 1888 + ], + "score": 0.93, + "latex": "1 ) \\beta ^ { 2 } e ^ { - c \\alpha \\| \\hat { \\eta } \\| _ { 2 } }" + }, + { + "category_id": 14, + "poly": [ + 310, + 1020, + 1402, + 1020, + 1402, + 1119, + 310, + 1119 + ], + "score": 0.93, + "latex": "\\mathbb { E } _ { Y } \\left[ u _ { Y } u _ { Y } ^ { T } \\right] - \\mathbb { E } _ { Y } [ u _ { Y } ] \\mathbb { E } _ { Y } [ u _ { Y } ] ^ { T } \\big | _ { i j } = \\big | \\mathrm { C o v } _ { Y } [ ( u _ { Y } ) _ { i } , ( u _ { Y } ) _ { j } ] \\big | \\le \\beta ^ { 2 } \\sum _ { y = 1 } ^ { k } p ( y | x , s ; \\tilde { \\theta } ) - p ( y | x , s ; \\tilde { \\theta } ) ^ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 298, + 262, + 451, + 262, + 451, + 296, + 298, + 296 + ], + "score": 0.92, + "latex": "u _ { y } - \\operatorname { E } _ { Y } [ u _ { Y } ]" + }, + { + "category_id": 14, + "poly": [ + 552, + 1384, + 1139, + 1384, + 1139, + 1482, + 552, + 1482 + ], + "score": 0.91, + "latex": "\\sum _ { y = 1 } ^ { k } p ( y | x , s ; \\tilde { \\theta } ) - p ( y | x , s ; \\tilde { \\theta } ) ^ { 2 } \\leq 2 ( k - 1 ) e ^ { - c \\alpha \\| \\hat { \\eta } \\| _ { 2 } }" + }, + { + "category_id": 14, + "poly": [ + 511, + 909, + 1185, + 909, + 1185, + 961, + 511, + 961 + ], + "score": 0.9, + "latex": "\\begin{array} { r } { \\left| \\mathrm { E } _ { Y } \\left[ u _ { Y } u _ { Y } ^ { T } \\right] - \\mathrm { E } _ { Y } [ u _ { Y } ] \\mathrm { E } _ { Y } [ u _ { Y } ] ^ { T } \\right| _ { i j } \\leq 2 ( k - 1 ) \\beta ^ { 2 } e ^ { - c \\alpha \\| \\hat { \\eta } \\| _ { 2 } } } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 359, + 1886, + 701, + 1886, + 701, + 1923, + 359, + 1923 + ], + "score": 0.9, + "latex": "2 d k ( k - 1 ) ( b + 1 ) \\beta ^ { 2 } e ^ { - c \\alpha \\| \\hat { \\eta } \\| _ { 2 } }" + }, + { + "category_id": 14, + "poly": [ + 685, + 775, + 1013, + 775, + 1013, + 819, + 685, + 819 + ], + "score": 0.9, + "latex": "| B _ { i j } | \\leq 2 ( k - 1 ) \\beta ^ { 2 } e ^ { - c \\alpha \\| \\hat { \\eta } \\| _ { 2 } }" + }, + { + "category_id": 14, + "poly": [ + 676, + 1736, + 1021, + 1736, + 1021, + 1780, + 676, + 1780 + ], + "score": 0.89, + "latex": "2 d k ( k - 1 ) ( b + 1 ) \\beta ^ { 2 } e ^ { - c \\alpha \\| \\hat { \\eta } \\| _ { 2 } }" + }, + { + "category_id": 13, + "poly": [ + 1252, + 1820, + 1409, + 1820, + 1409, + 1855, + 1252, + 1855 + ], + "score": 0.89, + "latex": "2 ( k - 1 ) ( b +" + }, + { + "category_id": 13, + "poly": [ + 979, + 863, + 1015, + 863, + 1015, + 893, + 979, + 893 + ], + "score": 0.89, + "latex": "i , j" + }, + { + "category_id": 14, + "poly": [ + 481, + 1185, + 1214, + 1185, + 1214, + 1229, + 481, + 1229 + ], + "score": 0.88, + "latex": "\\begin{array} { r } { p ( y | x , s ; \\tilde { \\theta } ) - p ( y | x , s ; \\tilde { \\theta } ) ^ { 2 } \\leq 1 - p ( y | x , s ; \\tilde { \\theta } ) \\leq ( k - 1 ) e ^ { - c \\alpha \\| \\hat { \\eta } \\| _ { 2 } } } \\end{array}" + }, + { + "category_id": 14, + "poly": [ + 680, + 450, + 1018, + 450, + 1018, + 495, + 680, + 495 + ], + "score": 0.88, + "latex": "| A _ { i j } | \\leq 2 b ( k - 1 ) \\beta ^ { 2 } e ^ { - c \\alpha \\| \\hat { \\eta } \\| _ { 2 } }" + }, + { + "category_id": 13, + "poly": [ + 1054, + 1969, + 1071, + 1969, + 1071, + 2000, + 1054, + 2000 + ], + "score": 0.84, + "latex": "\\hat { \\theta }" + }, + { + "category_id": 14, + "poly": [ + 548, + 1295, + 1148, + 1295, + 1148, + 1340, + 548, + 1340 + ], + "score": 0.84, + "latex": "p ( y | x , s ; \\tilde { \\theta } ) - p ( y | x , s ; \\tilde { \\theta } ) ^ { 2 } \\leq p ( y | x , s ; \\tilde { \\theta } ) \\leq e ^ { - c \\alpha \\| \\hat { \\eta } \\| _ { 2 } }" + }, + { + "category_id": 13, + "poly": [ + 398, + 1143, + 416, + 1143, + 416, + 1169, + 398, + 1169 + ], + "score": 0.83, + "latex": "y" + }, + { + "category_id": 13, + "poly": [ + 618, + 263, + 638, + 263, + 638, + 294, + 618, + 294 + ], + "score": 0.82, + "latex": "\\beta" + }, + { + "category_id": 13, + "poly": [ + 323, + 1252, + 341, + 1252, + 341, + 1279, + 323, + 1279 + ], + "score": 0.81, + "latex": "y" + }, + { + "category_id": 13, + "poly": [ + 729, + 727, + 753, + 727, + 753, + 753, + 729, + 753 + ], + "score": 0.81, + "latex": "B" + }, + { + "category_id": 13, + "poly": [ + 785, + 866, + 804, + 866, + 804, + 888, + 785, + 888 + ], + "score": 0.81, + "latex": "x" + }, + { + "category_id": 13, + "poly": [ + 855, + 867, + 870, + 867, + 870, + 888, + 855, + 888 + ], + "score": 0.76, + "latex": "s" + }, + { + "category_id": 13, + "poly": [ + 848, + 265, + 861, + 265, + 861, + 289, + 848, + 289 + ], + "score": 0.59, + "latex": "i" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 72.0, + 817.0, + 72.0, + 817.0, + 108.0, + 296.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 831.0, + 2085.0, + 869.0, + 2085.0, + 869.0, + 2125.0, + 831.0, + 2125.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1378.0, + 1496.0, + 1403.0, + 1496.0, + 1403.0, + 1523.0, + 1378.0, + 1523.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1378.0, + 509.0, + 1403.0, + 509.0, + 1403.0, + 536.0, + 1378.0, + 536.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1817.0, + 1251.0, + 1817.0, + 1251.0, + 1857.0, + 294.0, + 1857.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1847.0, + 295.0, + 1847.0, + 295.0, + 1894.0, + 291.0, + 1894.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 455.0, + 1847.0, + 1410.0, + 1847.0, + 1410.0, + 1894.0, + 455.0, + 1894.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1374.0, + 1889.0, + 1405.0, + 1889.0, + 1405.0, + 1923.0, + 1374.0, + 1923.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.25, + 1885.0, + 714.25, + 1885.0, + 714.25, + 1924.5, + 292.25, + 1924.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 225.0, + 682.0, + 225.0, + 682.0, + 266.0, + 294.0, + 266.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 862.0, + 225.0, + 1407.0, + 225.0, + 1407.0, + 266.0, + 862.0, + 266.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 260.0, + 297.0, + 260.0, + 297.0, + 296.0, + 292.0, + 296.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 452.0, + 260.0, + 617.0, + 260.0, + 617.0, + 296.0, + 452.0, + 296.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 639.0, + 260.0, + 847.0, + 260.0, + 847.0, + 296.0, + 639.0, + 296.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 862.0, + 260.0, + 869.0, + 260.0, + 869.0, + 296.0, + 862.0, + 296.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1968.0, + 1053.0, + 1968.0, + 1053.0, + 2008.0, + 294.0, + 2008.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1072.0, + 1968.0, + 1407.0, + 1968.0, + 1407.0, + 2008.0, + 1072.0, + 2008.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 2003.0, + 566.0, + 2003.0, + 566.0, + 2035.0, + 295.0, + 2035.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1242.0, + 322.0, + 1242.0, + 322.0, + 1284.0, + 294.0, + 1284.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 342.0, + 1242.0, + 695.0, + 1242.0, + 695.0, + 1284.0, + 342.0, + 1284.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 858.0, + 784.0, + 858.0, + 784.0, + 898.0, + 295.0, + 898.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 805.0, + 858.0, + 854.0, + 858.0, + 854.0, + 898.0, + 805.0, + 898.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 871.0, + 858.0, + 978.0, + 858.0, + 978.0, + 898.0, + 871.0, + 898.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1016.0, + 858.0, + 1028.0, + 858.0, + 1028.0, + 898.0, + 1016.0, + 898.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 419.0, + 547.0, + 419.0, + 547.0, + 456.0, + 294.0, + 456.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1489.0, + 525.0, + 1489.0, + 525.0, + 1526.0, + 294.0, + 1526.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1354.0, + 431.0, + 1354.0, + 431.0, + 1391.0, + 295.0, + 1391.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1708.0, + 412.0, + 1708.0, + 412.0, + 1743.0, + 294.0, + 1743.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 719.0, + 728.0, + 719.0, + 728.0, + 763.0, + 290.0, + 763.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 754.0, + 719.0, + 991.0, + 719.0, + 991.0, + 763.0, + 754.0, + 763.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1134.0, + 719.0, + 1148.0, + 719.0, + 1148.0, + 763.0, + 1134.0, + 763.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1544.0, + 683.0, + 1544.0, + 683.0, + 1592.0, + 292.0, + 1592.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 825.0, + 1544.0, + 1237.0, + 1544.0, + 1237.0, + 1592.0, + 825.0, + 1592.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 563.0, + 684.0, + 563.0, + 684.0, + 599.0, + 296.0, + 599.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1133.0, + 397.0, + 1133.0, + 397.0, + 1174.0, + 293.0, + 1174.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 417.0, + 1133.0, + 913.0, + 1133.0, + 913.0, + 1174.0, + 417.0, + 1174.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 973.0, + 368.0, + 973.0, + 368.0, + 1012.0, + 295.0, + 1012.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 18, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 296, + 289, + 1406, + 289, + 1406, + 415, + 296, + 415 + ], + "score": 0.978 + }, + { + "category_id": 8, + "poly": [ + 449, + 707, + 1247, + 707, + 1247, + 863, + 449, + 863 + ], + "score": 0.971 + }, + { + "category_id": 8, + "poly": [ + 548, + 1304, + 1147, + 1304, + 1147, + 1423, + 548, + 1423 + ], + "score": 0.967 + }, + { + "category_id": 8, + "poly": [ + 563, + 1987, + 1133, + 1987, + 1133, + 2044, + 563, + 2044 + ], + "score": 0.944 + }, + { + "category_id": 1, + "poly": [ + 296, + 624, + 1405, + 624, + 1405, + 694, + 296, + 694 + ], + "score": 0.944 + }, + { + "category_id": 8, + "poly": [ + 610, + 1868, + 1090, + 1868, + 1090, + 1928, + 610, + 1928 + ], + "score": 0.944 + }, + { + "category_id": 8, + "poly": [ + 466, + 430, + 1233, + 430, + 1233, + 494, + 466, + 494 + ], + "score": 0.939 + }, + { + "category_id": 8, + "poly": [ + 431, + 1644, + 1271, + 1644, + 1271, + 1732, + 431, + 1732 + ], + "score": 0.939 + }, + { + "category_id": 1, + "poly": [ + 298, + 1245, + 1204, + 1245, + 1204, + 1290, + 298, + 1290 + ], + "score": 0.932 + }, + { + "category_id": 1, + "poly": [ + 296, + 1940, + 605, + 1940, + 605, + 1972, + 296, + 1972 + ], + "score": 0.931 + }, + { + "category_id": 1, + "poly": [ + 299, + 1816, + 1246, + 1816, + 1246, + 1854, + 299, + 1854 + ], + "score": 0.925 + }, + { + "category_id": 0, + "poly": [ + 297, + 228, + 534, + 228, + 534, + 262, + 297, + 262 + ], + "score": 0.923 + }, + { + "category_id": 1, + "poly": [ + 300, + 1750, + 1178, + 1750, + 1178, + 1789, + 300, + 1789 + ], + "score": 0.922 + }, + { + "category_id": 2, + "poly": [ + 297, + 73, + 816, + 73, + 816, + 106, + 297, + 106 + ], + "score": 0.922 + }, + { + "category_id": 1, + "poly": [ + 297, + 876, + 1145, + 876, + 1145, + 913, + 297, + 913 + ], + "score": 0.921 + }, + { + "category_id": 1, + "poly": [ + 288, + 509, + 1318, + 509, + 1318, + 547, + 288, + 547 + ], + "score": 0.92 + }, + { + "category_id": 8, + "poly": [ + 787, + 1527, + 912, + 1527, + 912, + 1566, + 787, + 1566 + ], + "score": 0.919 + }, + { + "category_id": 1, + "poly": [ + 297, + 1596, + 370, + 1596, + 370, + 1628, + 297, + 1628 + ], + "score": 0.917 + }, + { + "category_id": 8, + "poly": [ + 420, + 562, + 1276, + 562, + 1276, + 610, + 420, + 610 + ], + "score": 0.909 + }, + { + "category_id": 1, + "poly": [ + 296, + 1195, + 1017, + 1195, + 1017, + 1230, + 296, + 1230 + ], + "score": 0.893 + }, + { + "category_id": 1, + "poly": [ + 296, + 1048, + 1055, + 1048, + 1055, + 1089, + 296, + 1089 + ], + "score": 0.881 + }, + { + "category_id": 1, + "poly": [ + 299, + 945, + 1148, + 945, + 1148, + 982, + 299, + 982 + ], + "score": 0.876 + }, + { + "category_id": 9, + "poly": [ + 1364, + 1882, + 1402, + 1882, + 1402, + 1913, + 1364, + 1913 + ], + "score": 0.871 + }, + { + "category_id": 2, + "poly": [ + 834, + 2087, + 867, + 2087, + 867, + 2114, + 834, + 2114 + ], + "score": 0.869 + }, + { + "category_id": 1, + "poly": [ + 295, + 1440, + 1406, + 1440, + 1406, + 1530, + 295, + 1530 + ], + "score": 0.862 + }, + { + "category_id": 1, + "poly": [ + 297, + 1002, + 761, + 1002, + 761, + 1039, + 297, + 1039 + ], + "score": 0.849 + }, + { + "category_id": 2, + "poly": [ + 1373, + 1196, + 1405, + 1196, + 1405, + 1227, + 1373, + 1227 + ], + "score": 0.833 + }, + { + "category_id": 2, + "poly": [ + 1374, + 1752, + 1404, + 1752, + 1404, + 1782, + 1374, + 1782 + ], + "score": 0.833 + }, + { + "category_id": 2, + "poly": [ + 1373, + 878, + 1405, + 878, + 1405, + 909, + 1373, + 909 + ], + "score": 0.83 + }, + { + "category_id": 8, + "poly": [ + 752, + 1103, + 947, + 1103, + 947, + 1168, + 752, + 1168 + ], + "score": 0.789 + }, + { + "category_id": 13, + "poly": [ + 1055, + 291, + 1199, + 291, + 1199, + 336, + 1055, + 336 + ], + "score": 0.94, + "latex": "\\begin{array} { r } { \\alpha = \\frac { \\delta } { 4 \\beta \\| \\hat { \\eta } \\| _ { 2 } } } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 808, + 290, + 961, + 290, + 961, + 330, + 808, + 330 + ], + "score": 0.94, + "latex": "\\tilde { \\theta } = \\{ \\hat { \\lambda } , \\alpha \\hat { \\eta } \\}" + }, + { + "category_id": 14, + "poly": [ + 449, + 704, + 1247, + 704, + 1247, + 865, + 449, + 865 + ], + "score": 0.94, + "latex": "\\begin{array} { r c l } { g ( \\hat { \\lambda } , \\alpha \\hat { \\eta } ) } & { \\leq } & { g ( \\hat { \\lambda } , \\hat { \\eta } ) - ( 1 - \\alpha ) ^ { 2 } \\| \\hat { \\eta } \\| _ { 2 } ^ { 2 } 2 d k ( k - 1 ) ( b + 1 ) \\beta ^ { 2 } e ^ { - c \\alpha \\| \\hat { \\eta } \\| _ { 2 } } } \\\\ & { = } & { g ( \\hat { \\lambda } , \\hat { \\eta } ) - 2 d k ( k - 1 ) ( b + 1 ) \\beta ^ { 2 } \\left( \\| \\hat { \\eta } \\| _ { 2 } - \\frac { \\delta } { 4 \\beta } \\right) ^ { 2 } e ^ { - c \\delta / 4 \\beta } } \\\\ & { = } & { g ( \\hat { \\lambda } , \\hat { \\eta } ) - c _ { 1 } \\beta ^ { 2 } \\left( \\| \\hat { \\eta } \\| _ { 2 } - \\frac { \\delta } { 4 \\beta } \\right) ^ { 2 } e ^ { - c _ { 2 } \\delta / 4 \\beta } } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 609, + 1000, + 751, + 1000, + 751, + 1039, + 609, + 1039 + ], + "score": 0.94, + "latex": "\\tilde { \\theta } = \\{ \\hat { \\lambda } , \\alpha \\hat { \\eta } \\}" + }, + { + "category_id": 13, + "poly": [ + 558, + 1439, + 1042, + 1439, + 1042, + 1501, + 558, + 1501 + ], + "score": 0.94, + "latex": "g _ { s } ( \\alpha ) = \\sum _ { y ^ { \\prime } \\in \\mathcal { V } } p ( y ^ { \\prime } | x , s ; \\tilde { \\theta } ) \\log w _ { y ^ { \\prime } } - \\log w _ { y }" + }, + { + "category_id": 13, + "poly": [ + 371, + 508, + 640, + 508, + 640, + 549, + 371, + 549 + ], + "score": 0.94, + "latex": "\\begin{array} { r } { g ( \\lambda , \\eta ) = \\frac { 1 } { n } l ( D ; ( \\lambda , \\eta ) ) } \\end{array}" + }, + { + "category_id": 14, + "poly": [ + 550, + 1303, + 1148, + 1303, + 1148, + 1423, + 550, + 1423 + ], + "score": 0.93, + "latex": "p ( y | x , s , \\tilde { \\theta } ) = \\frac { e ^ { \\alpha \\hat { \\eta } _ { y } ^ { T } \\mathbf { h } ^ { ( L - 1 ) } ( x , s ; \\hat { \\lambda } ) } } { \\displaystyle \\sum _ { y ^ { \\prime } \\in \\mathcal { Y } } e ^ { \\alpha \\hat { \\eta } _ { y ^ { \\prime } } ^ { T } \\mathbf { h } ^ { ( L - 1 ) } ( x , s ; \\hat { \\lambda } ) } } = \\frac { ( w _ { y } ) ^ { \\alpha } } { { \\displaystyle \\sum _ { y ^ { \\prime } \\in \\mathcal { Y } } ( w _ { y ^ { \\prime } } ) ^ { \\alpha } } }" + }, + { + "category_id": 13, + "poly": [ + 885, + 375, + 1032, + 375, + 1032, + 414, + 885, + 414 + ], + "score": 0.93, + "latex": "V ( D ; \\tilde { \\theta } ) \\le \\delta" + }, + { + "category_id": 14, + "poly": [ + 610, + 1867, + 1090, + 1867, + 1090, + 1927, + 610, + 1927 + ], + "score": 0.93, + "latex": "\\mathrm { E } _ { Y } \\left[ \\log p ( Y | x _ { i } , s ; \\tilde { \\theta } ) \\right] \\geq \\log p ( y _ { i } | x _ { i } , s ; \\tilde { \\theta } )" + }, + { + "category_id": 13, + "poly": [ + 912, + 1819, + 1052, + 1819, + 1052, + 1853, + 912, + 1853 + ], + "score": 0.93, + "latex": "( x _ { i } , y _ { i } ) \\in D" + }, + { + "category_id": 13, + "poly": [ + 747, + 624, + 1023, + 624, + 1023, + 666, + 747, + 666 + ], + "score": 0.93, + "latex": "\\nabla _ { \\eta } ^ { T } g ( \\hat { \\lambda } , \\hat { \\eta } ) ( \\alpha \\hat { \\eta } - \\hat { \\eta } ) = 0" + }, + { + "category_id": 13, + "poly": [ + 906, + 1752, + 1024, + 1752, + 1024, + 1786, + 906, + 1786 + ], + "score": 0.93, + "latex": "g _ { s } ( \\alpha ) \\geq 0" + }, + { + "category_id": 13, + "poly": [ + 299, + 334, + 423, + 334, + 423, + 379, + 299, + 379 + ], + "score": 0.93, + "latex": "\\begin{array} { r } { \\| \\eta \\| _ { 2 } > \\frac { \\delta } { 4 \\beta } } \\end{array}" + }, + { + "category_id": 14, + "poly": [ + 467, + 428, + 1232, + 428, + 1232, + 494, + 467, + 494 + ], + "score": 0.93, + "latex": "\\Delta _ { l } ( \\hat { \\theta } , \\hat { \\theta } _ { \\delta } ) \\leq \\Delta _ { l } ( \\hat { \\theta } , \\tilde { \\theta } ) = \\frac { 1 } { n } ( l ( D ; \\hat { \\theta } ) - l ( D ; \\tilde { \\theta } ) ) = g ( \\hat { \\lambda } , \\hat { \\eta } ) - g ( \\hat { \\lambda } , \\alpha \\hat { \\eta } )" + }, + { + "category_id": 14, + "poly": [ + 433, + 1642, + 1268, + 1642, + 1268, + 1737, + 433, + 1737 + ], + "score": 0.92, + "latex": "\\frac { \\partial g _ { s } ( \\alpha ) } { \\partial \\alpha } = \\sum _ { y ^ { \\prime } \\in \\mathcal { Y } } \\log w _ { y ^ { \\prime } } \\frac { \\partial p ( y ^ { \\prime } | x , s ; \\tilde { \\theta } ) } { \\partial \\alpha } = \\mathrm { V a r } _ { Y } \\left[ \\log w _ { Y } | X - x , S = s \\right] \\geq 0" + }, + { + "category_id": 13, + "poly": [ + 1110, + 1819, + 1235, + 1819, + 1235, + 1853, + 1110, + 1853 + ], + "score": 0.92, + "latex": "\\forall \\alpha \\in [ 0 , 1 ]" + }, + { + "category_id": 13, + "poly": [ + 683, + 1751, + 797, + 1751, + 797, + 1786, + 683, + 1786 + ], + "score": 0.92, + "latex": "g _ { s } ( 0 ) \\geq 0" + }, + { + "category_id": 13, + "poly": [ + 1180, + 1444, + 1294, + 1444, + 1294, + 1478, + 1180, + 1478 + ], + "score": 0.92, + "latex": "g _ { s } ( 0 ) \\geq 0" + }, + { + "category_id": 13, + "poly": [ + 434, + 878, + 707, + 878, + 707, + 912, + 434, + 912 + ], + "score": 0.92, + "latex": "c 1 = 2 d k ( k - 1 ) ( b + 1 )" + }, + { + "category_id": 14, + "poly": [ + 754, + 1100, + 945, + 1100, + 945, + 1167, + 754, + 1167 + ], + "score": 0.92, + "latex": "p ( y | x , s ; \\tilde { \\theta } ) \\geq \\frac { 1 } { k }" + }, + { + "category_id": 13, + "poly": [ + 334, + 1752, + 401, + 1752, + 401, + 1786, + 334, + 1786 + ], + "score": 0.91, + "latex": "g _ { s } ( \\alpha )" + }, + { + "category_id": 13, + "poly": [ + 435, + 381, + 556, + 381, + 556, + 411, + 435, + 411 + ], + "score": 0.91, + "latex": "0 \\leq \\alpha \\leq 1" + }, + { + "category_id": 13, + "poly": [ + 786, + 1246, + 1034, + 1246, + 1034, + 1290, + 786, + 1290 + ], + "score": 0.9, + "latex": "e ^ { \\hat { \\eta } _ { y } ^ { T } \\mathbf { h } ^ { ( L - 1 ) } ( x , s ; \\hat { \\lambda } ) } = w _ { y }" + }, + { + "category_id": 13, + "poly": [ + 759, + 880, + 837, + 880, + 837, + 907, + 759, + 907 + ], + "score": 0.9, + "latex": "c 2 = c" + }, + { + "category_id": 14, + "poly": [ + 564, + 1985, + 1134, + 1985, + 1134, + 2045, + 564, + 2045 + ], + "score": 0.9, + "latex": "m ( s , y ) = \\log p ( y | x , s ; \\tilde { \\theta } ) - \\mathrm { E } _ { Y } \\left[ \\log p ( Y | x , s ; \\tilde { \\theta } ) \\right]" + }, + { + "category_id": 14, + "poly": [ + 425, + 560, + 1273, + 560, + 1273, + 610, + 425, + 610 + ], + "score": 0.89, + "latex": "g ( \\hat { \\lambda } , \\alpha \\hat { \\eta } ) = g ( \\hat { \\lambda } , \\hat { \\eta } ) + \\nabla _ { \\eta } ^ { T } g ( \\hat { \\lambda } , \\hat { \\eta } ) ( \\alpha \\hat { \\eta } - \\hat { \\eta } ) + ( \\alpha \\hat { \\eta } - \\hat { \\eta } ) ^ { T } \\nabla _ { \\eta } ^ { 2 } g ( \\hat { \\lambda } , \\hat { \\eta } ) ( \\alpha \\hat { \\eta } - \\hat { \\eta } )" + }, + { + "category_id": 13, + "poly": [ + 1251, + 296, + 1334, + 296, + 1334, + 325, + 1251, + 325 + ], + "score": 0.89, + "latex": "\\alpha > 1" + }, + { + "category_id": 13, + "poly": [ + 1094, + 1754, + 1166, + 1754, + 1166, + 1783, + 1094, + 1783 + ], + "score": 0.89, + "latex": "\\alpha \\geq 0" + }, + { + "category_id": 14, + "poly": [ + 788, + 1526, + 911, + 1526, + 911, + 1565, + 788, + 1565 + ], + "score": 0.86, + "latex": "g _ { s } ( \\alpha ) \\geq 0" + }, + { + "category_id": 13, + "poly": [ + 356, + 1499, + 444, + 1499, + 444, + 1529, + 356, + 1529 + ], + "score": 0.86, + "latex": "\\forall \\alpha \\geq 0" + }, + { + "category_id": 13, + "poly": [ + 770, + 375, + 787, + 375, + 787, + 408, + 770, + 408 + ], + "score": 0.84, + "latex": "\\tilde { \\theta }" + }, + { + "category_id": 13, + "poly": [ + 367, + 625, + 385, + 625, + 385, + 657, + 367, + 657 + ], + "score": 0.84, + "latex": "\\hat { \\theta }" + }, + { + "category_id": 13, + "poly": [ + 548, + 1054, + 620, + 1054, + 620, + 1086, + 548, + 1086 + ], + "score": 0.82, + "latex": "y \\in \\mathcal { V }" + }, + { + "category_id": 13, + "poly": [ + 648, + 333, + 666, + 333, + 666, + 366, + 648, + 366 + ], + "score": 0.82, + "latex": "\\hat { \\theta }" + }, + { + "category_id": 13, + "poly": [ + 1195, + 519, + 1212, + 519, + 1212, + 543, + 1195, + 543 + ], + "score": 0.81, + "latex": "\\eta" + }, + { + "category_id": 13, + "poly": [ + 925, + 1052, + 1052, + 1052, + 1052, + 1087, + 925, + 1087 + ], + "score": 0.76, + "latex": "\\forall \\alpha \\in [ 0 , 1 ]" + }, + { + "category_id": 13, + "poly": [ + 652, + 1047, + 861, + 1047, + 861, + 1088, + 652, + 1088 + ], + "score": 0.73, + "latex": "p ( y | x , s ; \\hat { \\theta } ) \\geq 1 / k" + }, + { + "category_id": 13, + "poly": [ + 641, + 1265, + 655, + 1265, + 655, + 1284, + 641, + 1284 + ], + "score": 0.53, + "latex": "s" + }, + { + "category_id": 13, + "poly": [ + 569, + 1263, + 587, + 1263, + 587, + 1284, + 569, + 1284 + ], + "score": 0.43, + "latex": "x" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 225.0, + 535.0, + 225.0, + 535.0, + 267.0, + 294.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": [ + 830.0, + 2084.0, + 870.0, + 2084.0, + 870.0, + 2122.0, + 830.0, + 2122.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1378.0, + 1201.0, + 1403.0, + 1201.0, + 1403.0, + 1229.0, + 1378.0, + 1229.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1378.0, + 1757.0, + 1403.0, + 1757.0, + 1403.0, + 1785.0, + 1378.0, + 1785.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1378.0, + 883.0, + 1403.0, + 883.0, + 1403.0, + 909.0, + 1378.0, + 909.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 285.0, + 281.0, + 807.0, + 281.0, + 807.0, + 349.0, + 285.0, + 349.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 962.0, + 281.0, + 1054.0, + 281.0, + 1054.0, + 349.0, + 962.0, + 349.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1200.0, + 281.0, + 1250.0, + 281.0, + 1250.0, + 349.0, + 1200.0, + 349.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1335.0, + 281.0, + 1413.0, + 281.0, + 1413.0, + 349.0, + 1335.0, + 349.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 286.0, + 323.0, + 298.0, + 323.0, + 298.0, + 390.0, + 286.0, + 390.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 424.0, + 323.0, + 647.0, + 323.0, + 647.0, + 390.0, + 424.0, + 390.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 667.0, + 323.0, + 1414.0, + 323.0, + 1414.0, + 390.0, + 667.0, + 390.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 377.0, + 434.0, + 377.0, + 434.0, + 417.0, + 293.0, + 417.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 557.0, + 377.0, + 769.0, + 377.0, + 769.0, + 417.0, + 557.0, + 417.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 788.0, + 377.0, + 884.0, + 377.0, + 884.0, + 417.0, + 788.0, + 417.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1033.0, + 377.0, + 1117.0, + 377.0, + 1117.0, + 417.0, + 1033.0, + 417.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 623.0, + 366.0, + 623.0, + 366.0, + 668.0, + 294.0, + 668.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 386.0, + 623.0, + 746.0, + 623.0, + 746.0, + 668.0, + 386.0, + 668.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1024.0, + 623.0, + 1407.0, + 623.0, + 1407.0, + 668.0, + 1024.0, + 668.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 658.0, + 868.0, + 658.0, + 868.0, + 695.0, + 295.0, + 695.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 284.0, + 1228.0, + 568.0, + 1228.0, + 568.0, + 1307.0, + 284.0, + 1307.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 588.0, + 1228.0, + 640.0, + 1228.0, + 640.0, + 1307.0, + 588.0, + 1307.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 656.0, + 1228.0, + 785.0, + 1228.0, + 785.0, + 1307.0, + 656.0, + 1307.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1035.0, + 1228.0, + 1216.0, + 1228.0, + 1216.0, + 1307.0, + 1035.0, + 1307.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1941.0, + 606.0, + 1941.0, + 606.0, + 1974.0, + 296.0, + 1974.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1816.0, + 911.0, + 1816.0, + 911.0, + 1857.0, + 294.0, + 1857.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1053.0, + 1816.0, + 1109.0, + 1816.0, + 1109.0, + 1857.0, + 1053.0, + 1857.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1236.0, + 1816.0, + 1246.0, + 1816.0, + 1246.0, + 1857.0, + 1236.0, + 1857.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1748.0, + 333.0, + 1748.0, + 333.0, + 1792.0, + 294.0, + 1792.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 402.0, + 1748.0, + 682.0, + 1748.0, + 682.0, + 1792.0, + 402.0, + 1792.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 798.0, + 1748.0, + 905.0, + 1748.0, + 905.0, + 1792.0, + 798.0, + 1792.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1025.0, + 1748.0, + 1093.0, + 1748.0, + 1093.0, + 1792.0, + 1025.0, + 1792.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1167.0, + 1748.0, + 1177.0, + 1748.0, + 1177.0, + 1792.0, + 1167.0, + 1792.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 875.0, + 433.0, + 875.0, + 433.0, + 915.0, + 295.0, + 915.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 708.0, + 875.0, + 758.0, + 875.0, + 758.0, + 915.0, + 708.0, + 915.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 838.0, + 875.0, + 1148.0, + 875.0, + 1148.0, + 915.0, + 838.0, + 915.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 509.0, + 370.0, + 509.0, + 370.0, + 548.0, + 295.0, + 548.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 641.0, + 509.0, + 1194.0, + 509.0, + 1194.0, + 548.0, + 641.0, + 548.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1213.0, + 509.0, + 1322.0, + 509.0, + 1322.0, + 548.0, + 1213.0, + 548.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 1591.0, + 377.0, + 1591.0, + 377.0, + 1638.0, + 290.0, + 1638.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1190.0, + 1018.0, + 1190.0, + 1018.0, + 1236.0, + 292.0, + 1236.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1046.0, + 547.0, + 1046.0, + 547.0, + 1093.0, + 294.0, + 1093.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 621.0, + 1046.0, + 651.0, + 1046.0, + 651.0, + 1093.0, + 621.0, + 1093.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 862.0, + 1046.0, + 924.0, + 1046.0, + 924.0, + 1093.0, + 862.0, + 1093.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1053.0, + 1046.0, + 1056.0, + 1046.0, + 1056.0, + 1093.0, + 1053.0, + 1093.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 943.0, + 1150.0, + 943.0, + 1150.0, + 985.0, + 294.0, + 985.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 289.0, + 1439.0, + 557.0, + 1439.0, + 557.0, + 1483.0, + 289.0, + 1483.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1043.0, + 1439.0, + 1179.0, + 1439.0, + 1179.0, + 1483.0, + 1043.0, + 1483.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1295.0, + 1439.0, + 1407.0, + 1439.0, + 1407.0, + 1483.0, + 1295.0, + 1483.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1492.0, + 355.0, + 1492.0, + 355.0, + 1535.0, + 294.0, + 1535.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 445.0, + 1492.0, + 452.0, + 1492.0, + 452.0, + 1535.0, + 445.0, + 1535.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 995.0, + 608.0, + 995.0, + 608.0, + 1044.0, + 293.0, + 1044.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 752.0, + 995.0, + 761.0, + 995.0, + 761.0, + 1044.0, + 752.0, + 1044.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 19, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 8, + "poly": [ + 333, + 515, + 1365, + 515, + 1365, + 855, + 333, + 855 + ], + "score": 0.97 + }, + { + "category_id": 1, + "poly": [ + 297, + 1901, + 1405, + 1901, + 1405, + 1982, + 297, + 1982 + ], + "score": 0.96 + }, + { + "category_id": 8, + "poly": [ + 591, + 1984, + 1109, + 1984, + 1109, + 2045, + 591, + 2045 + ], + "score": 0.945 + }, + { + "category_id": 1, + "poly": [ + 293, + 1743, + 1405, + 1743, + 1405, + 1809, + 293, + 1809 + ], + "score": 0.94 + }, + { + "category_id": 8, + "poly": [ + 690, + 1130, + 1008, + 1130, + 1008, + 1173, + 690, + 1173 + ], + "score": 0.938 + }, + { + "category_id": 8, + "poly": [ + 693, + 279, + 1006, + 279, + 1006, + 322, + 693, + 322 + ], + "score": 0.931 + }, + { + "category_id": 1, + "poly": [ + 297, + 1184, + 1177, + 1184, + 1177, + 1221, + 297, + 1221 + ], + "score": 0.928 + }, + { + "category_id": 0, + "poly": [ + 297, + 1840, + 535, + 1840, + 535, + 1874, + 297, + 1874 + ], + "score": 0.927 + }, + { + "category_id": 1, + "poly": [ + 297, + 1526, + 1284, + 1526, + 1284, + 1604, + 297, + 1604 + ], + "score": 0.926 + }, + { + "category_id": 1, + "poly": [ + 297, + 1674, + 813, + 1674, + 813, + 1711, + 297, + 1711 + ], + "score": 0.924 + }, + { + "category_id": 1, + "poly": [ + 297, + 351, + 534, + 351, + 534, + 385, + 297, + 385 + ], + "score": 0.922 + }, + { + "category_id": 1, + "poly": [ + 296, + 471, + 431, + 471, + 431, + 503, + 296, + 503 + ], + "score": 0.921 + }, + { + "category_id": 1, + "poly": [ + 295, + 227, + 938, + 227, + 938, + 265, + 295, + 265 + ], + "score": 0.918 + }, + { + "category_id": 2, + "poly": [ + 297, + 73, + 816, + 73, + 816, + 106, + 297, + 106 + ], + "score": 0.917 + }, + { + "category_id": 8, + "poly": [ + 420, + 1235, + 1276, + 1235, + 1276, + 1281, + 420, + 1281 + ], + "score": 0.915 + }, + { + "category_id": 8, + "poly": [ + 446, + 401, + 1252, + 401, + 1252, + 456, + 446, + 456 + ], + "score": 0.913 + }, + { + "category_id": 1, + "poly": [ + 296, + 1079, + 1348, + 1079, + 1348, + 1116, + 296, + 1116 + ], + "score": 0.911 + }, + { + "category_id": 1, + "poly": [ + 296, + 1309, + 495, + 1309, + 495, + 1342, + 296, + 1342 + ], + "score": 0.907 + }, + { + "category_id": 8, + "poly": [ + 486, + 1464, + 1212, + 1464, + 1212, + 1508, + 486, + 1508 + ], + "score": 0.891 + }, + { + "category_id": 9, + "poly": [ + 1351, + 1136, + 1401, + 1136, + 1401, + 1167, + 1351, + 1167 + ], + "score": 0.891 + }, + { + "category_id": 1, + "poly": [ + 303, + 1413, + 1297, + 1413, + 1297, + 1450, + 303, + 1450 + ], + "score": 0.882 + }, + { + "category_id": 8, + "poly": [ + 424, + 1617, + 1275, + 1617, + 1275, + 1663, + 424, + 1663 + ], + "score": 0.877 + }, + { + "category_id": 2, + "poly": [ + 834, + 2087, + 864, + 2087, + 864, + 2114, + 834, + 2114 + ], + "score": 0.824 + }, + { + "category_id": 8, + "poly": [ + 373, + 1359, + 1317, + 1359, + 1317, + 1404, + 373, + 1404 + ], + "score": 0.813 + }, + { + "category_id": 2, + "poly": [ + 1374, + 1677, + 1403, + 1677, + 1403, + 1708, + 1374, + 1708 + ], + "score": 0.8 + }, + { + "category_id": 1, + "poly": [ + 296, + 871, + 1177, + 871, + 1177, + 924, + 296, + 924 + ], + "score": 0.793 + }, + { + "category_id": 1, + "poly": [ + 298, + 1013, + 575, + 1013, + 575, + 1046, + 298, + 1046 + ], + "score": 0.719 + }, + { + "category_id": 2, + "poly": [ + 1374, + 1014, + 1403, + 1014, + 1403, + 1044, + 1374, + 1044 + ], + "score": 0.618 + }, + { + "category_id": 8, + "poly": [ + 299, + 942, + 1403, + 942, + 1403, + 1000, + 299, + 1000 + ], + "score": 0.587 + }, + { + "category_id": 1, + "poly": [ + 373, + 1359, + 1317, + 1359, + 1317, + 1404, + 373, + 1404 + ], + "score": 0.121 + }, + { + "category_id": 2, + "poly": [ + 834, + 2087, + 864, + 2087, + 864, + 2114, + 834, + 2114 + ], + "score": 0.119 + }, + { + "category_id": 14, + "poly": [ + 332, + 513, + 1368, + 513, + 1368, + 857, + 332, + 857 + ], + "score": 0.96, + "latex": "\\begin{array} { r c l } { \\big ( \\mathrm { V a r } _ { Y } [ m ( s , Y ) ] \\big ) ^ { 1 / 2 } } & { = } & { \\sqrt { \\mathrm { E } _ { Y } \\left[ \\Big ( \\log p ( Y | x , s ; \\widetilde { \\theta } ) - \\mathrm { E } _ { Y } \\left[ \\log p ( Y | x , s ; \\widetilde { \\theta } ) \\right] \\Big ) ^ { 2 } \\right] } } \\\\ & { \\ge } & { \\mathrm { E } _ { Y } \\left[ \\Big | \\log p ( Y | x , s ; \\widetilde { \\theta } ) - \\mathrm { E } _ { Y } \\left[ \\log p ( Y | x , s ; \\widetilde { \\theta } ) \\right] \\Big | \\right] } \\\\ & { = } & { \\mathrm { E } _ { Y } \\left[ \\Big | K L \\left( p ( \\cdot | x , s ; \\widetilde { \\theta } ) | \\mathrm { U n i f } ( y ) \\right) + \\log 1 / k - \\log p ( Y | x , s ; \\widetilde { \\theta } ) \\Big | \\right] } \\\\ & { = } & { \\mathrm { E } _ { Y } \\left[ K L \\left( p ( \\cdot | x , s ; \\widetilde { \\theta } ) | \\mathrm { U n i f } ( y ) \\right) + \\Big | \\log 1 / k - \\log p ( Y | x , s ; \\widetilde { \\theta } ) \\Big | \\right] } \\\\ & { \\ge } & { K L \\left( p ( \\cdot | x , s ; \\widetilde { \\theta } ) | \\mathrm { U n i f } ( y ) \\right) + \\mathrm { E } _ { Y } \\left[ \\log p ( Y | x , s ; \\widetilde { \\theta } ) - \\log 1 / k \\right] } \\\\ & { = } & { 2 K L \\left( p ( \\cdot | x , s ; \\widetilde { \\theta } ) | \\mathrm { U n i f } ( y ) \\right) + \\mathrm { E } _ { Y } \\left[ \\log p ( Y | x , s ; \\widetilde { \\theta } ) - \\log 1 / k \\right] } \\\\ & { = } & { 2 K L \\left( p ( \\cdot | x , s ; \\widetilde { \\theta } ) | \\mathrm { U n i f } ( y ) \\right) } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 298, + 1945, + 445, + 1945, + 445, + 1984, + 298, + 1984 + ], + "score": 0.94, + "latex": "V ( D ; \\tilde { \\theta } ) \\le \\delta" + }, + { + "category_id": 13, + "poly": [ + 397, + 1414, + 591, + 1414, + 591, + 1450, + 397, + 1450 + ], + "score": 0.94, + "latex": "f ( 0 ) = f ( 1 ) = 0" + }, + { + "category_id": 13, + "poly": [ + 937, + 1903, + 1122, + 1903, + 1122, + 1949, + 937, + 1949 + ], + "score": 0.94, + "latex": "\\begin{array} { r } { \\alpha = \\frac { \\delta } { 4 \\beta \\| \\hat { \\eta } \\| _ { 2 } } \\leq 1 } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 709, + 1902, + 850, + 1902, + 850, + 1941, + 709, + 1941 + ], + "score": 0.94, + "latex": "\\tilde { \\theta } = \\{ \\hat { \\lambda } , \\alpha \\hat { \\eta } \\}" + }, + { + "category_id": 13, + "poly": [ + 432, + 1675, + 576, + 1675, + 576, + 1711, + 432, + 1711 + ], + "score": 0.93, + "latex": "\\nabla ^ { 2 } f ( \\alpha ) \\leq 0" + }, + { + "category_id": 13, + "poly": [ + 334, + 871, + 693, + 871, + 693, + 928, + 334, + 928 + ], + "score": 0.93, + "latex": "K L \\left( p ( \\cdot | x , s ; \\tilde { \\theta } ) | \\mathrm { U n i f } ( y ) \\right) \\geq 0" + }, + { + "category_id": 14, + "poly": [ + 591, + 1979, + 1108, + 1979, + 1108, + 2045, + 591, + 2045 + ], + "score": 0.93, + "latex": "\\Delta _ { l } ( \\hat { \\theta } , \\hat { \\theta } _ { \\delta } ) \\leq \\Delta _ { l } ( \\hat { \\theta } , \\tilde { \\theta } ) = \\frac { 1 } { n } ( l ( D ; \\hat { \\theta } ) - l ( D ; \\tilde { \\theta } ) )" + }, + { + "category_id": 13, + "poly": [ + 371, + 1533, + 482, + 1533, + 482, + 1567, + 371, + 1567 + ], + "score": 0.93, + "latex": "S | Y = y _ { i }" + }, + { + "category_id": 13, + "poly": [ + 1014, + 1082, + 1154, + 1082, + 1154, + 1116, + 1014, + 1116 + ], + "score": 0.93, + "latex": "( x _ { i } , y _ { i } ) \\in D" + }, + { + "category_id": 13, + "poly": [ + 744, + 1186, + 884, + 1186, + 884, + 1220, + 744, + 1220 + ], + "score": 0.92, + "latex": "( x _ { i } , y _ { i } ) \\in D" + }, + { + "category_id": 13, + "poly": [ + 755, + 230, + 873, + 230, + 873, + 264, + 755, + 264 + ], + "score": 0.92, + "latex": "g _ { s } ( \\alpha ) \\geq 0" + }, + { + "category_id": 13, + "poly": [ + 903, + 1416, + 961, + 1416, + 961, + 1449, + 903, + 1449 + ], + "score": 0.92, + "latex": "f ( \\alpha )" + }, + { + "category_id": 13, + "poly": [ + 1212, + 1082, + 1337, + 1082, + 1337, + 1116, + 1212, + 1116 + ], + "score": 0.92, + "latex": "\\forall \\alpha \\in [ 0 , 1 ]" + }, + { + "category_id": 14, + "poly": [ + 449, + 398, + 1250, + 398, + 1250, + 458, + 449, + 458 + ], + "score": 0.91, + "latex": "\\begin{array} { r } { m ( s , y ) = \\log p ( y | x , s ; \\tilde { \\theta } ) - \\log 1 / k - K L \\left( p ( \\cdot | x , s ; \\tilde { \\theta } ) | \\mathrm { U n i f } ( \\mathcal { V } ) \\right) \\leq 0 } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 743, + 877, + 1032, + 877, + 1032, + 917, + 743, + 917 + ], + "score": 0.91, + "latex": "\\log p ( y | x , s ; \\tilde { \\theta } ) \\geq \\log 1 / k" + }, + { + "category_id": 14, + "poly": [ + 687, + 1130, + 1010, + 1130, + 1010, + 1171, + 687, + 1171 + ], + "score": 0.91, + "latex": "\\operatorname { V a r } _ { Y } [ m ( s , Y ) ] \\geq m ( s , y _ { i } ) ^ { 2 }" + }, + { + "category_id": 14, + "poly": [ + 484, + 1463, + 1215, + 1463, + 1215, + 1507, + 484, + 1507 + ], + "score": 0.91, + "latex": "\\nabla ^ { 2 } f ( \\alpha ) = - \\mathrm { E } _ { S \\left. Y = y _ { i } \\right. } \\left[ \\mathrm { V a r } _ { Y } \\left[ m ( S , Y ) \\right] \\right] + \\mathrm { V a r } _ { S \\left. Y = y _ { i } \\right. } \\left[ m ( S , y _ { i } ) \\right]" + }, + { + "category_id": 14, + "poly": [ + 692, + 278, + 1005, + 278, + 1005, + 320, + 692, + 320 + ], + "score": 0.9, + "latex": "\\operatorname { V a r } _ { Y } [ m ( s , Y ) ] \\geq m ( s , y ) ^ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 943, + 1186, + 1069, + 1186, + 1069, + 1220, + 943, + 1220 + ], + "score": 0.9, + "latex": "\\forall \\alpha \\in [ 0 , 1 ]" + }, + { + "category_id": 13, + "poly": [ + 885, + 1522, + 1287, + 1522, + 1287, + 1577, + 885, + 1577 + ], + "score": 0.9, + "latex": "\\begin{array} { r } { p ( s | Y = y _ { i } , x _ { i } ; \\tilde { \\theta } ) = \\frac { p ( y _ { i } | x _ { i } , S ; \\tilde { \\theta } ) p ( s ) } { p ( y _ { i } | x _ { i } ; \\tilde { \\theta } ) } } \\end{array}" + }, + { + "category_id": 14, + "poly": [ + 422, + 1233, + 1275, + 1233, + 1275, + 1278, + 422, + 1278 + ], + "score": 0.89, + "latex": "\\log p ( y _ { i } | x _ { i } ; \\{ \\hat { \\lambda } , \\alpha \\hat { \\eta } \\} ) \\ge ( 1 - \\alpha ) \\log p ( y _ { i } | x _ { i } ; \\{ \\hat { \\lambda } , 0 \\} ) + \\alpha \\log p ( y _ { i } | x _ { i } ; \\{ \\hat { \\lambda } , \\hat { \\eta } \\} )" + }, + { + "category_id": 14, + "poly": [ + 377, + 1355, + 1323, + 1355, + 1323, + 1401, + 377, + 1401 + ], + "score": 0.88, + "latex": "f ( \\alpha ) = \\log p ( y _ { i } | x _ { i } ; \\{ \\hat { \\lambda } , \\alpha \\hat { \\eta } \\} ) - ( 1 - \\alpha ) \\log p ( y _ { i } | x _ { i } ; \\{ \\hat { \\lambda } , 0 \\} ) - \\alpha \\log p ( y _ { i } | x _ { i } ; \\{ \\hat { \\lambda } , \\hat { \\eta } \\} )" + }, + { + "category_id": 14, + "poly": [ + 424, + 1616, + 1275, + 1616, + 1275, + 1661, + 424, + 1661 + ], + "score": 0.88, + "latex": "\\mathrm { E } _ { S | Y = y _ { i } } \\left[ \\operatorname { V a r } _ { Y } \\left[ m ( S , Y ) \\right] \\right] \\geq \\mathrm { E } _ { S | Y = y _ { i } } \\left[ m ( S , y _ { i } ) ^ { 2 } \\right] \\geq \\operatorname { V a r } _ { S | Y = y _ { i } } \\left[ m ( S , y _ { i } ) \\right]" + }, + { + "category_id": 14, + "poly": [ + 310, + 940, + 1404, + 940, + 1404, + 1002, + 310, + 1002 + ], + "score": 0.86, + "latex": "\\cdot K L \\left( p ( \\cdot | x , s ; \\tilde { \\theta } ) | \\mathrm { U n i f } ( y ) \\right) \\geq K L \\left( p ( \\cdot | x , s ; \\tilde { \\theta } ) | \\mathrm { U n i f } ( y ) \\right) + \\log 1 / k - \\log p ( y | x , s ; \\tilde { \\theta } ) = - m ( s , y )" + }, + { + "category_id": 13, + "poly": [ + 1290, + 1904, + 1307, + 1904, + 1307, + 1935, + 1290, + 1935 + ], + "score": 0.84, + "latex": "\\tilde { \\theta }" + }, + { + "category_id": 13, + "poly": [ + 672, + 231, + 705, + 231, + 705, + 259, + 672, + 259 + ], + "score": 0.6, + "latex": "^ { 1 7 }" + }, + { + "category_id": 13, + "poly": [ + 1123, + 1415, + 1179, + 1415, + 1179, + 1449, + 1123, + 1449 + ], + "score": 0.25, + "latex": "[ 0 , 1 ]" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1837.0, + 536.0, + 1837.0, + 536.0, + 1879.0, + 294.0, + 1879.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": [ + 830.0, + 2085.0, + 868.0, + 2085.0, + 868.0, + 2124.0, + 830.0, + 2124.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1377.0, + 1682.0, + 1403.0, + 1682.0, + 1403.0, + 1708.0, + 1377.0, + 1708.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1376.0, + 1017.0, + 1404.0, + 1017.0, + 1404.0, + 1048.0, + 1376.0, + 1048.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 830.0, + 2085.0, + 868.0, + 2085.0, + 868.0, + 2124.0, + 830.0, + 2124.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 285.0, + 1891.0, + 708.0, + 1891.0, + 708.0, + 1966.0, + 285.0, + 1966.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 851.0, + 1891.0, + 936.0, + 1891.0, + 936.0, + 1966.0, + 851.0, + 1966.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1123.0, + 1891.0, + 1289.0, + 1891.0, + 1289.0, + 1966.0, + 1123.0, + 1966.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1308.0, + 1891.0, + 1415.0, + 1891.0, + 1415.0, + 1966.0, + 1308.0, + 1966.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1940.0, + 297.0, + 1940.0, + 297.0, + 1990.0, + 293.0, + 1990.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 446.0, + 1940.0, + 530.0, + 1940.0, + 530.0, + 1990.0, + 446.0, + 1990.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1742.0, + 1406.0, + 1742.0, + 1406.0, + 1781.0, + 294.0, + 1781.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1776.0, + 491.0, + 1776.0, + 491.0, + 1807.0, + 293.0, + 1807.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1183.0, + 743.0, + 1183.0, + 743.0, + 1224.0, + 295.0, + 1224.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 885.0, + 1183.0, + 942.0, + 1183.0, + 942.0, + 1224.0, + 885.0, + 1224.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1070.0, + 1183.0, + 1178.0, + 1183.0, + 1178.0, + 1224.0, + 1070.0, + 1224.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1569.0, + 568.0, + 1569.0, + 568.0, + 1607.0, + 294.0, + 1607.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 287.0, + 1517.0, + 1297.0, + 1517.0, + 1297.0, + 1576.0, + 287.0, + 1576.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1670.0, + 431.0, + 1670.0, + 431.0, + 1714.0, + 295.0, + 1714.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 577.0, + 1670.0, + 817.0, + 1670.0, + 817.0, + 1714.0, + 577.0, + 1714.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 347.0, + 535.0, + 347.0, + 535.0, + 389.0, + 294.0, + 389.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 466.0, + 433.0, + 466.0, + 433.0, + 506.0, + 294.0, + 506.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 229.0, + 671.0, + 229.0, + 671.0, + 266.0, + 296.0, + 266.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 706.0, + 229.0, + 754.0, + 229.0, + 754.0, + 266.0, + 706.0, + 266.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 874.0, + 229.0, + 940.0, + 229.0, + 940.0, + 266.0, + 874.0, + 266.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1079.0, + 1013.0, + 1079.0, + 1013.0, + 1120.0, + 293.0, + 1120.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1155.0, + 1079.0, + 1211.0, + 1079.0, + 1211.0, + 1120.0, + 1155.0, + 1120.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1338.0, + 1079.0, + 1349.0, + 1079.0, + 1349.0, + 1120.0, + 1338.0, + 1120.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1307.0, + 498.0, + 1307.0, + 498.0, + 1346.0, + 294.0, + 1346.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1412.0, + 396.0, + 1412.0, + 396.0, + 1453.0, + 296.0, + 1453.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 592.0, + 1412.0, + 902.0, + 1412.0, + 902.0, + 1453.0, + 592.0, + 1453.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 962.0, + 1412.0, + 1122.0, + 1412.0, + 1122.0, + 1453.0, + 962.0, + 1453.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1180.0, + 1412.0, + 1295.0, + 1412.0, + 1295.0, + 1453.0, + 1180.0, + 1453.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 287.0, + 863.0, + 333.0, + 863.0, + 333.0, + 930.0, + 287.0, + 930.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 694.0, + 863.0, + 742.0, + 863.0, + 742.0, + 930.0, + 694.0, + 930.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1033.0, + 863.0, + 1187.0, + 863.0, + 1187.0, + 930.0, + 1033.0, + 930.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1011.0, + 579.0, + 1011.0, + 579.0, + 1049.0, + 294.0, + 1049.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 20, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 298, + 888, + 1405, + 888, + 1405, + 1104, + 298, + 1104 + ], + "score": 0.98 + }, + { + "category_id": 1, + "poly": [ + 298, + 1367, + 1405, + 1367, + 1405, + 1582, + 298, + 1582 + ], + "score": 0.978 + }, + { + "category_id": 1, + "poly": [ + 299, + 1198, + 1403, + 1198, + 1403, + 1351, + 299, + 1351 + ], + "score": 0.976 + }, + { + "category_id": 1, + "poly": [ + 298, + 1675, + 1405, + 1675, + 1405, + 1803, + 298, + 1803 + ], + "score": 0.972 + }, + { + "category_id": 1, + "poly": [ + 298, + 762, + 1404, + 762, + 1404, + 855, + 298, + 855 + ], + "score": 0.97 + }, + { + "category_id": 8, + "poly": [ + 514, + 351, + 1189, + 351, + 1189, + 556, + 514, + 556 + ], + "score": 0.964 + }, + { + "category_id": 1, + "poly": [ + 298, + 230, + 593, + 230, + 593, + 261, + 298, + 261 + ], + "score": 0.923 + }, + { + "category_id": 8, + "poly": [ + 481, + 273, + 1215, + 273, + 1215, + 318, + 481, + 318 + ], + "score": 0.918 + }, + { + "category_id": 0, + "poly": [ + 296, + 635, + 970, + 635, + 970, + 672, + 296, + 672 + ], + "score": 0.918 + }, + { + "category_id": 2, + "poly": [ + 298, + 74, + 815, + 74, + 815, + 105, + 298, + 105 + ], + "score": 0.903 + }, + { + "category_id": 1, + "poly": [ + 299, + 705, + 815, + 705, + 815, + 737, + 299, + 737 + ], + "score": 0.899 + }, + { + "category_id": 1, + "poly": [ + 296, + 331, + 334, + 331, + 334, + 361, + 296, + 361 + ], + "score": 0.885 + }, + { + "category_id": 0, + "poly": [ + 298, + 1618, + 967, + 1618, + 967, + 1651, + 298, + 1651 + ], + "score": 0.88 + }, + { + "category_id": 0, + "poly": [ + 301, + 1142, + 734, + 1142, + 734, + 1173, + 301, + 1173 + ], + "score": 0.864 + }, + { + "category_id": 2, + "poly": [ + 835, + 2088, + 865, + 2088, + 865, + 2113, + 835, + 2113 + ], + "score": 0.856 + }, + { + "category_id": 2, + "poly": [ + 1374, + 560, + 1404, + 560, + 1404, + 591, + 1374, + 591 + ], + "score": 0.82 + }, + { + "category_id": 13, + "poly": [ + 703, + 1259, + 898, + 1259, + 898, + 1293, + 703, + 1293 + ], + "score": 0.93, + "latex": "\\eta _ { t } = \\eta _ { 0 } / ( 1 + \\rho t )" + }, + { + "category_id": 13, + "poly": [ + 938, + 795, + 1028, + 795, + 1028, + 825, + 938, + 825 + ], + "score": 0.91, + "latex": "p = 0 . 5" + }, + { + "category_id": 14, + "poly": [ + 513, + 351, + 1189, + 351, + 1189, + 558, + 513, + 558 + ], + "score": 0.91, + "latex": "\\begin{array} { r c l } { \\Delta _ { l } ( \\hat { \\theta } , \\hat { \\theta } _ { \\delta } ) } & { \\leq } & { ( 1 - \\alpha ) \\frac { 1 } { n } \\left( l ( D ; \\hat { \\theta } ) - l ( D ; \\{ \\hat { \\lambda } , 0 \\} ) \\right) } \\\\ & { = } & { ( 1 - \\alpha ) \\frac { 1 } { n } \\displaystyle \\sum _ { i = 1 } ^ { n } \\log p ( y _ { i } | x _ { i } ; \\hat { \\theta } ) - \\log \\mathrm { U n i f } ( \\mathcal { V } ) } \\\\ & { \\asymp } & { ( 1 - \\alpha ) \\mathrm { E } \\left[ \\mathrm { K L } \\left( p ( \\cdot | X ; \\theta ) \\| \\mathrm { U n i f } ( \\mathcal { V } ) \\right) \\right] } \\\\ & { \\le } & { \\left( 1 - \\frac { \\delta } { 4 \\beta \\| \\hat { \\eta } \\| _ { 2 } } \\right) \\mathrm { E } \\left[ \\mathrm { K L } \\left( p ( \\cdot | X ; \\theta ) \\| \\mathrm { U n i f } ( \\mathcal { V } ) \\right) \\right] } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 1148, + 982, + 1211, + 982, + 1211, + 1011, + 1148, + 1011 + ], + "score": 0.9, + "latex": "3 \\times 3" + }, + { + "category_id": 13, + "poly": [ + 1312, + 795, + 1402, + 795, + 1402, + 825, + 1312, + 825 + ], + "score": 0.9, + "latex": "p = 0 . 2" + }, + { + "category_id": 13, + "poly": [ + 1012, + 952, + 1078, + 952, + 1078, + 980, + 1012, + 980 + ], + "score": 0.89, + "latex": "5 \\times 5" + }, + { + "category_id": 13, + "poly": [ + 1027, + 1042, + 1402, + 1042, + 1402, + 1076, + 1027, + 1076 + ], + "score": 0.88, + "latex": "p = ( 0 . 1 , 0 . 2 5 , 0 . 2 5 , 0 . 5 , 0 . 5 , 0 . 5 )" + }, + { + "category_id": 14, + "poly": [ + 484, + 272, + 1214, + 272, + 1214, + 316, + 484, + 316 + ], + "score": 0.86, + "latex": "l ( D ; \\tilde { \\theta } ) = l ( D ; \\{ \\hat { \\lambda } , \\alpha \\hat { \\eta } \\} ) \\geq ( 1 - \\alpha ) l ( D ; \\{ \\hat { \\lambda } , 0 \\} ) + \\alpha l ( D ; \\{ \\hat { \\lambda } , \\hat { \\eta } \\} )" + }, + { + "category_id": 13, + "poly": [ + 1096, + 1233, + 1126, + 1233, + 1126, + 1261, + 1096, + 1261 + ], + "score": 0.86, + "latex": "\\eta _ { 0 }" + }, + { + "category_id": 13, + "poly": [ + 982, + 1265, + 1001, + 1265, + 1001, + 1292, + 982, + 1292 + ], + "score": 0.82, + "latex": "\\rho" + }, + { + "category_id": 13, + "poly": [ + 346, + 1768, + 372, + 1768, + 372, + 1800, + 346, + 1800 + ], + "score": 0.78, + "latex": "\\hat { \\Delta }" + }, + { + "category_id": 13, + "poly": [ + 720, + 1739, + 739, + 1739, + 739, + 1765, + 720, + 1765 + ], + "score": 0.77, + "latex": "\\lambda" + }, + { + "category_id": 13, + "poly": [ + 582, + 1709, + 602, + 1709, + 602, + 1735, + 582, + 1735 + ], + "score": 0.76, + "latex": "\\lambda" + }, + { + "category_id": 13, + "poly": [ + 1233, + 1262, + 1247, + 1262, + 1247, + 1287, + 1233, + 1287 + ], + "score": 0.72, + "latex": "t" + }, + { + "category_id": 13, + "poly": [ + 1112, + 1678, + 1131, + 1678, + 1131, + 1704, + 1112, + 1704 + ], + "score": 0.7, + "latex": "\\lambda" + }, + { + "category_id": 13, + "poly": [ + 946, + 1621, + 967, + 1621, + 967, + 1647, + 946, + 1647 + ], + "score": 0.31, + "latex": "\\lambda" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 634.0, + 973.0, + 634.0, + 973.0, + 677.0, + 293.0, + 677.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": [ + 295.0, + 1618.0, + 945.0, + 1618.0, + 945.0, + 1654.0, + 295.0, + 1654.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1140.0, + 737.0, + 1140.0, + 737.0, + 1176.0, + 296.0, + 1176.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 831.0, + 2085.0, + 869.0, + 2085.0, + 869.0, + 2124.0, + 831.0, + 2124.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1379.0, + 565.0, + 1403.0, + 565.0, + 1403.0, + 592.0, + 1379.0, + 592.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 889.0, + 1408.0, + 889.0, + 1408.0, + 923.0, + 297.0, + 923.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 921.0, + 1405.0, + 921.0, + 1405.0, + 955.0, + 295.0, + 955.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 949.0, + 1011.0, + 949.0, + 1011.0, + 987.0, + 293.0, + 987.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1079.0, + 949.0, + 1407.0, + 949.0, + 1407.0, + 987.0, + 1079.0, + 987.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 980.0, + 1147.0, + 980.0, + 1147.0, + 1017.0, + 293.0, + 1017.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1212.0, + 980.0, + 1405.0, + 980.0, + 1405.0, + 1017.0, + 1212.0, + 1017.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1012.0, + 1402.0, + 1012.0, + 1402.0, + 1043.0, + 296.0, + 1043.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1042.0, + 1026.0, + 1042.0, + 1026.0, + 1080.0, + 293.0, + 1080.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1403.0, + 1042.0, + 1407.0, + 1042.0, + 1407.0, + 1080.0, + 1403.0, + 1080.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1074.0, + 1192.0, + 1074.0, + 1192.0, + 1108.0, + 295.0, + 1108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1365.0, + 1405.0, + 1365.0, + 1405.0, + 1402.0, + 293.0, + 1402.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1397.0, + 1405.0, + 1397.0, + 1405.0, + 1434.0, + 293.0, + 1434.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1429.0, + 1405.0, + 1429.0, + 1405.0, + 1462.0, + 293.0, + 1462.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1458.0, + 1405.0, + 1458.0, + 1405.0, + 1494.0, + 293.0, + 1494.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1486.0, + 1406.0, + 1486.0, + 1406.0, + 1526.0, + 292.0, + 1526.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1520.0, + 1407.0, + 1520.0, + 1407.0, + 1558.0, + 293.0, + 1558.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1551.0, + 574.0, + 1551.0, + 574.0, + 1585.0, + 293.0, + 1585.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1198.0, + 1404.0, + 1198.0, + 1404.0, + 1231.0, + 297.0, + 1231.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1228.0, + 1095.0, + 1228.0, + 1095.0, + 1263.0, + 294.0, + 1263.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1127.0, + 1228.0, + 1405.0, + 1228.0, + 1405.0, + 1263.0, + 1127.0, + 1263.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1257.0, + 702.0, + 1257.0, + 702.0, + 1298.0, + 293.0, + 1298.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 899.0, + 1257.0, + 981.0, + 1257.0, + 981.0, + 1298.0, + 899.0, + 1298.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1002.0, + 1257.0, + 1232.0, + 1257.0, + 1232.0, + 1298.0, + 1002.0, + 1298.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1248.0, + 1257.0, + 1408.0, + 1257.0, + 1408.0, + 1298.0, + 1248.0, + 1298.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1285.0, + 1407.0, + 1285.0, + 1407.0, + 1330.0, + 292.0, + 1330.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1322.0, + 742.0, + 1322.0, + 742.0, + 1355.0, + 295.0, + 1355.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1676.0, + 1111.0, + 1676.0, + 1111.0, + 1709.0, + 295.0, + 1709.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1132.0, + 1676.0, + 1405.0, + 1676.0, + 1405.0, + 1709.0, + 1132.0, + 1709.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1707.0, + 581.0, + 1707.0, + 581.0, + 1740.0, + 293.0, + 1740.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 603.0, + 1707.0, + 1408.0, + 1707.0, + 1408.0, + 1740.0, + 603.0, + 1740.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1738.0, + 719.0, + 1738.0, + 719.0, + 1771.0, + 295.0, + 1771.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 740.0, + 1738.0, + 1405.0, + 1738.0, + 1405.0, + 1771.0, + 740.0, + 1771.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 289.0, + 1768.0, + 345.0, + 1768.0, + 345.0, + 1803.0, + 289.0, + 1803.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 373.0, + 1768.0, + 383.0, + 1768.0, + 383.0, + 1803.0, + 373.0, + 1803.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 759.0, + 1405.0, + 759.0, + 1405.0, + 799.0, + 292.0, + 799.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 790.0, + 937.0, + 790.0, + 937.0, + 829.0, + 292.0, + 829.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1029.0, + 790.0, + 1311.0, + 790.0, + 1311.0, + 829.0, + 1029.0, + 829.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1403.0, + 790.0, + 1408.0, + 790.0, + 1408.0, + 829.0, + 1403.0, + 829.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 823.0, + 508.0, + 823.0, + 508.0, + 861.0, + 294.0, + 861.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 230.0, + 595.0, + 230.0, + 595.0, + 263.0, + 296.0, + 263.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 705.0, + 819.0, + 705.0, + 819.0, + 741.0, + 295.0, + 741.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 329.0, + 337.0, + 329.0, + 337.0, + 365.0, + 292.0, + 365.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 21, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 5, + "poly": [ + 295, + 1399, + 1460, + 1399, + 1460, + 1848, + 295, + 1848 + ], + "score": 0.985, + "html": "
Experiment
0.00.51.02.03.05.07.010.0
MNISTmodel 11.231.121.121.081.071.101.251.35
model 21.191.141.081.041.031.071.131.21
model 31.051.040.981.031.051.051.101.12
model 41.071.020.970.940.961.011.051.20
model 5 model 61.030.950.950.900.920.981.031.08
0.990.980.930.87 入0.960.981.051.10
error rate0.0 12.820.1 12.520.5 12.381.0 12.202.0 12.605.0 12.8410.0 13.10
CIFAR-10 CIFAR-100A error rate0.01390.01280.01040.00950.00890.00850.0077 38.01
A37.22 0.088136.75 0.071136.25 0.059037.01 0.052937.18 0.050037.58 0.04670.0411
" + }, + { + "category_id": 5, + "poly": [ + 403, + 463, + 1297, + 463, + 1297, + 960, + 403, + 960 + ], + "score": 0.985, + "html": "
ExperimentHyper-parameter
MNISTbatch sizeinitial learning rate modecay rate pmomentummomentum typemax-norm constrain2000.10.0250.9standard3.5
CIFARbatch sizeinitial learning rate nofor conv layersinitial learning rate nofor dense layersdecay rate pmomentummomentum typemax-norm constrainL2-norm decay10 100
100 1000.001 0.0010.1 0.020.005 0.0050.95 0.95standard nesterov4.0 2.00.001 0.001
" + }, + { + "category_id": 6, + "poly": [ + 588, + 406, + 1110, + 406, + 1110, + 440, + 588, + 440 + ], + "score": 0.915 + }, + { + "category_id": 6, + "poly": [ + 518, + 1341, + 1179, + 1341, + 1179, + 1374, + 518, + 1374 + ], + "score": 0.908 + }, + { + "category_id": 2, + "poly": [ + 299, + 75, + 815, + 75, + 815, + 105, + 299, + 105 + ], + "score": 0.896 + }, + { + "category_id": 2, + "poly": [ + 834, + 2088, + 865, + 2088, + 865, + 2113, + 834, + 2113 + ], + "score": 0.859 + }, + { + "category_id": 13, + "poly": [ + 811, + 777, + 841, + 777, + 841, + 804, + 811, + 804 + ], + "score": 0.84, + "latex": "\\eta _ { 0 }" + }, + { + "category_id": 13, + "poly": [ + 811, + 747, + 841, + 747, + 841, + 773, + 811, + 773 + ], + "score": 0.81, + "latex": "\\eta _ { 0 }" + }, + { + "category_id": 13, + "poly": [ + 714, + 809, + 733, + 809, + 733, + 835, + 714, + 835 + ], + "score": 0.69, + "latex": "\\rho" + }, + { + "category_id": 13, + "poly": [ + 1152, + 1343, + 1171, + 1343, + 1171, + 1369, + 1152, + 1369 + ], + "score": 0.62, + "latex": "\\lambda" + }, + { + "category_id": 13, + "poly": [ + 526, + 1805, + 555, + 1805, + 555, + 1839, + 526, + 1839 + ], + "score": 0.62, + "latex": "\\hat { \\Delta }" + }, + { + "category_id": 13, + "poly": [ + 526, + 1739, + 555, + 1739, + 555, + 1772, + 526, + 1772 + ], + "score": 0.51, + "latex": "\\hat { \\Delta }" + }, + { + "category_id": 13, + "poly": [ + 812, + 534, + 841, + 534, + 841, + 560, + 812, + 560 + ], + "score": 0.33, + "latex": "\\eta _ { 0 }" + }, + { + "category_id": 13, + "poly": [ + 714, + 564, + 733, + 564, + 733, + 590, + 714, + 590 + ], + "score": 0.26, + "latex": "\\rho" + }, + { + "category_id": 15, + "poly": [ + 584.0, + 403.0, + 1113.0, + 403.0, + 1113.0, + 444.0, + 584.0, + 444.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 518.0, + 1340.0, + 1151.0, + 1340.0, + 1151.0, + 1376.0, + 518.0, + 1376.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1172.0, + 1340.0, + 1180.0, + 1340.0, + 1180.0, + 1376.0, + 1172.0, + 1376.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": [ + 830.0, + 2085.0, + 870.0, + 2085.0, + 870.0, + 2123.0, + 830.0, + 2123.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 22, + "width": 1700, + "height": 2200 + } + } +] \ No newline at end of file diff --git a/vlm/train/3AOj0RCNC2/0.png b/vlm/train/3AOj0RCNC2/0.png new file mode 100644 index 0000000000000000000000000000000000000000..34e311207d606674e0f2252139eccd0ac723dc79 --- /dev/null +++ b/vlm/train/3AOj0RCNC2/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:82f000f29112869f9dbf7f36b0d6ee12c3b7177865ad7e898f734b6db2289b8f +size 512626 diff --git a/vlm/train/3AOj0RCNC2/1.png b/vlm/train/3AOj0RCNC2/1.png new file mode 100644 index 0000000000000000000000000000000000000000..09c12f74f94ff9fadc91a9b7ee5154591fc4037d --- /dev/null +++ b/vlm/train/3AOj0RCNC2/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cd47a87f8aa11a7e614676646de021dc20f58b0b036ffe7ebabfba9db5cd01fe +size 648559 diff --git a/vlm/train/3AOj0RCNC2/10.png b/vlm/train/3AOj0RCNC2/10.png new file mode 100644 index 0000000000000000000000000000000000000000..832ecb82f2f5b97cdaa1e1c45049e2c0da0c5f1e --- /dev/null +++ b/vlm/train/3AOj0RCNC2/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:05eff9da03604a087d43a44e10ca64b5fcd3f20142f3b5f158f4b1fef77a2fb2 +size 559262 diff --git a/vlm/train/3AOj0RCNC2/11.png b/vlm/train/3AOj0RCNC2/11.png new file mode 100644 index 0000000000000000000000000000000000000000..cd6ab44c3daaed78ce9df01cb5b4bdc592cb7e9c --- /dev/null +++ b/vlm/train/3AOj0RCNC2/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e46ad335083362a67ef505424189ec9847fa1662e4a8aea2abbc5988b8a0c7fa +size 254943 diff --git a/vlm/train/3AOj0RCNC2/12.png b/vlm/train/3AOj0RCNC2/12.png new file mode 100644 index 0000000000000000000000000000000000000000..d9c1113871c9022640a3950e1e4f489cb98a5b56 --- /dev/null +++ b/vlm/train/3AOj0RCNC2/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:00846b095ed265039d8733865d5cf970466ca37490b11a904465e15a24e30076 +size 291509 diff --git a/vlm/train/3AOj0RCNC2/13.png b/vlm/train/3AOj0RCNC2/13.png new file mode 100644 index 0000000000000000000000000000000000000000..b672c5a4ec777bd895b3064c8bb94a51ec950468 --- /dev/null +++ b/vlm/train/3AOj0RCNC2/13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0af6a6d2b1e5afd1f6deff261fa8f839b2b621d8e6d8508b455eb5af4ac941e1 +size 400444 diff --git a/vlm/train/3AOj0RCNC2/14.png b/vlm/train/3AOj0RCNC2/14.png new file mode 100644 index 0000000000000000000000000000000000000000..65e423d4409c153d382a10ba53ab32d1b51366fc --- /dev/null +++ b/vlm/train/3AOj0RCNC2/14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:079e296f0dee216645ddbb88313a75f27c3c518d8005a1fd05066db058980125 +size 411735 diff --git a/vlm/train/3AOj0RCNC2/15.png b/vlm/train/3AOj0RCNC2/15.png new file mode 100644 index 0000000000000000000000000000000000000000..3214fa9f265cd6ed316a1830b067b5291bc98f20 --- /dev/null +++ b/vlm/train/3AOj0RCNC2/15.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:41f73652a0fc2328cc98df196d975d7aba1133b3596f15f2404ab155b4fd73f9 +size 360556 diff --git a/vlm/train/3AOj0RCNC2/16.png b/vlm/train/3AOj0RCNC2/16.png new file mode 100644 index 0000000000000000000000000000000000000000..dce4f1563d0b91dac663b3f8f7185faf73602978 --- /dev/null +++ b/vlm/train/3AOj0RCNC2/16.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:55ad617d94fe34e2ac7693efafa67a3fb2737d9794634512ad902fe0f1321012 +size 367667 diff --git a/vlm/train/3AOj0RCNC2/17.png b/vlm/train/3AOj0RCNC2/17.png new file mode 100644 index 0000000000000000000000000000000000000000..49d009c70191c81a6c012d9bc5b68e0c22528f8b --- /dev/null +++ b/vlm/train/3AOj0RCNC2/17.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6f4cfc75080779005597a26cd10a23ca01de1606eeede3609a5a5ad418315a32 +size 290409 diff --git a/vlm/train/3AOj0RCNC2/2.png b/vlm/train/3AOj0RCNC2/2.png new file mode 100644 index 0000000000000000000000000000000000000000..ab8c35377b649eba42258cb12ff6f9a2cf8f7903 --- /dev/null +++ b/vlm/train/3AOj0RCNC2/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3bc05bcefea5d74e3d3b4b429cbc5fca4fc5e052b9ffdee803be10738c83e08b +size 649133 diff --git a/vlm/train/3AOj0RCNC2/3.png b/vlm/train/3AOj0RCNC2/3.png new file mode 100644 index 0000000000000000000000000000000000000000..cc675cbdd42d84ef8a00ca0b6c32b295fa95d1a0 --- /dev/null +++ b/vlm/train/3AOj0RCNC2/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b1b9facda70aee2ce99524f0661d4579f31d188a27c123f7e64a5be938da2c6c +size 483245 diff --git a/vlm/train/3AOj0RCNC2/4.png b/vlm/train/3AOj0RCNC2/4.png new file mode 100644 index 0000000000000000000000000000000000000000..23b5be52267d84d8b9a20be4e23a4c220954a1c5 --- /dev/null +++ b/vlm/train/3AOj0RCNC2/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a3a83b8f0589d4d6a27eaaec45f8ca556c7562a194d26c9b64f5d09f0870358a +size 602536 diff --git a/vlm/train/3AOj0RCNC2/5.png b/vlm/train/3AOj0RCNC2/5.png new file mode 100644 index 0000000000000000000000000000000000000000..450eb54fd0d6d1221fbeeb81a48bcfa56f1daa5b --- /dev/null +++ b/vlm/train/3AOj0RCNC2/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eb77e31e3a26ae40fc843d0f321feff797617c601519e5c76e5489530736217a +size 662726 diff --git a/vlm/train/3AOj0RCNC2/6.png b/vlm/train/3AOj0RCNC2/6.png new file mode 100644 index 0000000000000000000000000000000000000000..e08f8e7c46cffc56459567243289080b6da060bf --- /dev/null +++ b/vlm/train/3AOj0RCNC2/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:538e54d2a040de0f791cb45f13a483e3ec9b70ed252ff014880283cd19a5d146 +size 566646 diff --git a/vlm/train/3AOj0RCNC2/7.png b/vlm/train/3AOj0RCNC2/7.png new file mode 100644 index 0000000000000000000000000000000000000000..ddc166b7dea17fd9c3e795e1f10555a52a3e78e3 --- /dev/null +++ b/vlm/train/3AOj0RCNC2/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:baae8268ebd6bc8c0320c85a8f08a22b82cae87659704e71380cd85f9b74d7e2 +size 580679 diff --git a/vlm/train/3AOj0RCNC2/8.png b/vlm/train/3AOj0RCNC2/8.png new file mode 100644 index 0000000000000000000000000000000000000000..85734a6a2b421c975c03a3faf50af5f865da9af9 --- /dev/null +++ b/vlm/train/3AOj0RCNC2/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4d3e0952d971c711a0a0161c25276522b1ffd0799ba1ba08dbfef10aa644f22e +size 589260 diff --git a/vlm/train/3AOj0RCNC2/9.png b/vlm/train/3AOj0RCNC2/9.png new file mode 100644 index 0000000000000000000000000000000000000000..886adcab282f39c1e9c49c3b250014e9297df665 --- /dev/null +++ b/vlm/train/3AOj0RCNC2/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cb25852a9d2fa4ac83a4bf8813fb8002f68597a4b2fe6e1b59395b8d49aceac9 +size 521455 diff --git a/vlm/train/3RMnfrH_Fi8eU/0.png b/vlm/train/3RMnfrH_Fi8eU/0.png new file mode 100644 index 0000000000000000000000000000000000000000..faf459a2c0fdbbfdd7250f85f3e53562eae7ddeb --- /dev/null +++ b/vlm/train/3RMnfrH_Fi8eU/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8cd757a51ee7fd77f4b633d32c985210c064a64eb36a0787471ddc5a01e89597 +size 408692 diff --git a/vlm/train/3RMnfrH_Fi8eU/1.png b/vlm/train/3RMnfrH_Fi8eU/1.png new file mode 100644 index 0000000000000000000000000000000000000000..7be2ff2bdddfe1ee5aff979f45e5b9d5938b8327 --- /dev/null +++ b/vlm/train/3RMnfrH_Fi8eU/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6f7cf5ec9f10461f133f74c898a5d69691c722a573ee896e798f76ddd87b5ea7 +size 380563 diff --git a/vlm/train/3RMnfrH_Fi8eU/2.png b/vlm/train/3RMnfrH_Fi8eU/2.png new file mode 100644 index 0000000000000000000000000000000000000000..36a00ea13c769578c8687c1c8bfab89a1b149449 --- /dev/null +++ b/vlm/train/3RMnfrH_Fi8eU/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:50275ce57a73cc21f621b5ffd093301776607d6bb6afe7da124b36e1c649bed6 +size 452543 diff --git a/vlm/train/3RMnfrH_Fi8eU/3.png b/vlm/train/3RMnfrH_Fi8eU/3.png new file mode 100644 index 0000000000000000000000000000000000000000..456409a6dc56b9f05887627157f38f6d38df4efb --- /dev/null +++ b/vlm/train/3RMnfrH_Fi8eU/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0b8d31058cfeb1bcd7cc9561ace926b5fd259de3f171a010f9ae3c3aa030bb6f +size 317038 diff --git a/vlm/train/3RMnfrH_Fi8eU/4.png b/vlm/train/3RMnfrH_Fi8eU/4.png new file mode 100644 index 0000000000000000000000000000000000000000..20562dfaa3aa4e7deb2dd06290ba94a378ed2208 --- /dev/null +++ b/vlm/train/3RMnfrH_Fi8eU/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9f2023333cf269d4ef03ee7d0493badf7e01f8b67ba9e8a6fd429f7a439984c4 +size 248531 diff --git a/vlm/train/3RMnfrH_Fi8eU/5.png b/vlm/train/3RMnfrH_Fi8eU/5.png new file mode 100644 index 0000000000000000000000000000000000000000..e8fe0d72014bdb2b399bcd0de68b6eccdd7509f1 --- /dev/null +++ b/vlm/train/3RMnfrH_Fi8eU/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:576178b6b15740f1c51f13b0c67ddda91a2f38d236c4d51ced755c13a3be7c43 +size 215610 diff --git a/vlm/train/3RMnfrH_Fi8eU/6.png b/vlm/train/3RMnfrH_Fi8eU/6.png new file mode 100644 index 0000000000000000000000000000000000000000..a04e3a915e824b14b84edd6df70c1a66c8adf2f2 --- /dev/null +++ b/vlm/train/3RMnfrH_Fi8eU/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7562e947237d8406e103b1c63ea29306976815476121567addfe4056bb6dd816 +size 407976 diff --git a/vlm/train/3RMnfrH_Fi8eU/7.png b/vlm/train/3RMnfrH_Fi8eU/7.png new file mode 100644 index 0000000000000000000000000000000000000000..9ed136f651bfc54376dcf0a40228e70a2e1d48a6 --- /dev/null +++ b/vlm/train/3RMnfrH_Fi8eU/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4a0211a876de1be19975dc11a36b7e7b981a710462a75ba0ab04c32d7c6479b2 +size 47570 diff --git a/vlm/train/3RMnfrH_Fi8eU/8.png b/vlm/train/3RMnfrH_Fi8eU/8.png new file mode 100644 index 0000000000000000000000000000000000000000..33df3ffff2c6d0ddf32f3e9d45f8ccd3d8862ff9 --- /dev/null +++ b/vlm/train/3RMnfrH_Fi8eU/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:105502625b1918f6e8a75240d8f060b9f75f211bce39895abf0c66d7cd8a48b9 +size 264375 diff --git a/vlm/train/5Dl1378QutR/0.png b/vlm/train/5Dl1378QutR/0.png new file mode 100644 index 0000000000000000000000000000000000000000..132e127fde90d5abdcb4d70091b03043306dd080 --- /dev/null +++ b/vlm/train/5Dl1378QutR/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:37555eda857df29a093d3bd0b050d4f1cb637f44410d429e179243af41a0b2cf +size 460354 diff --git a/vlm/train/5Dl1378QutR/1.png b/vlm/train/5Dl1378QutR/1.png new file mode 100644 index 0000000000000000000000000000000000000000..5ffd957f3008e27954c81279f56867445ec3695d --- /dev/null +++ b/vlm/train/5Dl1378QutR/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9fd28d094e10896ac9e671e3fdcd700a8992bfc526c2f963d641d2078f8a7000 +size 605761 diff --git a/vlm/train/5Dl1378QutR/10.png b/vlm/train/5Dl1378QutR/10.png new file mode 100644 index 0000000000000000000000000000000000000000..c20194b406a0378769aac73b15ba484e20ce59df --- /dev/null +++ b/vlm/train/5Dl1378QutR/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f6d35a5a06cdd826ae2c11456a47a5fdd24f363b73f30372749b5f41b338dffa +size 571070 diff --git a/vlm/train/5Dl1378QutR/11.png b/vlm/train/5Dl1378QutR/11.png new file mode 100644 index 0000000000000000000000000000000000000000..a9ec60004be536fe515bcfb3f54ef3e9a9da72bc --- /dev/null +++ b/vlm/train/5Dl1378QutR/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a1933df770863df30f035e73c32a527d38bc82a568e12188713b298b91e7c4a0 +size 453169 diff --git a/vlm/train/5Dl1378QutR/2.png b/vlm/train/5Dl1378QutR/2.png new file mode 100644 index 0000000000000000000000000000000000000000..54702a2f756a4e6c9503b99126af676b3ef064b5 --- /dev/null +++ b/vlm/train/5Dl1378QutR/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:40e0aeee6d1cf383f8129a6706c74191af305d832e969f0f61a1c9e0882dd37a +size 540136 diff --git a/vlm/train/5Dl1378QutR/3.png b/vlm/train/5Dl1378QutR/3.png new file mode 100644 index 0000000000000000000000000000000000000000..671a8847095cd464c924da5669d08aedebf34d5a --- /dev/null +++ b/vlm/train/5Dl1378QutR/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c6961f758ba497575be2423a84493514cbcee60765267997edfc7161acf5326a +size 502516 diff --git a/vlm/train/5Dl1378QutR/4.png b/vlm/train/5Dl1378QutR/4.png new file mode 100644 index 0000000000000000000000000000000000000000..7f15c1c3e8a8e4815bbef48f4ff21896d4273d41 --- /dev/null +++ b/vlm/train/5Dl1378QutR/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:54548c7763807e3b818fc950ab5d70df7150fc30efb90ec58a6b97c664d223e1 +size 613567 diff --git a/vlm/train/5Dl1378QutR/5.png b/vlm/train/5Dl1378QutR/5.png new file mode 100644 index 0000000000000000000000000000000000000000..1d1949a5a1fe804135ad27e36d2007cd4bade9a0 --- /dev/null +++ b/vlm/train/5Dl1378QutR/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:33db189acabbe8969570644a4acd408fd3a595043a4fee82f7f33629ca09f325 +size 548364 diff --git a/vlm/train/5Dl1378QutR/6.png b/vlm/train/5Dl1378QutR/6.png new file mode 100644 index 0000000000000000000000000000000000000000..da0dcecee3168f307d7f3d9de6f5c74497f1de23 --- /dev/null +++ b/vlm/train/5Dl1378QutR/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:199f4f9eb408126e40e31f0c514e479521c173814cb9d22f73d81c7ec304203a +size 595264 diff --git a/vlm/train/5Dl1378QutR/7.png b/vlm/train/5Dl1378QutR/7.png new file mode 100644 index 0000000000000000000000000000000000000000..c2903c9f2a84511dc24f2ac73e50eb1defc8a0e6 --- /dev/null +++ b/vlm/train/5Dl1378QutR/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:927dd662a3cc587fdf5812ac44b52181f3e4e506d91c828aadd4cb82d700cb14 +size 747021 diff --git a/vlm/train/5Dl1378QutR/8.png b/vlm/train/5Dl1378QutR/8.png new file mode 100644 index 0000000000000000000000000000000000000000..28f253986d0ae34f6358ecd32965cd180e3cf3a1 --- /dev/null +++ b/vlm/train/5Dl1378QutR/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ee81c26141fd4e19ba2ec19a4d49e659fd6a1098c46e50bd07f20e372e3f345a +size 594834 diff --git a/vlm/train/5Dl1378QutR/9.png b/vlm/train/5Dl1378QutR/9.png new file mode 100644 index 0000000000000000000000000000000000000000..1da27651a70e78019354d7bd2af444ecb6bf9347 --- /dev/null +++ b/vlm/train/5Dl1378QutR/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fc23faf2cb8f42d20fc071794dc28319e2e270d63f876cf8d16a3a3b74396c4b +size 542897 diff --git a/vlm/train/5nLibPckV2N/0.png b/vlm/train/5nLibPckV2N/0.png new file mode 100644 index 0000000000000000000000000000000000000000..8d7cb0c0dd4826d3ea7c6eff3628513581e375d2 --- /dev/null +++ b/vlm/train/5nLibPckV2N/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:305fc6eb6d46483283841fabaa1bef4dd9db3e84ce8e37f3474b4aebbc8d28e1 +size 454117 diff --git a/vlm/train/5nLibPckV2N/1.png b/vlm/train/5nLibPckV2N/1.png new file mode 100644 index 0000000000000000000000000000000000000000..6b544b232902163324c984e0f318b6f0629bb3fa --- /dev/null +++ b/vlm/train/5nLibPckV2N/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:19212679d5403663afce3d2b8fb8240c344a289dc6ba8fabae6c376d79eb75a1 +size 607891 diff --git a/vlm/train/5nLibPckV2N/10.png b/vlm/train/5nLibPckV2N/10.png new file mode 100644 index 0000000000000000000000000000000000000000..f4a272a348e49945cb2788e2bcdc3139e04ed457 --- /dev/null +++ b/vlm/train/5nLibPckV2N/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ae622791196efd09b7b2405c1e5d9de5c0fbb0d5dc8092ea965ca3b800421a77 +size 528940 diff --git a/vlm/train/5nLibPckV2N/11.png b/vlm/train/5nLibPckV2N/11.png new file mode 100644 index 0000000000000000000000000000000000000000..48477cd248556deef885b835b7abc06c593d20e4 --- /dev/null +++ b/vlm/train/5nLibPckV2N/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:212d6ef373f9c921fe197a4378ba90513c203e68cfb8ecdf5229b926a6242b5b +size 572086 diff --git a/vlm/train/5nLibPckV2N/12.png b/vlm/train/5nLibPckV2N/12.png new file mode 100644 index 0000000000000000000000000000000000000000..424ac78084f5fb634cd7d5afae9f9d9fd4487839 --- /dev/null +++ b/vlm/train/5nLibPckV2N/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a6a1b728c226973179de25b895d9f0cf6e616057dee76885a0bcd796bec9c8dc +size 280238 diff --git a/vlm/train/5nLibPckV2N/2.png b/vlm/train/5nLibPckV2N/2.png new file mode 100644 index 0000000000000000000000000000000000000000..67971217c8ed553335ee2231b3cd92cafcbba276 --- /dev/null +++ b/vlm/train/5nLibPckV2N/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3d0a48c6cfa2c499df558591d573784c3a39980681323b61190c1def9b2abfbf +size 609552 diff --git a/vlm/train/5nLibPckV2N/3.png b/vlm/train/5nLibPckV2N/3.png new file mode 100644 index 0000000000000000000000000000000000000000..4e59eceb68904012ac9120ee2d3ac0080f03c3a6 --- /dev/null +++ b/vlm/train/5nLibPckV2N/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ef09d8cb1765d0c8d10952c6aa50afd6f7b430f6334ae20ef87264c91342e770 +size 602203 diff --git a/vlm/train/5nLibPckV2N/4.png b/vlm/train/5nLibPckV2N/4.png new file mode 100644 index 0000000000000000000000000000000000000000..c0818564bff8eefcfe05b30d00345eeff08f0abd --- /dev/null +++ b/vlm/train/5nLibPckV2N/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ceeb0c9c130ede9cdb20970195cad618afccae3d965c5147cc2ef12376871d80 +size 484628 diff --git a/vlm/train/5nLibPckV2N/5.png b/vlm/train/5nLibPckV2N/5.png new file mode 100644 index 0000000000000000000000000000000000000000..b5d8a27e4c75cc8beb406b28bb0724d73be946ab --- /dev/null +++ b/vlm/train/5nLibPckV2N/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:624862a06783c9c769199fd6c7e8a05da260b0435b888c432fa9492765888ae9 +size 587003 diff --git a/vlm/train/5nLibPckV2N/6.png b/vlm/train/5nLibPckV2N/6.png new file mode 100644 index 0000000000000000000000000000000000000000..f2b522ba2bcf9202f3b80c004783a58ee57c8f39 --- /dev/null +++ b/vlm/train/5nLibPckV2N/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:11f745fcedc147026f2a90d108f7bf97b735bbcbf2a0d4b68c9ef7ccfd62c33a +size 548402 diff --git a/vlm/train/5nLibPckV2N/7.png b/vlm/train/5nLibPckV2N/7.png new file mode 100644 index 0000000000000000000000000000000000000000..5841a11fcb0fa07d3635cefebfa4c25b15dc8396 --- /dev/null +++ b/vlm/train/5nLibPckV2N/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e039811af9a5c5aa67870c95d2f3b1abcd1e1bd44ccf0c2a72fe81266f451d89 +size 550905 diff --git a/vlm/train/5nLibPckV2N/8.png b/vlm/train/5nLibPckV2N/8.png new file mode 100644 index 0000000000000000000000000000000000000000..8c84c9d8c2bc3c13242cfa0c4a8c54ed6cf9e74e --- /dev/null +++ b/vlm/train/5nLibPckV2N/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a96e4f5892e3bc05dc0038aca6a0a3e58b602c9002c8899653f230420556d384 +size 615522 diff --git a/vlm/train/5nLibPckV2N/9.png b/vlm/train/5nLibPckV2N/9.png new file mode 100644 index 0000000000000000000000000000000000000000..cd9818352c0b6fd3b53ddac498de83d4e5f09c5a --- /dev/null +++ b/vlm/train/5nLibPckV2N/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4de50e9b8b6b2ecf3b22287922386c3e67e4745f6d1979258b19511cdfd0281d +size 599366 diff --git a/vlm/train/AuVKs6JmBtY/0.png b/vlm/train/AuVKs6JmBtY/0.png new file mode 100644 index 0000000000000000000000000000000000000000..f42146119f33ed4c807cd078a7d973f7f5ec4be1 --- /dev/null +++ b/vlm/train/AuVKs6JmBtY/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:88ed12dcf4c7e220b8d3538b9a7a5edf7e9eac9cbf2defaa93d917cd96b32a02 +size 468441 diff --git a/vlm/train/AuVKs6JmBtY/1.png b/vlm/train/AuVKs6JmBtY/1.png new file mode 100644 index 0000000000000000000000000000000000000000..fafc68b718ce4340507bbc34b8f0f89c5d5962bc --- /dev/null +++ b/vlm/train/AuVKs6JmBtY/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3a93496d1edfe496c65fa791e885be133d0cae9aecdf65a3647f9fcd74d3cfb3 +size 579936 diff --git a/vlm/train/AuVKs6JmBtY/10.png b/vlm/train/AuVKs6JmBtY/10.png new file mode 100644 index 0000000000000000000000000000000000000000..3f7bdba86d03d46781a9f49991ff5bb3fa3c626e --- /dev/null +++ b/vlm/train/AuVKs6JmBtY/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:11d55181d624c7c0016168e5b87acdb28f562bccc53b97f764a4a02d6cd1c608 +size 594116 diff --git a/vlm/train/AuVKs6JmBtY/11.png b/vlm/train/AuVKs6JmBtY/11.png new file mode 100644 index 0000000000000000000000000000000000000000..a4c0b033ab4f96e59894cdeca3e0ee61a1121196 --- /dev/null +++ b/vlm/train/AuVKs6JmBtY/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a12059188eb609633e1987f2dfb2ab7e51cd56d0d3755e41b9cb61b61689e0b6 +size 311830 diff --git a/vlm/train/AuVKs6JmBtY/2.png b/vlm/train/AuVKs6JmBtY/2.png new file mode 100644 index 0000000000000000000000000000000000000000..451bf56a9cb00afdd624a010523e4fe57a32db5c --- /dev/null +++ b/vlm/train/AuVKs6JmBtY/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:17a3b2706fa04c2a0500cdddf4e90dbf321b00f957177841cfce0e81eee90e60 +size 542361 diff --git a/vlm/train/AuVKs6JmBtY/3.png b/vlm/train/AuVKs6JmBtY/3.png new file mode 100644 index 0000000000000000000000000000000000000000..bcc33a596a9e790b61aa504c8716909e8981106b --- /dev/null +++ b/vlm/train/AuVKs6JmBtY/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:058235ac8da39f6e72e6b21723f015cc833ac7c30b3dda517134d6a6ce3d43aa +size 536343 diff --git a/vlm/train/AuVKs6JmBtY/4.png b/vlm/train/AuVKs6JmBtY/4.png new file mode 100644 index 0000000000000000000000000000000000000000..e956b87ca5df77e544396e9f399cac0ece9909d3 --- /dev/null +++ b/vlm/train/AuVKs6JmBtY/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eca2ab2bc413f4f7ebe32b465accdbe8cb1c6c6efd59925ef2a21d29fc812a1f +size 439569 diff --git a/vlm/train/AuVKs6JmBtY/5.png b/vlm/train/AuVKs6JmBtY/5.png new file mode 100644 index 0000000000000000000000000000000000000000..4ca6a806f3453996fb52f6743814c1cc6db4dfae --- /dev/null +++ b/vlm/train/AuVKs6JmBtY/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:97caeafc5c375f1c8561f6f6667c5e9e2f20f489de151621512d8a9e0fd9e1db +size 543464 diff --git a/vlm/train/AuVKs6JmBtY/6.png b/vlm/train/AuVKs6JmBtY/6.png new file mode 100644 index 0000000000000000000000000000000000000000..9ad7fee56dca7317a3d45093e047581e422df22a --- /dev/null +++ b/vlm/train/AuVKs6JmBtY/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5cf92df842c00ef3945092ce954a45c068855804c244e6d8b4d7648393cbe848 +size 603273 diff --git a/vlm/train/AuVKs6JmBtY/7.png b/vlm/train/AuVKs6JmBtY/7.png new file mode 100644 index 0000000000000000000000000000000000000000..f79ae040e5a91a53281b9a2434362bbde1e242b6 --- /dev/null +++ b/vlm/train/AuVKs6JmBtY/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d9beeee91600defc8db5984936f469c16906cd41ee941c809e55421b77c46f9d +size 601594 diff --git a/vlm/train/AuVKs6JmBtY/8.png b/vlm/train/AuVKs6JmBtY/8.png new file mode 100644 index 0000000000000000000000000000000000000000..a756405377d7726c774c4b4f55a25a56dc1363d1 --- /dev/null +++ b/vlm/train/AuVKs6JmBtY/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a8eec5857b3d7c55017587f92392c726ac51418ee10e937b28ae3c58b11a09f9 +size 516310 diff --git a/vlm/train/AuVKs6JmBtY/9.png b/vlm/train/AuVKs6JmBtY/9.png new file mode 100644 index 0000000000000000000000000000000000000000..5141bf8aab6a01de46ff808bbce2f0565c68a300 --- /dev/null +++ b/vlm/train/AuVKs6JmBtY/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:95d52534b68ef92f5d9e2eb0aeacaa554d67db0ec32e2df6ab61f5dbeab33105 +size 573129 diff --git a/vlm/train/B1lfHhR9tm/0.png b/vlm/train/B1lfHhR9tm/0.png new file mode 100644 index 0000000000000000000000000000000000000000..71923a36d050256a411fec0f9f55970969b02aa7 --- /dev/null +++ b/vlm/train/B1lfHhR9tm/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:48efd3fe6121bb98f8b2229379d5ac15de0bdd73ab9757f3893687e86cd400ca +size 497404 diff --git a/vlm/train/B1lfHhR9tm/1.png b/vlm/train/B1lfHhR9tm/1.png new file mode 100644 index 0000000000000000000000000000000000000000..84a6318c4da45714736d31b93b51d1a974c1ffb6 --- /dev/null +++ b/vlm/train/B1lfHhR9tm/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:00932f00a87e9176c1cde1a4be2e3ed7a20fe42e22b1231057c46fb566c60947 +size 542498 diff --git a/vlm/train/B1lfHhR9tm/10.png b/vlm/train/B1lfHhR9tm/10.png new file mode 100644 index 0000000000000000000000000000000000000000..16e581c8f005b2ae7964809d79ba95f8c11eaf30 --- /dev/null +++ b/vlm/train/B1lfHhR9tm/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7e5388ab5b13f29cf59f28e694eb7d4de4bdfd6f459db19b86a0f478650dd799 +size 535471 diff --git a/vlm/train/B1lfHhR9tm/11.png b/vlm/train/B1lfHhR9tm/11.png new file mode 100644 index 0000000000000000000000000000000000000000..46da905be17ef4d92af15932ce1c102b7b904f97 --- /dev/null +++ b/vlm/train/B1lfHhR9tm/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d3dd05c9c384e05da1787a92b53786b86e260ebdd41b9175b67eb5b870c6802c +size 493983 diff --git a/vlm/train/B1lfHhR9tm/12.png b/vlm/train/B1lfHhR9tm/12.png new file mode 100644 index 0000000000000000000000000000000000000000..8c76baf62e606e0f198a4d504b9fe685c57fb75e --- /dev/null +++ b/vlm/train/B1lfHhR9tm/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dd6f43043026e71c8e5674ca0c475d49279f251b135f4873f82fe6958516c053 +size 489887 diff --git a/vlm/train/B1lfHhR9tm/13.png b/vlm/train/B1lfHhR9tm/13.png new file mode 100644 index 0000000000000000000000000000000000000000..873bbf23e52fd8ff7c445e158f8410f3d50b53ff --- /dev/null +++ b/vlm/train/B1lfHhR9tm/13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1cd87ef8ad923215ab3ae57c207910476bd06b6d0d569a1096b3965927baf5c2 +size 530766 diff --git a/vlm/train/B1lfHhR9tm/14.png b/vlm/train/B1lfHhR9tm/14.png new file mode 100644 index 0000000000000000000000000000000000000000..1b067d7e448e65a1f0b0ef8bcf75cfa5e9e07e4d --- /dev/null +++ b/vlm/train/B1lfHhR9tm/14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4f7e4ee283519ee99414ed5f20cb51adf0434dff1d47bb0525c36c614fa8f0cc +size 132177 diff --git a/vlm/train/B1lfHhR9tm/15.png b/vlm/train/B1lfHhR9tm/15.png new file mode 100644 index 0000000000000000000000000000000000000000..78016811ad7a92ecbb6d18eab385d5c7d8440794 --- /dev/null +++ b/vlm/train/B1lfHhR9tm/15.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c2ff445a74725fbf1c2928c2a8160c47c1d36da7af74a9bcbd8272e4b1c53715 +size 297265 diff --git a/vlm/train/B1lfHhR9tm/16.png b/vlm/train/B1lfHhR9tm/16.png new file mode 100644 index 0000000000000000000000000000000000000000..ba8659e2b8cf4c162ce23319c11879e6d5973ca0 --- /dev/null +++ b/vlm/train/B1lfHhR9tm/16.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b33fbedd5e1c739c93bf43ff2b24a2947841dddc070f26205f46afb99e82c849 +size 629899 diff --git a/vlm/train/B1lfHhR9tm/17.png b/vlm/train/B1lfHhR9tm/17.png new file mode 100644 index 0000000000000000000000000000000000000000..f230d47bbeacc1b67f973064f6856e05e9f5cf80 --- /dev/null +++ b/vlm/train/B1lfHhR9tm/17.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:05e7f2d7d57edd46f9120fa76e0711d96c1fbfda220884676950b18c0e80777c +size 61085 diff --git a/vlm/train/B1lfHhR9tm/18.png b/vlm/train/B1lfHhR9tm/18.png new file mode 100644 index 0000000000000000000000000000000000000000..fdb9b8bc5b619ea8404c30029363e94305ab67d0 --- /dev/null +++ b/vlm/train/B1lfHhR9tm/18.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ae4a405dcb85f869af9878aaee169eefb244f1afbc93a442d0363840f900e3c9 +size 594628 diff --git a/vlm/train/B1lfHhR9tm/19.png b/vlm/train/B1lfHhR9tm/19.png new file mode 100644 index 0000000000000000000000000000000000000000..6063c757623811166000217d70fa59165d082d8a --- /dev/null +++ b/vlm/train/B1lfHhR9tm/19.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a14eef9345fb9dd93c1735a1cb1b68a409e7f93fd440011590f83341a4fc5525 +size 351072 diff --git a/vlm/train/B1lfHhR9tm/2.png b/vlm/train/B1lfHhR9tm/2.png new file mode 100644 index 0000000000000000000000000000000000000000..b1d8732bbdaae79ae268cb552126c94565a7a16a --- /dev/null +++ b/vlm/train/B1lfHhR9tm/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b3ba42ae86e32a600c01a4a0eba890b46bbae7be5e2e4a017a518a30f2cc4f8b +size 596829 diff --git a/vlm/train/B1lfHhR9tm/20.png b/vlm/train/B1lfHhR9tm/20.png new file mode 100644 index 0000000000000000000000000000000000000000..a36085b0f53767ab7288b18c20a1586187fb0239 --- /dev/null +++ b/vlm/train/B1lfHhR9tm/20.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:905f7d38a0fe2aac4a1cf6d3901bd069b998f330b3b11a80b2a90798e6d3a2d7 +size 328318 diff --git a/vlm/train/B1lfHhR9tm/21.png b/vlm/train/B1lfHhR9tm/21.png new file mode 100644 index 0000000000000000000000000000000000000000..02dc0b730df5b0157b4716dd1d6151cab2528a96 --- /dev/null +++ b/vlm/train/B1lfHhR9tm/21.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:24ffad3c4ec45722acc89e83ae64ddcbcbbb4a0fa13fa2b41007193ebd299520 +size 475733 diff --git a/vlm/train/B1lfHhR9tm/22.png b/vlm/train/B1lfHhR9tm/22.png new file mode 100644 index 0000000000000000000000000000000000000000..89cfe80468604e8ab4e8f86a0ee7d72f33bc3d79 --- /dev/null +++ b/vlm/train/B1lfHhR9tm/22.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:add8e881d976338f82dc057bc052aacc3a561e142f8c6845fded3ec8c54851ab +size 118559 diff --git a/vlm/train/B1lfHhR9tm/23.png b/vlm/train/B1lfHhR9tm/23.png new file mode 100644 index 0000000000000000000000000000000000000000..c8aa6de8e2734fee2c9f91c17787d75336d86cf7 --- /dev/null +++ b/vlm/train/B1lfHhR9tm/23.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:101f4b48be9724ce65fd9dea583da3820bc745e1e7b6e33a53e26c8b43f477b5 +size 519572 diff --git a/vlm/train/B1lfHhR9tm/24.png b/vlm/train/B1lfHhR9tm/24.png new file mode 100644 index 0000000000000000000000000000000000000000..9d252efb7132dc23bed313fd86c7dfbdc65e4c8b --- /dev/null +++ b/vlm/train/B1lfHhR9tm/24.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7a1cc64f66b499d0abffa748a1e59ecb750d0b6cf2ef11e3f72331d1ac54c935 +size 178212 diff --git a/vlm/train/B1lfHhR9tm/25.png b/vlm/train/B1lfHhR9tm/25.png new file mode 100644 index 0000000000000000000000000000000000000000..10af0c3e243805bb23060346f38186f4326d1a6f --- /dev/null +++ b/vlm/train/B1lfHhR9tm/25.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b3a6ffa0913c5bc8f3df7f175c5bd29ae5f07621f9ba4597d286fe287e4caa35 +size 32166 diff --git a/vlm/train/B1lfHhR9tm/26.png b/vlm/train/B1lfHhR9tm/26.png new file mode 100644 index 0000000000000000000000000000000000000000..b3ff91c9d7d31770c8ca2794100dda0ead82335c --- /dev/null +++ b/vlm/train/B1lfHhR9tm/26.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7b173c07d26ed1347b2bdaae248cd03f325faf3dc22b5ce002b9b11220784eb6 +size 220711 diff --git a/vlm/train/B1lfHhR9tm/27.png b/vlm/train/B1lfHhR9tm/27.png new file mode 100644 index 0000000000000000000000000000000000000000..83f90e29bfc93271663c3ba5929d049ecc0f1d43 --- /dev/null +++ b/vlm/train/B1lfHhR9tm/27.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9e3494762a854da924bc4825da28bb8c1a533c1ec21b1ef0252964f5243faf1d +size 207650 diff --git a/vlm/train/B1lfHhR9tm/28.png b/vlm/train/B1lfHhR9tm/28.png new file mode 100644 index 0000000000000000000000000000000000000000..89acc3deaf06161a8c27e173de934d83bb190a33 --- /dev/null +++ b/vlm/train/B1lfHhR9tm/28.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b8c79e17043255a7f9d574f489563b3b8250a0d17119d1471e6c3901b501ea79 +size 444921 diff --git a/vlm/train/B1lfHhR9tm/29.png b/vlm/train/B1lfHhR9tm/29.png new file mode 100644 index 0000000000000000000000000000000000000000..166932f587481453a8ca89b154a3e4cc1824a5fa --- /dev/null +++ b/vlm/train/B1lfHhR9tm/29.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:076d7659902d2890ab71bfcab57b7ccaf61e4030120ba63d6e75dea7daa56d4d +size 154657 diff --git a/vlm/train/B1lfHhR9tm/3.png b/vlm/train/B1lfHhR9tm/3.png new file mode 100644 index 0000000000000000000000000000000000000000..ebb7b87552303fd1e56e5be758de287d95f553d8 --- /dev/null +++ b/vlm/train/B1lfHhR9tm/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e8cb7bd3bb4f7a5cfeee7238d111ccb6bcbd5c4e7c7b5c8878c154a460a4fd20 +size 483611 diff --git a/vlm/train/B1lfHhR9tm/30.png b/vlm/train/B1lfHhR9tm/30.png new file mode 100644 index 0000000000000000000000000000000000000000..7a99d05347d1946ca2837c85004f6c2ab2246fc0 --- /dev/null +++ b/vlm/train/B1lfHhR9tm/30.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c8705f524547427fbe5c7eef6fe8b3c54eae76b546302e8f98d67aa9374e6cae +size 134227 diff --git a/vlm/train/B1lfHhR9tm/4.png b/vlm/train/B1lfHhR9tm/4.png new file mode 100644 index 0000000000000000000000000000000000000000..e9823ac6617763bad1dbf8982c0b352e0462e8fa --- /dev/null +++ b/vlm/train/B1lfHhR9tm/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ed7e7cb6fbc4cc8a2cbbc5a2a1647970a99ec743c209723305deb3843dc4c25f +size 428776 diff --git a/vlm/train/B1lfHhR9tm/5.png b/vlm/train/B1lfHhR9tm/5.png new file mode 100644 index 0000000000000000000000000000000000000000..287baa0bc7058417491b72272c7101d9f1477531 --- /dev/null +++ b/vlm/train/B1lfHhR9tm/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3bd7d5abbdabe1541bc42843e3de844cfe16e055f45a1a5e1a58f6731f8ad018 +size 534246 diff --git a/vlm/train/B1lfHhR9tm/6.png b/vlm/train/B1lfHhR9tm/6.png new file mode 100644 index 0000000000000000000000000000000000000000..d59e9dd4950ca9f1125521080598847cf5deb4a0 --- /dev/null +++ b/vlm/train/B1lfHhR9tm/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:36093ec6bff05411607712f88dadaae2a69d4f7758084cef10a4e9209d38d77c +size 524371 diff --git a/vlm/train/B1lfHhR9tm/7.png b/vlm/train/B1lfHhR9tm/7.png new file mode 100644 index 0000000000000000000000000000000000000000..4c299017b1394b8d7e25d430e00d593091d2f5d6 --- /dev/null +++ b/vlm/train/B1lfHhR9tm/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:79ce2673f997e357f1e08ad11d522b3def4375774afbe2250de72e2b93a10125 +size 558093 diff --git a/vlm/train/B1lfHhR9tm/8.png b/vlm/train/B1lfHhR9tm/8.png new file mode 100644 index 0000000000000000000000000000000000000000..111940d741b5c3a4530fb8556750a63949a4d2df --- /dev/null +++ b/vlm/train/B1lfHhR9tm/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:807e782c3222a949b81705740df7d034a16f832743595b207011fa49ef511ae8 +size 517731 diff --git a/vlm/train/B1lfHhR9tm/9.png b/vlm/train/B1lfHhR9tm/9.png new file mode 100644 index 0000000000000000000000000000000000000000..c8d78e1a03414899e7e0b2b840dedfb2241ec2a0 --- /dev/null +++ b/vlm/train/B1lfHhR9tm/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f49dbcb7cf14cf90e074a3b37656fff487bbaeedc31719edfce3c825f03cc431 +size 528596 diff --git a/vlm/train/BJxbOlSKPr/0.png b/vlm/train/BJxbOlSKPr/0.png new file mode 100644 index 0000000000000000000000000000000000000000..06e4c57655ccc6dbe29e606c29d471b911ba9c11 --- /dev/null +++ b/vlm/train/BJxbOlSKPr/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01fc072e8815014bb0d6e6cf0da8978290831fa2c3fe04bb9f596fc4579cc947 +size 514027 diff --git a/vlm/train/BJxbOlSKPr/1.png b/vlm/train/BJxbOlSKPr/1.png new file mode 100644 index 0000000000000000000000000000000000000000..7eaa8424f2a4f1a8163d71b98970fddb33186517 --- /dev/null +++ b/vlm/train/BJxbOlSKPr/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c4f59882d97cac7c2e6636034d6f720382bb599dc752573435621a0fb9961da4 +size 584062 diff --git a/vlm/train/BJxbOlSKPr/10.png b/vlm/train/BJxbOlSKPr/10.png new file mode 100644 index 0000000000000000000000000000000000000000..de7a74f33b3e427717151b837e5bab2a547362c4 --- /dev/null +++ b/vlm/train/BJxbOlSKPr/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b3c2b9a715702ddcbcf2fadae4886535f9186daf9617eb7bc9f513d1ce07cb97 +size 401598 diff --git a/vlm/train/BJxbOlSKPr/11.png b/vlm/train/BJxbOlSKPr/11.png new file mode 100644 index 0000000000000000000000000000000000000000..863658773c2c60198430cafce76b396ad44e89c3 --- /dev/null +++ b/vlm/train/BJxbOlSKPr/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:216899796363dc1a57530a881cc0db81301245dfa1c72953d2ebe0494628c2fd +size 386977 diff --git a/vlm/train/BJxbOlSKPr/12.png b/vlm/train/BJxbOlSKPr/12.png new file mode 100644 index 0000000000000000000000000000000000000000..c03f5ecdba81875e7acf59af98913abf7bc123db --- /dev/null +++ b/vlm/train/BJxbOlSKPr/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a2657f1f17b2bf9b5136583a40fbc5ef64e3b1c24297c2529f7994bb1d524163 +size 336462 diff --git a/vlm/train/BJxbOlSKPr/13.png b/vlm/train/BJxbOlSKPr/13.png new file mode 100644 index 0000000000000000000000000000000000000000..dd5da5f727be37000d704db867134c21417957a4 --- /dev/null +++ b/vlm/train/BJxbOlSKPr/13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:293592f2e9aa621bc9605d3c28b5d9a01d2ca42150fe61a25c6b3c719d238eb7 +size 358967 diff --git a/vlm/train/BJxbOlSKPr/14.png b/vlm/train/BJxbOlSKPr/14.png new file mode 100644 index 0000000000000000000000000000000000000000..185d8c88295d3db4ba519ce370c63ae83e04a8b4 --- /dev/null +++ b/vlm/train/BJxbOlSKPr/14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bb6aeab1bc448a53c714cda8474d08dcd5cec046fee0aadf7b39d8daaef9c78f +size 529619 diff --git a/vlm/train/BJxbOlSKPr/15.png b/vlm/train/BJxbOlSKPr/15.png new file mode 100644 index 0000000000000000000000000000000000000000..f96e04fb95ba1801d1b79072a55188f1a5d095b3 --- /dev/null +++ b/vlm/train/BJxbOlSKPr/15.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7d4d8780638c60799499a49a6b79409923c5361e1fba338c1a72118941e632aa +size 446512 diff --git a/vlm/train/BJxbOlSKPr/16.png b/vlm/train/BJxbOlSKPr/16.png new file mode 100644 index 0000000000000000000000000000000000000000..760bcc9ab17e8f94abb5b6086dc773f48ef818ba --- /dev/null +++ b/vlm/train/BJxbOlSKPr/16.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:517af8d05cb63ac96c6504408992d66c77a24a15a8b0536097d312923e498ee9 +size 421488 diff --git a/vlm/train/BJxbOlSKPr/17.png b/vlm/train/BJxbOlSKPr/17.png new file mode 100644 index 0000000000000000000000000000000000000000..bc74c04a917f6e166499fb6c3878a8811652a059 --- /dev/null +++ b/vlm/train/BJxbOlSKPr/17.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6ac3f6b08582512b424aee813aa69586f088aa3035ac407b80562f4d8def41ff +size 150666 diff --git a/vlm/train/BJxbOlSKPr/2.png b/vlm/train/BJxbOlSKPr/2.png new file mode 100644 index 0000000000000000000000000000000000000000..b7b4256f04dd19af6ea2f92a026449f5ad271da6 --- /dev/null +++ b/vlm/train/BJxbOlSKPr/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ea2e08843ea75e5eb3a87176d3cd57e938b5f15fa552ba1702d05a78510440a0 +size 464614 diff --git a/vlm/train/BJxbOlSKPr/3.png b/vlm/train/BJxbOlSKPr/3.png new file mode 100644 index 0000000000000000000000000000000000000000..9f5c1c9ade3fab58b5d354da5f15ac3ef2cb09c9 --- /dev/null +++ b/vlm/train/BJxbOlSKPr/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e0b799f31125f1d116ff7c1c0266a42521fac30a618d0d78542ea1498675cdae +size 477798 diff --git a/vlm/train/BJxbOlSKPr/4.png b/vlm/train/BJxbOlSKPr/4.png new file mode 100644 index 0000000000000000000000000000000000000000..f0fe8adcbd2f5e36eae4a0e9b3ee0524f9910051 --- /dev/null +++ b/vlm/train/BJxbOlSKPr/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c4e31ed25600eb817b868a8bacf8daa7d01640b258703ca24a0bbf90c078227b +size 466998 diff --git a/vlm/train/BJxbOlSKPr/5.png b/vlm/train/BJxbOlSKPr/5.png new file mode 100644 index 0000000000000000000000000000000000000000..6212e366f086cdcb4399f4c4a7cc695ebc66660b --- /dev/null +++ b/vlm/train/BJxbOlSKPr/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fea9d192b49c74ea27f00865232c8a46f6649095975726592aa6f20731e938fa +size 463360 diff --git a/vlm/train/BJxbOlSKPr/6.png b/vlm/train/BJxbOlSKPr/6.png new file mode 100644 index 0000000000000000000000000000000000000000..427860060a17cf455d148d2b7a4dea3385df6377 --- /dev/null +++ b/vlm/train/BJxbOlSKPr/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4a275337b2ee7df57798aca34bec03422ec19e8a13d8876e30807f4e0f39ecdb +size 478026 diff --git a/vlm/train/BJxbOlSKPr/7.png b/vlm/train/BJxbOlSKPr/7.png new file mode 100644 index 0000000000000000000000000000000000000000..97c49cb99b216b3fc87dc426698803f29f720d73 --- /dev/null +++ b/vlm/train/BJxbOlSKPr/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a0f5fe3ef867433fe62d6ad5582a5602838c9d4ddc9222c696d4801e0c244841 +size 492201 diff --git a/vlm/train/BJxbOlSKPr/8.png b/vlm/train/BJxbOlSKPr/8.png new file mode 100644 index 0000000000000000000000000000000000000000..4acfe45c4c3fa9a920cf62273528e6f148524491 --- /dev/null +++ b/vlm/train/BJxbOlSKPr/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:62f7fc8ef81eb4bf4e0527406ef5a24cd7496d2c619d755da003f9eda1a91285 +size 541604 diff --git a/vlm/train/BJxbOlSKPr/9.png b/vlm/train/BJxbOlSKPr/9.png new file mode 100644 index 0000000000000000000000000000000000000000..04882670ef072364aafc12ebb35a2ad0396ba957 --- /dev/null +++ b/vlm/train/BJxbOlSKPr/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:927f7556a84e6db6f29f5106f24ffca69bdd7ef59bdbf7a6917e0b4cbe106b86 +size 244993 diff --git a/vlm/train/Bkgwp3NtDH/0.png b/vlm/train/Bkgwp3NtDH/0.png new file mode 100644 index 0000000000000000000000000000000000000000..3f566a1b1d91742a1c12e185b5cd338a5cd4345e --- /dev/null +++ b/vlm/train/Bkgwp3NtDH/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7e99eb7e056a606104518edd67689e889027fd02e4c750ef1903dc635e3c0ba4 +size 501214 diff --git a/vlm/train/Bkgwp3NtDH/1.png b/vlm/train/Bkgwp3NtDH/1.png new file mode 100644 index 0000000000000000000000000000000000000000..ad13f616a4630cf060743be969fdcc21e89375fe --- /dev/null +++ b/vlm/train/Bkgwp3NtDH/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2fc1b589bd5de56e4efbeb2588d7f757bf0d52c999071f1ea9d07ee93d185eb1 +size 573666 diff --git a/vlm/train/Bkgwp3NtDH/2.png b/vlm/train/Bkgwp3NtDH/2.png new file mode 100644 index 0000000000000000000000000000000000000000..3aca5a177a368fd046a50bb72509aa0f5ea793db --- /dev/null +++ b/vlm/train/Bkgwp3NtDH/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e3c08d457b4f394b17b8e83b056617b075252104e3f156c4405d577570e28ee4 +size 573923 diff --git a/vlm/train/Bkgwp3NtDH/3.png b/vlm/train/Bkgwp3NtDH/3.png new file mode 100644 index 0000000000000000000000000000000000000000..b5069013c6f4dfe818c87a59e759f55059e118ad --- /dev/null +++ b/vlm/train/Bkgwp3NtDH/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4244bc6da09e71fecc41e0b0d27100c66711e037d58cac5b8eb5b224ac35bc41 +size 449150 diff --git a/vlm/train/Bkgwp3NtDH/4.png b/vlm/train/Bkgwp3NtDH/4.png new file mode 100644 index 0000000000000000000000000000000000000000..e5e725df78ffc32e6edda71dc5c68f9bc14eaada --- /dev/null +++ b/vlm/train/Bkgwp3NtDH/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ab2621d190af45b77af6e00eb86c0d07ae0cbffc3c6ba2abcf050b599a099ae9 +size 581737 diff --git a/vlm/train/Bkgwp3NtDH/5.png b/vlm/train/Bkgwp3NtDH/5.png new file mode 100644 index 0000000000000000000000000000000000000000..c2185c186a09efb7fa84572d6dc2505cf60d108c --- /dev/null +++ b/vlm/train/Bkgwp3NtDH/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c10447d94a5f16d1da63277ff0ba64334aea7b3180e315692b04fbdafad9a42d +size 529714 diff --git a/vlm/train/Bkgwp3NtDH/6.png b/vlm/train/Bkgwp3NtDH/6.png new file mode 100644 index 0000000000000000000000000000000000000000..523b7230d5866596f7a4ce29a7410fe0a48dc06c --- /dev/null +++ b/vlm/train/Bkgwp3NtDH/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ee1d2234712ba67f35cd4c1f2511d224c15c1687d8bf0d36b0c6072f146a4551 +size 456092 diff --git a/vlm/train/Bkgwp3NtDH/7.png b/vlm/train/Bkgwp3NtDH/7.png new file mode 100644 index 0000000000000000000000000000000000000000..c6919c456a6d33c4462b5890e70a49b64321a603 --- /dev/null +++ b/vlm/train/Bkgwp3NtDH/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:17d95c6149b749f21ac20c4b585716388637c7079af1d672aed3de0fc8137f4a +size 487175 diff --git a/vlm/train/Bkgwp3NtDH/8.png b/vlm/train/Bkgwp3NtDH/8.png new file mode 100644 index 0000000000000000000000000000000000000000..c5b4bc3cde4f670bbeee4683ca3e59dc34c9ada2 --- /dev/null +++ b/vlm/train/Bkgwp3NtDH/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2c73b8bac22ddc674259672755cf915d4e131ece6b0c44b24fb2f3ca44972846 +size 598698 diff --git a/vlm/train/Bkgwp3NtDH/9.png b/vlm/train/Bkgwp3NtDH/9.png new file mode 100644 index 0000000000000000000000000000000000000000..aeb179de98fc705bf0b1e2903a064a66aa02ad82 --- /dev/null +++ b/vlm/train/Bkgwp3NtDH/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8369266d5b460b5df162c7b89fc87a87b4b2efb742a8c3b9fd05e365a6daa4a9 +size 133475 diff --git a/vlm/train/BklSv34KvB/13.png b/vlm/train/BklSv34KvB/13.png new file mode 100644 index 0000000000000000000000000000000000000000..5a8e2cf8619c6ef1d1305d38ad4687a31723a850 --- /dev/null +++ b/vlm/train/BklSv34KvB/13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:00d237c3c282bebb7a8cc36e51466819254a68f519cb14958d6e10f2f80a6a11 +size 306971 diff --git a/vlm/train/ByToKu9ll/0.png b/vlm/train/ByToKu9ll/0.png new file mode 100644 index 0000000000000000000000000000000000000000..ac332c0e89b09ecbb117230dd042c9fa06aa5ed1 --- /dev/null +++ b/vlm/train/ByToKu9ll/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:975fea2e6e7ffcc5774c8899ecda6b0233e3e7aec10fa73886f53f97366dd010 +size 458605 diff --git a/vlm/train/ByToKu9ll/1.png b/vlm/train/ByToKu9ll/1.png new file mode 100644 index 0000000000000000000000000000000000000000..de68e85f2cf4a0d5661bb146f6ac108fd8a63f57 --- /dev/null +++ b/vlm/train/ByToKu9ll/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ff9db52aea63787efdf671841323827bfb5f958a5a4889dd72768c79e33dda09 +size 547020 diff --git a/vlm/train/ByToKu9ll/10.png b/vlm/train/ByToKu9ll/10.png new file mode 100644 index 0000000000000000000000000000000000000000..1016bd55ccc58cb72884a6a1797184a00a5666d5 --- /dev/null +++ b/vlm/train/ByToKu9ll/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:af30faae5991b862d7ace9072eeff07c2f079dfd557f57485e3643e6d5a73359 +size 515773 diff --git a/vlm/train/ByToKu9ll/11.png b/vlm/train/ByToKu9ll/11.png new file mode 100644 index 0000000000000000000000000000000000000000..edaf62e4c5b9b72a3c22262004975e8349a0bc0f --- /dev/null +++ b/vlm/train/ByToKu9ll/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b04e8e27c23b96cae343d889cdb8a6ed3b3a9eb1f83ea97922b44ec5090e9086 +size 299883 diff --git a/vlm/train/ByToKu9ll/2.png b/vlm/train/ByToKu9ll/2.png new file mode 100644 index 0000000000000000000000000000000000000000..bdcb20c38ecd18b366942d04a6e1c9ebadec374a --- /dev/null +++ b/vlm/train/ByToKu9ll/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f2156608c36501b7c7a8e47a18c03c71446cdf35d230e6b38d43612a067fd28a +size 576562 diff --git a/vlm/train/ByToKu9ll/3.png b/vlm/train/ByToKu9ll/3.png new file mode 100644 index 0000000000000000000000000000000000000000..75cff8add28e6832aa12d339448166f6fd47ca27 --- /dev/null +++ b/vlm/train/ByToKu9ll/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dd6704e2cdd60abcafbb9812e6ab4097bded662a69ba9b4711e730747bce449e +size 476391 diff --git a/vlm/train/ByToKu9ll/4.png b/vlm/train/ByToKu9ll/4.png new file mode 100644 index 0000000000000000000000000000000000000000..51ceab70a2c2c5d6fe835520c6e576b144baa7d2 --- /dev/null +++ b/vlm/train/ByToKu9ll/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:12e7c5a7d6c88c74ecfca4e06666b95c4d04351b0c6c12f113905f22e1a6ac05 +size 586324 diff --git a/vlm/train/ByToKu9ll/5.png b/vlm/train/ByToKu9ll/5.png new file mode 100644 index 0000000000000000000000000000000000000000..70009549c0b4b45b12cbfd7d0ee0f99ef947b11f --- /dev/null +++ b/vlm/train/ByToKu9ll/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3b4af50c5e2f2a15c5e62fef1c14ea6e7ca62d9c51cdff775f5f84ddd27c608d +size 605092 diff --git a/vlm/train/ByToKu9ll/6.png b/vlm/train/ByToKu9ll/6.png new file mode 100644 index 0000000000000000000000000000000000000000..b9cae2ee45c8c39b7a9bdfc7ca381d5861bba00f --- /dev/null +++ b/vlm/train/ByToKu9ll/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:50ac4f7e4ea3a0570825761586bfec50ad194727bd62e51bfce855e3bedaf9e1 +size 560212 diff --git a/vlm/train/ByToKu9ll/7.png b/vlm/train/ByToKu9ll/7.png new file mode 100644 index 0000000000000000000000000000000000000000..5648df34c183be6e1594396af649dfca87fd5dac --- /dev/null +++ b/vlm/train/ByToKu9ll/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9c3bf52c7aa343836c4d7852ad99869975c00e7a5b38b64c9bd7f315701e91de +size 512936 diff --git a/vlm/train/ByToKu9ll/8.png b/vlm/train/ByToKu9ll/8.png new file mode 100644 index 0000000000000000000000000000000000000000..28030da48e84dfc3ca93545ddff4493f5efd025d --- /dev/null +++ b/vlm/train/ByToKu9ll/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4da54235eead3b78ebd1548e2048b126040e89bebe94752fabe1aefa766572e7 +size 487471 diff --git a/vlm/train/ByToKu9ll/9.png b/vlm/train/ByToKu9ll/9.png new file mode 100644 index 0000000000000000000000000000000000000000..ce1bea90eea51d6d70d534408bfa605ea18b4a05 --- /dev/null +++ b/vlm/train/ByToKu9ll/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e45dd8c321cd835d43a83fd21dc89639f5bcfa4f0a13b492c7b6ad741325c296 +size 401084 diff --git a/vlm/train/BydrOIcle/0.png b/vlm/train/BydrOIcle/0.png new file mode 100644 index 0000000000000000000000000000000000000000..6467a969eff11c6f508aed67289c8bc8aaac664a --- /dev/null +++ b/vlm/train/BydrOIcle/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:83e60ddbb1619476e1ef71b5ed45f169fbea2dd0c59ef3d351d01a1abdeb7b04 +size 468447 diff --git a/vlm/train/BydrOIcle/1.png b/vlm/train/BydrOIcle/1.png new file mode 100644 index 0000000000000000000000000000000000000000..487fec7b13409a6b456e190a414e01ca2db424b2 --- /dev/null +++ b/vlm/train/BydrOIcle/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:020665346d8da41cf6144fb2d2893b6e3c495545edda46e1cbfa6445cf4b2493 +size 526558 diff --git a/vlm/train/BydrOIcle/10.png b/vlm/train/BydrOIcle/10.png new file mode 100644 index 0000000000000000000000000000000000000000..cb31100c3d3229585fad48b96bc65692ac8a8a2c --- /dev/null +++ b/vlm/train/BydrOIcle/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5bc075d102b5a4f4a4f5aec64d1e68b8f1cdd6863dc51d89d4b023a0bf2e7075 +size 265647 diff --git a/vlm/train/BydrOIcle/11.png b/vlm/train/BydrOIcle/11.png new file mode 100644 index 0000000000000000000000000000000000000000..64160e48c59cc2ef840a2e9fbbb346eaff511eb0 --- /dev/null +++ b/vlm/train/BydrOIcle/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e1c2e9badb6265bcaca713b0aa52ca5e7a58407627e3d4ecc6e63ad3ba99805d +size 532393 diff --git a/vlm/train/BydrOIcle/14.png b/vlm/train/BydrOIcle/14.png new file mode 100644 index 0000000000000000000000000000000000000000..8d0764a88021312439caf8bcfc4b872d047000c2 --- /dev/null +++ b/vlm/train/BydrOIcle/14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0ae9e974583df092e8b9ae4b3cd14e623ca01eb636ac96e53fba1b107b92d981 +size 394888 diff --git a/vlm/train/BydrOIcle/15.png b/vlm/train/BydrOIcle/15.png new file mode 100644 index 0000000000000000000000000000000000000000..001391d681da0f41f548e6e24e5ca56ea841437a --- /dev/null +++ b/vlm/train/BydrOIcle/15.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c0a310a091e1ae54b29d6fd0b378576ec442c81ac8c304933f466499b97c0fbd +size 439298 diff --git a/vlm/train/BydrOIcle/17.png b/vlm/train/BydrOIcle/17.png new file mode 100644 index 0000000000000000000000000000000000000000..884516f8e0f933e19eda7e51feb66f7ee27dbb5d --- /dev/null +++ b/vlm/train/BydrOIcle/17.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6b43bb04dd227566094dad3b00f57c9c6337d12aad4f81e1d02cdea567af5f5c +size 390016 diff --git a/vlm/train/BydrOIcle/2.png b/vlm/train/BydrOIcle/2.png new file mode 100644 index 0000000000000000000000000000000000000000..c14a31b93f36581572b3849b41400c242c76977e --- /dev/null +++ b/vlm/train/BydrOIcle/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:db61e77582c43a66588637e2a7f877829e642b4ff1c85d191db458081e42a28f +size 450337 diff --git a/vlm/train/BydrOIcle/21.png b/vlm/train/BydrOIcle/21.png new file mode 100644 index 0000000000000000000000000000000000000000..75904fd533177ad42cfe831b969c29d44aa49223 --- /dev/null +++ b/vlm/train/BydrOIcle/21.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ca159f83cad6a0a9e148888ee45c50f91293903275d4517b5283aad903786565 +size 1203785 diff --git a/vlm/train/BydrOIcle/22.png b/vlm/train/BydrOIcle/22.png new file mode 100644 index 0000000000000000000000000000000000000000..0445b3b9f3cc8fa5f381c90b2987aabc02d22066 --- /dev/null +++ b/vlm/train/BydrOIcle/22.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9af6e9f6499cbd78ac31eeb321c9019e25028217901a67d50d887ba6c237078a +size 1173428 diff --git a/vlm/train/BydrOIcle/23.png b/vlm/train/BydrOIcle/23.png new file mode 100644 index 0000000000000000000000000000000000000000..98f3a19630685b85ce5bc72662d4604391c6464f --- /dev/null +++ b/vlm/train/BydrOIcle/23.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:08921e9c49082d802089d0e00178b8e88114ded631bf2cafb1da28fdd7143ae6 +size 1236404 diff --git a/vlm/train/BydrOIcle/24.png b/vlm/train/BydrOIcle/24.png new file mode 100644 index 0000000000000000000000000000000000000000..f712b2795e583a9fdc9a338f473e2d0aed3a3ba7 --- /dev/null +++ b/vlm/train/BydrOIcle/24.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2f45dcc492c7b94cb4060ae1e6542d840d9b24ca632916b3ee71a5c36873b4b8 +size 1191893 diff --git a/vlm/train/BydrOIcle/3.png b/vlm/train/BydrOIcle/3.png new file mode 100644 index 0000000000000000000000000000000000000000..11c6603356ee78ddcb9eb53ae014e9790fedd8ce --- /dev/null +++ b/vlm/train/BydrOIcle/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b551cbb47e37e0646f4c69e8e979b878b9e4a7dcb0aa829e7f030117917b0a2f +size 443000 diff --git a/vlm/train/BydrOIcle/5.png b/vlm/train/BydrOIcle/5.png new file mode 100644 index 0000000000000000000000000000000000000000..4b4eb09cf8068005dcca5aafdbc03242be6492a6 --- /dev/null +++ b/vlm/train/BydrOIcle/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c3bb6b157625ac3aad94af8de2d36850da21480ed51156c733ebeb1ca5a8fa62 +size 1022659 diff --git a/vlm/train/BydrOIcle/6.png b/vlm/train/BydrOIcle/6.png new file mode 100644 index 0000000000000000000000000000000000000000..4a01653007e5c128c4651faaefdc05e38632426c --- /dev/null +++ b/vlm/train/BydrOIcle/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9e8b5dbd07002f585972d8d2746f400deaa78587023d5265281914d5a6ea6141 +size 523859 diff --git a/vlm/train/BydrOIcle/9.png b/vlm/train/BydrOIcle/9.png new file mode 100644 index 0000000000000000000000000000000000000000..bf3e256062461736a6b4cb34cf986d3275c4521a --- /dev/null +++ b/vlm/train/BydrOIcle/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:82748deefc8c885d938bff234f3d36fc869f92c2181b7e267dc8f98653318eb6 +size 702975 diff --git a/vlm/train/E3Ys6a1NTGT/0.png b/vlm/train/E3Ys6a1NTGT/0.png new file mode 100644 index 0000000000000000000000000000000000000000..b67e2c90072398a7c02930e0cd2eacd6b186ed3b --- /dev/null +++ b/vlm/train/E3Ys6a1NTGT/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c34890a582f2f697499c199ca7de74cbdc7fbf9329e791c93ac7546a27dd2bb8 +size 476870 diff --git a/vlm/train/E3Ys6a1NTGT/1.png b/vlm/train/E3Ys6a1NTGT/1.png new file mode 100644 index 0000000000000000000000000000000000000000..fb83b3ada8f3f318e4a0ff6c561c679efe44e77d --- /dev/null +++ b/vlm/train/E3Ys6a1NTGT/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:27e01db431d8b650c6dd66a12173e441f6130a896b9ce2ea40aada0372884ad7 +size 579726 diff --git a/vlm/train/E3Ys6a1NTGT/10.png b/vlm/train/E3Ys6a1NTGT/10.png new file mode 100644 index 0000000000000000000000000000000000000000..da7cd0bd4e15911ec93f8c21add05138bb7cf89b --- /dev/null +++ b/vlm/train/E3Ys6a1NTGT/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ce19501e942479e64f4da43c88a417ddbb0f853876d32d8317041b0a97796485 +size 483424 diff --git a/vlm/train/E3Ys6a1NTGT/11.png b/vlm/train/E3Ys6a1NTGT/11.png new file mode 100644 index 0000000000000000000000000000000000000000..20069bd587c17ac3b9422a20f7c0b622863deb29 --- /dev/null +++ b/vlm/train/E3Ys6a1NTGT/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b72ef5841323459fc567324759f53a589fdea9efa3d546cebfd93319d80031ab +size 661605 diff --git a/vlm/train/E3Ys6a1NTGT/12.png b/vlm/train/E3Ys6a1NTGT/12.png new file mode 100644 index 0000000000000000000000000000000000000000..ac19f41d297311fe6896993ffd75af18a9ff2b0d --- /dev/null +++ b/vlm/train/E3Ys6a1NTGT/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4327a204fa54a3211c17993e5a0769cec4ae5a6c9a5304c063d1e5f03d1b63f4 +size 572656 diff --git a/vlm/train/E3Ys6a1NTGT/13.png b/vlm/train/E3Ys6a1NTGT/13.png new file mode 100644 index 0000000000000000000000000000000000000000..3a942fe936ccdb63cf3454fb103470bb9d0bf5f9 --- /dev/null +++ b/vlm/train/E3Ys6a1NTGT/13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:522bbf75168e386b8c1f844114483a7cf88cb6ce3b1523fe8e21cf6322210bb4 +size 551763 diff --git a/vlm/train/E3Ys6a1NTGT/14.png b/vlm/train/E3Ys6a1NTGT/14.png new file mode 100644 index 0000000000000000000000000000000000000000..cc802c5ce61e377d7e8f4ef30dab2c0086866e26 --- /dev/null +++ b/vlm/train/E3Ys6a1NTGT/14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4e3d13be821020a7a738c3dddd0dae70d813546556d8e4a35e1dacedd169846f +size 372173 diff --git a/vlm/train/E3Ys6a1NTGT/15.png b/vlm/train/E3Ys6a1NTGT/15.png new file mode 100644 index 0000000000000000000000000000000000000000..0f3ce26e87f8d09c7b2357e4f4447100e9cca571 --- /dev/null +++ b/vlm/train/E3Ys6a1NTGT/15.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:05f20aab07de6f8817cfa79c8ba4d9e4da2000d3309e104b5b1a2a6c858e5e49 +size 442239 diff --git a/vlm/train/E3Ys6a1NTGT/16.png b/vlm/train/E3Ys6a1NTGT/16.png new file mode 100644 index 0000000000000000000000000000000000000000..9f0144a035a4b15571103dd64fbc2059b5040789 --- /dev/null +++ b/vlm/train/E3Ys6a1NTGT/16.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c64721d00716d7d8cf49b216a7adf359e01ede22cca60df69d0aa23233276366 +size 449064 diff --git a/vlm/train/E3Ys6a1NTGT/17.png b/vlm/train/E3Ys6a1NTGT/17.png new file mode 100644 index 0000000000000000000000000000000000000000..0182d107422b8eb4c640862bf159d5b89cd27ffb --- /dev/null +++ b/vlm/train/E3Ys6a1NTGT/17.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:08b8431abb76b79103a1249c85b87962bb8bea8d594ae0bedb043118133328f0 +size 384207 diff --git a/vlm/train/E3Ys6a1NTGT/18.png b/vlm/train/E3Ys6a1NTGT/18.png new file mode 100644 index 0000000000000000000000000000000000000000..aaca2ab8dddfae60a93c86d63efbc82934b379d7 --- /dev/null +++ b/vlm/train/E3Ys6a1NTGT/18.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:42da27229679023c94ee53752a6a928bddf20867eeee1b6a2fe739dc24c3efaa +size 405690 diff --git a/vlm/train/E3Ys6a1NTGT/19.png b/vlm/train/E3Ys6a1NTGT/19.png new file mode 100644 index 0000000000000000000000000000000000000000..64aa69f847c2a924e644a99d9ed4ec0e65d1e671 --- /dev/null +++ b/vlm/train/E3Ys6a1NTGT/19.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1ccc74364265ba1bb027cb474f6229e485f4cfbdcea47957f38eddf5926c1269 +size 371276 diff --git a/vlm/train/E3Ys6a1NTGT/2.png b/vlm/train/E3Ys6a1NTGT/2.png new file mode 100644 index 0000000000000000000000000000000000000000..f0c731b99a803dad67799da7dcf96bd317cc8a30 --- /dev/null +++ b/vlm/train/E3Ys6a1NTGT/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:00040d8f5bd1e2815a86ec46dd39822f4f8d82ceaf282943c747622437297b56 +size 505400 diff --git a/vlm/train/E3Ys6a1NTGT/20.png b/vlm/train/E3Ys6a1NTGT/20.png new file mode 100644 index 0000000000000000000000000000000000000000..9ba2e1ee9cbd3fd13a69ffe4253c0680da22ea65 --- /dev/null +++ b/vlm/train/E3Ys6a1NTGT/20.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:046adfe833ee6c659755db41dc31a31fda5c062325dadaa30da580a2b73ecb2a +size 374264 diff --git a/vlm/train/E3Ys6a1NTGT/21.png b/vlm/train/E3Ys6a1NTGT/21.png new file mode 100644 index 0000000000000000000000000000000000000000..4462eb86b544a619de754420ba5e5a10f1d6d153 --- /dev/null +++ b/vlm/train/E3Ys6a1NTGT/21.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:54f79fde4bfe0954e4c8e63c438f27d1df39d17dc360ea894920e6c7bac8c56b +size 436242 diff --git a/vlm/train/E3Ys6a1NTGT/22.png b/vlm/train/E3Ys6a1NTGT/22.png new file mode 100644 index 0000000000000000000000000000000000000000..8236cde24e493e29dcbac9ef52d5d7036a846547 --- /dev/null +++ b/vlm/train/E3Ys6a1NTGT/22.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ef05caf537716026630541690eb771efd882b4dfbea8edc22381ab1c073e077a +size 343857 diff --git a/vlm/train/E3Ys6a1NTGT/23.png b/vlm/train/E3Ys6a1NTGT/23.png new file mode 100644 index 0000000000000000000000000000000000000000..246de5db492089542c4e928d3e3005a5ee3e4eb4 --- /dev/null +++ b/vlm/train/E3Ys6a1NTGT/23.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c8b862db695334794db869fb6561e9deb496800dbb45746ee069da91d9f833a2 +size 361598 diff --git a/vlm/train/E3Ys6a1NTGT/24.png b/vlm/train/E3Ys6a1NTGT/24.png new file mode 100644 index 0000000000000000000000000000000000000000..bdad39055f9988a846efc12475669c7eed744ee9 --- /dev/null +++ b/vlm/train/E3Ys6a1NTGT/24.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f1d1a43eb0ea36af1b13c814d82d3b66290953bd2f78d21e16c41412a180f873 +size 355277 diff --git a/vlm/train/E3Ys6a1NTGT/25.png b/vlm/train/E3Ys6a1NTGT/25.png new file mode 100644 index 0000000000000000000000000000000000000000..4938368be7298b70a0ac15ac1944e4edcf197d87 --- /dev/null +++ b/vlm/train/E3Ys6a1NTGT/25.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:94446f31b0ca3aee7911985cd13ee7ecdd9e9bdeb7545d603740ffc338a4a72a +size 538838 diff --git a/vlm/train/E3Ys6a1NTGT/26.png b/vlm/train/E3Ys6a1NTGT/26.png new file mode 100644 index 0000000000000000000000000000000000000000..c440a2b5949aea37310960ffed423ce10674ec92 --- /dev/null +++ b/vlm/train/E3Ys6a1NTGT/26.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c02dc945d0a103df4c2c70aadb93f4076784ad3293631609ef8a64a14334fc57 +size 606511 diff --git a/vlm/train/E3Ys6a1NTGT/27.png b/vlm/train/E3Ys6a1NTGT/27.png new file mode 100644 index 0000000000000000000000000000000000000000..a34344c5eb3d47c1276a9c82033228e951fd70c8 --- /dev/null +++ b/vlm/train/E3Ys6a1NTGT/27.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6de176d68babf19348089d62a1c7e542afee6c11e6c2178d2565ec206fa43430 +size 542812 diff --git a/vlm/train/E3Ys6a1NTGT/28.png b/vlm/train/E3Ys6a1NTGT/28.png new file mode 100644 index 0000000000000000000000000000000000000000..4403c9fcce3784c19f02911cfd5ebb329639994d --- /dev/null +++ b/vlm/train/E3Ys6a1NTGT/28.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3a94b95986f96db188f8c32efded341c9d0f15eeb301011d275580ff065349c0 +size 461127 diff --git a/vlm/train/E3Ys6a1NTGT/29.png b/vlm/train/E3Ys6a1NTGT/29.png new file mode 100644 index 0000000000000000000000000000000000000000..e2296aedf17622a873afd7f70d0717a5d1808a02 --- /dev/null +++ b/vlm/train/E3Ys6a1NTGT/29.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:39f71586d19b3e8ddb451e1207d5c263ff523079a29844d6022327161dbdd803 +size 541653 diff --git a/vlm/train/E3Ys6a1NTGT/3.png b/vlm/train/E3Ys6a1NTGT/3.png new file mode 100644 index 0000000000000000000000000000000000000000..fd93d3ec6f075bb55b0af58e5efbe3975a73aa69 --- /dev/null +++ b/vlm/train/E3Ys6a1NTGT/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c719ea197b2c72020dee4596ac91c1b715cad6078ae72db739cdd7cceb62643f +size 548097 diff --git a/vlm/train/E3Ys6a1NTGT/30.png b/vlm/train/E3Ys6a1NTGT/30.png new file mode 100644 index 0000000000000000000000000000000000000000..0b7285a281d901c5152671741b0de57fe5cc0aa2 --- /dev/null +++ b/vlm/train/E3Ys6a1NTGT/30.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:72517fbd52445a98a4d15837b5d98a09f3b2bebed90b67d7d2d1209e1402a0df +size 230937 diff --git a/vlm/train/E3Ys6a1NTGT/4.png b/vlm/train/E3Ys6a1NTGT/4.png new file mode 100644 index 0000000000000000000000000000000000000000..f4ed1401158fcbe0995b99230d604734935c70e7 --- /dev/null +++ b/vlm/train/E3Ys6a1NTGT/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1d714aa6da0a58894c9371449d4b7d1938ddeb80f4c14381ce660880f0ee1179 +size 513547 diff --git a/vlm/train/E3Ys6a1NTGT/5.png b/vlm/train/E3Ys6a1NTGT/5.png new file mode 100644 index 0000000000000000000000000000000000000000..245626b1827ce091fe91fbd42e53d9f0e45154da --- /dev/null +++ b/vlm/train/E3Ys6a1NTGT/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dd79e502ce7f5e515277687b81a891ac197618a20a5480095425fb1962ea7fed +size 477397 diff --git a/vlm/train/E3Ys6a1NTGT/6.png b/vlm/train/E3Ys6a1NTGT/6.png new file mode 100644 index 0000000000000000000000000000000000000000..b1f04950c0aeb162bfbbedd889422e5886cc737b --- /dev/null +++ b/vlm/train/E3Ys6a1NTGT/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d77d8036337320a700cf7608722136aa59795fa80fd79f51156228bc34d1f2a3 +size 493161 diff --git a/vlm/train/E3Ys6a1NTGT/7.png b/vlm/train/E3Ys6a1NTGT/7.png new file mode 100644 index 0000000000000000000000000000000000000000..e59f16d6392975afb7077a43c17bf25589e03d9c --- /dev/null +++ b/vlm/train/E3Ys6a1NTGT/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4c7ab9cdcc389fd0064f4358d8045cebb111163f38e20d8a7eb09eb1c7ac9e28 +size 565137 diff --git a/vlm/train/E3Ys6a1NTGT/8.png b/vlm/train/E3Ys6a1NTGT/8.png new file mode 100644 index 0000000000000000000000000000000000000000..96fad410b58a6c50b5eb2b8714c61462a47a34f5 --- /dev/null +++ b/vlm/train/E3Ys6a1NTGT/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:65afae8749836616e8196194cda736327962b485abd3a5459772cfe36c273698 +size 527584 diff --git a/vlm/train/E3Ys6a1NTGT/9.png b/vlm/train/E3Ys6a1NTGT/9.png new file mode 100644 index 0000000000000000000000000000000000000000..1a97d965aca3cfbc38bf1ee27fcf31c2469ec0e4 --- /dev/null +++ b/vlm/train/E3Ys6a1NTGT/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e5d2f59fff36f577395528c560be6d8b41970cbd6a21964cd07393e8ba0a7f7e +size 559204 diff --git a/vlm/train/H1Xw62kRZ/0.png b/vlm/train/H1Xw62kRZ/0.png new file mode 100644 index 0000000000000000000000000000000000000000..80bcac9461152c4b826865d2eb8f8a45ad0e6a56 --- /dev/null +++ b/vlm/train/H1Xw62kRZ/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c74562ec9483fc098b11cdb34a51f7b7617b0b0d1d50c52afc4ab51a1b71addf +size 496345 diff --git a/vlm/train/H1Xw62kRZ/1.png b/vlm/train/H1Xw62kRZ/1.png new file mode 100644 index 0000000000000000000000000000000000000000..e055652dd43406555a3bb35f9768a8dab8cb36d5 --- /dev/null +++ b/vlm/train/H1Xw62kRZ/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:662afb3bfd145d9687b9376751ce19024ced080408ed455dd50f770aea43beda +size 515730 diff --git a/vlm/train/H1Xw62kRZ/10.png b/vlm/train/H1Xw62kRZ/10.png new file mode 100644 index 0000000000000000000000000000000000000000..06d83331a68eaeaefb1eed17ba11cdc3d99c99ce --- /dev/null +++ b/vlm/train/H1Xw62kRZ/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:48b7323873b995bd83551027c667e38d3dc3b8baa36022e9ade84e2a099cfffa +size 327509 diff --git a/vlm/train/H1Xw62kRZ/11.png b/vlm/train/H1Xw62kRZ/11.png new file mode 100644 index 0000000000000000000000000000000000000000..4258e6961ba76e0c9e6bb0623d7ac74dd725fc2c --- /dev/null +++ b/vlm/train/H1Xw62kRZ/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8a21dc06fc8b6d3cb39edddcdd7879caaf9944be665b09b02043bbbaeb05493b +size 460608 diff --git a/vlm/train/H1Xw62kRZ/12.png b/vlm/train/H1Xw62kRZ/12.png new file mode 100644 index 0000000000000000000000000000000000000000..623925437a6349a93e27c33d49438c931c130ab1 --- /dev/null +++ b/vlm/train/H1Xw62kRZ/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e2dbeb893cc13f71365b1cafef1fc35e7c325735c1d3b8a8592a19dbf5bca13c +size 311155 diff --git a/vlm/train/H1Xw62kRZ/13.png b/vlm/train/H1Xw62kRZ/13.png new file mode 100644 index 0000000000000000000000000000000000000000..509b7ac49cb871b7e3f032e7f16a9f6a0194db4d --- /dev/null +++ b/vlm/train/H1Xw62kRZ/13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ef5e201fe23e19fa05452a69a7fdfc24d3530c6aa441edd72e7f37a7a14bbcc0 +size 484219 diff --git a/vlm/train/H1Xw62kRZ/14.png b/vlm/train/H1Xw62kRZ/14.png new file mode 100644 index 0000000000000000000000000000000000000000..62f7db505c7967bd39651d1cdbce28845c5f06c0 --- /dev/null +++ b/vlm/train/H1Xw62kRZ/14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4bece162ae1a352a02487cb22f525c4343ab0e758bee8ec5259c7787e337313a +size 206151 diff --git a/vlm/train/H1Xw62kRZ/2.png b/vlm/train/H1Xw62kRZ/2.png new file mode 100644 index 0000000000000000000000000000000000000000..c041c56b2ca49178dcf366b11c7d7d72601a7c4c --- /dev/null +++ b/vlm/train/H1Xw62kRZ/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:870ed9dbbd7f30b215a32093de4fe416c0ebc04ba74bc4126a7775c11bda3c6e +size 598771 diff --git a/vlm/train/H1Xw62kRZ/3.png b/vlm/train/H1Xw62kRZ/3.png new file mode 100644 index 0000000000000000000000000000000000000000..2a08b04a687977e8314d2e9a48d61bdd8e8af750 --- /dev/null +++ b/vlm/train/H1Xw62kRZ/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c653c2c967dfdf2248527aa7f0cf88d8a3f5258e97e8c087cbc84d8dae49178a +size 464923 diff --git a/vlm/train/H1Xw62kRZ/4.png b/vlm/train/H1Xw62kRZ/4.png new file mode 100644 index 0000000000000000000000000000000000000000..5c48cf536ba9b1b6cc8090060c13f94a843bb1df --- /dev/null +++ b/vlm/train/H1Xw62kRZ/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0c2f5def4c89b4166691b761dbbdeaf8a32141bdf1fe8ced6fc2c7760862a1f8 +size 403076 diff --git a/vlm/train/H1Xw62kRZ/5.png b/vlm/train/H1Xw62kRZ/5.png new file mode 100644 index 0000000000000000000000000000000000000000..1fa6273b49645b7a49dfd23f7ff964596153458b --- /dev/null +++ b/vlm/train/H1Xw62kRZ/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:216c83b8d30a8b7321a1593a5b99dc11e3edd52c1ca0f944f61ba8f15edb1f68 +size 492312 diff --git a/vlm/train/H1Xw62kRZ/6.png b/vlm/train/H1Xw62kRZ/6.png new file mode 100644 index 0000000000000000000000000000000000000000..837aacd063885fb51a77f82e0aa50c7ae9b923f1 --- /dev/null +++ b/vlm/train/H1Xw62kRZ/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:927989fc3162150be77f200e444e3a4f25026c0d340eff69963cfe4628c33b91 +size 489994 diff --git a/vlm/train/H1Xw62kRZ/7.png b/vlm/train/H1Xw62kRZ/7.png new file mode 100644 index 0000000000000000000000000000000000000000..f6539df1ad292bdf8b93c9e19d40400609f826c1 --- /dev/null +++ b/vlm/train/H1Xw62kRZ/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7092d335e5e47fb74bc00cef953f93e09bf460cdc681f5ab765f6f850fa0838b +size 544446 diff --git a/vlm/train/H1Xw62kRZ/8.png b/vlm/train/H1Xw62kRZ/8.png new file mode 100644 index 0000000000000000000000000000000000000000..1accde173fc5eb0ca5e00e91b07c22ac9dfe3a07 --- /dev/null +++ b/vlm/train/H1Xw62kRZ/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:161efaa493dcee738965d0ea74a89b7f624029d0fd68b3670007741231197bfd +size 530465 diff --git a/vlm/train/H1Xw62kRZ/9.png b/vlm/train/H1Xw62kRZ/9.png new file mode 100644 index 0000000000000000000000000000000000000000..fe2638e96e19cc8a9f692fb8334bc83d1237c20d --- /dev/null +++ b/vlm/train/H1Xw62kRZ/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:452f6e17614931fbd3f103ae0c1316eedc954f308aa31e5243e6f7ab288e01c6 +size 569632 diff --git a/vlm/train/H1e572A5tQ/0.png b/vlm/train/H1e572A5tQ/0.png new file mode 100644 index 0000000000000000000000000000000000000000..27a646385092b78c63cd1595e57045106704e7f1 --- /dev/null +++ b/vlm/train/H1e572A5tQ/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eff454dc3ff339f3f35db78675060d1a4e2282592c9fa603d696927af4acb934 +size 492302 diff --git a/vlm/train/H1e572A5tQ/1.png b/vlm/train/H1e572A5tQ/1.png new file mode 100644 index 0000000000000000000000000000000000000000..01108142a9eda762afcaab4777fe614919912997 --- /dev/null +++ b/vlm/train/H1e572A5tQ/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5cfd73d4130cf93619060e592144754dc8a579d0ecf15a22fe085d8d668f6fd1 +size 653938 diff --git a/vlm/train/H1e572A5tQ/2.png b/vlm/train/H1e572A5tQ/2.png new file mode 100644 index 0000000000000000000000000000000000000000..61df6ede035fd31de7744329e5087979c4d4ef40 --- /dev/null +++ b/vlm/train/H1e572A5tQ/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2af291c3bd61dbc8ba5e44cc4a0299faca0bcf5139892403ecc56650014b951a +size 577273 diff --git a/vlm/train/H1e572A5tQ/3.png b/vlm/train/H1e572A5tQ/3.png new file mode 100644 index 0000000000000000000000000000000000000000..e1ce303ef4af1772af918bd714b63d88bcaa8d3a --- /dev/null +++ b/vlm/train/H1e572A5tQ/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4e7315f55011449516ccfffb376c7a24a3f19f8d1262709138708a5d4e0f20af +size 555353 diff --git a/vlm/train/H1e572A5tQ/4.png b/vlm/train/H1e572A5tQ/4.png new file mode 100644 index 0000000000000000000000000000000000000000..ae20c9544db1c19291768080889326b419ef90fe --- /dev/null +++ b/vlm/train/H1e572A5tQ/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:69603ea5222d05d18722f473b471be7562dd80277ea7c8280002214a95ce9e81 +size 449791 diff --git a/vlm/train/H1e572A5tQ/5.png b/vlm/train/H1e572A5tQ/5.png new file mode 100644 index 0000000000000000000000000000000000000000..32e428aa7d4f2532621855e336bb84c3096773d6 --- /dev/null +++ b/vlm/train/H1e572A5tQ/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7efe08895f27af6fd2c3837103bf57469249419948a721220c187092ab3331be +size 716362 diff --git a/vlm/train/H1e572A5tQ/6.png b/vlm/train/H1e572A5tQ/6.png new file mode 100644 index 0000000000000000000000000000000000000000..630702e3e07f85e6f1b5f7ad4a4bdbd23a893e4a --- /dev/null +++ b/vlm/train/H1e572A5tQ/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:62d1c58224838df6168a91f1dacab7b491a06347ad5db4e5890a5f501f1fe79c +size 610370 diff --git a/vlm/train/H1e572A5tQ/7.png b/vlm/train/H1e572A5tQ/7.png new file mode 100644 index 0000000000000000000000000000000000000000..f9e1cd4f23f356fea7e0217566f7cb45feacbed5 --- /dev/null +++ b/vlm/train/H1e572A5tQ/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0131e211d2c469a37f4afcf6faecdfe26562a99719ffdc479836618c45bc360d +size 550094 diff --git a/vlm/train/H1e572A5tQ/8.png b/vlm/train/H1e572A5tQ/8.png new file mode 100644 index 0000000000000000000000000000000000000000..69d932528dd1352fa41020315ba4683ff597ca63 --- /dev/null +++ b/vlm/train/H1e572A5tQ/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4dfc6bc461ab71e1557d8adae89ceb925d9603b7d6f19adaf886958f6740cf55 +size 589830 diff --git a/vlm/train/H1e572A5tQ/9.png b/vlm/train/H1e572A5tQ/9.png new file mode 100644 index 0000000000000000000000000000000000000000..8aed80e6e5ea64512fca6af97cf3b1e5540f41fd --- /dev/null +++ b/vlm/train/H1e572A5tQ/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2d8614421b6e2d540db9e28f74225e83f1d4627e9f4988e0573305eee7fb5fb4 +size 290578 diff --git a/vlm/train/H1exf64KwH/0.png b/vlm/train/H1exf64KwH/0.png new file mode 100644 index 0000000000000000000000000000000000000000..1d9d970dd680593ffd28e00317b0ae603d3be235 --- /dev/null +++ b/vlm/train/H1exf64KwH/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f5e13a7608895a02f6fd3595b8469471b240d97c3d2299575cc256d2681460ea +size 509543 diff --git a/vlm/train/H1exf64KwH/1.png b/vlm/train/H1exf64KwH/1.png new file mode 100644 index 0000000000000000000000000000000000000000..be3ebe6d2d38387d88b14276929cef155c5db54e --- /dev/null +++ b/vlm/train/H1exf64KwH/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f33feff331659ff15d4d3d6ffb2bb337a3ab32bf3348eb66759950af9601586b +size 691867 diff --git a/vlm/train/H1exf64KwH/10.png b/vlm/train/H1exf64KwH/10.png new file mode 100644 index 0000000000000000000000000000000000000000..cee6b49cd18964a322d57143426a0835f0bda780 --- /dev/null +++ b/vlm/train/H1exf64KwH/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b1bc93b657cbb5578afe02ac9e0dc9c6ca6abf68120c63aeef34b17ef5b09437 +size 330842 diff --git a/vlm/train/H1exf64KwH/11.png b/vlm/train/H1exf64KwH/11.png new file mode 100644 index 0000000000000000000000000000000000000000..bbab0b75a46d87db0a8a33c6d8529118a5f18315 --- /dev/null +++ b/vlm/train/H1exf64KwH/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9f8a5fd0dfe19d85ca85642fc983bfb06ef4e3f476a5c1bb31aca0121b1b13b6 +size 434893 diff --git a/vlm/train/H1exf64KwH/12.png b/vlm/train/H1exf64KwH/12.png new file mode 100644 index 0000000000000000000000000000000000000000..4a537d03cdedba3bfaf318797ff97246fd1e5d88 --- /dev/null +++ b/vlm/train/H1exf64KwH/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3cfc1ce4bd75f29a71b4977e3dbf73d635da44f7fe33fb7a9ce2be3719191394 +size 487019 diff --git a/vlm/train/H1exf64KwH/13.png b/vlm/train/H1exf64KwH/13.png new file mode 100644 index 0000000000000000000000000000000000000000..2abd8d6f3eeff4dc8a56e7965149e5a5a66abe69 --- /dev/null +++ b/vlm/train/H1exf64KwH/13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5bf13106dc1327474cea3ac956410a0f537d3c8533657a78074723be202ef217 +size 786525 diff --git a/vlm/train/H1exf64KwH/14.png b/vlm/train/H1exf64KwH/14.png new file mode 100644 index 0000000000000000000000000000000000000000..9510ac69282acbc34b061f6ebf0459fbae7ccf39 --- /dev/null +++ b/vlm/train/H1exf64KwH/14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b7126dcdc08da3f7bd26fc99698558f925e714bd8fa4955744a6580f41937e97 +size 412238 diff --git a/vlm/train/H1exf64KwH/15.png b/vlm/train/H1exf64KwH/15.png new file mode 100644 index 0000000000000000000000000000000000000000..032c5149c180c2a12a919223de4f2d27f666553b --- /dev/null +++ b/vlm/train/H1exf64KwH/15.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cb46014bb68940faac14307ec50945f2280b3ac8fd85836d0befc375b758f726 +size 591337 diff --git a/vlm/train/H1exf64KwH/16.png b/vlm/train/H1exf64KwH/16.png new file mode 100644 index 0000000000000000000000000000000000000000..df96a5f74dc90d4806ee9b4152282a3ea565141b --- /dev/null +++ b/vlm/train/H1exf64KwH/16.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fced52d62fc7c2f2518234d5a31aa80085c7dff27b52bc2c715007cfa853f681 +size 586236 diff --git a/vlm/train/H1exf64KwH/17.png b/vlm/train/H1exf64KwH/17.png new file mode 100644 index 0000000000000000000000000000000000000000..9d915c2d5e0749cb2bc443a1e2d05c51a7acbb54 --- /dev/null +++ b/vlm/train/H1exf64KwH/17.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:85449dc5f40dc903282e6664eebd77c08e10f7b81404d439dde80620a90beba1 +size 499465 diff --git a/vlm/train/H1exf64KwH/18.png b/vlm/train/H1exf64KwH/18.png new file mode 100644 index 0000000000000000000000000000000000000000..41f31fe1adeeed483c01b47a76e5991430e52603 --- /dev/null +++ b/vlm/train/H1exf64KwH/18.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:448c94394723f686d6c9567a50e4ce973d24dc8edee69c8ee0b23fd29fb8248d +size 1092320 diff --git a/vlm/train/H1exf64KwH/19.png b/vlm/train/H1exf64KwH/19.png new file mode 100644 index 0000000000000000000000000000000000000000..58a723cfda9b909e272968c1be059e575026f504 --- /dev/null +++ b/vlm/train/H1exf64KwH/19.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d70b6de53a74b6578713e93d9f9be0bac2980f58260e3018c7113a78d6e11d90 +size 847149 diff --git a/vlm/train/H1exf64KwH/2.png b/vlm/train/H1exf64KwH/2.png new file mode 100644 index 0000000000000000000000000000000000000000..5beab7b7cd35e526084ad86d21327ddc708ddb34 --- /dev/null +++ b/vlm/train/H1exf64KwH/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f9c3bfb95689494b338b5287a901378a4a7a11cfcd60af643caff39076f8158e +size 584798 diff --git a/vlm/train/H1exf64KwH/20.png b/vlm/train/H1exf64KwH/20.png new file mode 100644 index 0000000000000000000000000000000000000000..3e794493208db9a7db922aa9e37685fda94138cc --- /dev/null +++ b/vlm/train/H1exf64KwH/20.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bfae7434deb6fb1b9cef5a00d6687c591086c031cae07f9b9294dea235d89ba9 +size 154636 diff --git a/vlm/train/H1exf64KwH/3.png b/vlm/train/H1exf64KwH/3.png new file mode 100644 index 0000000000000000000000000000000000000000..a94116ab0b59b97945a3decd12042d9f391b7c41 --- /dev/null +++ b/vlm/train/H1exf64KwH/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7d02492614b52691437665d027368b51c9f431e024fc4b2e70b12faa22bfb705 +size 532793 diff --git a/vlm/train/H1exf64KwH/4.png b/vlm/train/H1exf64KwH/4.png new file mode 100644 index 0000000000000000000000000000000000000000..8a7781f50167b47d9dc24a990af0eeba2ddc0d56 --- /dev/null +++ b/vlm/train/H1exf64KwH/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:75079b0cdcc036410b4886e7b44b3d088e21c3afccfcb082a70b810245793c56 +size 505121 diff --git a/vlm/train/H1exf64KwH/5.png b/vlm/train/H1exf64KwH/5.png new file mode 100644 index 0000000000000000000000000000000000000000..6ec41ff0285b79b5cbd27620e201c6f5c6822894 --- /dev/null +++ b/vlm/train/H1exf64KwH/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b4aa9b29ac05401c9557183d3c93c469507737715390e146d331462e9f615053 +size 629129 diff --git a/vlm/train/H1exf64KwH/6.png b/vlm/train/H1exf64KwH/6.png new file mode 100644 index 0000000000000000000000000000000000000000..0bb22f2fb64b9d06480c54f452565ea8f6928e97 --- /dev/null +++ b/vlm/train/H1exf64KwH/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:969e15dc4cf644e61823b296632d44ad7b54b2e77c0efed44e9582160ad95eab +size 587951 diff --git a/vlm/train/H1exf64KwH/7.png b/vlm/train/H1exf64KwH/7.png new file mode 100644 index 0000000000000000000000000000000000000000..bab3fd0838d2a4dbc454b1a2453afed66cb5d5db --- /dev/null +++ b/vlm/train/H1exf64KwH/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3cc5b2dd40e20063ec488b608e2325fafcb4fec389c0218a5d79ff8eba1af567 +size 804586 diff --git a/vlm/train/H1exf64KwH/8.png b/vlm/train/H1exf64KwH/8.png new file mode 100644 index 0000000000000000000000000000000000000000..23775209cead7869c8d30679608d374e50b1953e --- /dev/null +++ b/vlm/train/H1exf64KwH/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c915cd0ccad8a9a341051d556f3cd4d49d0b3dd24a935d1c4113ce073baaafff +size 526439 diff --git a/vlm/train/H1exf64KwH/9.png b/vlm/train/H1exf64KwH/9.png new file mode 100644 index 0000000000000000000000000000000000000000..b166dfd13cf41342ae4e9b29094e1ab020e876b7 --- /dev/null +++ b/vlm/train/H1exf64KwH/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:62dc3edb75f641ccb1b6d7078d9f526e311d00c1c8c804426d8400d6d1dfd467 +size 562756 diff --git a/vlm/train/H1laeJrKDB/0.png b/vlm/train/H1laeJrKDB/0.png new file mode 100644 index 0000000000000000000000000000000000000000..3ee30d180fb5d703087127fbaa959df1b0ddf86f --- /dev/null +++ b/vlm/train/H1laeJrKDB/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:60ff74aee88bb2ae648ec6d12be8ada2748d4e04a931b108b741a5fe0f3ec46b +size 1189194 diff --git a/vlm/train/H1laeJrKDB/1.png b/vlm/train/H1laeJrKDB/1.png new file mode 100644 index 0000000000000000000000000000000000000000..f5fd906a396bbbd220fe57191f3f117bc79853ff --- /dev/null +++ b/vlm/train/H1laeJrKDB/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7baa725cf936ab017de39da22b80ea76a348add952fdc9982cce72603f8fae7a +size 578414 diff --git a/vlm/train/H1laeJrKDB/10.png b/vlm/train/H1laeJrKDB/10.png new file mode 100644 index 0000000000000000000000000000000000000000..0754b4be1f5fdf484b35d37473e3e7f86acb06f0 --- /dev/null +++ b/vlm/train/H1laeJrKDB/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:060201a05a27fdd53bf8745b212777e26d274550d139781cce5a595ded7c435e +size 535946 diff --git a/vlm/train/H1laeJrKDB/11.png b/vlm/train/H1laeJrKDB/11.png new file mode 100644 index 0000000000000000000000000000000000000000..238b3214fdef2d9a064be7af1d785efe3a4d6106 --- /dev/null +++ b/vlm/train/H1laeJrKDB/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5027eeca62271125f65d399cee44fa081973fd596932d4f18033ffa4e5696b8c +size 120049 diff --git a/vlm/train/H1laeJrKDB/12.png b/vlm/train/H1laeJrKDB/12.png new file mode 100644 index 0000000000000000000000000000000000000000..626530deabe5d61ba5842fcad8357d711a2b4bbf --- /dev/null +++ b/vlm/train/H1laeJrKDB/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:23041a1ff37a279273463cdf94765bb9613cb209e5bc73fbb8aef918ecf64367 +size 422442 diff --git a/vlm/train/H1laeJrKDB/13.png b/vlm/train/H1laeJrKDB/13.png new file mode 100644 index 0000000000000000000000000000000000000000..442536a485be2b950ebde9b7b76a2653b14dfd26 --- /dev/null +++ b/vlm/train/H1laeJrKDB/13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ffe9d4ab40765e46a1e371979d534530e34113fb1bee32635d54977c9b335070 +size 838625 diff --git a/vlm/train/H1laeJrKDB/14.png b/vlm/train/H1laeJrKDB/14.png new file mode 100644 index 0000000000000000000000000000000000000000..44902f25d5685336c0458ea45553a314d97badfe --- /dev/null +++ b/vlm/train/H1laeJrKDB/14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3b5f82b9efef5a7e9b6c647d43ccc92a6828fb1304ace774f4be9064c2118a8e +size 418442 diff --git a/vlm/train/H1laeJrKDB/15.png b/vlm/train/H1laeJrKDB/15.png new file mode 100644 index 0000000000000000000000000000000000000000..d26ca3be8042df82a5227bb822d9025419d50871 --- /dev/null +++ b/vlm/train/H1laeJrKDB/15.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:766d14eb891dd42ccd3609155d9ab05a75aff0baf3e9492b68260ed18f0608fb +size 2156918 diff --git a/vlm/train/H1laeJrKDB/16.png b/vlm/train/H1laeJrKDB/16.png new file mode 100644 index 0000000000000000000000000000000000000000..80ce0eb49a5ef4249e8fb16403b7d90c143a1818 --- /dev/null +++ b/vlm/train/H1laeJrKDB/16.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a9366c912d7d645bdf2ab799c2042b4d591901aaa1e572c8f62ad31e35f2a4b7 +size 509945 diff --git a/vlm/train/H1laeJrKDB/2.png b/vlm/train/H1laeJrKDB/2.png new file mode 100644 index 0000000000000000000000000000000000000000..a5cf155ab09ccc05e1a8256d48949da2b8a6cdd3 --- /dev/null +++ b/vlm/train/H1laeJrKDB/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:05c14a189f7485efcd6bedb43f6eb534522415d18dcd1b118c2819f209727748 +size 527993 diff --git a/vlm/train/H1laeJrKDB/3.png b/vlm/train/H1laeJrKDB/3.png new file mode 100644 index 0000000000000000000000000000000000000000..06c49334201a03ef868aa2a11fba178baa6a6174 --- /dev/null +++ b/vlm/train/H1laeJrKDB/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:737fe7bbb97ba99b43afd96863317f877de5701f2efa6d74b01bc9340f6f4d1f +size 432520 diff --git a/vlm/train/H1laeJrKDB/4.png b/vlm/train/H1laeJrKDB/4.png new file mode 100644 index 0000000000000000000000000000000000000000..cfd58d97e0e7749c30295e0601bbdd6383958b19 --- /dev/null +++ b/vlm/train/H1laeJrKDB/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:480c8b01fa2013b2ef094bb2a6108575ab7ceb029d7f37b4f91ab8d5e96a7166 +size 445774 diff --git a/vlm/train/H1laeJrKDB/5.png b/vlm/train/H1laeJrKDB/5.png new file mode 100644 index 0000000000000000000000000000000000000000..06ff02f3aff201231962e883e13f79e024718d50 --- /dev/null +++ b/vlm/train/H1laeJrKDB/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:06421af44d69bfd4139728adf0f8041de9b5a86a0aacb26148bee16c8fafd391 +size 548163 diff --git a/vlm/train/H1laeJrKDB/6.png b/vlm/train/H1laeJrKDB/6.png new file mode 100644 index 0000000000000000000000000000000000000000..75cd377c398c3b4be2bd238a7bad971de0a78e50 --- /dev/null +++ b/vlm/train/H1laeJrKDB/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:32236e08974b3f4419eaa31dfa4a6adec1050885c2b118f7f3fbc9d99ba1455f +size 716782 diff --git a/vlm/train/H1laeJrKDB/7.png b/vlm/train/H1laeJrKDB/7.png new file mode 100644 index 0000000000000000000000000000000000000000..80b81736732811a211c05c3fe6689003dd181191 --- /dev/null +++ b/vlm/train/H1laeJrKDB/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4b23f9f960a5daec5b078e4b4ff00966d181b546b2c07da3945022937d9783be +size 1121919 diff --git a/vlm/train/H1laeJrKDB/8.png b/vlm/train/H1laeJrKDB/8.png new file mode 100644 index 0000000000000000000000000000000000000000..7514c00b32682e9cde2dae741a0b205acee0f4dc --- /dev/null +++ b/vlm/train/H1laeJrKDB/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9e553cf980bdd2f88beb73fef5b9a9bd236a4a7ad330a1e375348386751c199c +size 530023 diff --git a/vlm/train/H1laeJrKDB/9.png b/vlm/train/H1laeJrKDB/9.png new file mode 100644 index 0000000000000000000000000000000000000000..8f7869979e34a24f382fc3fbd0a1edc69bb4674e --- /dev/null +++ b/vlm/train/H1laeJrKDB/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4c2d5616646f2d99935106596e4a41ee014decce7dfe0bb92442676b9557a18d +size 570447 diff --git a/vlm/train/H1xFWgrFPS/0.png b/vlm/train/H1xFWgrFPS/0.png new file mode 100644 index 0000000000000000000000000000000000000000..d172942f306edec4ea7306a3cb64f2498ac1746e --- /dev/null +++ b/vlm/train/H1xFWgrFPS/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0f06f7c3998b62f6c4ca85e5c79df41c1778fe9b63aa677ce6587314ec1239d4 +size 505448 diff --git a/vlm/train/H1xFWgrFPS/1.png b/vlm/train/H1xFWgrFPS/1.png new file mode 100644 index 0000000000000000000000000000000000000000..064840754dc74acc23b1bccc29952131f5089430 --- /dev/null +++ b/vlm/train/H1xFWgrFPS/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b23d52738383079f5cf368bee2268005468cbcc32b31f0173f7edb974b45f7cd +size 555998 diff --git a/vlm/train/H1xFWgrFPS/10.png b/vlm/train/H1xFWgrFPS/10.png new file mode 100644 index 0000000000000000000000000000000000000000..760a12a1b0afbd9eec1220d74d6c18fc5634352f --- /dev/null +++ b/vlm/train/H1xFWgrFPS/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5e5bcb253cc5b6e640e7c37dcac9f8fbdf9a33f76c0509ef7e71ed07114a6a4a +size 548208 diff --git a/vlm/train/H1xFWgrFPS/11.png b/vlm/train/H1xFWgrFPS/11.png new file mode 100644 index 0000000000000000000000000000000000000000..d78502bd4064b2870fabb278608bc8cac0f33c29 --- /dev/null +++ b/vlm/train/H1xFWgrFPS/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2e0eeefb2844ce142b970637d1f1257b6746baf2d97bfbced4e32de1765ddc9f +size 580156 diff --git a/vlm/train/H1xFWgrFPS/12.png b/vlm/train/H1xFWgrFPS/12.png new file mode 100644 index 0000000000000000000000000000000000000000..e7de6d019867513749c4d3a7ba76a2f5ccf8c168 --- /dev/null +++ b/vlm/train/H1xFWgrFPS/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e61cd17aadbbb377f55312f935a6018ea8b105f3643c698ff582a3dd76eab2c8 +size 549162 diff --git a/vlm/train/H1xFWgrFPS/13.png b/vlm/train/H1xFWgrFPS/13.png new file mode 100644 index 0000000000000000000000000000000000000000..d9ecc7f21a98e277c630a01c5f12472002bd3c41 --- /dev/null +++ b/vlm/train/H1xFWgrFPS/13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e9eff6fb864843613ef7b3d2d37102268a1ee8991b30a09853c66d97b890b3c5 +size 550041 diff --git a/vlm/train/H1xFWgrFPS/14.png b/vlm/train/H1xFWgrFPS/14.png new file mode 100644 index 0000000000000000000000000000000000000000..ddd20e731d8d322d4be50486f9bd2beccc464bb5 --- /dev/null +++ b/vlm/train/H1xFWgrFPS/14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:78e60a073bdfbdbb133aab244707c38fb436ad7459064115c6367f66b4096f54 +size 516886 diff --git a/vlm/train/H1xFWgrFPS/15.png b/vlm/train/H1xFWgrFPS/15.png new file mode 100644 index 0000000000000000000000000000000000000000..444f1b7bc24ff73e8c92a6d2eeb965bdfb098456 --- /dev/null +++ b/vlm/train/H1xFWgrFPS/15.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:985158e35378081dec3afba29baf2dca6cedab2da581ae326d911c12f6a8f773 +size 335436 diff --git a/vlm/train/H1xFWgrFPS/16.png b/vlm/train/H1xFWgrFPS/16.png new file mode 100644 index 0000000000000000000000000000000000000000..83cb108e159fb73877fc0440fee22f036114d467 --- /dev/null +++ b/vlm/train/H1xFWgrFPS/16.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d807786c78663eee4f8ca997c502b847b696293157315d91e2e35e2fd278948a +size 1451224 diff --git a/vlm/train/H1xFWgrFPS/17.png b/vlm/train/H1xFWgrFPS/17.png new file mode 100644 index 0000000000000000000000000000000000000000..d5d20ac190a0098202dd6b09e28c8ecfcaa1c82b --- /dev/null +++ b/vlm/train/H1xFWgrFPS/17.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2eabf5be7d7beed3adb4769188326aec359c1088ebb8a8e190663203d3c7dd38 +size 1952381 diff --git a/vlm/train/H1xFWgrFPS/18.png b/vlm/train/H1xFWgrFPS/18.png new file mode 100644 index 0000000000000000000000000000000000000000..9f8d3f3e261695285ec4091ef3404ddb6b33f535 --- /dev/null +++ b/vlm/train/H1xFWgrFPS/18.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ab46809126996323f87d8ef0f5eb95ec2e8e299393417c538ed232a077cce3b4 +size 736303 diff --git a/vlm/train/H1xFWgrFPS/19.png b/vlm/train/H1xFWgrFPS/19.png new file mode 100644 index 0000000000000000000000000000000000000000..557393239c990b53aacaec36e097c82a81fb2e18 --- /dev/null +++ b/vlm/train/H1xFWgrFPS/19.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5de664aefc30725f4a7a4dfbac9074276718a05dd23a5a90732c2fd3e1aa029b +size 382895 diff --git a/vlm/train/H1xFWgrFPS/2.png b/vlm/train/H1xFWgrFPS/2.png new file mode 100644 index 0000000000000000000000000000000000000000..aab52d9e9d6b4695c995398e8f292c3dd1e531e0 --- /dev/null +++ b/vlm/train/H1xFWgrFPS/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9898d2708a1356b2ea68d5b44a7744ccca40b6490a0e1a318cab574b81c12a91 +size 600357 diff --git a/vlm/train/H1xFWgrFPS/3.png b/vlm/train/H1xFWgrFPS/3.png new file mode 100644 index 0000000000000000000000000000000000000000..1c24277656715bd065d1e5e7919190394a4c5b85 --- /dev/null +++ b/vlm/train/H1xFWgrFPS/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2dbe8716b7086a3230db9f61649169adf738199f1eba65e39b701372dcc523aa +size 445662 diff --git a/vlm/train/H1xFWgrFPS/4.png b/vlm/train/H1xFWgrFPS/4.png new file mode 100644 index 0000000000000000000000000000000000000000..1ee605e69e0196a0294eba6cea909321f237b0cf --- /dev/null +++ b/vlm/train/H1xFWgrFPS/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e4201038dc658747dfa22758cbb70cbb0cd5f7cee2827720e8c9e17eb4152fb4 +size 626249 diff --git a/vlm/train/H1xFWgrFPS/5.png b/vlm/train/H1xFWgrFPS/5.png new file mode 100644 index 0000000000000000000000000000000000000000..ad2d65631bbd918011e00cff4dafe7199c7a9a4b --- /dev/null +++ b/vlm/train/H1xFWgrFPS/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:985a558704afc35106c9b2652ccb450b0706aa13a5b69f969ec3cc8f4f5c4baa +size 1444902 diff --git a/vlm/train/H1xFWgrFPS/6.png b/vlm/train/H1xFWgrFPS/6.png new file mode 100644 index 0000000000000000000000000000000000000000..830197942442dff34b6050d3cab002898e0d5e36 --- /dev/null +++ b/vlm/train/H1xFWgrFPS/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9775376ecdd015db9baf2f90fadcbef7f74eabc9d612cc36d1cebaf3bc05cdba +size 617782 diff --git a/vlm/train/H1xFWgrFPS/7.png b/vlm/train/H1xFWgrFPS/7.png new file mode 100644 index 0000000000000000000000000000000000000000..ecbe5d49e0529b74f9ec11e3bc9c8e9e99ea21ac --- /dev/null +++ b/vlm/train/H1xFWgrFPS/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c076cd54323cfc52c913a6abf374e36795e18319e20822d57ad2b2dc4dce4683 +size 586771 diff --git a/vlm/train/H1xFWgrFPS/8.png b/vlm/train/H1xFWgrFPS/8.png new file mode 100644 index 0000000000000000000000000000000000000000..dcb6f83d32635d2fa122275c3910d225261c731c --- /dev/null +++ b/vlm/train/H1xFWgrFPS/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ca8be19a1446255f37440f1dd456ae528b18dc6da27a8fed9c85f98b0be770aa +size 927954 diff --git a/vlm/train/H1xFWgrFPS/9.png b/vlm/train/H1xFWgrFPS/9.png new file mode 100644 index 0000000000000000000000000000000000000000..201a4fc305c38653b878ca91e9b5980d5a12f53b --- /dev/null +++ b/vlm/train/H1xFWgrFPS/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:86afc894e822d9c7fc89fdcdf9b49b8f16e7176c04cd2f658e737a8aa85bda04 +size 1259999 diff --git a/vlm/train/H1xQVn09FX/0.png b/vlm/train/H1xQVn09FX/0.png new file mode 100644 index 0000000000000000000000000000000000000000..7fefbe6c6370afd6a92b8bad51fe01ca0be549a6 --- /dev/null +++ b/vlm/train/H1xQVn09FX/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:554ab0fa3aa5a8767f5a0a51e02fe9e1e7620bc0ad5cc11e8c1c45f32c365d75 +size 476201 diff --git a/vlm/train/H1xQVn09FX/1.png b/vlm/train/H1xQVn09FX/1.png new file mode 100644 index 0000000000000000000000000000000000000000..1e2336bc822358938a6ae1f34c0ba7287bb16f93 --- /dev/null +++ b/vlm/train/H1xQVn09FX/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:066854c2b95cf724929f77ef58d78d902d6c35ab43dcda29c251c1c6636c8569 +size 797468 diff --git a/vlm/train/H1xQVn09FX/10.png b/vlm/train/H1xQVn09FX/10.png new file mode 100644 index 0000000000000000000000000000000000000000..99db2a7f6f1c99351011993d800c0a5d1d0d9c20 --- /dev/null +++ b/vlm/train/H1xQVn09FX/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4e9ee4547cc17881372f6d608dc4d7e1b917a84c7f85aca012aa01a47c234123 +size 480611 diff --git a/vlm/train/H1xQVn09FX/11.png b/vlm/train/H1xQVn09FX/11.png new file mode 100644 index 0000000000000000000000000000000000000000..01a4e768095fd85b5621fc9a2b68afa484d3360b --- /dev/null +++ b/vlm/train/H1xQVn09FX/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f99023117c9425e0fb7f95c8a98b2a9cc38f9c3ff6bf6fbcbc3c50d5c355072e +size 226886 diff --git a/vlm/train/H1xQVn09FX/12.png b/vlm/train/H1xQVn09FX/12.png new file mode 100644 index 0000000000000000000000000000000000000000..ebd52101791221504856d5f54cb16d2e932ea5c5 --- /dev/null +++ b/vlm/train/H1xQVn09FX/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:033fa388aae9eb7b82e921b95fd0c946270e821ac4ffc3f6ad3854658ad65b3d +size 150376 diff --git a/vlm/train/H1xQVn09FX/13.png b/vlm/train/H1xQVn09FX/13.png new file mode 100644 index 0000000000000000000000000000000000000000..c5d831963076e698699034ad34d365cd835d1c47 --- /dev/null +++ b/vlm/train/H1xQVn09FX/13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01abbe741cc5bac7cf1ad421de72e50321a745abcd4b93545f09a762c6af3784 +size 1233595 diff --git a/vlm/train/H1xQVn09FX/14.png b/vlm/train/H1xQVn09FX/14.png new file mode 100644 index 0000000000000000000000000000000000000000..4b05bca2d65fe692796c46448617c2a8c5890e20 --- /dev/null +++ b/vlm/train/H1xQVn09FX/14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d7639642317040aefe43b8ab7a985d3ec489af87ae84459689fb86267002721d +size 134671 diff --git a/vlm/train/H1xQVn09FX/15.png b/vlm/train/H1xQVn09FX/15.png new file mode 100644 index 0000000000000000000000000000000000000000..d49d218bb6e819e34df5c276b24d4c8d16a6d0d1 --- /dev/null +++ b/vlm/train/H1xQVn09FX/15.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f63d5629d38887b0457157fb70f173e45cc9f56b7ed207cb1ebcc4648db81a5e +size 413830 diff --git a/vlm/train/H1xQVn09FX/16.png b/vlm/train/H1xQVn09FX/16.png new file mode 100644 index 0000000000000000000000000000000000000000..1362875bfd16e2ab27ec75248e426cb48ce7ab22 --- /dev/null +++ b/vlm/train/H1xQVn09FX/16.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:906b71948e226842661d34f119c7881f93db73b69190368e85592f4b37960f89 +size 400539 diff --git a/vlm/train/H1xQVn09FX/2.png b/vlm/train/H1xQVn09FX/2.png new file mode 100644 index 0000000000000000000000000000000000000000..b31818ed1db971279bb4d415286af3b6e0a1d093 --- /dev/null +++ b/vlm/train/H1xQVn09FX/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b6a7e72cb38264cedc953a1b10bf02d0e12adebab3ec8ceada1a1c2174326e04 +size 529296 diff --git a/vlm/train/H1xQVn09FX/3.png b/vlm/train/H1xQVn09FX/3.png new file mode 100644 index 0000000000000000000000000000000000000000..513496b00c1c1cc2f3c5e0768417ec29bd1fca37 --- /dev/null +++ b/vlm/train/H1xQVn09FX/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6290aa676102769f4129b5e6510fd39faf39708dfe9226b65f833959643ce0e5 +size 597890 diff --git a/vlm/train/H1xQVn09FX/4.png b/vlm/train/H1xQVn09FX/4.png new file mode 100644 index 0000000000000000000000000000000000000000..345dd3c566501517489160b20056fbf540e1f119 --- /dev/null +++ b/vlm/train/H1xQVn09FX/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4d2cfc73ccfff86f907ede32acaa1c0c85dda49a9a464053d74f8c2211bb8bc7 +size 563157 diff --git a/vlm/train/H1xQVn09FX/5.png b/vlm/train/H1xQVn09FX/5.png new file mode 100644 index 0000000000000000000000000000000000000000..10de79c6a26d6b248dfb7b2c67ef8dce59fc0df2 --- /dev/null +++ b/vlm/train/H1xQVn09FX/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:780586dc560b8b0e0a222b57aab792f20ba87d984b98077cecb8f7ccd7d89ad7 +size 376952 diff --git a/vlm/train/H1xQVn09FX/6.png b/vlm/train/H1xQVn09FX/6.png new file mode 100644 index 0000000000000000000000000000000000000000..e1f1ac59cf0dea8ae38fd3dae1e2dd28f2a4cd01 --- /dev/null +++ b/vlm/train/H1xQVn09FX/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:46dd0afe64f66e2405f12543344875127bc455ebb11b3895701881839331d7ca +size 929894 diff --git a/vlm/train/H1xQVn09FX/7.png b/vlm/train/H1xQVn09FX/7.png new file mode 100644 index 0000000000000000000000000000000000000000..a029b8ad440fd249708adb25fb9e1134009bc82a --- /dev/null +++ b/vlm/train/H1xQVn09FX/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b72c01d4a592aca452aae3c1e040ae6fd707262ecd776919e09c6dac4e866ba4 +size 993694 diff --git a/vlm/train/H1xQVn09FX/8.png b/vlm/train/H1xQVn09FX/8.png new file mode 100644 index 0000000000000000000000000000000000000000..dfeebf18b62f522f20297b1f1d7269f8022c48f3 --- /dev/null +++ b/vlm/train/H1xQVn09FX/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6ed63fef8e11344e43b7210aad4f0604b76f4b2ac7398c4301b4818fdcbcdc65 +size 531513 diff --git a/vlm/train/H1xQVn09FX/9.png b/vlm/train/H1xQVn09FX/9.png new file mode 100644 index 0000000000000000000000000000000000000000..7ee891fcb5fe040ff1235b17b12710869f14c5b0 --- /dev/null +++ b/vlm/train/H1xQVn09FX/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c63b855594ff00be9896ca74a5773d861e0dc95955349e927890a6a8c74ce043 +size 528848 diff --git a/vlm/train/HHiiQKWsOcV/0.png b/vlm/train/HHiiQKWsOcV/0.png new file mode 100644 index 0000000000000000000000000000000000000000..23fad7e07ad3deeff3fad16a0e199eed70dd3787 --- /dev/null +++ b/vlm/train/HHiiQKWsOcV/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:154f5fa004d3a98e1fa7d63e455d85972114141f44a6a640a4ec646b3ff2b8a5 +size 503614 diff --git a/vlm/train/HHiiQKWsOcV/1.png b/vlm/train/HHiiQKWsOcV/1.png new file mode 100644 index 0000000000000000000000000000000000000000..ba837b2aeeecd92f1de1a926a673d3cae2633c9c --- /dev/null +++ b/vlm/train/HHiiQKWsOcV/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d80a3a3bcc2a9fb024b7b49b971487e6f7a6adb476c37b206e88b6b2d2f0dddf +size 582446 diff --git a/vlm/train/HHiiQKWsOcV/10.png b/vlm/train/HHiiQKWsOcV/10.png new file mode 100644 index 0000000000000000000000000000000000000000..3565aa91765eb6d7720aea07c5876de7e1c4619c --- /dev/null +++ b/vlm/train/HHiiQKWsOcV/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9c601494d9f1ef70509cdc75a6a4669bcee62b73897c515e6ec1231464778fb7 +size 555475 diff --git a/vlm/train/HHiiQKWsOcV/11.png b/vlm/train/HHiiQKWsOcV/11.png new file mode 100644 index 0000000000000000000000000000000000000000..7935e2bae07b026a89b14d90efc054eb19a276f5 --- /dev/null +++ b/vlm/train/HHiiQKWsOcV/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:456af38f4fdfef18e4d1cdf695c65a445f434ba5f8a9da81d833dd6c01d89a0b +size 585874 diff --git a/vlm/train/HHiiQKWsOcV/12.png b/vlm/train/HHiiQKWsOcV/12.png new file mode 100644 index 0000000000000000000000000000000000000000..6351da106c771da98a4e5e5dfa250d8f289a7b04 --- /dev/null +++ b/vlm/train/HHiiQKWsOcV/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9438a284fec2abd3f3724c5e9231368d1a6771009d45deaad7779673c78bf546 +size 523847 diff --git a/vlm/train/HHiiQKWsOcV/13.png b/vlm/train/HHiiQKWsOcV/13.png new file mode 100644 index 0000000000000000000000000000000000000000..33ab55b965edc99dd67a20b17addda8f5e798e18 --- /dev/null +++ b/vlm/train/HHiiQKWsOcV/13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:20f1b09cdffa879b96727652e73a07c5e8963fe8af5cffd9f20b6375e4c9a525 +size 328304 diff --git a/vlm/train/HHiiQKWsOcV/14.png b/vlm/train/HHiiQKWsOcV/14.png new file mode 100644 index 0000000000000000000000000000000000000000..d709b50dfe968593c2250a2968473ed84b49c8b3 --- /dev/null +++ b/vlm/train/HHiiQKWsOcV/14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:af56299fb50a2ecee30a7342fef1830912b7e32c9a86ac6b258212e72ba86236 +size 296298 diff --git a/vlm/train/HHiiQKWsOcV/15.png b/vlm/train/HHiiQKWsOcV/15.png new file mode 100644 index 0000000000000000000000000000000000000000..01b64a59ad26bad6ba76f17416c56010fd443ba2 --- /dev/null +++ b/vlm/train/HHiiQKWsOcV/15.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3262c1383c61d846e7d56be42efdfb68d0bbea223648abaf65d47d9de227ac0b +size 331698 diff --git a/vlm/train/HHiiQKWsOcV/16.png b/vlm/train/HHiiQKWsOcV/16.png new file mode 100644 index 0000000000000000000000000000000000000000..4c7033449be2e84c9f206fdac7c684183498b270 --- /dev/null +++ b/vlm/train/HHiiQKWsOcV/16.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ef6617c749f31b0fd265ff7aff80b68bf0e89c99eaf7f030f9b22d55240bbddc +size 77094 diff --git a/vlm/train/HHiiQKWsOcV/17.png b/vlm/train/HHiiQKWsOcV/17.png new file mode 100644 index 0000000000000000000000000000000000000000..3bf87a81e0bb78db2328698100649b2c157d625a --- /dev/null +++ b/vlm/train/HHiiQKWsOcV/17.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:204e755abab0a62b9eab0d8e5aef5a8731190646a4d96131856a4470884804a9 +size 509333 diff --git a/vlm/train/HHiiQKWsOcV/18.png b/vlm/train/HHiiQKWsOcV/18.png new file mode 100644 index 0000000000000000000000000000000000000000..a6a26e6f9e054b7d6fc118b7d996f40943df10ce --- /dev/null +++ b/vlm/train/HHiiQKWsOcV/18.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:08caa3cbacb3663f281f366acab739f26ce2ae1f58795ad5d4e296e3d21eb22a +size 348387 diff --git a/vlm/train/HHiiQKWsOcV/19.png b/vlm/train/HHiiQKWsOcV/19.png new file mode 100644 index 0000000000000000000000000000000000000000..814b0a333d058343208489cc58e409ad3c0d1e08 --- /dev/null +++ b/vlm/train/HHiiQKWsOcV/19.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:59b8ffa018d650f6f91875c77f6e2f5e1563555e2bd4c21b1504e89a00fb376d +size 329337 diff --git a/vlm/train/HHiiQKWsOcV/2.png b/vlm/train/HHiiQKWsOcV/2.png new file mode 100644 index 0000000000000000000000000000000000000000..ad6c6f1d23f7bd361202820fe8ec6ee0b3f47452 --- /dev/null +++ b/vlm/train/HHiiQKWsOcV/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e137fea5fe224b02051c8434bb7681cee9fcddf222e557bf2375782f112a2aa4 +size 655438 diff --git a/vlm/train/HHiiQKWsOcV/20.png b/vlm/train/HHiiQKWsOcV/20.png new file mode 100644 index 0000000000000000000000000000000000000000..428f8ac17a42b7bd02a84c94a280ec8fbe06ff05 --- /dev/null +++ b/vlm/train/HHiiQKWsOcV/20.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1310ba90f09ecdf4afd34dab67f0702efc7fb7f615bde00badad7de7db2b4f67 +size 341381 diff --git a/vlm/train/HHiiQKWsOcV/21.png b/vlm/train/HHiiQKWsOcV/21.png new file mode 100644 index 0000000000000000000000000000000000000000..28663c7a09ce9a82a084484eace25051ff32902e --- /dev/null +++ b/vlm/train/HHiiQKWsOcV/21.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aa2380979729b92c9744d148473c2260238bded866b63cf7bf09ae2c12baf9d0 +size 331703 diff --git a/vlm/train/HHiiQKWsOcV/22.png b/vlm/train/HHiiQKWsOcV/22.png new file mode 100644 index 0000000000000000000000000000000000000000..bbe50bf6b02695aeee21228a25191667d1931138 --- /dev/null +++ b/vlm/train/HHiiQKWsOcV/22.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ce58e7ea00ea66588db1dc65b19bf3f617d145b662e148008e1dbef6a4f1e785 +size 322770 diff --git a/vlm/train/HHiiQKWsOcV/23.png b/vlm/train/HHiiQKWsOcV/23.png new file mode 100644 index 0000000000000000000000000000000000000000..3a786d79b3d53056ccf278697a252991e3f621af --- /dev/null +++ b/vlm/train/HHiiQKWsOcV/23.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3b900da27091da28150814f898105d47a978e0c2efc6cea29023dc5a776a9ab9 +size 324020 diff --git a/vlm/train/HHiiQKWsOcV/24.png b/vlm/train/HHiiQKWsOcV/24.png new file mode 100644 index 0000000000000000000000000000000000000000..eb80955407ccc1064ea22c6b8adbe2fa0e2a0299 --- /dev/null +++ b/vlm/train/HHiiQKWsOcV/24.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7d6e0f7d69df1f2d2ea913b6869889fee87ef2004bc1276bbd04a4a373920540 +size 324049 diff --git a/vlm/train/HHiiQKWsOcV/25.png b/vlm/train/HHiiQKWsOcV/25.png new file mode 100644 index 0000000000000000000000000000000000000000..53a071053c0d12ffd418925099bcb20f2232bd18 --- /dev/null +++ b/vlm/train/HHiiQKWsOcV/25.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:89989e2cb44a503bda4fbf1c1262f1088308c48f98653910f9446b08002c6030 +size 315089 diff --git a/vlm/train/HHiiQKWsOcV/26.png b/vlm/train/HHiiQKWsOcV/26.png new file mode 100644 index 0000000000000000000000000000000000000000..a6fec4ef1a0a0ef7beca65ede5da7729e2a00546 --- /dev/null +++ b/vlm/train/HHiiQKWsOcV/26.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:44719f500f6b2c1a8821302cbd3377fe4683dad1160fed4ee13a8b6363d153cd +size 357557 diff --git a/vlm/train/HHiiQKWsOcV/27.png b/vlm/train/HHiiQKWsOcV/27.png new file mode 100644 index 0000000000000000000000000000000000000000..3670fbbbb86405deab14ef00808a54fe48fa9b15 --- /dev/null +++ b/vlm/train/HHiiQKWsOcV/27.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8711d4112afd21d8d72984458abd09dd55751bc962213cd817ab137958ec176a +size 364734 diff --git a/vlm/train/HHiiQKWsOcV/28.png b/vlm/train/HHiiQKWsOcV/28.png new file mode 100644 index 0000000000000000000000000000000000000000..61be15bbc3db1da91f35591e58e1ad88e20790d0 --- /dev/null +++ b/vlm/train/HHiiQKWsOcV/28.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8101955a8e418207f5ae86ed667f39e02b1a6c769474d9ae72aeee4b6b6cd5f3 +size 365945 diff --git a/vlm/train/HHiiQKWsOcV/29.png b/vlm/train/HHiiQKWsOcV/29.png new file mode 100644 index 0000000000000000000000000000000000000000..92d19be18ecc738105425f105456ab28ae4e0f70 --- /dev/null +++ b/vlm/train/HHiiQKWsOcV/29.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:25213d701bfa66c01c27e006f83c5ffc3738f464233f097b57bfee4f308d3c49 +size 342928 diff --git a/vlm/train/HHiiQKWsOcV/3.png b/vlm/train/HHiiQKWsOcV/3.png new file mode 100644 index 0000000000000000000000000000000000000000..e128f158a53d7ee91b4d2fd2c63409170ea60850 --- /dev/null +++ b/vlm/train/HHiiQKWsOcV/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:be4d24e5414bbbfec7d600811fe5724fc83173c19070cdf0704e57fc30a6b8c7 +size 529213 diff --git a/vlm/train/HHiiQKWsOcV/30.png b/vlm/train/HHiiQKWsOcV/30.png new file mode 100644 index 0000000000000000000000000000000000000000..92c9235140ba4fd28651ae8501c2e9a3b770141f --- /dev/null +++ b/vlm/train/HHiiQKWsOcV/30.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9175ea2492a273ff10c561897b04121c27bb6ea1e399de04977e5b4c7b5986b7 +size 348227 diff --git a/vlm/train/HHiiQKWsOcV/31.png b/vlm/train/HHiiQKWsOcV/31.png new file mode 100644 index 0000000000000000000000000000000000000000..250a2f1553fbbea4b96c25ca98563a5536d33b46 --- /dev/null +++ b/vlm/train/HHiiQKWsOcV/31.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:70774b71939206d7208469033408c604078e863f66741361b1206a037dc8af0d +size 345304 diff --git a/vlm/train/HHiiQKWsOcV/32.png b/vlm/train/HHiiQKWsOcV/32.png new file mode 100644 index 0000000000000000000000000000000000000000..c3f4c1009e5c3b6a539e12eff389bb2c003a6229 --- /dev/null +++ b/vlm/train/HHiiQKWsOcV/32.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2b21f01d7f63b9c9d788bfd81b8eb41c76b5fd5875d5386291228f675be3a597 +size 336853 diff --git a/vlm/train/HHiiQKWsOcV/4.png b/vlm/train/HHiiQKWsOcV/4.png new file mode 100644 index 0000000000000000000000000000000000000000..7ad878d025898935a1e9d88afe9278ed24321804 --- /dev/null +++ b/vlm/train/HHiiQKWsOcV/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4dc7c2e7a86a20efd03f9e0056a18b5f6c62eac6264a3c1ebe0112d163336c24 +size 523187 diff --git a/vlm/train/HHiiQKWsOcV/5.png b/vlm/train/HHiiQKWsOcV/5.png new file mode 100644 index 0000000000000000000000000000000000000000..5df68f3824c304bb23153a456c8d30e3bf81e689 --- /dev/null +++ b/vlm/train/HHiiQKWsOcV/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1543bdd553b6b2074bed791bbddc91fbe723136e534a2aa2ffdb5fd399005721 +size 640685 diff --git a/vlm/train/HHiiQKWsOcV/6.png b/vlm/train/HHiiQKWsOcV/6.png new file mode 100644 index 0000000000000000000000000000000000000000..1336843588b45af0fff55409661b7e68909d0885 --- /dev/null +++ b/vlm/train/HHiiQKWsOcV/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:be095ed8bfe02d64e0172b1bb14b75139ed81f8ca9dc239edc9a3fcaaf20cc15 +size 519330 diff --git a/vlm/train/HHiiQKWsOcV/7.png b/vlm/train/HHiiQKWsOcV/7.png new file mode 100644 index 0000000000000000000000000000000000000000..5fb605518abf4d0768a3cad12e317e8780a50c43 --- /dev/null +++ b/vlm/train/HHiiQKWsOcV/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c1b2a1fa6ef0a2d093d05d41431228429f4fcc3da6ac4b00a52085605b2ddb00 +size 425664 diff --git a/vlm/train/HHiiQKWsOcV/8.png b/vlm/train/HHiiQKWsOcV/8.png new file mode 100644 index 0000000000000000000000000000000000000000..e6b9550ca460efc7e4ec5088c36926d7783b375c --- /dev/null +++ b/vlm/train/HHiiQKWsOcV/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:163bd2a03f4e5aba715a5c2d06c87863054815c1ec3ce44f6ef59c43bc0a3ca3 +size 609342 diff --git a/vlm/train/HHiiQKWsOcV/9.png b/vlm/train/HHiiQKWsOcV/9.png new file mode 100644 index 0000000000000000000000000000000000000000..ea8ec8e19837dfa682b4b82058747c937b8bfc5d --- /dev/null +++ b/vlm/train/HHiiQKWsOcV/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:70d2f2077eceaf140a7b4ef54faa96c2553784f6584e3dcb6433efb57a8ffcd4 +size 518934 diff --git a/vlm/train/HJl6tC4KwB/0.png b/vlm/train/HJl6tC4KwB/0.png new file mode 100644 index 0000000000000000000000000000000000000000..ea1978642a385bcdc1b14e961246ee1b2008f34d --- /dev/null +++ b/vlm/train/HJl6tC4KwB/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:14dd05eb04cfb4c47ee3571d3115551ee027c15fd4efce82057d5d1b6ab14231 +size 505830 diff --git a/vlm/train/HJl6tC4KwB/1.png b/vlm/train/HJl6tC4KwB/1.png new file mode 100644 index 0000000000000000000000000000000000000000..332727e2340ffaa5843d502d099b190cea0b13e6 --- /dev/null +++ b/vlm/train/HJl6tC4KwB/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6299790bc0aed9714d63a05895a72f107444ff15466dd509ce5ec785bbf2b69a +size 896256 diff --git a/vlm/train/HJl6tC4KwB/10.png b/vlm/train/HJl6tC4KwB/10.png new file mode 100644 index 0000000000000000000000000000000000000000..53979799d5fcc53bc536c0d9e133833dd3071292 --- /dev/null +++ b/vlm/train/HJl6tC4KwB/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3bdff7dfde835605b912e184ca2a5891f19e4db4b99d479cfc67987563ec0555 +size 476162 diff --git a/vlm/train/HJl6tC4KwB/11.png b/vlm/train/HJl6tC4KwB/11.png new file mode 100644 index 0000000000000000000000000000000000000000..bb77372133a43c2f9204495814b0607bb7664dbd --- /dev/null +++ b/vlm/train/HJl6tC4KwB/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e54360e6d79895145cf384c03741125b180e31830f6679ea1b41dfe973a858a7 +size 521443 diff --git a/vlm/train/HJl6tC4KwB/12.png b/vlm/train/HJl6tC4KwB/12.png new file mode 100644 index 0000000000000000000000000000000000000000..e8a7f972603e94b3374aaf45f9a61fa568f1f746 --- /dev/null +++ b/vlm/train/HJl6tC4KwB/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:52365e1921ddd5198559616d9bcd269bb70ff8ccbc9a80dc253a3c143b28f01c +size 1830190 diff --git a/vlm/train/HJl6tC4KwB/13.png b/vlm/train/HJl6tC4KwB/13.png new file mode 100644 index 0000000000000000000000000000000000000000..67471c4741142afb87a3707d16b6aabf5f30288d --- /dev/null +++ b/vlm/train/HJl6tC4KwB/13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4806389c72cebdc723106b98d394378015ec4c7384264d0432fb681a2eea7701 +size 1778372 diff --git a/vlm/train/HJl6tC4KwB/14.png b/vlm/train/HJl6tC4KwB/14.png new file mode 100644 index 0000000000000000000000000000000000000000..01dceb5137c3a7151abb1417131b2b2c9b312618 --- /dev/null +++ b/vlm/train/HJl6tC4KwB/14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7a13941d984ed8e484fe8f0e9d7c88dcd272ca2a2babf49b508c97cb285ff9cc +size 1825388 diff --git a/vlm/train/HJl6tC4KwB/15.png b/vlm/train/HJl6tC4KwB/15.png new file mode 100644 index 0000000000000000000000000000000000000000..5993279e40ed865faa65af5ffe0f42a39f3735b0 --- /dev/null +++ b/vlm/train/HJl6tC4KwB/15.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:168777b1c87f3e1431709586c1abfb810599c8c42f5ce3f6a2204efad2e9916c +size 1941464 diff --git a/vlm/train/HJl6tC4KwB/2.png b/vlm/train/HJl6tC4KwB/2.png new file mode 100644 index 0000000000000000000000000000000000000000..616bf4115b0e4b08a4a0a126b1bb6ca756e1a4a0 --- /dev/null +++ b/vlm/train/HJl6tC4KwB/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3f0805e498a28d10f87fa480891fd07e8cab41a6c004bf8cb210810c04c2ba10 +size 512212 diff --git a/vlm/train/HJl6tC4KwB/3.png b/vlm/train/HJl6tC4KwB/3.png new file mode 100644 index 0000000000000000000000000000000000000000..706e73be98d99bed572eff3a60c6cc156e4a0dcd --- /dev/null +++ b/vlm/train/HJl6tC4KwB/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:88cdd4834afc2df6729512a3d5ba0a69b2f58960a2f7e4eed15704d56bf24ef5 +size 807762 diff --git a/vlm/train/HJl6tC4KwB/4.png b/vlm/train/HJl6tC4KwB/4.png new file mode 100644 index 0000000000000000000000000000000000000000..17bfb101ff6fe1e8dcacd2324c64c6f63d617186 --- /dev/null +++ b/vlm/train/HJl6tC4KwB/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cde36741b20713044bca142a6656c159b8e0810620c231bf9d053617db6b5cf9 +size 506953 diff --git a/vlm/train/HJl6tC4KwB/5.png b/vlm/train/HJl6tC4KwB/5.png new file mode 100644 index 0000000000000000000000000000000000000000..a4de5e5af3126643b895c2524e9a859e96142a27 --- /dev/null +++ b/vlm/train/HJl6tC4KwB/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f27f6fb53a317fc71fd2c39c15ab0330d499e9b4390252d82d6daed4c95c719a +size 453918 diff --git a/vlm/train/HJl6tC4KwB/6.png b/vlm/train/HJl6tC4KwB/6.png new file mode 100644 index 0000000000000000000000000000000000000000..78431d460c0818e47e26296bbaeba983ec150eb2 --- /dev/null +++ b/vlm/train/HJl6tC4KwB/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2c79ab1609913ddebe6b42425f8b2b0a18aa7e350065bc2b64dbd630cb2bb8a8 +size 1986057 diff --git a/vlm/train/HJl6tC4KwB/7.png b/vlm/train/HJl6tC4KwB/7.png new file mode 100644 index 0000000000000000000000000000000000000000..3c62236499c3e3f8fd69045ef33362470f561c77 --- /dev/null +++ b/vlm/train/HJl6tC4KwB/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:24dd99fda49b432a073f018359e7e736058cc673ed53bbc68080265d4b5c9f99 +size 1808901 diff --git a/vlm/train/HJl6tC4KwB/8.png b/vlm/train/HJl6tC4KwB/8.png new file mode 100644 index 0000000000000000000000000000000000000000..05f69900763eb76ea309d6f7e3c225658ca22a20 --- /dev/null +++ b/vlm/train/HJl6tC4KwB/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:acaa3c434468da7b839162ed6ba68317894f64845e60bd389ef10a8dc46c5c78 +size 543915 diff --git a/vlm/train/HJl6tC4KwB/9.png b/vlm/train/HJl6tC4KwB/9.png new file mode 100644 index 0000000000000000000000000000000000000000..139a5b2b8a9594e00fb9c3392eb46645877db047 --- /dev/null +++ b/vlm/train/HJl6tC4KwB/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:489ac6e4a2b455ce463e87483cdf35108f7beba475e5ad99f7ba92d089533e27 +size 406618 diff --git a/vlm/train/HJlmHoR5tQ/0.png b/vlm/train/HJlmHoR5tQ/0.png new file mode 100644 index 0000000000000000000000000000000000000000..867f4fae849ae4447a7c05ab695d0cf3ef1184ef --- /dev/null +++ b/vlm/train/HJlmHoR5tQ/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:57b6fae832e9d3a2b95f41950bb91d0a046abb28a7e2d90517140f3632f31c52 +size 476164 diff --git a/vlm/train/HJlmHoR5tQ/1.png b/vlm/train/HJlmHoR5tQ/1.png new file mode 100644 index 0000000000000000000000000000000000000000..a6eb3f4ba0637eb72d53662e5002f9d674a17834 --- /dev/null +++ b/vlm/train/HJlmHoR5tQ/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:78c0c553cd254d5243fb0f6565a3ddd71051ee2c72de65d2c76e14e1e01cbad1 +size 600704 diff --git a/vlm/train/HJlmHoR5tQ/10.png b/vlm/train/HJlmHoR5tQ/10.png new file mode 100644 index 0000000000000000000000000000000000000000..c6e78bce0c09fd38975b1152b8dacc08c3b544b2 --- /dev/null +++ b/vlm/train/HJlmHoR5tQ/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8c6bdb0ddfbcb81d28233b6963da09ade24a942162066cdcef530f800403a06a +size 342335 diff --git a/vlm/train/HJlmHoR5tQ/11.png b/vlm/train/HJlmHoR5tQ/11.png new file mode 100644 index 0000000000000000000000000000000000000000..de647e699c766f625bf332770e24c52ec27fece7 --- /dev/null +++ b/vlm/train/HJlmHoR5tQ/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6615fa2f1fba5a56752df2755220fe354d812696110d672435ef6ce3d93a758b +size 421329 diff --git a/vlm/train/HJlmHoR5tQ/12.png b/vlm/train/HJlmHoR5tQ/12.png new file mode 100644 index 0000000000000000000000000000000000000000..936ab6c5357baa1b78eefa0646d89e19109fe917 --- /dev/null +++ b/vlm/train/HJlmHoR5tQ/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:73c0e066eec26905da0f896f0b12375a36f2885494a59accf4c87ed6f31ff710 +size 797743 diff --git a/vlm/train/HJlmHoR5tQ/13.png b/vlm/train/HJlmHoR5tQ/13.png new file mode 100644 index 0000000000000000000000000000000000000000..832e0bc669ce9794b5a40929ec100f2b3e1714da --- /dev/null +++ b/vlm/train/HJlmHoR5tQ/13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4b19ae65a4624deb23f9700c73fc2a1b0d5215be7d075666dd2e3fc4ce6f5069 +size 280183 diff --git a/vlm/train/HJlmHoR5tQ/2.png b/vlm/train/HJlmHoR5tQ/2.png new file mode 100644 index 0000000000000000000000000000000000000000..1d5b22b0e20fb8972ae1bf2223d30b704f4496e6 --- /dev/null +++ b/vlm/train/HJlmHoR5tQ/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6ee89974e4f40b8a0ef349ca2f798696f9abf8b1fadd6f7c5249d9b3d4700f52 +size 508833 diff --git a/vlm/train/HJlmHoR5tQ/3.png b/vlm/train/HJlmHoR5tQ/3.png new file mode 100644 index 0000000000000000000000000000000000000000..82bf3ae443058794a3f39a645a37dcd0f6f32842 --- /dev/null +++ b/vlm/train/HJlmHoR5tQ/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c19225b19d2b92b50986ba1d93e70d898fee387851bb4004fc0e8e970eb2935d +size 539648 diff --git a/vlm/train/HJlmHoR5tQ/4.png b/vlm/train/HJlmHoR5tQ/4.png new file mode 100644 index 0000000000000000000000000000000000000000..3ecd2679d7a3a58733f5feac495bc20ce15f2f52 --- /dev/null +++ b/vlm/train/HJlmHoR5tQ/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:07b05bc44c62990f43de59b53e326dcb84f3462a69e6ac931434c8654f165ae6 +size 501246 diff --git a/vlm/train/HJlmHoR5tQ/5.png b/vlm/train/HJlmHoR5tQ/5.png new file mode 100644 index 0000000000000000000000000000000000000000..71ef409ca845b8dcede4896654756ca167ecdf0e --- /dev/null +++ b/vlm/train/HJlmHoR5tQ/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b8f23dae00fe02025e7a1ab2e0bc01858c6fe55a49fae41abe59954ce3a7446a +size 535664 diff --git a/vlm/train/HJlmHoR5tQ/6.png b/vlm/train/HJlmHoR5tQ/6.png new file mode 100644 index 0000000000000000000000000000000000000000..2a549282483a7796959f9b960d0c1700b15a95d9 --- /dev/null +++ b/vlm/train/HJlmHoR5tQ/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:96504e1c849d173f329a3defabd0bc20e0f8150fe0acf3119fbd5f8605b7f28a +size 539796 diff --git a/vlm/train/HJlmHoR5tQ/7.png b/vlm/train/HJlmHoR5tQ/7.png new file mode 100644 index 0000000000000000000000000000000000000000..9302a0c855c18ef6ae470a8d675dd22e990eda1e --- /dev/null +++ b/vlm/train/HJlmHoR5tQ/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:494870ae841d0a1ef612ac0cd90fea0ba7ade9364f3003b0170c9df4a878e27a +size 556444 diff --git a/vlm/train/HJlmHoR5tQ/8.png b/vlm/train/HJlmHoR5tQ/8.png new file mode 100644 index 0000000000000000000000000000000000000000..a0c065dc6c1e9235a8e040b957162c4816a1528e --- /dev/null +++ b/vlm/train/HJlmHoR5tQ/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c410f85f70e6c8d7fa3c2923b9c16808083ef23b91f7cef9486fcaf28941d63d +size 531603 diff --git a/vlm/train/HJlmHoR5tQ/9.png b/vlm/train/HJlmHoR5tQ/9.png new file mode 100644 index 0000000000000000000000000000000000000000..0f88da78cee3b58e2746cd7efd659701f9d17277 --- /dev/null +++ b/vlm/train/HJlmHoR5tQ/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:de08c3fbfaa64770a4fe8887497bd28732586b43bf7a3a0499624b1462545b16 +size 485979 diff --git a/vlm/train/HJx9EhC9tQ/0.png b/vlm/train/HJx9EhC9tQ/0.png new file mode 100644 index 0000000000000000000000000000000000000000..04a2c20c7d550281711bd4f35e647a0a499a0c94 --- /dev/null +++ b/vlm/train/HJx9EhC9tQ/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2af4f3d3f72329f1ef1daaca034c1b212a239afdd27b76dd8e2a08ee81ba7579 +size 473478 diff --git a/vlm/train/HJx9EhC9tQ/1.png b/vlm/train/HJx9EhC9tQ/1.png new file mode 100644 index 0000000000000000000000000000000000000000..e7aa7a255de228af42926553b805d488c5c47c2a --- /dev/null +++ b/vlm/train/HJx9EhC9tQ/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7cbec51d88a1bfda310b8e86d2b81d275a0109a80e33bad35cb7bdca791ca453 +size 520054 diff --git a/vlm/train/HJx9EhC9tQ/10.png b/vlm/train/HJx9EhC9tQ/10.png new file mode 100644 index 0000000000000000000000000000000000000000..4f8d9cb2b36110ca25486d77a4648d1731456c58 --- /dev/null +++ b/vlm/train/HJx9EhC9tQ/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f19ce814079fd2ba0255923814b2102671b2bb5b663c01d01ebba4c3337e8824 +size 539974 diff --git a/vlm/train/HJx9EhC9tQ/11.png b/vlm/train/HJx9EhC9tQ/11.png new file mode 100644 index 0000000000000000000000000000000000000000..c4fd25c56e9696fec8e892a805bbfd8770dc9acd --- /dev/null +++ b/vlm/train/HJx9EhC9tQ/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d287829e491232867dd4099ff3ebc370d5545c6d8e205b5937a405104ce2dfc9 +size 1168364 diff --git a/vlm/train/HJx9EhC9tQ/2.png b/vlm/train/HJx9EhC9tQ/2.png new file mode 100644 index 0000000000000000000000000000000000000000..6b0bf8b7b8ad250e53db2a52f30357fef01b0781 --- /dev/null +++ b/vlm/train/HJx9EhC9tQ/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5efcfc62f985ffec86add43e33e30e3b244992d277385cb374492c73b3b26814 +size 559737 diff --git a/vlm/train/HJx9EhC9tQ/3.png b/vlm/train/HJx9EhC9tQ/3.png new file mode 100644 index 0000000000000000000000000000000000000000..c7efcb41608f2c4641dd80102885af9ea476d017 --- /dev/null +++ b/vlm/train/HJx9EhC9tQ/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b9bd710e80e7c3bd9d4a364f0a1709e08f9e706fff4df7f544407d06a626ce62 +size 555890 diff --git a/vlm/train/HJx9EhC9tQ/4.png b/vlm/train/HJx9EhC9tQ/4.png new file mode 100644 index 0000000000000000000000000000000000000000..8d97e6e15ded54aaef665380678f1456b587bccd --- /dev/null +++ b/vlm/train/HJx9EhC9tQ/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cbeceb54b538df17f24f28a206cc8c863afa18f3da1febb0a2e51b702fc5f979 +size 567070 diff --git a/vlm/train/HJx9EhC9tQ/5.png b/vlm/train/HJx9EhC9tQ/5.png new file mode 100644 index 0000000000000000000000000000000000000000..71f12f0fb6adaf5b40acc4e34efd937d74cc490e --- /dev/null +++ b/vlm/train/HJx9EhC9tQ/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bcf9d7049bba1326f59724b8332be31ff6fdaa03a019b64fed95d31cff7af4df +size 552147 diff --git a/vlm/train/HJx9EhC9tQ/6.png b/vlm/train/HJx9EhC9tQ/6.png new file mode 100644 index 0000000000000000000000000000000000000000..b2274ac9b677abdd8b01e758de1269fdc9cfbcf6 --- /dev/null +++ b/vlm/train/HJx9EhC9tQ/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:13ce624d3f189889780d721f3e3c1ee1fd5304c0e2f82d9ef0bfddb59d1db3b9 +size 657878 diff --git a/vlm/train/HJx9EhC9tQ/7.png b/vlm/train/HJx9EhC9tQ/7.png new file mode 100644 index 0000000000000000000000000000000000000000..34648a0d14cb05ef5f3555289963769f3f608150 --- /dev/null +++ b/vlm/train/HJx9EhC9tQ/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c875bb4915f3e8bc450321557f5acc85d3c5a7a3872e07b4f6b7e05c079dfcf2 +size 712528 diff --git a/vlm/train/HJx9EhC9tQ/8.png b/vlm/train/HJx9EhC9tQ/8.png new file mode 100644 index 0000000000000000000000000000000000000000..dc2199182874492e0bfa672a9a2502f2355a2359 --- /dev/null +++ b/vlm/train/HJx9EhC9tQ/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cdd1e6b511d0e60e0356c9df5217ecadafd83584c3f248502ca589858e6ab8fd +size 617718 diff --git a/vlm/train/HJx9EhC9tQ/9.png b/vlm/train/HJx9EhC9tQ/9.png new file mode 100644 index 0000000000000000000000000000000000000000..e7b91e0985d400dc21c9e862b7c68ab20d682277 --- /dev/null +++ b/vlm/train/HJx9EhC9tQ/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:34bc21f0bb0f70d39b22ed48471dc86532e872dc9b94bde1e09507e7d2f5093d +size 512418 diff --git a/vlm/train/HkNKFiGex/0.png b/vlm/train/HkNKFiGex/0.png new file mode 100644 index 0000000000000000000000000000000000000000..58f86be0290aabbe59c27dac588ad2f6d1af21d4 --- /dev/null +++ b/vlm/train/HkNKFiGex/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:62b1655c6bab98428a09d25cdf6527929e86a84700d64e8b260c989ebfd599a5 +size 502279 diff --git a/vlm/train/HkNKFiGex/1.png b/vlm/train/HkNKFiGex/1.png new file mode 100644 index 0000000000000000000000000000000000000000..b487986ac6b98dd65b5676317486840e3a3a7349 --- /dev/null +++ b/vlm/train/HkNKFiGex/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a2da71d8e92884a7508a1fea410871677fe1ec3d0f69275403c10f36d757ab0e +size 534055 diff --git a/vlm/train/HkNKFiGex/10.png b/vlm/train/HkNKFiGex/10.png new file mode 100644 index 0000000000000000000000000000000000000000..2fa6faea42f96dbe70be530eb1c62b731fad2b6f --- /dev/null +++ b/vlm/train/HkNKFiGex/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:82427a2283cd5fa5f08425668da231f97045892b41e733d96cc7d8165e379b0c +size 500046 diff --git a/vlm/train/HkNKFiGex/11.png b/vlm/train/HkNKFiGex/11.png new file mode 100644 index 0000000000000000000000000000000000000000..2edd2938211b1eeb0c21b33bba39e25e89fe6caa --- /dev/null +++ b/vlm/train/HkNKFiGex/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eee1b88c216ea740180feac8bddf4d78dcc703c4476c32fc11484ccbab62e239 +size 234045 diff --git a/vlm/train/HkNKFiGex/12.png b/vlm/train/HkNKFiGex/12.png new file mode 100644 index 0000000000000000000000000000000000000000..7df1d03073e972cee04e0bccb6b00a7107a73b3f --- /dev/null +++ b/vlm/train/HkNKFiGex/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1433bc48a3b43c82ec56081e180cb8e40243a18f32d5104b8e4800e848f96f0f +size 728510 diff --git a/vlm/train/HkNKFiGex/13.png b/vlm/train/HkNKFiGex/13.png new file mode 100644 index 0000000000000000000000000000000000000000..b266c7b30574670110bf970caebd511b38e2714f --- /dev/null +++ b/vlm/train/HkNKFiGex/13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cfcd0753d74e2b47b1f11213829d161c3b2952c7228d279e153cc9d0d1ebca1c +size 859791 diff --git a/vlm/train/HkNKFiGex/14.png b/vlm/train/HkNKFiGex/14.png new file mode 100644 index 0000000000000000000000000000000000000000..61d92577fa85863977a3087f034c84908c31a425 --- /dev/null +++ b/vlm/train/HkNKFiGex/14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6249e323bd766f4d23e8d173c5dce796c6b7538055920c1ef52da67ab053717e +size 1437505 diff --git a/vlm/train/HkNKFiGex/2.png b/vlm/train/HkNKFiGex/2.png new file mode 100644 index 0000000000000000000000000000000000000000..3151d29ed9a0bcad5cbe4927f82a2668e3f22f0e --- /dev/null +++ b/vlm/train/HkNKFiGex/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:061f68ebac2c1ae33203d9b1766f776a81fd55613e23a0684b3257ed3d3011c0 +size 468949 diff --git a/vlm/train/HkNKFiGex/3.png b/vlm/train/HkNKFiGex/3.png new file mode 100644 index 0000000000000000000000000000000000000000..17cd37be84f67b1e6edac3ef9e5b44ce4eb3093d --- /dev/null +++ b/vlm/train/HkNKFiGex/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5911c44451f9d437c4f0aa13f405f2d91b7f42f6655dd8874efc81786d6527f4 +size 416424 diff --git a/vlm/train/HkNKFiGex/4.png b/vlm/train/HkNKFiGex/4.png new file mode 100644 index 0000000000000000000000000000000000000000..5d68be308ca55cdff0b5473d1b3a4d8ea5a473e6 --- /dev/null +++ b/vlm/train/HkNKFiGex/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a5e10759828214245054690a7777810f571f2e6af7fceb19c732df81f99642b7 +size 504718 diff --git a/vlm/train/HkNKFiGex/5.png b/vlm/train/HkNKFiGex/5.png new file mode 100644 index 0000000000000000000000000000000000000000..cf58385f4da9edc31d4d740049365f1113ebabe0 --- /dev/null +++ b/vlm/train/HkNKFiGex/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:78acfd6109c50c13c78d06279cd93ed6d6aa8fc47c4729bd4317e47049cdeaf6 +size 461634 diff --git a/vlm/train/HkNKFiGex/6.png b/vlm/train/HkNKFiGex/6.png new file mode 100644 index 0000000000000000000000000000000000000000..becb0029520a6a7bcd7214dba5a8c2ca271c1b89 --- /dev/null +++ b/vlm/train/HkNKFiGex/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a265643c576915ace1abf7095160922951f9882fb7ad932b542214552225cf1f +size 808498 diff --git a/vlm/train/HkNKFiGex/7.png b/vlm/train/HkNKFiGex/7.png new file mode 100644 index 0000000000000000000000000000000000000000..3435906bb2878d8b15ff233e5ed22a95c44ed58a --- /dev/null +++ b/vlm/train/HkNKFiGex/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9f323727363e2e8a07b05a30e60fd158fb356f49045a1a6a2912fdb263b297fd +size 764032 diff --git a/vlm/train/HkNKFiGex/8.png b/vlm/train/HkNKFiGex/8.png new file mode 100644 index 0000000000000000000000000000000000000000..cb81f2dbb4dd48d2d6a17386e03bc898555d5761 --- /dev/null +++ b/vlm/train/HkNKFiGex/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cae7e11a218c1f6b36d4cb73680b264530b1b29b65ba44818241372810b9f095 +size 491808 diff --git a/vlm/train/HkNKFiGex/9.png b/vlm/train/HkNKFiGex/9.png new file mode 100644 index 0000000000000000000000000000000000000000..9c6ee6789ad61c57366841f7037496594e342f6c --- /dev/null +++ b/vlm/train/HkNKFiGex/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:955a40bf2b7206cbd7b881f8db9d0aaffe832c09a8072781bdc3f0431a7fe24f +size 528188 diff --git a/vlm/train/HkgH0TEYwH/0.png b/vlm/train/HkgH0TEYwH/0.png new file mode 100644 index 0000000000000000000000000000000000000000..bea098c81cb45c0a8f59f65039ef84f3e57bd8c4 --- /dev/null +++ b/vlm/train/HkgH0TEYwH/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2113e8433494473b7d4c50d5f705cdbeabe795dd42e9ff8ff32858ac608f92be +size 486318 diff --git a/vlm/train/HkgH0TEYwH/1.png b/vlm/train/HkgH0TEYwH/1.png new file mode 100644 index 0000000000000000000000000000000000000000..8a4462d4c6a15b73a7f39a5e0e531616ef3d41eb --- /dev/null +++ b/vlm/train/HkgH0TEYwH/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:94a99fe7998d387aea95858348af4be2002cdceecf6d18dafc22e9c05531fa08 +size 687509 diff --git a/vlm/train/HkgH0TEYwH/10.png b/vlm/train/HkgH0TEYwH/10.png new file mode 100644 index 0000000000000000000000000000000000000000..2af5975fd2cff4a304eda75c9ed39aa22c575c73 --- /dev/null +++ b/vlm/train/HkgH0TEYwH/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1f41689ab06d1b9466328e229699b6221a677396382ca26185fa3eb4d39b7399 +size 506683 diff --git a/vlm/train/HkgH0TEYwH/11.png b/vlm/train/HkgH0TEYwH/11.png new file mode 100644 index 0000000000000000000000000000000000000000..11267303e43e75b068c190de9d80948248fd8b9a --- /dev/null +++ b/vlm/train/HkgH0TEYwH/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e6702d86a91867f952bf88b7870dddb8669381fb9a7e2290ef15a5a074033bec +size 539467 diff --git a/vlm/train/HkgH0TEYwH/12.png b/vlm/train/HkgH0TEYwH/12.png new file mode 100644 index 0000000000000000000000000000000000000000..c354996412fa50ac1bdb297953d40be6c95ed421 --- /dev/null +++ b/vlm/train/HkgH0TEYwH/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:27eba5a38fc42b636742406e3a378da7cbbbff0a20dd0484180543f44be80fbc +size 532059 diff --git a/vlm/train/HkgH0TEYwH/13.png b/vlm/train/HkgH0TEYwH/13.png new file mode 100644 index 0000000000000000000000000000000000000000..21aed4fde6ad645e8fd329410deb673306780ee5 --- /dev/null +++ b/vlm/train/HkgH0TEYwH/13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dc3f742472ca589e452d033151c0ddaacdf4e9a3109c555fa27e83794847f2a7 +size 306060 diff --git a/vlm/train/HkgH0TEYwH/14.png b/vlm/train/HkgH0TEYwH/14.png new file mode 100644 index 0000000000000000000000000000000000000000..a324fe29669694824b8b3bb7f994d62cd2edd7ab --- /dev/null +++ b/vlm/train/HkgH0TEYwH/14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:284b4a851b2dd26129d58d392dfd15c2d1f2f52102cc566ec9c3b9b26921eae6 +size 284125 diff --git a/vlm/train/HkgH0TEYwH/15.png b/vlm/train/HkgH0TEYwH/15.png new file mode 100644 index 0000000000000000000000000000000000000000..8c08c6e897cb6ccd9fbd4c6a3203599ab6944390 --- /dev/null +++ b/vlm/train/HkgH0TEYwH/15.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b64d99ea8a9e81d271eaad8889093ec24909bc38f88931ad26d7fa1d95717620 +size 349563 diff --git a/vlm/train/HkgH0TEYwH/16.png b/vlm/train/HkgH0TEYwH/16.png new file mode 100644 index 0000000000000000000000000000000000000000..2a3dea827b30a2659df85389a6a21f8880974c2b --- /dev/null +++ b/vlm/train/HkgH0TEYwH/16.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5b921f5943cfe028c031bf130621e37ee9073d4b61d3e179a74a8f582a8bcba2 +size 454558 diff --git a/vlm/train/HkgH0TEYwH/17.png b/vlm/train/HkgH0TEYwH/17.png new file mode 100644 index 0000000000000000000000000000000000000000..4a0b81f8a6aab3aea1ebdfa337824f2a17f5dba7 --- /dev/null +++ b/vlm/train/HkgH0TEYwH/17.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:144de8d4dcd2ab57774ba3f45068bc3cdae418348ba117682c766dc20daf215c +size 586980 diff --git a/vlm/train/HkgH0TEYwH/18.png b/vlm/train/HkgH0TEYwH/18.png new file mode 100644 index 0000000000000000000000000000000000000000..8cfac589496ffb424336967e2e8e2b778fb0ef3e --- /dev/null +++ b/vlm/train/HkgH0TEYwH/18.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9135786d1634f7f3d73592c2226f60348cd5804cc102728f2b9187e178e1d4fc +size 310763 diff --git a/vlm/train/HkgH0TEYwH/19.png b/vlm/train/HkgH0TEYwH/19.png new file mode 100644 index 0000000000000000000000000000000000000000..48c2c6c38af51e4593c1c5fe2dd6e47a75beaf32 --- /dev/null +++ b/vlm/train/HkgH0TEYwH/19.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:162a30cdf713d148bc25cf2850db01a45ea8d4abf2092f6d5ed42315741e800f +size 177482 diff --git a/vlm/train/HkgH0TEYwH/2.png b/vlm/train/HkgH0TEYwH/2.png new file mode 100644 index 0000000000000000000000000000000000000000..69bc958da3807a147ded88f82babfe820f8cd5a7 --- /dev/null +++ b/vlm/train/HkgH0TEYwH/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0473c9a89bcbf211dd35dc92d33c3ec270aa87056790fc5c9be51104162b4751 +size 611928 diff --git a/vlm/train/HkgH0TEYwH/20.png b/vlm/train/HkgH0TEYwH/20.png new file mode 100644 index 0000000000000000000000000000000000000000..025598afe7ec1249831615d9e0e56241a1e0fd94 --- /dev/null +++ b/vlm/train/HkgH0TEYwH/20.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bc1cf6538a2ad6d03297f8e4ff843005d570b3d24be9aec5f45b71c8e19734ae +size 233897 diff --git a/vlm/train/HkgH0TEYwH/21.png b/vlm/train/HkgH0TEYwH/21.png new file mode 100644 index 0000000000000000000000000000000000000000..e2e3353db70da5997813a8fbb769e0cbe7133ce6 --- /dev/null +++ b/vlm/train/HkgH0TEYwH/21.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b89421ed7a8ca04b1262cdb8a5b0763a2bfb79f68977a6fbc830e69b3bc2d834 +size 181105 diff --git a/vlm/train/HkgH0TEYwH/22.png b/vlm/train/HkgH0TEYwH/22.png new file mode 100644 index 0000000000000000000000000000000000000000..ebd7e218f66802bbbf6f16c06c6873cf5918a6cf --- /dev/null +++ b/vlm/train/HkgH0TEYwH/22.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:782aa28485e76e195f00684b1ba731b27ef74a2ea8e2abafb9b505cd2185f1a2 +size 129377 diff --git a/vlm/train/HkgH0TEYwH/3.png b/vlm/train/HkgH0TEYwH/3.png new file mode 100644 index 0000000000000000000000000000000000000000..3935c590adf87bd77c83a0381892657457cade11 --- /dev/null +++ b/vlm/train/HkgH0TEYwH/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b324b94239ff52a2c52d789f594966b606226fb07fdd7716c799e4c65331e865 +size 516463 diff --git a/vlm/train/HkgH0TEYwH/4.png b/vlm/train/HkgH0TEYwH/4.png new file mode 100644 index 0000000000000000000000000000000000000000..c1e64fc375e47251d30beedc617ff2b306b995bc --- /dev/null +++ b/vlm/train/HkgH0TEYwH/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:930110d1335704183ddfaa67bde4cb9c4814915c0ff578f9a9f7586f909396d0 +size 585633 diff --git a/vlm/train/HkgH0TEYwH/5.png b/vlm/train/HkgH0TEYwH/5.png new file mode 100644 index 0000000000000000000000000000000000000000..090af3e3a58832f90e71d7f2c7b20287f6543607 --- /dev/null +++ b/vlm/train/HkgH0TEYwH/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1bf1a54ac027cfcc95c3768c880a61d5cad187a49862d0844b66610203d22937 +size 615374 diff --git a/vlm/train/HkgH0TEYwH/6.png b/vlm/train/HkgH0TEYwH/6.png new file mode 100644 index 0000000000000000000000000000000000000000..94b14442a7ece5a86b6c0d9fe163692df00e0eaf --- /dev/null +++ b/vlm/train/HkgH0TEYwH/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f9cfd530587b7271420abcb39bd9e923c268da23f2221e111405e414f2cff303 +size 518066 diff --git a/vlm/train/HkgH0TEYwH/7.png b/vlm/train/HkgH0TEYwH/7.png new file mode 100644 index 0000000000000000000000000000000000000000..40025ad8a0f5764957d5ada2721ee6d7a4187b21 --- /dev/null +++ b/vlm/train/HkgH0TEYwH/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:37acf5137c88aa82b5eb1ce503ed030238e426713be7425bb483e3dd061f4324 +size 453651 diff --git a/vlm/train/HkgH0TEYwH/8.png b/vlm/train/HkgH0TEYwH/8.png new file mode 100644 index 0000000000000000000000000000000000000000..dc624b5221aa47d6f1d1ce2e66f8a31250ea95ad --- /dev/null +++ b/vlm/train/HkgH0TEYwH/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dc782a72061553a6533b913660be0a4a02c2d9423824ebea9152385dd25a6e25 +size 562740 diff --git a/vlm/train/HkgH0TEYwH/9.png b/vlm/train/HkgH0TEYwH/9.png new file mode 100644 index 0000000000000000000000000000000000000000..a01bf0674e5909c45880c1302e6d65ac94366164 --- /dev/null +++ b/vlm/train/HkgH0TEYwH/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0ace99c409b02938055e2cb26b3db59f705e3a673df61a19d9def489f9bf2ce8 +size 502518 diff --git a/vlm/train/HyGh4sR9YQ/0.png b/vlm/train/HyGh4sR9YQ/0.png new file mode 100644 index 0000000000000000000000000000000000000000..9891055edd4c901ef4330e2ab27d206f7546d562 --- /dev/null +++ b/vlm/train/HyGh4sR9YQ/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:625c7f277dc90ee4746791f8ddfad6bf4b7c2db94e890428e1808ceb86a75c2b +size 499175 diff --git a/vlm/train/HyGh4sR9YQ/1.png b/vlm/train/HyGh4sR9YQ/1.png new file mode 100644 index 0000000000000000000000000000000000000000..28755dd1fd0d26bf2548289100a29e6f119068e5 --- /dev/null +++ b/vlm/train/HyGh4sR9YQ/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5b6cd09bf3d9d1b54fd6c00c886339621231cde0714bff321157099439130c2b +size 650552 diff --git a/vlm/train/HyGh4sR9YQ/10.png b/vlm/train/HyGh4sR9YQ/10.png new file mode 100644 index 0000000000000000000000000000000000000000..bd53a59083a0113cfbc284c9330274b281a31f07 --- /dev/null +++ b/vlm/train/HyGh4sR9YQ/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9235322d72328a3e5b55e8f26b278d3766c380c256f894799d9518e496695bbd +size 482357 diff --git a/vlm/train/HyGh4sR9YQ/11.png b/vlm/train/HyGh4sR9YQ/11.png new file mode 100644 index 0000000000000000000000000000000000000000..7cc27168ff19d16e3c93563b8943dd8843e14ca7 --- /dev/null +++ b/vlm/train/HyGh4sR9YQ/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c475da1d22c7566c35beaffc145d22827812d516d106308095f209cd573dff02 +size 427646 diff --git a/vlm/train/HyGh4sR9YQ/12.png b/vlm/train/HyGh4sR9YQ/12.png new file mode 100644 index 0000000000000000000000000000000000000000..2ca214b69704c38151790573f7503450cb08c737 --- /dev/null +++ b/vlm/train/HyGh4sR9YQ/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:47a8e0b35efbc124ca85fd578b9a135e470ddc854b3dc4658af7ae437b7c40b8 +size 374987 diff --git a/vlm/train/HyGh4sR9YQ/13.png b/vlm/train/HyGh4sR9YQ/13.png new file mode 100644 index 0000000000000000000000000000000000000000..eac3e69cd09d4cc9cb7144a900a777bc1fb2c776 --- /dev/null +++ b/vlm/train/HyGh4sR9YQ/13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ef2ba2246ad2da202dd611f4910bd21e16f94e78a62ee5bf7ef336f3c3c0083c +size 368257 diff --git a/vlm/train/HyGh4sR9YQ/14.png b/vlm/train/HyGh4sR9YQ/14.png new file mode 100644 index 0000000000000000000000000000000000000000..447c4e62b254a9592ff6bc32bcbd497ab7cb2fac --- /dev/null +++ b/vlm/train/HyGh4sR9YQ/14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dc1abe1771995d8169c5506fa9f73bb08c497a44477d4b413184830b7e2a7a7d +size 502955 diff --git a/vlm/train/HyGh4sR9YQ/15.png b/vlm/train/HyGh4sR9YQ/15.png new file mode 100644 index 0000000000000000000000000000000000000000..5e3e6a006c31ffffc1fa1cf90ebdbd60f4262dc3 --- /dev/null +++ b/vlm/train/HyGh4sR9YQ/15.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e6da4092899db626b2d0ffe1303d10b95b2e98cfa22b404b561523a75692db6f +size 601127 diff --git a/vlm/train/HyGh4sR9YQ/16.png b/vlm/train/HyGh4sR9YQ/16.png new file mode 100644 index 0000000000000000000000000000000000000000..019a78e9b0a27eaeee923eb3e70005c48157a9eb --- /dev/null +++ b/vlm/train/HyGh4sR9YQ/16.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b8dd3e279f5561008a367a1e898812bdafdd11e739fbd6073720bd4bf705ca33 +size 570463 diff --git a/vlm/train/HyGh4sR9YQ/17.png b/vlm/train/HyGh4sR9YQ/17.png new file mode 100644 index 0000000000000000000000000000000000000000..f7c69da8d85474f43c7c263086fd11c112db2647 --- /dev/null +++ b/vlm/train/HyGh4sR9YQ/17.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:36ad29ce48ef9c9155936459b7830dc3869352eaaf815ef8e05d2db723e6bc1b +size 564116 diff --git a/vlm/train/HyGh4sR9YQ/18.png b/vlm/train/HyGh4sR9YQ/18.png new file mode 100644 index 0000000000000000000000000000000000000000..c6158efe631db379a136cf6ead6f7025f1d29bad --- /dev/null +++ b/vlm/train/HyGh4sR9YQ/18.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4a50ea6480fe8901f12b4de3af58f7bb291f720d2ced0c26deb28827f07fe5e4 +size 124277 diff --git a/vlm/train/HyGh4sR9YQ/19.png b/vlm/train/HyGh4sR9YQ/19.png new file mode 100644 index 0000000000000000000000000000000000000000..c943461956b86646d11004ecd0d63321a48c3bd9 --- /dev/null +++ b/vlm/train/HyGh4sR9YQ/19.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f2e3ff8af7902f423b38c1e63f3676180b14caf0ecec18332af7162618a8a961 +size 873006 diff --git a/vlm/train/HyGh4sR9YQ/2.png b/vlm/train/HyGh4sR9YQ/2.png new file mode 100644 index 0000000000000000000000000000000000000000..3cc4ac694856457c3e24b92f9706cbd21955e561 --- /dev/null +++ b/vlm/train/HyGh4sR9YQ/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1253dd1bc5390085d5c9a1048df50450139f1a8d919008a5eb04b4db3c98c5c9 +size 583121 diff --git a/vlm/train/HyGh4sR9YQ/20.png b/vlm/train/HyGh4sR9YQ/20.png new file mode 100644 index 0000000000000000000000000000000000000000..e487c8d80ccef7c9178cdbbe5a542f50f22b7416 --- /dev/null +++ b/vlm/train/HyGh4sR9YQ/20.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0f5d1d5bce5784fa2d7f7fddf6b683b681b2f72f7237f7c11e1c85879d20cc71 +size 292292 diff --git a/vlm/train/HyGh4sR9YQ/21.png b/vlm/train/HyGh4sR9YQ/21.png new file mode 100644 index 0000000000000000000000000000000000000000..30fac6fd4f51b09d8d84f592bfd73b2061882603 --- /dev/null +++ b/vlm/train/HyGh4sR9YQ/21.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6df19aef2b42b38b51c74ec675e42b4f87232416a5872bb0f6ddfa155d9b2e01 +size 600603 diff --git a/vlm/train/HyGh4sR9YQ/22.png b/vlm/train/HyGh4sR9YQ/22.png new file mode 100644 index 0000000000000000000000000000000000000000..414e094d518812ff75cc5e260a26b234838db388 --- /dev/null +++ b/vlm/train/HyGh4sR9YQ/22.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3bde60e91b65a0d25ed6fbbc6e67ed5aad316cda6f240c4e48222862780611fd +size 119222 diff --git a/vlm/train/HyGh4sR9YQ/3.png b/vlm/train/HyGh4sR9YQ/3.png new file mode 100644 index 0000000000000000000000000000000000000000..96ee4785d39c4f2387f109e0f64e22bd8c04682c --- /dev/null +++ b/vlm/train/HyGh4sR9YQ/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e9e7b730586c7fb4a67ce10689c48c6336fc336d95cda29d060a5b53f6244bd1 +size 563839 diff --git a/vlm/train/HyGh4sR9YQ/4.png b/vlm/train/HyGh4sR9YQ/4.png new file mode 100644 index 0000000000000000000000000000000000000000..f7da2bd47f62d098e59422b6dd0df81d8e4e0c33 --- /dev/null +++ b/vlm/train/HyGh4sR9YQ/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:32481a95a52ef05690f3124f9b5a4c916309f7d22fe045abd713f6aa3418f237 +size 648736 diff --git a/vlm/train/HyGh4sR9YQ/5.png b/vlm/train/HyGh4sR9YQ/5.png new file mode 100644 index 0000000000000000000000000000000000000000..03b2164b6f757f000ab69f240aa57bf79245a6d8 --- /dev/null +++ b/vlm/train/HyGh4sR9YQ/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6c272029663b92e49f6f3b40fc94da3769bfa0132126ed71e6df9f543c5256ab +size 588069 diff --git a/vlm/train/HyGh4sR9YQ/6.png b/vlm/train/HyGh4sR9YQ/6.png new file mode 100644 index 0000000000000000000000000000000000000000..922bfe83061dfe02948b368a055c2282e6a41834 --- /dev/null +++ b/vlm/train/HyGh4sR9YQ/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1273d3893881ed49b10305c5996c7b691183c3ff32a5449f84592ce735f93497 +size 595616 diff --git a/vlm/train/HyGh4sR9YQ/7.png b/vlm/train/HyGh4sR9YQ/7.png new file mode 100644 index 0000000000000000000000000000000000000000..88c034ed349bb74406e9692471eb487ea493a123 --- /dev/null +++ b/vlm/train/HyGh4sR9YQ/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1bc2012c6b1f7dee2b28d66098aa99d97a44c36c61c50fe97b412b02ddf819f7 +size 613748 diff --git a/vlm/train/HyGh4sR9YQ/8.png b/vlm/train/HyGh4sR9YQ/8.png new file mode 100644 index 0000000000000000000000000000000000000000..53c2117e10ebb9fd77c1ee2fae4fa71ead078ed6 --- /dev/null +++ b/vlm/train/HyGh4sR9YQ/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c078d8f0e762ffacc2bddcb31705f12a1a45236e241090ea8855fb07bae7b9b1 +size 616077 diff --git a/vlm/train/HyGh4sR9YQ/9.png b/vlm/train/HyGh4sR9YQ/9.png new file mode 100644 index 0000000000000000000000000000000000000000..ccef73318cc9fbbc1af89b072bff38cb671f021d --- /dev/null +++ b/vlm/train/HyGh4sR9YQ/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aff8c02dc225e78b91a8259cac8a2634138872c27416fc68e46df35e90911df1 +size 671250 diff --git a/vlm/train/Hyl5V0EYvB/0.png b/vlm/train/Hyl5V0EYvB/0.png new file mode 100644 index 0000000000000000000000000000000000000000..8f737facba7420b1f3d085e4cdb884287d03602a --- /dev/null +++ b/vlm/train/Hyl5V0EYvB/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f9595a372f37414e979ac4bf6ebb1136666dd16ba139501b99a30223793e0b89 +size 481056 diff --git a/vlm/train/Hyl5V0EYvB/1.png b/vlm/train/Hyl5V0EYvB/1.png new file mode 100644 index 0000000000000000000000000000000000000000..24a7080edbceab85053db5a4aa0bc351d18e7093 --- /dev/null +++ b/vlm/train/Hyl5V0EYvB/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:512e3fd855b748c40ce5e8b0ed56a31463a301ee7af9c9a61d76d6b3486ee846 +size 1162804 diff --git a/vlm/train/Hyl5V0EYvB/10.png b/vlm/train/Hyl5V0EYvB/10.png new file mode 100644 index 0000000000000000000000000000000000000000..75c44d1998901798a1c9c43a8da0b595d88bc398 --- /dev/null +++ b/vlm/train/Hyl5V0EYvB/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:379de4e8df9213f42d5d3349c32f734b96473902c8078f20f0a48990604148c1 +size 94761 diff --git a/vlm/train/Hyl5V0EYvB/11.png b/vlm/train/Hyl5V0EYvB/11.png new file mode 100644 index 0000000000000000000000000000000000000000..7c55f0826661626c5a29d575f63b6c595eb55914 --- /dev/null +++ b/vlm/train/Hyl5V0EYvB/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f538c214f9be8f5b1a1726103963bf8a1f4d7f57bfbc1f5ba9683c66726933d8 +size 1070663 diff --git a/vlm/train/Hyl5V0EYvB/12.png b/vlm/train/Hyl5V0EYvB/12.png new file mode 100644 index 0000000000000000000000000000000000000000..3e4d083ca3d9491275be3097030a9ba73d26906e --- /dev/null +++ b/vlm/train/Hyl5V0EYvB/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:93fa9454b575f1ebade8608243af972d97277cb130b416e6a7c28e8511c3a06f +size 337284 diff --git a/vlm/train/Hyl5V0EYvB/13.png b/vlm/train/Hyl5V0EYvB/13.png new file mode 100644 index 0000000000000000000000000000000000000000..de70e0e92ccea14eeffa87d900e27d15716c5fef --- /dev/null +++ b/vlm/train/Hyl5V0EYvB/13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dae66c38b1c8ec1a976d6e9e82c21318396a18ce1493523b8468789ba56aba1a +size 444171 diff --git a/vlm/train/Hyl5V0EYvB/14.png b/vlm/train/Hyl5V0EYvB/14.png new file mode 100644 index 0000000000000000000000000000000000000000..00019790682e99ae6f423ed32c2bd749291ea045 --- /dev/null +++ b/vlm/train/Hyl5V0EYvB/14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:abd2b1171461ca3eab1766e8085b1c3735f877c01741c1de902ba99af8ad1d6a +size 1458274 diff --git a/vlm/train/Hyl5V0EYvB/15.png b/vlm/train/Hyl5V0EYvB/15.png new file mode 100644 index 0000000000000000000000000000000000000000..2776eff002fa039364a1d0ff7d5b6f8ee217533c --- /dev/null +++ b/vlm/train/Hyl5V0EYvB/15.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e0103248e7412fb701b7c89088464d6aae7d01e52f07ee72489c14145bc98084 +size 470708 diff --git a/vlm/train/Hyl5V0EYvB/16.png b/vlm/train/Hyl5V0EYvB/16.png new file mode 100644 index 0000000000000000000000000000000000000000..13d3944164a9457601f068fc5617d76eab50584f --- /dev/null +++ b/vlm/train/Hyl5V0EYvB/16.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4038434f39088c27247556314b0fac647bef71083a14a4ab87741f504e76d3dc +size 351910 diff --git a/vlm/train/Hyl5V0EYvB/17.png b/vlm/train/Hyl5V0EYvB/17.png new file mode 100644 index 0000000000000000000000000000000000000000..5b51d6611ded4cd8546b80cef86d7e24479ad683 --- /dev/null +++ b/vlm/train/Hyl5V0EYvB/17.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:267deebb0cf6defb488b601de82774bf7758c98e2ff3ebb726aa8f53aeb6e8b0 +size 422464 diff --git a/vlm/train/Hyl5V0EYvB/18.png b/vlm/train/Hyl5V0EYvB/18.png new file mode 100644 index 0000000000000000000000000000000000000000..4fd508208cf59baefc72b451319c4e91a3193f24 --- /dev/null +++ b/vlm/train/Hyl5V0EYvB/18.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7cb0baaee12d92038288b0d3c5f91450fa7c06e5934aeffb012d5aa1dd9b7116 +size 1212008 diff --git a/vlm/train/Hyl5V0EYvB/19.png b/vlm/train/Hyl5V0EYvB/19.png new file mode 100644 index 0000000000000000000000000000000000000000..525b278706a0e8b5c4e22b50d0c76de6330744d4 --- /dev/null +++ b/vlm/train/Hyl5V0EYvB/19.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7c582a412137b718f6c2ba23a36bfb8377f16b7f4bc71e6bef0a40848b46c67e +size 491875 diff --git a/vlm/train/Hyl5V0EYvB/2.png b/vlm/train/Hyl5V0EYvB/2.png new file mode 100644 index 0000000000000000000000000000000000000000..871a92404903c097f80d4e35caa0ff2e6e073c3b --- /dev/null +++ b/vlm/train/Hyl5V0EYvB/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fd55bffedd9153e35376e910eb821b851556907df4d481000373afaaf7f3eec9 +size 1508811 diff --git a/vlm/train/Hyl5V0EYvB/20.png b/vlm/train/Hyl5V0EYvB/20.png new file mode 100644 index 0000000000000000000000000000000000000000..b8e49c5406f02ad3199ab181dba58e16c404b022 --- /dev/null +++ b/vlm/train/Hyl5V0EYvB/20.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fc4d9eff0a4062e720411bd844d44f42d87c09d2af823327412a5ebaf862b2fd +size 1505522 diff --git a/vlm/train/Hyl5V0EYvB/21.png b/vlm/train/Hyl5V0EYvB/21.png new file mode 100644 index 0000000000000000000000000000000000000000..84a20460b9cc20e162465eb73b3e69023c69158d --- /dev/null +++ b/vlm/train/Hyl5V0EYvB/21.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:25530f9f8fade99f79ff99362d1e03d914710f62b375b1a69fc39c3500587da1 +size 362771 diff --git a/vlm/train/Hyl5V0EYvB/22.png b/vlm/train/Hyl5V0EYvB/22.png new file mode 100644 index 0000000000000000000000000000000000000000..4ceba8de7efb1b98e0093743ce96f2d56c61d6b3 --- /dev/null +++ b/vlm/train/Hyl5V0EYvB/22.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:569d7c4e096f868ca34a8b662d59f1a7857802d73438ad62162c1e60568e0a4b +size 1030361 diff --git a/vlm/train/Hyl5V0EYvB/3.png b/vlm/train/Hyl5V0EYvB/3.png new file mode 100644 index 0000000000000000000000000000000000000000..2cab4ea661dcbf73ec1758862faa6f2c44d961f5 --- /dev/null +++ b/vlm/train/Hyl5V0EYvB/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:62a7e76b7a31384f33a08c42791793d447f82bfcdbbd56edd1e334e4bab05d54 +size 484751 diff --git a/vlm/train/Hyl5V0EYvB/4.png b/vlm/train/Hyl5V0EYvB/4.png new file mode 100644 index 0000000000000000000000000000000000000000..2f1c4ddf5671772b2ebade33878a755c5b4845a7 --- /dev/null +++ b/vlm/train/Hyl5V0EYvB/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:be74b1d293f09f9d7fbc6b08644dedfbe29d934c566b718b56711527d9965dfb +size 1149784 diff --git a/vlm/train/Hyl5V0EYvB/5.png b/vlm/train/Hyl5V0EYvB/5.png new file mode 100644 index 0000000000000000000000000000000000000000..fb2bac964dcd97f4e2084f8911e180c49e49851d --- /dev/null +++ b/vlm/train/Hyl5V0EYvB/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8c428d554a048c3d600873c4bf48a2b60a71b079ed4a95ae506946f833930040 +size 527030 diff --git a/vlm/train/Hyl5V0EYvB/6.png b/vlm/train/Hyl5V0EYvB/6.png new file mode 100644 index 0000000000000000000000000000000000000000..5879e81ca4e174274273aa425a8b3c3e8e458efe --- /dev/null +++ b/vlm/train/Hyl5V0EYvB/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5dd370d9280172ee72a22340c50ae27002c0a4855d5fc8bbb9beb44c1d06077e +size 582569 diff --git a/vlm/train/Hyl5V0EYvB/7.png b/vlm/train/Hyl5V0EYvB/7.png new file mode 100644 index 0000000000000000000000000000000000000000..5dd4b0bf1c88a9192c70473b889ac169a39cef03 --- /dev/null +++ b/vlm/train/Hyl5V0EYvB/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:120ee5a01ec63665fe60bbc5af552ca73d8b1e756565968bab73db7bc72f0aff +size 565585 diff --git a/vlm/train/Hyl5V0EYvB/8.png b/vlm/train/Hyl5V0EYvB/8.png new file mode 100644 index 0000000000000000000000000000000000000000..561dc2b4ce02a1a52e9bcda449a67a2b5e8deccd --- /dev/null +++ b/vlm/train/Hyl5V0EYvB/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2676c4647d2f07f39937ef1a81aeb4eef9484a4f6112d7e05542bfcc13cd6365 +size 538767 diff --git a/vlm/train/Hyl5V0EYvB/9.png b/vlm/train/Hyl5V0EYvB/9.png new file mode 100644 index 0000000000000000000000000000000000000000..d5fcb339cbac2022f8482c725c430d4a6474f655 --- /dev/null +++ b/vlm/train/Hyl5V0EYvB/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0e72dafaed9ebe17b2f610eb4dec6bce5987ee946e132506a8b2a37c04d2a21e +size 565027 diff --git a/vlm/train/Hyx4knR9Ym/0.png b/vlm/train/Hyx4knR9Ym/0.png new file mode 100644 index 0000000000000000000000000000000000000000..dc604284c70bc2227c9c99108a5e3ef115b684fc --- /dev/null +++ b/vlm/train/Hyx4knR9Ym/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f16912300fbe08a51b41ca264d442075eb231972353b8c0c280e8b96fd7123ce +size 484076 diff --git a/vlm/train/Hyx4knR9Ym/1.png b/vlm/train/Hyx4knR9Ym/1.png new file mode 100644 index 0000000000000000000000000000000000000000..057aded0016d254a6339250477a6bbb08fef9d11 --- /dev/null +++ b/vlm/train/Hyx4knR9Ym/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4df0aadb800e707fa1feba3f8ddd1cbd3c102e5ea019695660fd091c0bc2107a +size 532809 diff --git a/vlm/train/Hyx4knR9Ym/10.png b/vlm/train/Hyx4knR9Ym/10.png new file mode 100644 index 0000000000000000000000000000000000000000..3fda5c498b73c0be95967bcb320d53e4534a955e --- /dev/null +++ b/vlm/train/Hyx4knR9Ym/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c376e5368c6b6312e6d92f16813454bc28e154eff3f025490b6bf8123cea8b44 +size 528465 diff --git a/vlm/train/Hyx4knR9Ym/11.png b/vlm/train/Hyx4knR9Ym/11.png new file mode 100644 index 0000000000000000000000000000000000000000..442df4d20153ef51a17a80d9c457a5854189359d --- /dev/null +++ b/vlm/train/Hyx4knR9Ym/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:696b1a081f5977b4dcbdfefd8d5313b7a95bd78f23668f60aef12799da965eba +size 562950 diff --git a/vlm/train/Hyx4knR9Ym/12.png b/vlm/train/Hyx4knR9Ym/12.png new file mode 100644 index 0000000000000000000000000000000000000000..6627d06d1080e1f308217b6e04a1fce794796d7c --- /dev/null +++ b/vlm/train/Hyx4knR9Ym/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9a4ca33f3a8a24736134a0d3fc6d5481b8b353090dd8c77b36fae2db6109b30d +size 93481 diff --git a/vlm/train/Hyx4knR9Ym/13.png b/vlm/train/Hyx4knR9Ym/13.png new file mode 100644 index 0000000000000000000000000000000000000000..5343d79d5c173edf4106f7b9d1e8dafab2210bb7 --- /dev/null +++ b/vlm/train/Hyx4knR9Ym/13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cbcd63e1122398f7b66cd923df2706a95d60b7b66a4f9cda583f77e5f1473060 +size 475433 diff --git a/vlm/train/Hyx4knR9Ym/14.png b/vlm/train/Hyx4knR9Ym/14.png new file mode 100644 index 0000000000000000000000000000000000000000..28ea57e714a6f0018bd009eb00058947149eb1f4 --- /dev/null +++ b/vlm/train/Hyx4knR9Ym/14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:892b7e0caeb441458677eb743b0fceacf5322bd333f42251d962eb5c4833b2ee +size 418716 diff --git a/vlm/train/Hyx4knR9Ym/15.png b/vlm/train/Hyx4knR9Ym/15.png new file mode 100644 index 0000000000000000000000000000000000000000..f44856e7273057833f2e5b3ffcac42187054c076 --- /dev/null +++ b/vlm/train/Hyx4knR9Ym/15.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e5b2997a0e389ef41a2d02ba9e4ba7247574850e0b864ff240d2d1ab4d893349 +size 425302 diff --git a/vlm/train/Hyx4knR9Ym/16.png b/vlm/train/Hyx4knR9Ym/16.png new file mode 100644 index 0000000000000000000000000000000000000000..605a6ed075d8eded8a7c40c32a5cb43c8ecc3ce7 --- /dev/null +++ b/vlm/train/Hyx4knR9Ym/16.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:42e7e07e08e44f69d05e8fb63cf4ecb6e0f3152fb02e6dc690b85e850c34ae23 +size 355620 diff --git a/vlm/train/Hyx4knR9Ym/17.png b/vlm/train/Hyx4knR9Ym/17.png new file mode 100644 index 0000000000000000000000000000000000000000..e392f72fa6dbdd56f50d2d80ebb50e48ed17f8fa --- /dev/null +++ b/vlm/train/Hyx4knR9Ym/17.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d813db7b90185fe82f69e7095fd41761eca3696630843847b440e505e79937b7 +size 421192 diff --git a/vlm/train/Hyx4knR9Ym/18.png b/vlm/train/Hyx4knR9Ym/18.png new file mode 100644 index 0000000000000000000000000000000000000000..8802c971b139d7b0987d248e3c9f42282021bb10 --- /dev/null +++ b/vlm/train/Hyx4knR9Ym/18.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5221e32cb1a38d4c369e6c9f1c6255f873599e7eea395c27d15385d86eda520a +size 409541 diff --git a/vlm/train/Hyx4knR9Ym/19.png b/vlm/train/Hyx4knR9Ym/19.png new file mode 100644 index 0000000000000000000000000000000000000000..3e092adb3fec53b961d771c83b4affa9536886c7 --- /dev/null +++ b/vlm/train/Hyx4knR9Ym/19.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2bdb8c97cab87bf1dcbacc760f5aea72ea8216ff4c8f264dab2050a5f3e6e3df +size 426332 diff --git a/vlm/train/Hyx4knR9Ym/2.png b/vlm/train/Hyx4knR9Ym/2.png new file mode 100644 index 0000000000000000000000000000000000000000..2a999e82668aa81ec11cdf5e727a58647c219f44 --- /dev/null +++ b/vlm/train/Hyx4knR9Ym/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2a5c57903c802353c28e3949304ebe62af9c96ceb2a0e9c7fff05bcd14f49325 +size 496766 diff --git a/vlm/train/Hyx4knR9Ym/20.png b/vlm/train/Hyx4knR9Ym/20.png new file mode 100644 index 0000000000000000000000000000000000000000..5eb0f51a7bfad0fd9f7f302c48aaef9817682872 --- /dev/null +++ b/vlm/train/Hyx4knR9Ym/20.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:458eb9966f999d37010647ca10fcc18cdee588ef65faa9b8adddc241839c56ed +size 368394 diff --git a/vlm/train/Hyx4knR9Ym/21.png b/vlm/train/Hyx4knR9Ym/21.png new file mode 100644 index 0000000000000000000000000000000000000000..35bc84612e3c589a6c2d72c736664e0e863a5af1 --- /dev/null +++ b/vlm/train/Hyx4knR9Ym/21.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4f79313b695fc0e47400af0785321888eb2c001addcb3bf917b1889ec2f13b98 +size 413871 diff --git a/vlm/train/Hyx4knR9Ym/22.png b/vlm/train/Hyx4knR9Ym/22.png new file mode 100644 index 0000000000000000000000000000000000000000..5942c3e61b34ed996b1a17859c52ccbdd63944f3 --- /dev/null +++ b/vlm/train/Hyx4knR9Ym/22.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:646bbbbdf7c0fdb40de12a3d315433ad4e89c69312c875eb16f01fa0be0bb10d +size 412908 diff --git a/vlm/train/Hyx4knR9Ym/23.png b/vlm/train/Hyx4knR9Ym/23.png new file mode 100644 index 0000000000000000000000000000000000000000..af18effb83d675f2589a41a076388e3cccd33c49 --- /dev/null +++ b/vlm/train/Hyx4knR9Ym/23.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:385d7b389fceca93bf63e1ff2c324e45fa10407d35da4e007e585dd1745ea48a +size 374364 diff --git a/vlm/train/Hyx4knR9Ym/24.png b/vlm/train/Hyx4knR9Ym/24.png new file mode 100644 index 0000000000000000000000000000000000000000..7e16803022fbde3a26bfc60e8110cd98de42a358 --- /dev/null +++ b/vlm/train/Hyx4knR9Ym/24.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d9aae1c23cb99a34be48dfbe35fedb56394dd56742fedb7e2798d0634629153c +size 433036 diff --git a/vlm/train/Hyx4knR9Ym/25.png b/vlm/train/Hyx4knR9Ym/25.png new file mode 100644 index 0000000000000000000000000000000000000000..532ece2129d52fddf7ea7d63118aa12d1a81cfb2 --- /dev/null +++ b/vlm/train/Hyx4knR9Ym/25.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9450a65ea9549cf879720d4901b6c0463c806188ac6390abe929c0ed77b8a3e6 +size 378801 diff --git a/vlm/train/Hyx4knR9Ym/26.png b/vlm/train/Hyx4knR9Ym/26.png new file mode 100644 index 0000000000000000000000000000000000000000..367887adb568176b9b4a0eb91bacd4ed499a345b --- /dev/null +++ b/vlm/train/Hyx4knR9Ym/26.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:10b1f9da80e9b791ed730bee6093529ab393c7bf3f1398e39a7fd2036f7128e7 +size 284517 diff --git a/vlm/train/Hyx4knR9Ym/3.png b/vlm/train/Hyx4knR9Ym/3.png new file mode 100644 index 0000000000000000000000000000000000000000..f92bedc73a4541f80cee9be701d25a9aba79dd71 --- /dev/null +++ b/vlm/train/Hyx4knR9Ym/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:50f0fa7e5867d8587c7149f3afae91e0084c5f80d1c8e328e90cf0dc5830df3c +size 494435 diff --git a/vlm/train/Hyx4knR9Ym/4.png b/vlm/train/Hyx4knR9Ym/4.png new file mode 100644 index 0000000000000000000000000000000000000000..39ab3242c60a2dfac1c99f5fa32c375ca077df63 --- /dev/null +++ b/vlm/train/Hyx4knR9Ym/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3dc9c5b4116f7d0ef7647f9b547cf261aa562b7c13a908c0e2a33675b619e8d1 +size 510005 diff --git a/vlm/train/Hyx4knR9Ym/5.png b/vlm/train/Hyx4knR9Ym/5.png new file mode 100644 index 0000000000000000000000000000000000000000..51971b7c954f58b1df79b7b67d32984a6bec1c59 --- /dev/null +++ b/vlm/train/Hyx4knR9Ym/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fdf258e84809e16ec66aa572a20730b1aeb1051f022a09877b68b10df43b7455 +size 497741 diff --git a/vlm/train/Hyx4knR9Ym/6.png b/vlm/train/Hyx4knR9Ym/6.png new file mode 100644 index 0000000000000000000000000000000000000000..31716d608a743b479cc18999c09742ed48d2d5c5 --- /dev/null +++ b/vlm/train/Hyx4knR9Ym/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e6edab58d1460baa3943d4bfb91e039469b4050f90627a63a23f2b172ffc2478 +size 441208 diff --git a/vlm/train/Hyx4knR9Ym/7.png b/vlm/train/Hyx4knR9Ym/7.png new file mode 100644 index 0000000000000000000000000000000000000000..bd2f1c581ecc6d6c39d80516c91b940d990e2589 --- /dev/null +++ b/vlm/train/Hyx4knR9Ym/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:47651000e78c366680490984825faccacf42379355dbf44545c8087d50a3d961 +size 531331 diff --git a/vlm/train/Hyx4knR9Ym/8.png b/vlm/train/Hyx4knR9Ym/8.png new file mode 100644 index 0000000000000000000000000000000000000000..5a938cdbe53a572cdef1cd1c8dbd13b5a5307d37 --- /dev/null +++ b/vlm/train/Hyx4knR9Ym/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2649285bc1db8b266fea25cc7c9ae037548c671126f45b0783aec4b3792dc022 +size 390587 diff --git a/vlm/train/Hyx4knR9Ym/9.png b/vlm/train/Hyx4knR9Ym/9.png new file mode 100644 index 0000000000000000000000000000000000000000..ac9c8ee70cc7d4cb7bde42864565a07307d83373 --- /dev/null +++ b/vlm/train/Hyx4knR9Ym/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ff7979c8ea5189232abe0078408278b52bc62f6d0211d4dfb5cbded521f29a99 +size 573659 diff --git a/vlm/train/HyxzRsR9Y7/0.png b/vlm/train/HyxzRsR9Y7/0.png new file mode 100644 index 0000000000000000000000000000000000000000..fe4668831cc79b18c936c940f4a78d27b3a17f80 --- /dev/null +++ b/vlm/train/HyxzRsR9Y7/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ed02c5739cfe4579a2d7ca79fcf4371035ebaf9198d1a3567984a6f234fe334b +size 517421 diff --git a/vlm/train/HyxzRsR9Y7/1.png b/vlm/train/HyxzRsR9Y7/1.png new file mode 100644 index 0000000000000000000000000000000000000000..50b306f64acbdba8cb9b59f76486fac7da191ae8 --- /dev/null +++ b/vlm/train/HyxzRsR9Y7/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bda39e00dd1f3d7c1b397a3fabd69a80a85d65679ae5eed1ec9c019635f7384a +size 658287 diff --git a/vlm/train/HyxzRsR9Y7/10.png b/vlm/train/HyxzRsR9Y7/10.png new file mode 100644 index 0000000000000000000000000000000000000000..863ec320c5a6037a19a97ea1868b9fc80e7a1650 --- /dev/null +++ b/vlm/train/HyxzRsR9Y7/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3da3990755c5279f2900fcc3c41cc3b89117bd9df96dd0fb368cfe62d0b0f6c5 +size 483503 diff --git a/vlm/train/HyxzRsR9Y7/11.png b/vlm/train/HyxzRsR9Y7/11.png new file mode 100644 index 0000000000000000000000000000000000000000..caab674a41bf4807ef7de49ab33d0508a576a1da --- /dev/null +++ b/vlm/train/HyxzRsR9Y7/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:545f9e944087e19e338adc21b90ccd173145d9240395c5fb94cfaf83c90fa844 +size 205288 diff --git a/vlm/train/HyxzRsR9Y7/12.png b/vlm/train/HyxzRsR9Y7/12.png new file mode 100644 index 0000000000000000000000000000000000000000..77a01fda91fd7fc521d53de65b12a67013367baf --- /dev/null +++ b/vlm/train/HyxzRsR9Y7/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8c978a13613d8fd2e6341ccd6bd3e9a52a70577b3b0e584776a84c38406cb6db +size 178628 diff --git a/vlm/train/HyxzRsR9Y7/13.png b/vlm/train/HyxzRsR9Y7/13.png new file mode 100644 index 0000000000000000000000000000000000000000..083d6ffc258d9e9951565c451eb98b579cb44502 --- /dev/null +++ b/vlm/train/HyxzRsR9Y7/13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:de6c6f9de3f76e54add6685d43ced6aab1413afea381e0df6b1437d2880c5370 +size 262624 diff --git a/vlm/train/HyxzRsR9Y7/14.png b/vlm/train/HyxzRsR9Y7/14.png new file mode 100644 index 0000000000000000000000000000000000000000..c54f9d103afa38653d97ebaf1c008ae572c171b8 --- /dev/null +++ b/vlm/train/HyxzRsR9Y7/14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b77acefb3a9ff11bf1c181a7474593d0af22c852b4980b4759df4760ad220fa3 +size 391432 diff --git a/vlm/train/HyxzRsR9Y7/15.png b/vlm/train/HyxzRsR9Y7/15.png new file mode 100644 index 0000000000000000000000000000000000000000..de4ef5370461db3aa26443824bd585b6ab9c893d --- /dev/null +++ b/vlm/train/HyxzRsR9Y7/15.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:98efa53207f52052015a3ee359d09e94c9e7ee577d692295b027426c4f3d0132 +size 508862 diff --git a/vlm/train/HyxzRsR9Y7/16.png b/vlm/train/HyxzRsR9Y7/16.png new file mode 100644 index 0000000000000000000000000000000000000000..5c318ad83230c29914fdd484f875b164a1d56085 --- /dev/null +++ b/vlm/train/HyxzRsR9Y7/16.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7cfd071999ddd447548a8cc5d4716d5a41aa11079d04cbf5a457e3c80fa86e7c +size 521958 diff --git a/vlm/train/HyxzRsR9Y7/17.png b/vlm/train/HyxzRsR9Y7/17.png new file mode 100644 index 0000000000000000000000000000000000000000..f19c56aba46d65db86a9a32f053644542d136a98 --- /dev/null +++ b/vlm/train/HyxzRsR9Y7/17.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d119b3e8404e41e1e2cc22b8094cbd23f5799a9f4a68001eae2129ec5ab027df +size 467289 diff --git a/vlm/train/HyxzRsR9Y7/2.png b/vlm/train/HyxzRsR9Y7/2.png new file mode 100644 index 0000000000000000000000000000000000000000..317c80c51aa18c76e4927ec2441bd8aba7e65c5c --- /dev/null +++ b/vlm/train/HyxzRsR9Y7/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f812104bed585904853ef42202ac2b84fe11d59c952c87fcb187865be0b014e3 +size 596104 diff --git a/vlm/train/HyxzRsR9Y7/3.png b/vlm/train/HyxzRsR9Y7/3.png new file mode 100644 index 0000000000000000000000000000000000000000..33b53c377b19ff3ecda8f0341c8f9be056b74a85 --- /dev/null +++ b/vlm/train/HyxzRsR9Y7/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1b3450930db01cc8aab77555ae333cd6d28ebcc521b0ea111cfffccb11c6a016 +size 600827 diff --git a/vlm/train/HyxzRsR9Y7/4.png b/vlm/train/HyxzRsR9Y7/4.png new file mode 100644 index 0000000000000000000000000000000000000000..81d08eb645b831ce560a544a5c171c58e383deaa --- /dev/null +++ b/vlm/train/HyxzRsR9Y7/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:98b30f543091a1b11a6db40404d6f1c4320f61269f1688e4a8caff58fb766fae +size 590268 diff --git a/vlm/train/HyxzRsR9Y7/5.png b/vlm/train/HyxzRsR9Y7/5.png new file mode 100644 index 0000000000000000000000000000000000000000..c52fa64760bf2cffe7845fa46d014ca98aea33fd --- /dev/null +++ b/vlm/train/HyxzRsR9Y7/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bb6a759ce632a94954220d090ffa9019d3b040ca16f4ac1500153ac7cc28a2df +size 554883 diff --git a/vlm/train/HyxzRsR9Y7/6.png b/vlm/train/HyxzRsR9Y7/6.png new file mode 100644 index 0000000000000000000000000000000000000000..8852da125497cdd4fc66cde153fff22452e5f101 --- /dev/null +++ b/vlm/train/HyxzRsR9Y7/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e9e06c8c26fc371611b1d40db3bab95d950269570a86f3291dbcff4a60e3b72e +size 558953 diff --git a/vlm/train/HyxzRsR9Y7/7.png b/vlm/train/HyxzRsR9Y7/7.png new file mode 100644 index 0000000000000000000000000000000000000000..ece4e7af0275095b356c7f67eca9c3b8def680ad --- /dev/null +++ b/vlm/train/HyxzRsR9Y7/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9abee0d1cc9307675d9a165848a91462e4d2985aa71ebb53ac5e1eb569b74003 +size 622486 diff --git a/vlm/train/HyxzRsR9Y7/8.png b/vlm/train/HyxzRsR9Y7/8.png new file mode 100644 index 0000000000000000000000000000000000000000..711029ba771fc69474cbbaf99c6d3d47e88c1b7a --- /dev/null +++ b/vlm/train/HyxzRsR9Y7/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8286968ce0ea21020357cf7c1b6ee0acb34e5e491619a8db35f8a20e529d33f4 +size 563019 diff --git a/vlm/train/HyxzRsR9Y7/9.png b/vlm/train/HyxzRsR9Y7/9.png new file mode 100644 index 0000000000000000000000000000000000000000..a5cbd7b452dd6addbe076342414437459eaef0bb --- /dev/null +++ b/vlm/train/HyxzRsR9Y7/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b5f6b9222876a6ed000db9ae30906d08468402cdf4724ba37147cee2511175cb +size 528301 diff --git a/vlm/train/J28lNO4p3ki/0.png b/vlm/train/J28lNO4p3ki/0.png new file mode 100644 index 0000000000000000000000000000000000000000..31bd2575d3db920ea7979e65612675ddaea86997 --- /dev/null +++ b/vlm/train/J28lNO4p3ki/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b3a1217a1ad0d30efb85d521516240b5eef67b929dadb5d7aa45a27089f2f374 +size 399878 diff --git a/vlm/train/J28lNO4p3ki/1.png b/vlm/train/J28lNO4p3ki/1.png new file mode 100644 index 0000000000000000000000000000000000000000..3f447aa2f47a58bdc2a17ed9d1d75f907dc8e50a --- /dev/null +++ b/vlm/train/J28lNO4p3ki/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fc2bb7e2e5f98d1461d3d5766342393b00c2206699af333f9865981a45b8ee62 +size 592530 diff --git a/vlm/train/J28lNO4p3ki/10.png b/vlm/train/J28lNO4p3ki/10.png new file mode 100644 index 0000000000000000000000000000000000000000..2231f2c4112d1d1485bc25880a116d55dcf169d1 --- /dev/null +++ b/vlm/train/J28lNO4p3ki/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9da135c01d2502abbcf4e21d2f210e2b0b821a75d9b6c5eff945d6a219459e1b +size 554610 diff --git a/vlm/train/J28lNO4p3ki/11.png b/vlm/train/J28lNO4p3ki/11.png new file mode 100644 index 0000000000000000000000000000000000000000..3794218b73afda29fdc8201bd603eab45b7e3d02 --- /dev/null +++ b/vlm/train/J28lNO4p3ki/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8a182dafa09ee360a23c23d149124072c4db7e74880d970e1aed30defb21b1b6 +size 539662 diff --git a/vlm/train/J28lNO4p3ki/2.png b/vlm/train/J28lNO4p3ki/2.png new file mode 100644 index 0000000000000000000000000000000000000000..b0e5b82546d53e423eff9956e3a46cbcc422c346 --- /dev/null +++ b/vlm/train/J28lNO4p3ki/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0ca9e3387f4220607cb6b0822d4c4cafffb38c997bf26fd387607958874e60ca +size 587676 diff --git a/vlm/train/J28lNO4p3ki/3.png b/vlm/train/J28lNO4p3ki/3.png new file mode 100644 index 0000000000000000000000000000000000000000..ff92d955a3de2d27165120769916d5db54190638 --- /dev/null +++ b/vlm/train/J28lNO4p3ki/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f2c7f51d830052a76d868ff9d20ea873ad20fc74d438be5a95297e4217c6e844 +size 545002 diff --git a/vlm/train/J28lNO4p3ki/4.png b/vlm/train/J28lNO4p3ki/4.png new file mode 100644 index 0000000000000000000000000000000000000000..059c56490faecbf55e813615178e457c3d204c94 --- /dev/null +++ b/vlm/train/J28lNO4p3ki/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:67e6bfd41cbc0c09df892928d6f3893f61cb38a567c4bd6c6f716eab2829e83d +size 449735 diff --git a/vlm/train/J28lNO4p3ki/5.png b/vlm/train/J28lNO4p3ki/5.png new file mode 100644 index 0000000000000000000000000000000000000000..eb96fcb53d1ed2423c7e05863ac101ff2f52d5c8 --- /dev/null +++ b/vlm/train/J28lNO4p3ki/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5365547de6b0a79e5b710fbe808405696c2cda67761012524cdddd279613d434 +size 617276 diff --git a/vlm/train/J28lNO4p3ki/6.png b/vlm/train/J28lNO4p3ki/6.png new file mode 100644 index 0000000000000000000000000000000000000000..7cbe079c9ffe158ba51dfef60511ddaef0cf250e --- /dev/null +++ b/vlm/train/J28lNO4p3ki/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4e8f12e5c46ae607ae03056afda984aaabbb4fe511ffec49146f951ecbc9699d +size 467713 diff --git a/vlm/train/J28lNO4p3ki/7.png b/vlm/train/J28lNO4p3ki/7.png new file mode 100644 index 0000000000000000000000000000000000000000..c257956c66e3e529183c0595029e0857bed995ae --- /dev/null +++ b/vlm/train/J28lNO4p3ki/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e1fdd6725f3eb8ca2117b163d9baf1dfd0eb51af228df37e0862eeeb835d1539 +size 463605 diff --git a/vlm/train/J28lNO4p3ki/8.png b/vlm/train/J28lNO4p3ki/8.png new file mode 100644 index 0000000000000000000000000000000000000000..88b623a2e6ce02282630c3b901995acd045439cf --- /dev/null +++ b/vlm/train/J28lNO4p3ki/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7b7a48e00dd86e30d9fce4afd5260a326c6a71408a8dba9540aa0fb13d166330 +size 564585 diff --git a/vlm/train/J28lNO4p3ki/9.png b/vlm/train/J28lNO4p3ki/9.png new file mode 100644 index 0000000000000000000000000000000000000000..5dc770fb6bef1a0a7804cc6b8933e287dae6ade7 --- /dev/null +++ b/vlm/train/J28lNO4p3ki/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5e433a39e723eee31d590860d4378bd5a860275c0c3a481924b34472c91705e7 +size 550984 diff --git a/vlm/train/Oa9RlXNggGy/0.png b/vlm/train/Oa9RlXNggGy/0.png new file mode 100644 index 0000000000000000000000000000000000000000..a20cca49f812bfb2477e3f1b5944bdf7001dc2cc --- /dev/null +++ b/vlm/train/Oa9RlXNggGy/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a6b5dbd79ab48de0fd0e787a97ff37afaf533e7452fd165ca33a8f28aa36f098 +size 447735 diff --git a/vlm/train/Oa9RlXNggGy/1.png b/vlm/train/Oa9RlXNggGy/1.png new file mode 100644 index 0000000000000000000000000000000000000000..67ce4d0858555fb3890b5b252812987b7e6c21c4 --- /dev/null +++ b/vlm/train/Oa9RlXNggGy/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a152839be095058ceb4c2f1695d346ec04216ba11153bfd01e1bb3288be5b53b +size 527222 diff --git a/vlm/train/Oa9RlXNggGy/10.png b/vlm/train/Oa9RlXNggGy/10.png new file mode 100644 index 0000000000000000000000000000000000000000..10335f065cb8ac576db2dc8ef2065a4f680f3932 --- /dev/null +++ b/vlm/train/Oa9RlXNggGy/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ea6e59a5590019fa4217e9b7c579ecdda636eb40e04e9ce7c7a0ad275da52135 +size 521996 diff --git a/vlm/train/Oa9RlXNggGy/11.png b/vlm/train/Oa9RlXNggGy/11.png new file mode 100644 index 0000000000000000000000000000000000000000..6a8d034c6ea2882eaa0f20ed1013b903c13bdb5f --- /dev/null +++ b/vlm/train/Oa9RlXNggGy/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:905b399c3c37de0ef0fab2ad5933a3233e23486129bd8b4d92ba4306de88d101 +size 582237 diff --git a/vlm/train/Oa9RlXNggGy/12.png b/vlm/train/Oa9RlXNggGy/12.png new file mode 100644 index 0000000000000000000000000000000000000000..1a3f7f25dfda7fe76d1c121c11a5b653eab477ed --- /dev/null +++ b/vlm/train/Oa9RlXNggGy/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:da2d5b92e8bf6e5b15056c7c85e93c7b72eaa2b04d57dada9db5dd6d0303d8d5 +size 603944 diff --git a/vlm/train/Oa9RlXNggGy/13.png b/vlm/train/Oa9RlXNggGy/13.png new file mode 100644 index 0000000000000000000000000000000000000000..3d5e07a1aac7bd027911cf7d40e257942944d2e9 --- /dev/null +++ b/vlm/train/Oa9RlXNggGy/13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:209eb8973d5bede18a21564d27b8b10f074440906810f8dce456f7d3cb52cbe2 +size 172385 diff --git a/vlm/train/Oa9RlXNggGy/2.png b/vlm/train/Oa9RlXNggGy/2.png new file mode 100644 index 0000000000000000000000000000000000000000..f59ce3899d162aa1c19c5eccedbee652ed32fa5b --- /dev/null +++ b/vlm/train/Oa9RlXNggGy/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:da86b1c126043d1599febf4f7398b9cffaed288f2b58a23bc4d7d1bc0a871d7c +size 530803 diff --git a/vlm/train/Oa9RlXNggGy/3.png b/vlm/train/Oa9RlXNggGy/3.png new file mode 100644 index 0000000000000000000000000000000000000000..2831bff9a030635e7020ddcc13f9a9238175b1cc --- /dev/null +++ b/vlm/train/Oa9RlXNggGy/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f260e138e0b268cd0e1532b78806af4abcfc02253325bf464798f3eda0105046 +size 559496 diff --git a/vlm/train/Oa9RlXNggGy/4.png b/vlm/train/Oa9RlXNggGy/4.png new file mode 100644 index 0000000000000000000000000000000000000000..50c37820457fa8fd673939de07dff669a9e9c113 --- /dev/null +++ b/vlm/train/Oa9RlXNggGy/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f3e78cae9931d54040041702fb2367ab4a9089e5c7e39bb4d466a0e0d8fb785e +size 493046 diff --git a/vlm/train/Oa9RlXNggGy/5.png b/vlm/train/Oa9RlXNggGy/5.png new file mode 100644 index 0000000000000000000000000000000000000000..162e812db2bd7b14177418729a741bfa735b6afd --- /dev/null +++ b/vlm/train/Oa9RlXNggGy/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d448e19e01b12f1b91f63ba23616985bc0c3cce93089e095fce412aba3a5e5f0 +size 509678 diff --git a/vlm/train/Oa9RlXNggGy/6.png b/vlm/train/Oa9RlXNggGy/6.png new file mode 100644 index 0000000000000000000000000000000000000000..c58ce1e3c499a9e9aa38b11bec02a124ca42d5f1 --- /dev/null +++ b/vlm/train/Oa9RlXNggGy/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c5df5616d79b4ba725e1e7f5b522dd28f38c396af8c102c75576ea640a4e2a2e +size 574880 diff --git a/vlm/train/Oa9RlXNggGy/7.png b/vlm/train/Oa9RlXNggGy/7.png new file mode 100644 index 0000000000000000000000000000000000000000..edb39de515ed3a578a7cb7393e9df4594bcfaeef --- /dev/null +++ b/vlm/train/Oa9RlXNggGy/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f3fee4515ea513d312d5056b9ee19bd36c41ed4ed399487e3ea0bb8d5e49ba72 +size 525879 diff --git a/vlm/train/Oa9RlXNggGy/8.png b/vlm/train/Oa9RlXNggGy/8.png new file mode 100644 index 0000000000000000000000000000000000000000..e96afb0f6ea940a084d58e8b9278c42bb7d79896 --- /dev/null +++ b/vlm/train/Oa9RlXNggGy/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a8cda3ab9fb9a40579f339b07bc0d36e803dd602708501ad932119648db0a70b +size 619169 diff --git a/vlm/train/Oa9RlXNggGy/9.png b/vlm/train/Oa9RlXNggGy/9.png new file mode 100644 index 0000000000000000000000000000000000000000..9991bed6908c359fb2de57e843e917e5b0fb2fcb --- /dev/null +++ b/vlm/train/Oa9RlXNggGy/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b6ae1ef2cdb26c698565d965869d3f1d297d2a29234b563253b8eba86c7016a9 +size 470166 diff --git a/vlm/train/Rt5mjXAqHrY/0.png b/vlm/train/Rt5mjXAqHrY/0.png new file mode 100644 index 0000000000000000000000000000000000000000..96d7bdb20bc1739c5ef167a7544da6a314c83925 --- /dev/null +++ b/vlm/train/Rt5mjXAqHrY/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:37a4e123dbdb8cd9dce168790bc57ba3d044cb56801f94df1f7bd67d66b4bb10 +size 429027 diff --git a/vlm/train/Rt5mjXAqHrY/1.png b/vlm/train/Rt5mjXAqHrY/1.png new file mode 100644 index 0000000000000000000000000000000000000000..86a1c7799ea477f9507463fa47a064610c71e26a --- /dev/null +++ b/vlm/train/Rt5mjXAqHrY/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2cb092fed9b693248d83e8215cd41f3edcf8f3158aa3fd61fa186ff86a7f06b8 +size 576665 diff --git a/vlm/train/Rt5mjXAqHrY/10.png b/vlm/train/Rt5mjXAqHrY/10.png new file mode 100644 index 0000000000000000000000000000000000000000..cd8184d07c67728605fa95b9c988b49a82e6e0bb --- /dev/null +++ b/vlm/train/Rt5mjXAqHrY/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:64185ebfeebf2711469d96e16e8515be2eade2075b119212f5522ec3dcf59d91 +size 589524 diff --git a/vlm/train/Rt5mjXAqHrY/11.png b/vlm/train/Rt5mjXAqHrY/11.png new file mode 100644 index 0000000000000000000000000000000000000000..7e3a780c7de55dc18316a397d95d4f0b7b8db4c8 --- /dev/null +++ b/vlm/train/Rt5mjXAqHrY/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a978d7f0cb6fbf16cda2e9216e4f6586bf8a064e15d513ad5bdbaeeba07c8852 +size 247545 diff --git a/vlm/train/Rt5mjXAqHrY/2.png b/vlm/train/Rt5mjXAqHrY/2.png new file mode 100644 index 0000000000000000000000000000000000000000..b2348816308d37d9b85a688b278069c10605ff28 --- /dev/null +++ b/vlm/train/Rt5mjXAqHrY/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e36952f145394288af9d277b5abebee0f9c55ec5cdc987ac715886b9ff45b699 +size 540916 diff --git a/vlm/train/Rt5mjXAqHrY/3.png b/vlm/train/Rt5mjXAqHrY/3.png new file mode 100644 index 0000000000000000000000000000000000000000..87dcb6e3ec266af7f6a679ccb0b3dcecc76e31cf --- /dev/null +++ b/vlm/train/Rt5mjXAqHrY/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9019ea8eebca3c1ade4d8efca572ce5b657e40e426c7613a835bd3c2f4c860d8 +size 548566 diff --git a/vlm/train/Rt5mjXAqHrY/4.png b/vlm/train/Rt5mjXAqHrY/4.png new file mode 100644 index 0000000000000000000000000000000000000000..cdf6abec27960e628af679b0a452af3a07c3931e --- /dev/null +++ b/vlm/train/Rt5mjXAqHrY/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7cdc21396a9f462c82558a0b1ed83b520c4879a268048e15377b03c1cc680892 +size 469324 diff --git a/vlm/train/Rt5mjXAqHrY/5.png b/vlm/train/Rt5mjXAqHrY/5.png new file mode 100644 index 0000000000000000000000000000000000000000..fea8a00c5a484d927b9bccf16c38287e2828d8f3 --- /dev/null +++ b/vlm/train/Rt5mjXAqHrY/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:084957b590d23a2b7f2f39e446a13f18200ee157571a8bfba75b821b66babd03 +size 508247 diff --git a/vlm/train/Rt5mjXAqHrY/6.png b/vlm/train/Rt5mjXAqHrY/6.png new file mode 100644 index 0000000000000000000000000000000000000000..6d094cd969eb38cbae03951541264179cfb17d66 --- /dev/null +++ b/vlm/train/Rt5mjXAqHrY/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1a52c9e3daa46b2fe2c43a5bbcea4eafd1989db1f4fc94ba3c68af95f25b7f68 +size 556372 diff --git a/vlm/train/Rt5mjXAqHrY/7.png b/vlm/train/Rt5mjXAqHrY/7.png new file mode 100644 index 0000000000000000000000000000000000000000..78123ff1e6842823f12d51dcb38261ce24f2af90 --- /dev/null +++ b/vlm/train/Rt5mjXAqHrY/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fc9416e32244d0bac3b23f7ea1ea55a30f33f651b808cae4a285f8a364715096 +size 557081 diff --git a/vlm/train/Rt5mjXAqHrY/8.png b/vlm/train/Rt5mjXAqHrY/8.png new file mode 100644 index 0000000000000000000000000000000000000000..9266b0a26b8121960c65882e5bdbec551f2b0c47 --- /dev/null +++ b/vlm/train/Rt5mjXAqHrY/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0d30dbb5bd84cbe03a04d313fefd1351fb08ed4f4d5590b5555fb8f734c6f275 +size 612199 diff --git a/vlm/train/Rt5mjXAqHrY/9.png b/vlm/train/Rt5mjXAqHrY/9.png new file mode 100644 index 0000000000000000000000000000000000000000..08f81c557e9723afa2e94d3df4cd4b9e53de9f34 --- /dev/null +++ b/vlm/train/Rt5mjXAqHrY/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:af5ba461dc74499c0114141cde13e9826c18095b01dcc4c583777938356c8856 +size 515158 diff --git a/vlm/train/S1g2V3Cct7/0.png b/vlm/train/S1g2V3Cct7/0.png new file mode 100644 index 0000000000000000000000000000000000000000..348e789c3120c1e781092ff12a23e4377d8c3ce8 --- /dev/null +++ b/vlm/train/S1g2V3Cct7/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:76532e16afec5451c8da5eb6cc90bbfc82415a5f6d95fc450a45fd9bc5ba9163 +size 493350 diff --git a/vlm/train/S1g2V3Cct7/1.png b/vlm/train/S1g2V3Cct7/1.png new file mode 100644 index 0000000000000000000000000000000000000000..fac92535b1e4b9b32c1095185b9daa8c70307bfb --- /dev/null +++ b/vlm/train/S1g2V3Cct7/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cd4fe7ba8ab098ad146771f577c8a7a65d565aecaeb1c0ddd80027e667ce4374 +size 583569 diff --git a/vlm/train/S1g2V3Cct7/10.png b/vlm/train/S1g2V3Cct7/10.png new file mode 100644 index 0000000000000000000000000000000000000000..c81c21563bdd5e00231b52be9a5f396d0f8774a8 --- /dev/null +++ b/vlm/train/S1g2V3Cct7/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:df88088b374fdaeb5ac493469241cce25e5a59ffe22ca21239e06906c6c7a8d7 +size 336251 diff --git a/vlm/train/S1g2V3Cct7/11.png b/vlm/train/S1g2V3Cct7/11.png new file mode 100644 index 0000000000000000000000000000000000000000..58e1d2be61d8a09f37e4e15d5381d09136397b50 --- /dev/null +++ b/vlm/train/S1g2V3Cct7/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dac145dce064569574bfec7b29d646129a928878f1deb51a0f96344baf201d12 +size 512187 diff --git a/vlm/train/S1g2V3Cct7/12.png b/vlm/train/S1g2V3Cct7/12.png new file mode 100644 index 0000000000000000000000000000000000000000..cf88010d0e8eda57387777757960b8fb7df5bb5d --- /dev/null +++ b/vlm/train/S1g2V3Cct7/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b5ce1b3676ad88d921aa22110ba22c58af4b861f901138fa4de7296a714c4d93 +size 390567 diff --git a/vlm/train/S1g2V3Cct7/13.png b/vlm/train/S1g2V3Cct7/13.png new file mode 100644 index 0000000000000000000000000000000000000000..4666e7c0e785d4d66d446c48d3037178b665f1e7 --- /dev/null +++ b/vlm/train/S1g2V3Cct7/13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:80b5d295dd9992b67ce03b0e357380537ffc189bde4a2572b4220d9ad44a03ba +size 367176 diff --git a/vlm/train/S1g2V3Cct7/14.png b/vlm/train/S1g2V3Cct7/14.png new file mode 100644 index 0000000000000000000000000000000000000000..2d513cbb8df573b683317ac97ee24cd93e8013d9 --- /dev/null +++ b/vlm/train/S1g2V3Cct7/14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:59ce2c4843f3bcec1999233b44533446a6cd7c8a3de7f5ee3b6ba375875b3aaf +size 344030 diff --git a/vlm/train/S1g2V3Cct7/2.png b/vlm/train/S1g2V3Cct7/2.png new file mode 100644 index 0000000000000000000000000000000000000000..47f8c5c45dc80db02592bd2d9af2d73346cb59df --- /dev/null +++ b/vlm/train/S1g2V3Cct7/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fdfb038e0f9a16fe7d5d8d5b24d4a8e1389978e2e9d3163d52941a3a80619b89 +size 541882 diff --git a/vlm/train/S1g2V3Cct7/3.png b/vlm/train/S1g2V3Cct7/3.png new file mode 100644 index 0000000000000000000000000000000000000000..63bacd14c553046ce3c37a6dc1e1e737801266bb --- /dev/null +++ b/vlm/train/S1g2V3Cct7/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4a32c460d9c2a09917daf7e2c2f9fc290209328f93970d827969d4c36674255c +size 444851 diff --git a/vlm/train/S1g2V3Cct7/4.png b/vlm/train/S1g2V3Cct7/4.png new file mode 100644 index 0000000000000000000000000000000000000000..d6a505ab56c09af307b0885b4581758addb12f0e --- /dev/null +++ b/vlm/train/S1g2V3Cct7/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:565bf54ed4c0b57cb30b883db765f9de1cf3ea65a6ea77aa27fe1be7e491dff5 +size 542037 diff --git a/vlm/train/S1g2V3Cct7/5.png b/vlm/train/S1g2V3Cct7/5.png new file mode 100644 index 0000000000000000000000000000000000000000..01215f266e3aefa41155d59011558c1050175422 --- /dev/null +++ b/vlm/train/S1g2V3Cct7/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:59a3ee94e8e3618c7d2c02d45f62e0cd640c020f6edb77493a8f98b64afa2454 +size 495466 diff --git a/vlm/train/S1g2V3Cct7/6.png b/vlm/train/S1g2V3Cct7/6.png new file mode 100644 index 0000000000000000000000000000000000000000..4651222ef3a2763c1352158686469035272bf44e --- /dev/null +++ b/vlm/train/S1g2V3Cct7/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:90235438095813558f14ba6692c76b9ed4791cbeaeda01a6104089fa1a42dec2 +size 582904 diff --git a/vlm/train/S1g2V3Cct7/7.png b/vlm/train/S1g2V3Cct7/7.png new file mode 100644 index 0000000000000000000000000000000000000000..087dca0794d225d3ef1737e94273ddf5c5cc2efc --- /dev/null +++ b/vlm/train/S1g2V3Cct7/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7846ccf63ad0a0b9100a5b10b9f3dca0af434c1356a5d13a3945d793e2d71802 +size 700838 diff --git a/vlm/train/S1g2V3Cct7/8.png b/vlm/train/S1g2V3Cct7/8.png new file mode 100644 index 0000000000000000000000000000000000000000..d90ae7a29c98e004d8f4f85c5b8ca1b17857433d --- /dev/null +++ b/vlm/train/S1g2V3Cct7/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c8bb1c2212285205f0eb3599dd4a2765fb72c957669845294a320f13b4a4a184 +size 517211 diff --git a/vlm/train/S1g2V3Cct7/9.png b/vlm/train/S1g2V3Cct7/9.png new file mode 100644 index 0000000000000000000000000000000000000000..907fb30912d29b7de1891affe9e9454b953ac800 --- /dev/null +++ b/vlm/train/S1g2V3Cct7/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1fef9aca346ac38116a3c7ff532891f665a01d0bac0badb828d78f04f22487e7 +size 462087 diff --git a/vlm/train/S1gBz2C9tX/0.png b/vlm/train/S1gBz2C9tX/0.png new file mode 100644 index 0000000000000000000000000000000000000000..41398a469e192d44431e06ce5727edbabc359c26 --- /dev/null +++ b/vlm/train/S1gBz2C9tX/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4dfa429d0691a568e5e8aee89fe263398c182403a1b7c73038afd9df595a6e9f +size 493965 diff --git a/vlm/train/S1gBz2C9tX/1.png b/vlm/train/S1gBz2C9tX/1.png new file mode 100644 index 0000000000000000000000000000000000000000..f179b992efd82009a1593919e77b5cc91cffc2c4 --- /dev/null +++ b/vlm/train/S1gBz2C9tX/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f8b397c57473f21ad6274ed9e8c0b7e7bb779b06dfa726773aa7f12849085c69 +size 607874 diff --git a/vlm/train/S1gBz2C9tX/10.png b/vlm/train/S1gBz2C9tX/10.png new file mode 100644 index 0000000000000000000000000000000000000000..27245b5b8cfafd79ca432e3d1e445f1d9724a7db --- /dev/null +++ b/vlm/train/S1gBz2C9tX/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:933ceb32bd19e23aec375c637f3aadbd17b9e5e9ecbbe259aacc0a3d70b97ff1 +size 345667 diff --git a/vlm/train/S1gBz2C9tX/11.png b/vlm/train/S1gBz2C9tX/11.png new file mode 100644 index 0000000000000000000000000000000000000000..aea624288145266a17059745ab7e75e8da4efa91 --- /dev/null +++ b/vlm/train/S1gBz2C9tX/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3c5be5bdb61822b8947954fa43d660b3afd81209f39b2ebda4be8048e46556a9 +size 335524 diff --git a/vlm/train/S1gBz2C9tX/12.png b/vlm/train/S1gBz2C9tX/12.png new file mode 100644 index 0000000000000000000000000000000000000000..13a6e933959f506f8c37ebf4d93b4c0242dccc78 --- /dev/null +++ b/vlm/train/S1gBz2C9tX/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d3a55de87ef7e8edaa3deeb129a0edcb894e31d868ba11990f72468813d5ef1e +size 333068 diff --git a/vlm/train/S1gBz2C9tX/13.png b/vlm/train/S1gBz2C9tX/13.png new file mode 100644 index 0000000000000000000000000000000000000000..5c6dd4183e0e4c4fa056afd3250d35455c7332bd --- /dev/null +++ b/vlm/train/S1gBz2C9tX/13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2f8de5ffed9968d08cc48601d63515486cca39941e9a07b46f8c3a905beab28d +size 313102 diff --git a/vlm/train/S1gBz2C9tX/14.png b/vlm/train/S1gBz2C9tX/14.png new file mode 100644 index 0000000000000000000000000000000000000000..adb8e3657caa15fbaefac8656c6e5319b8a6980b --- /dev/null +++ b/vlm/train/S1gBz2C9tX/14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:baac75baa2fcd3b4327f9a02033807f386d996ba3216a719dd328bff64bc58ee +size 271076 diff --git a/vlm/train/S1gBz2C9tX/2.png b/vlm/train/S1gBz2C9tX/2.png new file mode 100644 index 0000000000000000000000000000000000000000..57ce58d8706821e7527ad9ba50174361cd986271 --- /dev/null +++ b/vlm/train/S1gBz2C9tX/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d8a81a143651d154514fe0b243efa0029f5b0441dc3e9f5788d13d80416494e4 +size 558109 diff --git a/vlm/train/S1gBz2C9tX/3.png b/vlm/train/S1gBz2C9tX/3.png new file mode 100644 index 0000000000000000000000000000000000000000..9b6879a60302b5caf1f444781b5f499ddd590cd8 --- /dev/null +++ b/vlm/train/S1gBz2C9tX/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:519d08556c28c3bb136ddc000ad198cdc3b336fdd7097ef57ac917498aa88744 +size 516230 diff --git a/vlm/train/S1gBz2C9tX/4.png b/vlm/train/S1gBz2C9tX/4.png new file mode 100644 index 0000000000000000000000000000000000000000..0d666cd1e94d72eb27a3b2a7f7eb846a37b439c8 --- /dev/null +++ b/vlm/train/S1gBz2C9tX/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:070707db03e0f118326aa09ca755c3be13c5f9886994529b113e93d12c9cbec9 +size 501808 diff --git a/vlm/train/S1gBz2C9tX/5.png b/vlm/train/S1gBz2C9tX/5.png new file mode 100644 index 0000000000000000000000000000000000000000..7c33b56ca5dc31195cab89dfa9bb69acfd4e8b5b --- /dev/null +++ b/vlm/train/S1gBz2C9tX/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c23995172970a2c9737608d1dc72c679266611bafcbab469ffd7724c31089294 +size 494791 diff --git a/vlm/train/S1gBz2C9tX/6.png b/vlm/train/S1gBz2C9tX/6.png new file mode 100644 index 0000000000000000000000000000000000000000..41b1f6c189c37d9d3f1e44280becee926d23c1b8 --- /dev/null +++ b/vlm/train/S1gBz2C9tX/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0fdef0b55002fc4d74225f1a113950b64fc4dce0bc9f151350bad570e1233b9e +size 500260 diff --git a/vlm/train/S1gBz2C9tX/7.png b/vlm/train/S1gBz2C9tX/7.png new file mode 100644 index 0000000000000000000000000000000000000000..c968513115d9def0b803d0a6a830e6b0bbcbb925 --- /dev/null +++ b/vlm/train/S1gBz2C9tX/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a58297cf448a2ed6b562dcb2e77089fbd77a6ae4706d7768cd1f26e88cfc9b2c +size 592417 diff --git a/vlm/train/S1gBz2C9tX/8.png b/vlm/train/S1gBz2C9tX/8.png new file mode 100644 index 0000000000000000000000000000000000000000..2a9ce55d578c65f58ee2f4c81c2c9f77d09e0f46 --- /dev/null +++ b/vlm/train/S1gBz2C9tX/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4e5f63e5923e90256a68230187934b16a8048e38c64819dd7e61412f0f1f44e6 +size 543945 diff --git a/vlm/train/S1gBz2C9tX/9.png b/vlm/train/S1gBz2C9tX/9.png new file mode 100644 index 0000000000000000000000000000000000000000..1c9dfa720e5405ba73ef7bbbb474426e1fbf1160 --- /dev/null +++ b/vlm/train/S1gBz2C9tX/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6c5d1453b95cf4ff3ab30143c9ff32ee5854be1e0c605b478beed70aac296d91 +size 497193 diff --git a/vlm/train/SJk01vogl/0.png b/vlm/train/SJk01vogl/0.png new file mode 100644 index 0000000000000000000000000000000000000000..e49574117622066dfbba575afe74b33425599f46 --- /dev/null +++ b/vlm/train/SJk01vogl/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1bca3fa9bf0b8e1d2f66996839c86239134ccb4d20b2ff2ec8d3eba6e2050e9d +size 500002 diff --git a/vlm/train/SJk01vogl/1.png b/vlm/train/SJk01vogl/1.png new file mode 100644 index 0000000000000000000000000000000000000000..866a83b47b27dea99eec4ae054fed6b1dcf2b5d4 --- /dev/null +++ b/vlm/train/SJk01vogl/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:edc46e8da3dded93ea3648a83f1d23daf509b10859c32b5bcc2b063d93d96d2f +size 571980 diff --git a/vlm/train/SJk01vogl/11.png b/vlm/train/SJk01vogl/11.png new file mode 100644 index 0000000000000000000000000000000000000000..539843cc4edf863d558a10c0bbc4354cd715ea2f --- /dev/null +++ b/vlm/train/SJk01vogl/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:69662ca29b086fa68399d856243a223ae114daf853c6638a5ac9125438ae07bd +size 484084 diff --git a/vlm/train/SJk01vogl/12.png b/vlm/train/SJk01vogl/12.png new file mode 100644 index 0000000000000000000000000000000000000000..97e8c79473e73b73ad66ff6a31f77e5a22c64ea1 --- /dev/null +++ b/vlm/train/SJk01vogl/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:beecebb55f6632fb0e527904ec717b74a8c1f4461c9243a0c04603969cf2b3ab +size 501993 diff --git a/vlm/train/SJk01vogl/13.png b/vlm/train/SJk01vogl/13.png new file mode 100644 index 0000000000000000000000000000000000000000..c361fb7ebaeabaf202255f188bd49b40c3853149 --- /dev/null +++ b/vlm/train/SJk01vogl/13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9199bce103df1baeb4ee72e7fc9f5d150ca088b3d153a13606147366978e2cc2 +size 633695 diff --git a/vlm/train/SJk01vogl/14.png b/vlm/train/SJk01vogl/14.png new file mode 100644 index 0000000000000000000000000000000000000000..9f4a00802985382c97a5b5f593fbc13d2d1718f8 --- /dev/null +++ b/vlm/train/SJk01vogl/14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3b20787dd8d06f5be8bcd20431f47bd20d9c3a318c6dbc344008210ec24cda78 +size 502392 diff --git a/vlm/train/SJk01vogl/15.png b/vlm/train/SJk01vogl/15.png new file mode 100644 index 0000000000000000000000000000000000000000..977c59d5d85bab4b186f9df15fbe9178bb48f2c7 --- /dev/null +++ b/vlm/train/SJk01vogl/15.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6f333c382d8d24289e4f02aeb706a4cedde40f04d44f76e175dc23e810397df8 +size 370570 diff --git a/vlm/train/SJk01vogl/16.png b/vlm/train/SJk01vogl/16.png new file mode 100644 index 0000000000000000000000000000000000000000..4cf373f1d1c2d7bcc53211fda66ae779e9ccb842 --- /dev/null +++ b/vlm/train/SJk01vogl/16.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d5754d75d0f92021665412b15966ed7480da1c641aabb45c63805dbe1f2fdad6 +size 906473 diff --git a/vlm/train/SJk01vogl/18.png b/vlm/train/SJk01vogl/18.png new file mode 100644 index 0000000000000000000000000000000000000000..5975783a4c0543ff0bb510c943bff60426758576 --- /dev/null +++ b/vlm/train/SJk01vogl/18.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dcfcf1937a7c09045d9d522f568bfbc80d9f3369cf62de5f25082b5ecdada435 +size 437786 diff --git a/vlm/train/SJk01vogl/19.png b/vlm/train/SJk01vogl/19.png new file mode 100644 index 0000000000000000000000000000000000000000..bec0b77edcb9c0ff2ff20a19761077a81bae2388 --- /dev/null +++ b/vlm/train/SJk01vogl/19.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:68d1f6c4c525a171f6825a2790aa5d4232afeb87701503d0687f42d75c58f180 +size 889184 diff --git a/vlm/train/SJk01vogl/20.png b/vlm/train/SJk01vogl/20.png new file mode 100644 index 0000000000000000000000000000000000000000..943102eeeb877e8a446bb04bc9031614d4ee2bde --- /dev/null +++ b/vlm/train/SJk01vogl/20.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:845e948738574f1fddaeee5e31aab55968e5ba3b194159a10bd00eaf4ef2b208 +size 838630 diff --git a/vlm/train/SJk01vogl/22.png b/vlm/train/SJk01vogl/22.png new file mode 100644 index 0000000000000000000000000000000000000000..2016456a658a7f19223a4bbb7c75a8f94e293456 --- /dev/null +++ b/vlm/train/SJk01vogl/22.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4f17a173fc8f2d692e0221ec8e599c81c38e3aa94dfc467a59443771eca36b5d +size 1399629 diff --git a/vlm/train/SJk01vogl/4.png b/vlm/train/SJk01vogl/4.png new file mode 100644 index 0000000000000000000000000000000000000000..b609c3626f0864971e8375659e314934ecca0b98 --- /dev/null +++ b/vlm/train/SJk01vogl/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c3f974c3ba844b60731d11753ec4d36e1dc932868326278e63659f764e9e3e15 +size 449732 diff --git a/vlm/train/SJk01vogl/5.png b/vlm/train/SJk01vogl/5.png new file mode 100644 index 0000000000000000000000000000000000000000..26f544dfe8a207da6040e187ce286bed639bfba3 --- /dev/null +++ b/vlm/train/SJk01vogl/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2521395c8432b3be6539f85760189af2da1abf8bc75726385cb6dfdd1c3b18b8 +size 483371 diff --git a/vlm/train/SJk01vogl/7.png b/vlm/train/SJk01vogl/7.png new file mode 100644 index 0000000000000000000000000000000000000000..9370c05ba9627eaa2021250d7922d90b7d6c211f --- /dev/null +++ b/vlm/train/SJk01vogl/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:936b21b21d8c8f4bdb474276701f2cc7b33f2efd6f27cacff96c69391c1aee71 +size 515634 diff --git a/vlm/train/SJk01vogl/8.png b/vlm/train/SJk01vogl/8.png new file mode 100644 index 0000000000000000000000000000000000000000..72ac87c704c96d6698455e5c5252b8ce2393ecd9 --- /dev/null +++ b/vlm/train/SJk01vogl/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f28d93305d60dbafbada1c2c2f8a89e7106bf76f866e843240ad12a9ff864962 +size 736765 diff --git a/vlm/train/SkfhIo0qtQ/13.png b/vlm/train/SkfhIo0qtQ/13.png new file mode 100644 index 0000000000000000000000000000000000000000..0da05aad6923fdac370dc8d603815bb5ea9d254c --- /dev/null +++ b/vlm/train/SkfhIo0qtQ/13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:419e0d8076d81d00bf720248d4d8ea04541d8e60ea79ffd0bd20ee1def2abaf3 +size 311144 diff --git a/vlm/train/SkfhIo0qtQ/16.png b/vlm/train/SkfhIo0qtQ/16.png new file mode 100644 index 0000000000000000000000000000000000000000..1885ad0dc28c4a2ea550f76635fa87c680159dc8 --- /dev/null +++ b/vlm/train/SkfhIo0qtQ/16.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4b2b952a62d03f1b1a7d7ff53dd5537e51a88288ef00a7b2454c970787df410c +size 228220 diff --git a/vlm/train/Skgvy64tvr/0.png b/vlm/train/Skgvy64tvr/0.png new file mode 100644 index 0000000000000000000000000000000000000000..8b7f21ef7c7336927a90e649fa344b8192485b7f --- /dev/null +++ b/vlm/train/Skgvy64tvr/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:996f2673a0ac210d7482a53f7b278e458a9b69c2ee61d4d7d03118a74b73c70a +size 537753 diff --git a/vlm/train/Skgvy64tvr/1.png b/vlm/train/Skgvy64tvr/1.png new file mode 100644 index 0000000000000000000000000000000000000000..eed50adf929666ec38c91c58e0a254d7d60f186d --- /dev/null +++ b/vlm/train/Skgvy64tvr/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9d89d5e2344277740240778f0af5e4ba8b18c32ce1c81a3582358cbcc9b4cb79 +size 658075 diff --git a/vlm/train/Skgvy64tvr/10.png b/vlm/train/Skgvy64tvr/10.png new file mode 100644 index 0000000000000000000000000000000000000000..051be90e752fab359f159fd235af415970eff598 --- /dev/null +++ b/vlm/train/Skgvy64tvr/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:037e757d6b25ce5401a0ccef39c72cc561b76a5736ad628ffeda33ad5724bac8 +size 578928 diff --git a/vlm/train/Skgvy64tvr/11.png b/vlm/train/Skgvy64tvr/11.png new file mode 100644 index 0000000000000000000000000000000000000000..ddd9ac84131eeafeb84b74717253121f7e74e3e0 --- /dev/null +++ b/vlm/train/Skgvy64tvr/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6c922cdecb0d7d7b97442f35fc7e122615661a0c0b7c82624dd0ffc7a26add7e +size 530855 diff --git a/vlm/train/Skgvy64tvr/12.png b/vlm/train/Skgvy64tvr/12.png new file mode 100644 index 0000000000000000000000000000000000000000..6e12c201eee08c5a4d1d887e54b3fb63bddad787 --- /dev/null +++ b/vlm/train/Skgvy64tvr/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6430849f693a9ead4d5ee3b92617b857044128944340e12dbeef11c0576df0ce +size 541736 diff --git a/vlm/train/Skgvy64tvr/13.png b/vlm/train/Skgvy64tvr/13.png new file mode 100644 index 0000000000000000000000000000000000000000..8c8283c86aa12ea7f448433ed29f024f08223df3 --- /dev/null +++ b/vlm/train/Skgvy64tvr/13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1626021887a847da08b184cef52f4820bd8413f30c63c6204847e76964e91d5b +size 538049 diff --git a/vlm/train/Skgvy64tvr/14.png b/vlm/train/Skgvy64tvr/14.png new file mode 100644 index 0000000000000000000000000000000000000000..55358c1ea1eae0bb7003b14ee1595c040913e984 --- /dev/null +++ b/vlm/train/Skgvy64tvr/14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d9fa750d8fe07611d5ffac47ec2dd53f106fb6cd53fb9aef82122d1d5e58a051 +size 565545 diff --git a/vlm/train/Skgvy64tvr/15.png b/vlm/train/Skgvy64tvr/15.png new file mode 100644 index 0000000000000000000000000000000000000000..1e03d0a4ef8298bfcbe498e5935d83e7ad6f7d31 --- /dev/null +++ b/vlm/train/Skgvy64tvr/15.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b388c80e0cfb19bb54f963464ac2cc0ee1893d6c6b0dfc862ee2b85f4df72ee9 +size 336173 diff --git a/vlm/train/Skgvy64tvr/16.png b/vlm/train/Skgvy64tvr/16.png new file mode 100644 index 0000000000000000000000000000000000000000..7e3d740837bd7f3a700a8d27aacfd96887133cfa --- /dev/null +++ b/vlm/train/Skgvy64tvr/16.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2b3368a34ccded8cac76ea1e869988bc68caab15367be427ebb6c489551c4b95 +size 300866 diff --git a/vlm/train/Skgvy64tvr/17.png b/vlm/train/Skgvy64tvr/17.png new file mode 100644 index 0000000000000000000000000000000000000000..cfac2798a89da97111ffd52665ca3fd09161867f --- /dev/null +++ b/vlm/train/Skgvy64tvr/17.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f92187d9b154993b4c017695d1292f855e0bbd6024b7ea0af2e79a2258066cb0 +size 293683 diff --git a/vlm/train/Skgvy64tvr/18.png b/vlm/train/Skgvy64tvr/18.png new file mode 100644 index 0000000000000000000000000000000000000000..fc7766da10a32b2c28d2cd75a3031f4db1b4ad30 --- /dev/null +++ b/vlm/train/Skgvy64tvr/18.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:707e82f4fc364d616d1f982652aa0e15d5b720ba6a8e81ede0e60e2c5063f105 +size 412051 diff --git a/vlm/train/Skgvy64tvr/19.png b/vlm/train/Skgvy64tvr/19.png new file mode 100644 index 0000000000000000000000000000000000000000..28337e260fac7680ee5af199ddbc9edeb7c83081 --- /dev/null +++ b/vlm/train/Skgvy64tvr/19.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5e9d01d017487471b3860d57c3b0ad338ec883f3921b127a14bc6ca0da48cde7 +size 344153 diff --git a/vlm/train/Skgvy64tvr/2.png b/vlm/train/Skgvy64tvr/2.png new file mode 100644 index 0000000000000000000000000000000000000000..545cfba2b206b781f7e49755cb8286bb1c179bad --- /dev/null +++ b/vlm/train/Skgvy64tvr/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2cbca4e9b3889b44fa4c72bd28564c718369c87e6ac9dca741cfc801a8ffe6e0 +size 575461 diff --git a/vlm/train/Skgvy64tvr/20.png b/vlm/train/Skgvy64tvr/20.png new file mode 100644 index 0000000000000000000000000000000000000000..0c32ededb0fef95e52dce9d6037ba6810b44dbb3 --- /dev/null +++ b/vlm/train/Skgvy64tvr/20.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:57270e775898d41680b3cd5bc7be909131da64fb6593f61613c9b675deccdbe4 +size 394664 diff --git a/vlm/train/Skgvy64tvr/21.png b/vlm/train/Skgvy64tvr/21.png new file mode 100644 index 0000000000000000000000000000000000000000..af5b6608cac9477dd544eb08963123ccd0cbb465 --- /dev/null +++ b/vlm/train/Skgvy64tvr/21.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4e5a69c6d7f5ab0814cd8ec5a7ad5853a5cb686cecd50fe1f8646ad7d1ac12d5 +size 463195 diff --git a/vlm/train/Skgvy64tvr/22.png b/vlm/train/Skgvy64tvr/22.png new file mode 100644 index 0000000000000000000000000000000000000000..7a86a91ab419099e5075ed1181b76df62f8e2364 --- /dev/null +++ b/vlm/train/Skgvy64tvr/22.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01117168db898f1ca3ca261a14c212b2ca241876f2a38d4e23395db31db7f625 +size 299171 diff --git a/vlm/train/Skgvy64tvr/23.png b/vlm/train/Skgvy64tvr/23.png new file mode 100644 index 0000000000000000000000000000000000000000..e54e677ebf745a11c60335b66efacc1cbc4139b2 --- /dev/null +++ b/vlm/train/Skgvy64tvr/23.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6f7c1469e9156a2c461d460e58e166ddd72474bf9c830f73ec7c9996787f7c35 +size 420152 diff --git a/vlm/train/Skgvy64tvr/24.png b/vlm/train/Skgvy64tvr/24.png new file mode 100644 index 0000000000000000000000000000000000000000..d3af08aec0404810ec6011d848fec01984997c5d --- /dev/null +++ b/vlm/train/Skgvy64tvr/24.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:59c1e90c027ecb133271841e20ab665620e894ff73162be4dac8f5e5b159493d +size 383334 diff --git a/vlm/train/Skgvy64tvr/25.png b/vlm/train/Skgvy64tvr/25.png new file mode 100644 index 0000000000000000000000000000000000000000..a9c6483c4d2a2a38583fae6743457a09e68adea7 --- /dev/null +++ b/vlm/train/Skgvy64tvr/25.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5e618ec20a97638af007b609904dadc1817d1fb3a812dd6b5d764ae69ad5cc9f +size 568957 diff --git a/vlm/train/Skgvy64tvr/26.png b/vlm/train/Skgvy64tvr/26.png new file mode 100644 index 0000000000000000000000000000000000000000..34b706fca8d93500900703c50172bd9b229a6634 --- /dev/null +++ b/vlm/train/Skgvy64tvr/26.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:94667a68e0f1f978698fb881f2abd31eb8d582b31f4c888c1cd521324ffb67b1 +size 460321 diff --git a/vlm/train/Skgvy64tvr/27.png b/vlm/train/Skgvy64tvr/27.png new file mode 100644 index 0000000000000000000000000000000000000000..18c9b1ac904922ec681df286ef7f159fe2d8ab4d --- /dev/null +++ b/vlm/train/Skgvy64tvr/27.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f3782e1c6ffafe7ad90cc9991a0624a1c371790076bcd8d6ab2a6ee2df1d36fb +size 524392 diff --git a/vlm/train/Skgvy64tvr/28.png b/vlm/train/Skgvy64tvr/28.png new file mode 100644 index 0000000000000000000000000000000000000000..15157ff00a22b975880af7bc1f2aaed4004243fd --- /dev/null +++ b/vlm/train/Skgvy64tvr/28.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5b3d7326542b6c7aa3b51b080e8f602f26b39649f5b7823c9f0177121ac32b1c +size 272668 diff --git a/vlm/train/Skgvy64tvr/29.png b/vlm/train/Skgvy64tvr/29.png new file mode 100644 index 0000000000000000000000000000000000000000..3d537b8928fabbb338558a3caa041b2a9db0ab61 --- /dev/null +++ b/vlm/train/Skgvy64tvr/29.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aebfb42cd74f0828da8a5f3602499e4a9bbcaa1af9fdb72151eb590ee1122dcd +size 681250 diff --git a/vlm/train/Skgvy64tvr/3.png b/vlm/train/Skgvy64tvr/3.png new file mode 100644 index 0000000000000000000000000000000000000000..02508f9bd36272d8dad269bf8386f33fa6f7fda8 --- /dev/null +++ b/vlm/train/Skgvy64tvr/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ab65de6e4c1df1ebbda8efee641a48d9cb1dce1afe27c2aa7732a37364c29547 +size 630036 diff --git a/vlm/train/Skgvy64tvr/4.png b/vlm/train/Skgvy64tvr/4.png new file mode 100644 index 0000000000000000000000000000000000000000..fb07a6be443ae146e1de66a63fb56275fab6802e --- /dev/null +++ b/vlm/train/Skgvy64tvr/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4d6b89f261b54e2283b55d7e20f711b916fc80d99e634c8edc418c86d5e4924d +size 715731 diff --git a/vlm/train/Skgvy64tvr/5.png b/vlm/train/Skgvy64tvr/5.png new file mode 100644 index 0000000000000000000000000000000000000000..6804f2a4fe0428de0f9a911fa4ef9d3335cabbc6 --- /dev/null +++ b/vlm/train/Skgvy64tvr/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1f4d8ec003dd7522a8f7bbb0ecc1d35b5c609a7d47dd787767192e875f91b3fc +size 607533 diff --git a/vlm/train/Skgvy64tvr/6.png b/vlm/train/Skgvy64tvr/6.png new file mode 100644 index 0000000000000000000000000000000000000000..3d5b10c8df251ccd70c23c1fa66231b2e69f288d --- /dev/null +++ b/vlm/train/Skgvy64tvr/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:576f3e4b8e1ec88bf0dfe1913ead6cdef0c6d40853ad71cbfff67df70abf3206 +size 561231 diff --git a/vlm/train/Skgvy64tvr/7.png b/vlm/train/Skgvy64tvr/7.png new file mode 100644 index 0000000000000000000000000000000000000000..4efdfd48bebc451d49dccc4a519658ec1dbad2e1 --- /dev/null +++ b/vlm/train/Skgvy64tvr/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0f3f59bc146c7256b8afb1670976b9cd8a3c9d2a9a19120928296fe17781d0b7 +size 706504 diff --git a/vlm/train/Skgvy64tvr/8.png b/vlm/train/Skgvy64tvr/8.png new file mode 100644 index 0000000000000000000000000000000000000000..13093cfa33af67a919e6ce5141944da83da7ff7c --- /dev/null +++ b/vlm/train/Skgvy64tvr/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a30cb8f56ff0aeb88968325f4a9eba487be0af3e708445ea72d93c0bb8f1ab91 +size 536366 diff --git a/vlm/train/Skgvy64tvr/9.png b/vlm/train/Skgvy64tvr/9.png new file mode 100644 index 0000000000000000000000000000000000000000..1e2bccc76c8b81a034d8509a5789c686994c65f2 --- /dev/null +++ b/vlm/train/Skgvy64tvr/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:29f8b4fdff1729b8c30509716af5adbcc0188dd896b8db7494171194d48d0fcf +size 534803 diff --git a/vlm/train/UEtNMTl6yN/0.png b/vlm/train/UEtNMTl6yN/0.png new file mode 100644 index 0000000000000000000000000000000000000000..ef73fe7b70216e0b78e2fdb0aa3536efabe7c4c5 --- /dev/null +++ b/vlm/train/UEtNMTl6yN/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:71b6556c237d797321d65f74fb4b7f27d250de3956098a1eb35ceb608acd88d6 +size 488835 diff --git a/vlm/train/UEtNMTl6yN/1.png b/vlm/train/UEtNMTl6yN/1.png new file mode 100644 index 0000000000000000000000000000000000000000..fc40b92df9d28e9637e9e7cb6f8242cec4ebb403 --- /dev/null +++ b/vlm/train/UEtNMTl6yN/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d9c6efccb3520efe59e7998ca2930e19f2d9e3af512aa2290a81fd607b19fa36 +size 553983 diff --git a/vlm/train/UEtNMTl6yN/10.png b/vlm/train/UEtNMTl6yN/10.png new file mode 100644 index 0000000000000000000000000000000000000000..fe9c42bd7c284dbaf20150a75e057aaf7d3fe575 --- /dev/null +++ b/vlm/train/UEtNMTl6yN/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dd80ce2020c4309012a3b830bd47419a8873c2d673909cbd0c53253ff37b92e2 +size 247032 diff --git a/vlm/train/UEtNMTl6yN/2.png b/vlm/train/UEtNMTl6yN/2.png new file mode 100644 index 0000000000000000000000000000000000000000..c4244500e5cdc757bcc1b9d5aa8ae801c3d90003 --- /dev/null +++ b/vlm/train/UEtNMTl6yN/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1d258139410375b65e9b70bd74a8fd3d1f945e7158b7de8c42e23dcc4f39f938 +size 429380 diff --git a/vlm/train/UEtNMTl6yN/3.png b/vlm/train/UEtNMTl6yN/3.png new file mode 100644 index 0000000000000000000000000000000000000000..3379b8b2a35e96885dea3e0c232abdfbe89239c2 --- /dev/null +++ b/vlm/train/UEtNMTl6yN/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1a430caa6561ada2646fc8f7335c964d808e74dde90fe1a179f7c6faf7ff7cd9 +size 381975 diff --git a/vlm/train/UEtNMTl6yN/4.png b/vlm/train/UEtNMTl6yN/4.png new file mode 100644 index 0000000000000000000000000000000000000000..6db9054121b43606fc29bb9e314c4ee0773f52fe --- /dev/null +++ b/vlm/train/UEtNMTl6yN/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a66416d6b16ed2917284d52884ef2ab4cc4191a0ea20c5c92387f833be1b7b07 +size 519310 diff --git a/vlm/train/UEtNMTl6yN/5.png b/vlm/train/UEtNMTl6yN/5.png new file mode 100644 index 0000000000000000000000000000000000000000..9f01905d7c9e519a01b72177c47a990ac40f31ea --- /dev/null +++ b/vlm/train/UEtNMTl6yN/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3bcc6ee3a0bfbe6a2a71a217d06632fc579a101efb3b848ff04b56149f3dba62 +size 398168 diff --git a/vlm/train/UEtNMTl6yN/6.png b/vlm/train/UEtNMTl6yN/6.png new file mode 100644 index 0000000000000000000000000000000000000000..ede207dda756597eb527c2b026eab312a06c33b9 --- /dev/null +++ b/vlm/train/UEtNMTl6yN/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6adbda8ca578aaa36de9a90734f304fe2b2bac9e555ed9c9e1197fb17d41bf90 +size 412447 diff --git a/vlm/train/UEtNMTl6yN/7.png b/vlm/train/UEtNMTl6yN/7.png new file mode 100644 index 0000000000000000000000000000000000000000..b335070ec06ebdf456693db2a07a088ace66b0dc --- /dev/null +++ b/vlm/train/UEtNMTl6yN/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cd3eaaab2f6859ab06b468ba630b023d19c99642663f9a0afc07a47e5fe826ce +size 560005 diff --git a/vlm/train/UEtNMTl6yN/8.png b/vlm/train/UEtNMTl6yN/8.png new file mode 100644 index 0000000000000000000000000000000000000000..c100cc7f78697fdd0600c3989812d6708e5e255c --- /dev/null +++ b/vlm/train/UEtNMTl6yN/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ce5704080a12de685907941419e01936f3cba8accc46825f3f88d9f18baa6d88 +size 659778 diff --git a/vlm/train/UEtNMTl6yN/9.png b/vlm/train/UEtNMTl6yN/9.png new file mode 100644 index 0000000000000000000000000000000000000000..333fc796ea79a39fd0a331e42b73e60508cfc1c6 --- /dev/null +++ b/vlm/train/UEtNMTl6yN/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:13e24c0b9f566efbae03d23d9ad6c52f4783b5ea44fd509413faea9c47e2906f +size 659670 diff --git a/vlm/train/Z2vksUFuVst/0.png b/vlm/train/Z2vksUFuVst/0.png new file mode 100644 index 0000000000000000000000000000000000000000..6d1d77625bb1f10333649ceb6d9ec7ad6ef1608d --- /dev/null +++ b/vlm/train/Z2vksUFuVst/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:253e6c4d8f8a0b8dcd98dda9ebcc196e19855a6558e5c3a330caa06d29be7c91 +size 467957 diff --git a/vlm/train/Z2vksUFuVst/1.png b/vlm/train/Z2vksUFuVst/1.png new file mode 100644 index 0000000000000000000000000000000000000000..09f7068a838ae38c301675190e1c4206129a7c15 --- /dev/null +++ b/vlm/train/Z2vksUFuVst/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e92fb4621fd08ccd91bb5fd507e303abcbcb6978033866d8e5f770d63df5f121 +size 659510 diff --git a/vlm/train/Z2vksUFuVst/10.png b/vlm/train/Z2vksUFuVst/10.png new file mode 100644 index 0000000000000000000000000000000000000000..d1179ba6ce47e2095c8fff9395427f7f8305e915 --- /dev/null +++ b/vlm/train/Z2vksUFuVst/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:61d8e0b2a87c6317f66c6ed8ef86eddde55e6e66a45c81646419dc923227a5e5 +size 503670 diff --git a/vlm/train/Z2vksUFuVst/11.png b/vlm/train/Z2vksUFuVst/11.png new file mode 100644 index 0000000000000000000000000000000000000000..53e80f20ef63c9f86f6c3ee0ad849e0eeab833d9 --- /dev/null +++ b/vlm/train/Z2vksUFuVst/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ca39b4c38d7674e3ff832aaaa958496fd6488fc6658dc74a961b9b300b4b83ab +size 538171 diff --git a/vlm/train/Z2vksUFuVst/12.png b/vlm/train/Z2vksUFuVst/12.png new file mode 100644 index 0000000000000000000000000000000000000000..6cca588e859d87bea358f3f351a2242731d0f0fb --- /dev/null +++ b/vlm/train/Z2vksUFuVst/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:88e33d90f93ce603cd31ad88eaf83c9730648a635283fdbc33fec34ba7274aa2 +size 486718 diff --git a/vlm/train/Z2vksUFuVst/2.png b/vlm/train/Z2vksUFuVst/2.png new file mode 100644 index 0000000000000000000000000000000000000000..a9c06cc43f8ec5abae68c4621ac4405dc3ebdde6 --- /dev/null +++ b/vlm/train/Z2vksUFuVst/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fe92384bde00da5a1352038d3ccba3a85612e3cb71a27eb68745a73f07e392c5 +size 610174 diff --git a/vlm/train/Z2vksUFuVst/3.png b/vlm/train/Z2vksUFuVst/3.png new file mode 100644 index 0000000000000000000000000000000000000000..4de80ce274d4d4fe9ba2784f24cf4b8fb01643dc --- /dev/null +++ b/vlm/train/Z2vksUFuVst/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bf37fcee20d5e044c971cb880dff11e54b3524c7c95c900274891f81cdd69ac7 +size 558893 diff --git a/vlm/train/Z2vksUFuVst/4.png b/vlm/train/Z2vksUFuVst/4.png new file mode 100644 index 0000000000000000000000000000000000000000..004fade2346995ad716d28fce10aba34464d8e8f --- /dev/null +++ b/vlm/train/Z2vksUFuVst/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b6c6eea82c52cda2799fde2f65c1e42dd4f1f6f1d8ce30df4d2cea34ef375d0b +size 555622 diff --git a/vlm/train/Z2vksUFuVst/5.png b/vlm/train/Z2vksUFuVst/5.png new file mode 100644 index 0000000000000000000000000000000000000000..54542848367479f8b8078ad095740a3dc1c78a8c --- /dev/null +++ b/vlm/train/Z2vksUFuVst/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:53531cbcc5358ce17137c5a00f66819cac23576f943195d27fb855780de7bccf +size 496616 diff --git a/vlm/train/Z2vksUFuVst/6.png b/vlm/train/Z2vksUFuVst/6.png new file mode 100644 index 0000000000000000000000000000000000000000..78875457fcb4f7588ba08270290028c64c212321 --- /dev/null +++ b/vlm/train/Z2vksUFuVst/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4c84c9ddd00b0e921c7ff6bd2a27b65282ab5403c32d4688ba6dd7a9c1877e05 +size 680364 diff --git a/vlm/train/Z2vksUFuVst/7.png b/vlm/train/Z2vksUFuVst/7.png new file mode 100644 index 0000000000000000000000000000000000000000..bb58e1102c163983a1c163582e7dd9356888a449 --- /dev/null +++ b/vlm/train/Z2vksUFuVst/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c1a76b2e5a47024175601e9447eb9f2990ce98dd6fce624bb8c0bf48f0c1dfb2 +size 624467 diff --git a/vlm/train/Z2vksUFuVst/8.png b/vlm/train/Z2vksUFuVst/8.png new file mode 100644 index 0000000000000000000000000000000000000000..e8d89e13fc2c02ad7e3e52c6e738aa5555bf1e30 --- /dev/null +++ b/vlm/train/Z2vksUFuVst/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4ec48fc6bdcb9db245bb3b85614f7578c6bd2e077be85af12ffd4dc765e7c9c5 +size 631224 diff --git a/vlm/train/Z2vksUFuVst/9.png b/vlm/train/Z2vksUFuVst/9.png new file mode 100644 index 0000000000000000000000000000000000000000..ee8d6e5aca7f33f1de6776b5ee8b9201299724c9 --- /dev/null +++ b/vlm/train/Z2vksUFuVst/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b64a13c394d2dcb585cc7bf1ea73fcc957fc56676b265bf141599000db9f0f90 +size 578503 diff --git a/vlm/train/ZUvaSolQZh3/0.png b/vlm/train/ZUvaSolQZh3/0.png new file mode 100644 index 0000000000000000000000000000000000000000..6a59afa352ea8b48094ce710301caca8bfb160dd --- /dev/null +++ b/vlm/train/ZUvaSolQZh3/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:095714cd7f9adffc68c3b4e3d77afa368c938c210d22a5965905476f66c8a059 +size 430150 diff --git a/vlm/train/ZUvaSolQZh3/1.png b/vlm/train/ZUvaSolQZh3/1.png new file mode 100644 index 0000000000000000000000000000000000000000..0d78f23fc6d562b3816e5b9546db3134ef64d106 --- /dev/null +++ b/vlm/train/ZUvaSolQZh3/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b88f626eaa11d06cd0e9b2083f8a2821fbfd5c042322d9aa7a4ff7e082404f18 +size 580445 diff --git a/vlm/train/ZUvaSolQZh3/10.png b/vlm/train/ZUvaSolQZh3/10.png new file mode 100644 index 0000000000000000000000000000000000000000..a7284252a61124be51b5f8d10050c7aa047723c5 --- /dev/null +++ b/vlm/train/ZUvaSolQZh3/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:16ced915a975434efe716701a73a5177a51494cb20fe3645339d0638d785778e +size 506736 diff --git a/vlm/train/ZUvaSolQZh3/11.png b/vlm/train/ZUvaSolQZh3/11.png new file mode 100644 index 0000000000000000000000000000000000000000..a8ce901d190f275c275070f01a045d7e2dde5b14 --- /dev/null +++ b/vlm/train/ZUvaSolQZh3/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:82586a3cec72f0464542e74ef2382d883cce7453b5610f42758649bfa9393c8e +size 221944 diff --git a/vlm/train/ZUvaSolQZh3/2.png b/vlm/train/ZUvaSolQZh3/2.png new file mode 100644 index 0000000000000000000000000000000000000000..71a326b24de0504ec6fb63c9be546dcafc3fc2f0 --- /dev/null +++ b/vlm/train/ZUvaSolQZh3/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ded57ee4bb93efde9bfe1dce83bbf8c814ccfc9d2eb25d8c57de2916aa09eb6c +size 630447 diff --git a/vlm/train/ZUvaSolQZh3/3.png b/vlm/train/ZUvaSolQZh3/3.png new file mode 100644 index 0000000000000000000000000000000000000000..9e0cf297b103648580910510b1218147d6fd9f2c --- /dev/null +++ b/vlm/train/ZUvaSolQZh3/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a24880715926faae2778073eaf20626a7bdfb34320cf5760a0445cdd52db984b +size 627075 diff --git a/vlm/train/ZUvaSolQZh3/4.png b/vlm/train/ZUvaSolQZh3/4.png new file mode 100644 index 0000000000000000000000000000000000000000..a451d45be8eab59e72eec68fc07d9f52dc0e5754 --- /dev/null +++ b/vlm/train/ZUvaSolQZh3/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dffbb7b83663405a47f0171f4129244926572b90b961cfc41e5edd81ba91bcbe +size 526668 diff --git a/vlm/train/ZUvaSolQZh3/5.png b/vlm/train/ZUvaSolQZh3/5.png new file mode 100644 index 0000000000000000000000000000000000000000..d744618fa55de421b2c1be464ff2ab2da956c5d7 --- /dev/null +++ b/vlm/train/ZUvaSolQZh3/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d6ae259cd0c8f183bceb2f332299c60af1485f5339b319d02c45b00bd6396a7d +size 451820 diff --git a/vlm/train/ZUvaSolQZh3/6.png b/vlm/train/ZUvaSolQZh3/6.png new file mode 100644 index 0000000000000000000000000000000000000000..4a8af42c9c32bedd45227907af038011c5bfb6d1 --- /dev/null +++ b/vlm/train/ZUvaSolQZh3/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4273f7a16a971e82bfc7b50b7c2e16687c672cf70e26074f8108eb8c242f5d6b +size 481571 diff --git a/vlm/train/ZUvaSolQZh3/7.png b/vlm/train/ZUvaSolQZh3/7.png new file mode 100644 index 0000000000000000000000000000000000000000..23100b57b2b2acc739137a5fadfeb3dea336411b --- /dev/null +++ b/vlm/train/ZUvaSolQZh3/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f8cb0e071f99b8a03d34de52a336b76b91956f2ad04760cde5aea1d7ab718e59 +size 434244 diff --git a/vlm/train/ZUvaSolQZh3/8.png b/vlm/train/ZUvaSolQZh3/8.png new file mode 100644 index 0000000000000000000000000000000000000000..bbc338045c1825060374d87a3079e19c1b54b17f --- /dev/null +++ b/vlm/train/ZUvaSolQZh3/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:30edfa81bd6af5d700ee1e02e49c65baf693e326bc2402e4fe75039701dc9752 +size 509445 diff --git a/vlm/train/ZUvaSolQZh3/9.png b/vlm/train/ZUvaSolQZh3/9.png new file mode 100644 index 0000000000000000000000000000000000000000..db7c55f9770cffa5cb40102345dd0936454ea010 --- /dev/null +++ b/vlm/train/ZUvaSolQZh3/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ffb9b2d646b3e3e84b9e405d57b1b67af6af9a1cb5b0e83384405321aa858084 +size 563421 diff --git a/vlm/train/aJh-lFL2dFJ21/0.png b/vlm/train/aJh-lFL2dFJ21/0.png new file mode 100644 index 0000000000000000000000000000000000000000..2b199151bcba79867346ff30c9823a5cf7630a0f --- /dev/null +++ b/vlm/train/aJh-lFL2dFJ21/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:775ce807fd4b63241b1eaee688af298b7006ef647ad61542deab83254decb216 +size 463377 diff --git a/vlm/train/aJh-lFL2dFJ21/1.png b/vlm/train/aJh-lFL2dFJ21/1.png new file mode 100644 index 0000000000000000000000000000000000000000..ea42268f6803983f1c5a667207e2be375fa87d0b --- /dev/null +++ b/vlm/train/aJh-lFL2dFJ21/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9f8887541bc2c2eb834613c2cc785c638292db01defde621cfb9f70bb855f95b +size 521253 diff --git a/vlm/train/aJh-lFL2dFJ21/10.png b/vlm/train/aJh-lFL2dFJ21/10.png new file mode 100644 index 0000000000000000000000000000000000000000..e9169179b86c6afcc39736e8c889e15e3b3c2748 --- /dev/null +++ b/vlm/train/aJh-lFL2dFJ21/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:266ab5f3c8c99e236e817fc9a52d71105bbad20bb028ac2c4000ebf2d0bba384 +size 592540 diff --git a/vlm/train/aJh-lFL2dFJ21/11.png b/vlm/train/aJh-lFL2dFJ21/11.png new file mode 100644 index 0000000000000000000000000000000000000000..2a540e5167775761ec5dc6ff113840b4ed201faa --- /dev/null +++ b/vlm/train/aJh-lFL2dFJ21/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:016c1a5b2c7dba852798b61f812145e1ac58ece80a3b268e4e83cef589654d95 +size 627759 diff --git a/vlm/train/aJh-lFL2dFJ21/12.png b/vlm/train/aJh-lFL2dFJ21/12.png new file mode 100644 index 0000000000000000000000000000000000000000..2d84efc3b1b2b7839a8bc5c2e24bb185d6a9f47e --- /dev/null +++ b/vlm/train/aJh-lFL2dFJ21/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:74f0d300fbdeb1b9fe6c1b516653f90b5a92f125260b09e84a8d6ccd390c1ab7 +size 440407 diff --git a/vlm/train/aJh-lFL2dFJ21/13.png b/vlm/train/aJh-lFL2dFJ21/13.png new file mode 100644 index 0000000000000000000000000000000000000000..e542e3e2702f8cff4afc8337ffdbe0ca0a448313 --- /dev/null +++ b/vlm/train/aJh-lFL2dFJ21/13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2a5b754f6ad1bfc29496573e8bb2e12f1ef60606ad012bbd2c5c1e6e7b81b491 +size 648111 diff --git a/vlm/train/aJh-lFL2dFJ21/14.png b/vlm/train/aJh-lFL2dFJ21/14.png new file mode 100644 index 0000000000000000000000000000000000000000..0e089602958195b73eefeb713cd7babaa4916c5b --- /dev/null +++ b/vlm/train/aJh-lFL2dFJ21/14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:97d2cac2103f06a25ea26f3dd84b1da9cbca797787d16ce7e6f126108c607e3d +size 664768 diff --git a/vlm/train/aJh-lFL2dFJ21/2.png b/vlm/train/aJh-lFL2dFJ21/2.png new file mode 100644 index 0000000000000000000000000000000000000000..257e9f90a99862457dab7ca8f6a0ee7af0a32108 --- /dev/null +++ b/vlm/train/aJh-lFL2dFJ21/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c82ec7391cdeed821d3c837cf2fc76748f0ce1ade8301934c8a9d462bef5351f +size 469591 diff --git a/vlm/train/aJh-lFL2dFJ21/3.png b/vlm/train/aJh-lFL2dFJ21/3.png new file mode 100644 index 0000000000000000000000000000000000000000..4fef1413a52512f863796c5266c569e9ca513fd2 --- /dev/null +++ b/vlm/train/aJh-lFL2dFJ21/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b13984317442006b3af5c5c9e5dbf98121264d41013c411fe43a625226063522 +size 520593 diff --git a/vlm/train/aJh-lFL2dFJ21/4.png b/vlm/train/aJh-lFL2dFJ21/4.png new file mode 100644 index 0000000000000000000000000000000000000000..9c8ad4f918bf4f43b8e2239dee8998a20e275545 --- /dev/null +++ b/vlm/train/aJh-lFL2dFJ21/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1d9e2220d65a38db68005d7330d182a3e6ec501467e407fed994e3d6fd7fe648 +size 353761 diff --git a/vlm/train/aJh-lFL2dFJ21/5.png b/vlm/train/aJh-lFL2dFJ21/5.png new file mode 100644 index 0000000000000000000000000000000000000000..5f42dd4b4596960cfde7f3489c2d3ddd2fdb7497 --- /dev/null +++ b/vlm/train/aJh-lFL2dFJ21/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:254a9f9da76a417820651a95bf8256dfd54a5d34072520c0e0afe397610ce409 +size 568970 diff --git a/vlm/train/aJh-lFL2dFJ21/6.png b/vlm/train/aJh-lFL2dFJ21/6.png new file mode 100644 index 0000000000000000000000000000000000000000..74e471e5823d887420eb52f6147f8fb4e1217a2e --- /dev/null +++ b/vlm/train/aJh-lFL2dFJ21/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e83d62070dcc6d0e272c85ab324396ff1d3a79a16ff3438557fa6055c50c5223 +size 401223 diff --git a/vlm/train/aJh-lFL2dFJ21/7.png b/vlm/train/aJh-lFL2dFJ21/7.png new file mode 100644 index 0000000000000000000000000000000000000000..5eaafdd69428fd608678815d8a29dcbfcad364a5 --- /dev/null +++ b/vlm/train/aJh-lFL2dFJ21/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a222fb83dcfdc46e74d439266cd06dfb5cfb482d641e20f5b2e627c251715860 +size 537516 diff --git a/vlm/train/aJh-lFL2dFJ21/8.png b/vlm/train/aJh-lFL2dFJ21/8.png new file mode 100644 index 0000000000000000000000000000000000000000..0fa585a7a3d8e1342d9487165f41fe97e95de685 --- /dev/null +++ b/vlm/train/aJh-lFL2dFJ21/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:810bd2242f4672e91c7375977bf40d59feb270add814c9f4a218620576911139 +size 359637 diff --git a/vlm/train/aJh-lFL2dFJ21/9.png b/vlm/train/aJh-lFL2dFJ21/9.png new file mode 100644 index 0000000000000000000000000000000000000000..ab77d96b5adf89bf1ab13206dba26bea51713ea4 --- /dev/null +++ b/vlm/train/aJh-lFL2dFJ21/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:069224b6d63f668c07a1ec9b484e12d8e55630d2d6535726c5abd41c16becaaf +size 388639 diff --git a/vlm/train/bM3L3I_853/0.png b/vlm/train/bM3L3I_853/0.png new file mode 100644 index 0000000000000000000000000000000000000000..e204e4d03ae322557f3f50968f09a7ed95918552 --- /dev/null +++ b/vlm/train/bM3L3I_853/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1fc00633392b70c82cdf393379577d167a447123accc81e65a8b5407f4762d4c +size 519749 diff --git a/vlm/train/bM3L3I_853/1.png b/vlm/train/bM3L3I_853/1.png new file mode 100644 index 0000000000000000000000000000000000000000..e4ec22a5f41011627b341e8e50f9c75863b8ebb2 --- /dev/null +++ b/vlm/train/bM3L3I_853/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c697f1fd89830a89c80b114deccab05948020c070b1e8d9c041829ead7da54f5 +size 635540 diff --git a/vlm/train/bM3L3I_853/10.png b/vlm/train/bM3L3I_853/10.png new file mode 100644 index 0000000000000000000000000000000000000000..8043ae99a5549b6bf15aca0c36129bc44f53545e --- /dev/null +++ b/vlm/train/bM3L3I_853/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0fc8091106c8babbc7e2f836af56186015a30fcec270734ca4438cd6b2983afb +size 544331 diff --git a/vlm/train/bM3L3I_853/11.png b/vlm/train/bM3L3I_853/11.png new file mode 100644 index 0000000000000000000000000000000000000000..793cff2fe4c205a390e571fc2cc5357921c23188 --- /dev/null +++ b/vlm/train/bM3L3I_853/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:215e8a2d3127215533bcd120518aa8f3c79ac2ffcba39172701b074bd390e10f +size 544654 diff --git a/vlm/train/bM3L3I_853/12.png b/vlm/train/bM3L3I_853/12.png new file mode 100644 index 0000000000000000000000000000000000000000..46f6c65b16587ffc6aea15be19e030c05fa3e529 --- /dev/null +++ b/vlm/train/bM3L3I_853/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5c90cfdd747919eb859796e628608575892454cdc6eadc13ce6433e0d6cc6e07 +size 500757 diff --git a/vlm/train/bM3L3I_853/2.png b/vlm/train/bM3L3I_853/2.png new file mode 100644 index 0000000000000000000000000000000000000000..202cc82ae80d2b9ac12c22b1d7f802abf90b94a0 --- /dev/null +++ b/vlm/train/bM3L3I_853/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ea07ed4e1fdacbe9e9970676ba23729a976b155c8124ca6203826a2fba8d4e57 +size 556789 diff --git a/vlm/train/bM3L3I_853/3.png b/vlm/train/bM3L3I_853/3.png new file mode 100644 index 0000000000000000000000000000000000000000..5c3599ec0fcfdadca2a5f2a9c8526c1f3d18f8d6 --- /dev/null +++ b/vlm/train/bM3L3I_853/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0e640920ce0aaf412ccb9a82f4664bfc63b7e25802a014d4f13e7a476a3878ae +size 523643 diff --git a/vlm/train/bM3L3I_853/4.png b/vlm/train/bM3L3I_853/4.png new file mode 100644 index 0000000000000000000000000000000000000000..4576eef5153f97f0f4f78f7aa628ab0a2cf678a0 --- /dev/null +++ b/vlm/train/bM3L3I_853/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ff65fc2df73c1ca44bcb864e8fa7fa67fb750b9bbd2812ed68a45a050361ac26 +size 633224 diff --git a/vlm/train/bM3L3I_853/5.png b/vlm/train/bM3L3I_853/5.png new file mode 100644 index 0000000000000000000000000000000000000000..5aee7b7ca89636e28a5b65cfb402a30d23c16a14 --- /dev/null +++ b/vlm/train/bM3L3I_853/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8b48ee26e898a8bc1a4e51a7da57c8abe1da765af3c71513434311b2bc89e3cb +size 567173 diff --git a/vlm/train/bM3L3I_853/6.png b/vlm/train/bM3L3I_853/6.png new file mode 100644 index 0000000000000000000000000000000000000000..ddd9f9d73bb3b3acc2a833844f6da7b7a204f000 --- /dev/null +++ b/vlm/train/bM3L3I_853/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c1703ccc8e9d5add86a28aa0defdafb0e0d882ca2641f0e47e3385d1198ebf95 +size 603914 diff --git a/vlm/train/bM3L3I_853/7.png b/vlm/train/bM3L3I_853/7.png new file mode 100644 index 0000000000000000000000000000000000000000..3d4f85fe32ee724a56c5da020b6b0773cc341608 --- /dev/null +++ b/vlm/train/bM3L3I_853/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:74cbf0651139568c8b059584ddfbe3b6e7734fb14f49d598b7df02b3d0ae57fa +size 653966 diff --git a/vlm/train/bM3L3I_853/8.png b/vlm/train/bM3L3I_853/8.png new file mode 100644 index 0000000000000000000000000000000000000000..ec04851025f8efa7320702a107ce410373664069 --- /dev/null +++ b/vlm/train/bM3L3I_853/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ab86eb5dce37fb67ea27de9b0079f4d2928760136b95af3083a65a4f0a663159 +size 573462 diff --git a/vlm/train/bM3L3I_853/9.png b/vlm/train/bM3L3I_853/9.png new file mode 100644 index 0000000000000000000000000000000000000000..441ad0c141bafa0175236d1271377480e2688cba --- /dev/null +++ b/vlm/train/bM3L3I_853/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1e32310e5d50ef67c81969d2583342d7bc6376c2a5fd6ecd5f85f85b1200fa9e +size 540490 diff --git a/vlm/train/jCxDyge46t2/0.png b/vlm/train/jCxDyge46t2/0.png new file mode 100644 index 0000000000000000000000000000000000000000..55ec005ddeb636b274ab4c819ba20ae730c80771 --- /dev/null +++ b/vlm/train/jCxDyge46t2/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bff8f9ef356416a67b7f6152b0d584b0ff3df37abed9bf8ed88fdca48a1da638 +size 457703 diff --git a/vlm/train/jCxDyge46t2/1.png b/vlm/train/jCxDyge46t2/1.png new file mode 100644 index 0000000000000000000000000000000000000000..5749f7b516ad263b013e428dd8476ba0ee60ef82 --- /dev/null +++ b/vlm/train/jCxDyge46t2/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:65aea314ec5627e869534c587be3f83cb62002ab21828db100f53da434977a83 +size 628123 diff --git a/vlm/train/jCxDyge46t2/10.png b/vlm/train/jCxDyge46t2/10.png new file mode 100644 index 0000000000000000000000000000000000000000..dd1601e57afaa20a864bda9cb673ebc14e67020d --- /dev/null +++ b/vlm/train/jCxDyge46t2/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eb6d27b1ef38272cb0a5484d2b672566796faadc927212bf7e8c4c24ceb7ab07 +size 575033 diff --git a/vlm/train/jCxDyge46t2/11.png b/vlm/train/jCxDyge46t2/11.png new file mode 100644 index 0000000000000000000000000000000000000000..6ca0f02c62df24a82afcf646278177c05245f0c3 --- /dev/null +++ b/vlm/train/jCxDyge46t2/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ff5c644ccc933c62120d961d1c040c31f37572fbd389b22f3724456cf6f86255 +size 590720 diff --git a/vlm/train/jCxDyge46t2/12.png b/vlm/train/jCxDyge46t2/12.png new file mode 100644 index 0000000000000000000000000000000000000000..d684d09dbf0b3ebc569a34d4c93f5088089b7121 --- /dev/null +++ b/vlm/train/jCxDyge46t2/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2c03194507fc8a36f4d8a1d504b91ea126ddf695e437f5e203904ac1878ed2c4 +size 481477 diff --git a/vlm/train/jCxDyge46t2/2.png b/vlm/train/jCxDyge46t2/2.png new file mode 100644 index 0000000000000000000000000000000000000000..d40e84340f6b4f3472e5a93ae3d0dbb4e14e413a --- /dev/null +++ b/vlm/train/jCxDyge46t2/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c6b0034c2b846bde4012d95c4d564b8f15c085c66be8fbeb0929cab8ee555d18 +size 509933 diff --git a/vlm/train/jCxDyge46t2/3.png b/vlm/train/jCxDyge46t2/3.png new file mode 100644 index 0000000000000000000000000000000000000000..d4b1bb784f9bf9256fb47809a90a14cb07ca21e7 --- /dev/null +++ b/vlm/train/jCxDyge46t2/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:994ea4048032439c9a08bef06edaf299df0c39b253e098d39a4857c0c79af953 +size 521599 diff --git a/vlm/train/jCxDyge46t2/4.png b/vlm/train/jCxDyge46t2/4.png new file mode 100644 index 0000000000000000000000000000000000000000..250dff7f71a5461d6e2b879ad71d82469109fdc5 --- /dev/null +++ b/vlm/train/jCxDyge46t2/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4e11f51cc261d67e0184cfead22c4c903dfb7210c45910cc05866265255ce0b8 +size 588331 diff --git a/vlm/train/jCxDyge46t2/5.png b/vlm/train/jCxDyge46t2/5.png new file mode 100644 index 0000000000000000000000000000000000000000..5e859b0aa7c427c8453305c1f6914a5d1257ab82 --- /dev/null +++ b/vlm/train/jCxDyge46t2/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:29f6cbdf2bdcbf00ad9562de04ed308b57d981507adfde0281e8041c14702a16 +size 398897 diff --git a/vlm/train/jCxDyge46t2/6.png b/vlm/train/jCxDyge46t2/6.png new file mode 100644 index 0000000000000000000000000000000000000000..84aa74ea9578eec7b08defa2380ee23b77257678 --- /dev/null +++ b/vlm/train/jCxDyge46t2/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:913d4e63dbd8bf281a2e9f9799b9e4306a09eaad1f9ed7b2cf8259087182b62b +size 476728 diff --git a/vlm/train/jCxDyge46t2/7.png b/vlm/train/jCxDyge46t2/7.png new file mode 100644 index 0000000000000000000000000000000000000000..a476e57b08ed226561574c3b4c4c2a558574de1a --- /dev/null +++ b/vlm/train/jCxDyge46t2/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:59335fe48ef63822bd94d7428a49e1ac314e5397bab2f117f9bf282301e95c79 +size 574561 diff --git a/vlm/train/jCxDyge46t2/8.png b/vlm/train/jCxDyge46t2/8.png new file mode 100644 index 0000000000000000000000000000000000000000..a9528f669c4c185e6379dc38b8416cd45668e615 --- /dev/null +++ b/vlm/train/jCxDyge46t2/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2de7ac1ff5e0db2a9aa89180be5084edeba7a18850b33505c4d7ce803675f3ed +size 661437 diff --git a/vlm/train/jCxDyge46t2/9.png b/vlm/train/jCxDyge46t2/9.png new file mode 100644 index 0000000000000000000000000000000000000000..f91ce6b5dfd91338a68aa527a3d1d6b646a485f0 --- /dev/null +++ b/vlm/train/jCxDyge46t2/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:678ef0b614ba0f2c33556e1c1666de0cf471a4e9c829e9bb7c73d0ddeafce142 +size 556850 diff --git a/vlm/train/jNTeYscgSw8/0.png b/vlm/train/jNTeYscgSw8/0.png new file mode 100644 index 0000000000000000000000000000000000000000..3bcd398785e5cc9ce035fa4f3440ff518fb99cc0 --- /dev/null +++ b/vlm/train/jNTeYscgSw8/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a56b50df04b134af1c1349730e30ebc028b7bd844ebf40b82a8f4689a3a716eb +size 508991 diff --git a/vlm/train/jNTeYscgSw8/1.png b/vlm/train/jNTeYscgSw8/1.png new file mode 100644 index 0000000000000000000000000000000000000000..ac946d4eb88aa2b3a5db6a81aea7e915735feb59 --- /dev/null +++ b/vlm/train/jNTeYscgSw8/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fb79a3a8de26f1f54acbb847be1967fe55986da877bcd91346c434f99e162699 +size 544473 diff --git a/vlm/train/jNTeYscgSw8/10.png b/vlm/train/jNTeYscgSw8/10.png new file mode 100644 index 0000000000000000000000000000000000000000..27bdd27e1eb0eabafc215bd871a96f1126d836ad --- /dev/null +++ b/vlm/train/jNTeYscgSw8/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8f0a8e0086829df6165bfc2b17945d845ecd1789fa218ef817e38569ab32a45a +size 563415 diff --git a/vlm/train/jNTeYscgSw8/11.png b/vlm/train/jNTeYscgSw8/11.png new file mode 100644 index 0000000000000000000000000000000000000000..747f60c7f0fdaaedf04cc22b7e9038f426fbca76 --- /dev/null +++ b/vlm/train/jNTeYscgSw8/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f3206b26f91c0d2e4876ed8d5092c63f587423ce16e332aae706f4692f3722ef +size 304330 diff --git a/vlm/train/jNTeYscgSw8/12.png b/vlm/train/jNTeYscgSw8/12.png new file mode 100644 index 0000000000000000000000000000000000000000..da9a00e059cfe92b5e6c47d5c5781f2c6f255ca9 --- /dev/null +++ b/vlm/train/jNTeYscgSw8/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6e05fd125855d2d64db555b5c74a86464453b84ab225068a56bf3ad45ba5b590 +size 539613 diff --git a/vlm/train/jNTeYscgSw8/13.png b/vlm/train/jNTeYscgSw8/13.png new file mode 100644 index 0000000000000000000000000000000000000000..9618e6a29818b392ef67d10d28f3821fbf5159b5 --- /dev/null +++ b/vlm/train/jNTeYscgSw8/13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bf90f4e7bc24ef017a4a0011454c52f9234539603d22e90f7eb2aa3a64f34faa +size 476256 diff --git a/vlm/train/jNTeYscgSw8/14.png b/vlm/train/jNTeYscgSw8/14.png new file mode 100644 index 0000000000000000000000000000000000000000..b3ccc7900b37451d046019083619e83bfc65c2bb --- /dev/null +++ b/vlm/train/jNTeYscgSw8/14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3b3a3caf58e9f5e4efd9bc2a5a738985e40f08dab21edc0c57dd52dba9220b7f +size 342754 diff --git a/vlm/train/jNTeYscgSw8/15.png b/vlm/train/jNTeYscgSw8/15.png new file mode 100644 index 0000000000000000000000000000000000000000..76362a4c7b43613e07db90b23b871ad2416a450f --- /dev/null +++ b/vlm/train/jNTeYscgSw8/15.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:42e5012b2609a8d6be07d6f9c7f3a757413a182e7195de1b005b386831971e9a +size 363733 diff --git a/vlm/train/jNTeYscgSw8/16.png b/vlm/train/jNTeYscgSw8/16.png new file mode 100644 index 0000000000000000000000000000000000000000..02d1f3c58a0b6a0e4abf3e362f263620e9a90673 --- /dev/null +++ b/vlm/train/jNTeYscgSw8/16.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:73774a457e3fee3039fe0c8902a0639ba4eb7d0ae595c68ef99ead9969b733c4 +size 553144 diff --git a/vlm/train/jNTeYscgSw8/17.png b/vlm/train/jNTeYscgSw8/17.png new file mode 100644 index 0000000000000000000000000000000000000000..df34e370cab0a47323d126e9bc6b6c5fed08c5f1 --- /dev/null +++ b/vlm/train/jNTeYscgSw8/17.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4f341b1e7f48a19da58126ef851699326d08dde91ebdb040429407df05bde877 +size 417928 diff --git a/vlm/train/jNTeYscgSw8/18.png b/vlm/train/jNTeYscgSw8/18.png new file mode 100644 index 0000000000000000000000000000000000000000..65274e25ab1022df9624e46d0afe5f2200d6409e --- /dev/null +++ b/vlm/train/jNTeYscgSw8/18.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e0264c744c8b239a0fd1c08593037b25e7f0cabdc85c00762a5f34d9daabd44a +size 557425 diff --git a/vlm/train/jNTeYscgSw8/2.png b/vlm/train/jNTeYscgSw8/2.png new file mode 100644 index 0000000000000000000000000000000000000000..3e0710d387e98091a9fa9b6eb55fd3da5f27889b --- /dev/null +++ b/vlm/train/jNTeYscgSw8/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7806fe16acbfefe14e67c42d8d0f3390a1ea72e8d1e5764925b1261a70e3bf5c +size 526244 diff --git a/vlm/train/jNTeYscgSw8/3.png b/vlm/train/jNTeYscgSw8/3.png new file mode 100644 index 0000000000000000000000000000000000000000..29b3b2f5070dfd86d1de7712c4f0f4aef1a08a13 --- /dev/null +++ b/vlm/train/jNTeYscgSw8/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:37df04aeca7bca277a5c6cc4d10b1a572a80ca89d797abd9ac94ae58c8eaede6 +size 631630 diff --git a/vlm/train/jNTeYscgSw8/4.png b/vlm/train/jNTeYscgSw8/4.png new file mode 100644 index 0000000000000000000000000000000000000000..7bc3b2e9ee3e263488edcd9645082821c76ccce2 --- /dev/null +++ b/vlm/train/jNTeYscgSw8/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:57e650a31bbd4dad88e9be4cf5efc5638eeb96e4181fb2c159f83be1cc625505 +size 587975 diff --git a/vlm/train/jNTeYscgSw8/5.png b/vlm/train/jNTeYscgSw8/5.png new file mode 100644 index 0000000000000000000000000000000000000000..3e661e67869a543e0ef0406a37571bcdf7a50791 --- /dev/null +++ b/vlm/train/jNTeYscgSw8/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e665598399b06a077339f29d81bcc184192e6379fe0a71c37db33828196e8a92 +size 572850 diff --git a/vlm/train/jNTeYscgSw8/6.png b/vlm/train/jNTeYscgSw8/6.png new file mode 100644 index 0000000000000000000000000000000000000000..f8877badb4d3e9256acf07f66bf803431d14c5ec --- /dev/null +++ b/vlm/train/jNTeYscgSw8/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3cdfd619517fd925a5b7b8e4d28d3d2f4355dea6a68c19fda3b8a58a61e22521 +size 578313 diff --git a/vlm/train/jNTeYscgSw8/7.png b/vlm/train/jNTeYscgSw8/7.png new file mode 100644 index 0000000000000000000000000000000000000000..09de2b1ecdc003f0ee25bcdec725e09007e50c65 --- /dev/null +++ b/vlm/train/jNTeYscgSw8/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5e7d9429f1f83f64d5ee8653c7e860df7a3eadc4f65de232eb75652059e8b1bc +size 587891 diff --git a/vlm/train/jNTeYscgSw8/8.png b/vlm/train/jNTeYscgSw8/8.png new file mode 100644 index 0000000000000000000000000000000000000000..5e1d15c8a84b43ad29b1c01f3613849bfce8453e --- /dev/null +++ b/vlm/train/jNTeYscgSw8/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bc20ca3f05cc80746bc287b72f6bbfb8d2d41a8dfd2e1f9eac665b5dc4dc9d5e +size 539838 diff --git a/vlm/train/jNTeYscgSw8/9.png b/vlm/train/jNTeYscgSw8/9.png new file mode 100644 index 0000000000000000000000000000000000000000..aaa399b587f19cf2d2527d3ce502feb7bf1dc76b --- /dev/null +++ b/vlm/train/jNTeYscgSw8/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7537645ac2cdefe0693df871af822238e30b8efb69913bd0ac31e4bd09923551 +size 536646 diff --git a/vlm/train/kN4mGdGWc92/0.png b/vlm/train/kN4mGdGWc92/0.png new file mode 100644 index 0000000000000000000000000000000000000000..e6b0822dfbac52d5674f80df1343512c2f8436e8 --- /dev/null +++ b/vlm/train/kN4mGdGWc92/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1613f1bb9a93b619de19d4a6e5d9d66e067ce5f8c1b2a7bb72b7ae061a90db31 +size 472615 diff --git a/vlm/train/kN4mGdGWc92/1.png b/vlm/train/kN4mGdGWc92/1.png new file mode 100644 index 0000000000000000000000000000000000000000..1db760bbb1bcae4251125253ec94c86225113b28 --- /dev/null +++ b/vlm/train/kN4mGdGWc92/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4d2b6b142c90a39058a7522e9d6069002a2e2c7cf5c709d56902761eb10aee42 +size 536624 diff --git a/vlm/train/kN4mGdGWc92/10.png b/vlm/train/kN4mGdGWc92/10.png new file mode 100644 index 0000000000000000000000000000000000000000..0890736d80190fcd361ea2d87b83283f026c08be --- /dev/null +++ b/vlm/train/kN4mGdGWc92/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1a4222f7dfb3d7361914a4b8ae5f0cd23729af5c26c62a920d294e7456805e4c +size 657523 diff --git a/vlm/train/kN4mGdGWc92/11.png b/vlm/train/kN4mGdGWc92/11.png new file mode 100644 index 0000000000000000000000000000000000000000..1abb062d6f2e248a2eaa3345117c1ffd1a64d56d --- /dev/null +++ b/vlm/train/kN4mGdGWc92/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5a781c29362bcfe50c6abd9a98ba00cde3d592fe0c10159a962e6f9f7fb90dcb +size 657761 diff --git a/vlm/train/kN4mGdGWc92/12.png b/vlm/train/kN4mGdGWc92/12.png new file mode 100644 index 0000000000000000000000000000000000000000..d6873e386dca04a696f4cd4ddc5561d91e53bcb8 --- /dev/null +++ b/vlm/train/kN4mGdGWc92/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:868e06a2a29b7aa97af5058eb0cbe869e5167fdaa1c951629fbf627207417547 +size 421124 diff --git a/vlm/train/kN4mGdGWc92/2.png b/vlm/train/kN4mGdGWc92/2.png new file mode 100644 index 0000000000000000000000000000000000000000..fcda7fbaf0433fae03cb764d01f57879fd57ce6e --- /dev/null +++ b/vlm/train/kN4mGdGWc92/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2be88ff5b636683a3b77f764450ce273bc3ff0ea9bd66406f86d4545b90d588a +size 501983 diff --git a/vlm/train/kN4mGdGWc92/3.png b/vlm/train/kN4mGdGWc92/3.png new file mode 100644 index 0000000000000000000000000000000000000000..62aa17c50bf07d11a92bee1e0cb5346bbb2c1a07 --- /dev/null +++ b/vlm/train/kN4mGdGWc92/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d44e653a13ee9c103b7bf931497e2145b941757c9c0d31e0b84cdd42445e3e48 +size 479251 diff --git a/vlm/train/kN4mGdGWc92/4.png b/vlm/train/kN4mGdGWc92/4.png new file mode 100644 index 0000000000000000000000000000000000000000..82b64e532645eb2f9991e827f3a557b691284fc1 --- /dev/null +++ b/vlm/train/kN4mGdGWc92/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ab5d061727538197f161b6f302d70e8169bfa9846a5bc11e87dbda957b0398d7 +size 460245 diff --git a/vlm/train/kN4mGdGWc92/5.png b/vlm/train/kN4mGdGWc92/5.png new file mode 100644 index 0000000000000000000000000000000000000000..9e7b9b073f81098d754fdfeb0be2f9b04eeec767 --- /dev/null +++ b/vlm/train/kN4mGdGWc92/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f528dc2f293f43b1299880ae4ca7102b41b4e4d889984f84cf7e09dd039ea3e7 +size 469553 diff --git a/vlm/train/kN4mGdGWc92/6.png b/vlm/train/kN4mGdGWc92/6.png new file mode 100644 index 0000000000000000000000000000000000000000..6262be8ecf62c9a6bdcc5740ae5871b4bdd2acb5 --- /dev/null +++ b/vlm/train/kN4mGdGWc92/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:815ebc2166345864fed3949b5a68ebb883cdfd717817279deaa3abf9d8094ddb +size 510528 diff --git a/vlm/train/kN4mGdGWc92/7.png b/vlm/train/kN4mGdGWc92/7.png new file mode 100644 index 0000000000000000000000000000000000000000..84a0b254d832714d888141bbbc55c9f7b00e7bb3 --- /dev/null +++ b/vlm/train/kN4mGdGWc92/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fdb7e77f0eb91be898bd58d6c45f7a1783fa24c072a3d657dadf4d4234fd58f3 +size 568794 diff --git a/vlm/train/kN4mGdGWc92/8.png b/vlm/train/kN4mGdGWc92/8.png new file mode 100644 index 0000000000000000000000000000000000000000..31a1d7d3921e4d1fc8d7889cefb2d90cea182d22 --- /dev/null +++ b/vlm/train/kN4mGdGWc92/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b0b1203e976770003121a4171dcbba1739ad3e6c1bf86578758d5b1ba4452dea +size 521395 diff --git a/vlm/train/kN4mGdGWc92/9.png b/vlm/train/kN4mGdGWc92/9.png new file mode 100644 index 0000000000000000000000000000000000000000..858566f50a7eec1d3c3e34166d6346cb656d425a --- /dev/null +++ b/vlm/train/kN4mGdGWc92/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ca81e83d9c981cdda92de2ee2563a4f08f9e6e99b54f664e6380ad878c043884 +size 631307 diff --git a/vlm/train/onxoVA9FxMw/0.png b/vlm/train/onxoVA9FxMw/0.png new file mode 100644 index 0000000000000000000000000000000000000000..da88ba03583433c4553089ccdc1685564eef4e98 --- /dev/null +++ b/vlm/train/onxoVA9FxMw/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0c2a9096aa8900ddf3efc94f60bfe8b60b448fe254da2feaac620aafaafcab7b +size 459395 diff --git a/vlm/train/onxoVA9FxMw/1.png b/vlm/train/onxoVA9FxMw/1.png new file mode 100644 index 0000000000000000000000000000000000000000..ce2c4a47f11b36788c77c6ebe28c5d6d86f2aae3 --- /dev/null +++ b/vlm/train/onxoVA9FxMw/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:54028775605c88179e1c2e9f156887111330c2e7073be37ecca9dbf9aac8e334 +size 615468 diff --git a/vlm/train/onxoVA9FxMw/10.png b/vlm/train/onxoVA9FxMw/10.png new file mode 100644 index 0000000000000000000000000000000000000000..561a08e0f798e8a48ad7fc327a5f17358bc182d2 --- /dev/null +++ b/vlm/train/onxoVA9FxMw/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2155489d530b85748c7784e95766320a105014503386b58a5f86b93f3275ccdd +size 597793 diff --git a/vlm/train/onxoVA9FxMw/11.png b/vlm/train/onxoVA9FxMw/11.png new file mode 100644 index 0000000000000000000000000000000000000000..36a6f37fb8def2b2fee28422cddb394d1b1a9e5d --- /dev/null +++ b/vlm/train/onxoVA9FxMw/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c9275d5f600e489388cf4314f77ac1b9a2b611424d3f5da5009cb807bb637aef +size 464015 diff --git a/vlm/train/onxoVA9FxMw/12.png b/vlm/train/onxoVA9FxMw/12.png new file mode 100644 index 0000000000000000000000000000000000000000..b62d094f9d0ea962176dc79cc1e5d06422581d94 --- /dev/null +++ b/vlm/train/onxoVA9FxMw/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7d7c523d3aa2bf75341bb145ef78dcf3ce8645ee21de9727646edd2af1da6f81 +size 503767 diff --git a/vlm/train/onxoVA9FxMw/13.png b/vlm/train/onxoVA9FxMw/13.png new file mode 100644 index 0000000000000000000000000000000000000000..8ce234aecd3ee3d9eef8a25b842e0379603c5532 --- /dev/null +++ b/vlm/train/onxoVA9FxMw/13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:12c0103ec0db6c221df18a7704262272f827e93457e1726361085efb987802c1 +size 461067 diff --git a/vlm/train/onxoVA9FxMw/14.png b/vlm/train/onxoVA9FxMw/14.png new file mode 100644 index 0000000000000000000000000000000000000000..e76ec09522acee144d870e1021fb2809b765aeba --- /dev/null +++ b/vlm/train/onxoVA9FxMw/14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e42cc9f9060afbea52c8c929f300c39e2be32faf2d658386a15a23e2d1c57595 +size 576269 diff --git a/vlm/train/onxoVA9FxMw/15.png b/vlm/train/onxoVA9FxMw/15.png new file mode 100644 index 0000000000000000000000000000000000000000..5179e071149b33d5f928bc6c83f61678c2ee1e2f --- /dev/null +++ b/vlm/train/onxoVA9FxMw/15.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3aee39357538a4730ec4bb28dfa4d688cad7002db615215055609a0e7edb9352 +size 453035 diff --git a/vlm/train/onxoVA9FxMw/16.png b/vlm/train/onxoVA9FxMw/16.png new file mode 100644 index 0000000000000000000000000000000000000000..19cc13c75d051b4cdd97d81a039fe00348adf7e4 --- /dev/null +++ b/vlm/train/onxoVA9FxMw/16.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2cc062749e1e26d48ad0cbd7152214a9e920485baf50ceb29a2118ca6bceadbc +size 1382079 diff --git a/vlm/train/onxoVA9FxMw/17.png b/vlm/train/onxoVA9FxMw/17.png new file mode 100644 index 0000000000000000000000000000000000000000..65c20b736c37fc4936baa8b76ce1e7c5c62bbb4e --- /dev/null +++ b/vlm/train/onxoVA9FxMw/17.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ff5a5c8447dc2fcc0e61719fad2e6115ab2a205c3e8090be34a6013acdad8b6a +size 683154 diff --git a/vlm/train/onxoVA9FxMw/18.png b/vlm/train/onxoVA9FxMw/18.png new file mode 100644 index 0000000000000000000000000000000000000000..4fb936a47c26be101c5aa10eed5bad567b7e6e37 --- /dev/null +++ b/vlm/train/onxoVA9FxMw/18.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:910740aacb26c22f7ce751a9536f51e39635433cee9ec80009321cbc90f0f612 +size 359532 diff --git a/vlm/train/onxoVA9FxMw/19.png b/vlm/train/onxoVA9FxMw/19.png new file mode 100644 index 0000000000000000000000000000000000000000..a571a0594dec023cdba0ace65b5e94e5619613d9 --- /dev/null +++ b/vlm/train/onxoVA9FxMw/19.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2cbb51f6338515134ee5e5da7514ae7d50496e56e2542a84fca61af985319852 +size 278108 diff --git a/vlm/train/onxoVA9FxMw/2.png b/vlm/train/onxoVA9FxMw/2.png new file mode 100644 index 0000000000000000000000000000000000000000..d926fce4ff112f9e5d4d539ee2cabd3dd03ea4e8 --- /dev/null +++ b/vlm/train/onxoVA9FxMw/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:42c54caf3ad50ea2d0625c5f0127a06d1e74a047b983cf012d7a30123a44e31b +size 513596 diff --git a/vlm/train/onxoVA9FxMw/20.png b/vlm/train/onxoVA9FxMw/20.png new file mode 100644 index 0000000000000000000000000000000000000000..de8d14408bbfcfc7e04023e35ccba6a1abdef8e1 --- /dev/null +++ b/vlm/train/onxoVA9FxMw/20.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:39bf1a71974f9f5967222506e4171ab05dc6f9a665638cf302714c9a018851a8 +size 1760970 diff --git a/vlm/train/onxoVA9FxMw/3.png b/vlm/train/onxoVA9FxMw/3.png new file mode 100644 index 0000000000000000000000000000000000000000..fd534bdb3a0ed7734b01d65f6aa4b403b89ac999 --- /dev/null +++ b/vlm/train/onxoVA9FxMw/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2dff75ea8514a898949baaa5d9074e43ea67894c6629b865b65767b4d24278d6 +size 531238 diff --git a/vlm/train/onxoVA9FxMw/4.png b/vlm/train/onxoVA9FxMw/4.png new file mode 100644 index 0000000000000000000000000000000000000000..7b44cd11ff036a37e73df3ff4d4766d7b0805551 --- /dev/null +++ b/vlm/train/onxoVA9FxMw/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:54577c222b3ba2d37feb29d773421000ae0609d3d687df24a3b0a2c4ad4d5ec2 +size 932618 diff --git a/vlm/train/onxoVA9FxMw/5.png b/vlm/train/onxoVA9FxMw/5.png new file mode 100644 index 0000000000000000000000000000000000000000..234ea4d6963ccd17f58539443f26557d3d3b93c0 --- /dev/null +++ b/vlm/train/onxoVA9FxMw/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b06dfb7d9984f72d145c82b527841dc17f74dc74286552bbe0bb29a21d7c76ed +size 1092073 diff --git a/vlm/train/onxoVA9FxMw/6.png b/vlm/train/onxoVA9FxMw/6.png new file mode 100644 index 0000000000000000000000000000000000000000..d7790a720e83f1264abdc86ce90a11b754d24408 --- /dev/null +++ b/vlm/train/onxoVA9FxMw/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8d6761b95b1d407eb65de7922c9d8f42962bde1d718d241058fc851289398ed7 +size 577562 diff --git a/vlm/train/onxoVA9FxMw/7.png b/vlm/train/onxoVA9FxMw/7.png new file mode 100644 index 0000000000000000000000000000000000000000..63e11db6cca33e4fd014672e4c0c551ad38628d4 --- /dev/null +++ b/vlm/train/onxoVA9FxMw/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01da98668b15449d1d0b2949415238f36c6c5bc2cfbdca5344ce2960cbbb5f71 +size 586909 diff --git a/vlm/train/onxoVA9FxMw/8.png b/vlm/train/onxoVA9FxMw/8.png new file mode 100644 index 0000000000000000000000000000000000000000..ee25b135a00b53a38d5c37e448ad625baa42755b --- /dev/null +++ b/vlm/train/onxoVA9FxMw/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5350744089c84447ecd6e87c80449460a06aafa8efb53c725174f530ab57d952 +size 549334 diff --git a/vlm/train/onxoVA9FxMw/9.png b/vlm/train/onxoVA9FxMw/9.png new file mode 100644 index 0000000000000000000000000000000000000000..e2b06c511113b282fe01e49ab38f05fa758cbeef --- /dev/null +++ b/vlm/train/onxoVA9FxMw/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:686d59614db4f40b185fb0c72a1b02d80bd1cd02f5d49241ea6342c3688e0157 +size 531886 diff --git a/vlm/train/r1lIKlSYvH/0.png b/vlm/train/r1lIKlSYvH/0.png new file mode 100644 index 0000000000000000000000000000000000000000..7d7f4a34e3ef087389d754d09e97905ede8919e8 --- /dev/null +++ b/vlm/train/r1lIKlSYvH/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:802f371e58ef9b2b517ae8e936eb34250413cf4d19e132fdc7c84857151f75a4 +size 477808 diff --git a/vlm/train/r1lIKlSYvH/1.png b/vlm/train/r1lIKlSYvH/1.png new file mode 100644 index 0000000000000000000000000000000000000000..4860b95aa43e5aac5ab9f02d70c31735fe2402b7 --- /dev/null +++ b/vlm/train/r1lIKlSYvH/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:80d017b0efd3511e570f2bc1fb079abc3b3d60805f18a00862389e93c6bbd36e +size 555539 diff --git a/vlm/train/r1lIKlSYvH/10.png b/vlm/train/r1lIKlSYvH/10.png new file mode 100644 index 0000000000000000000000000000000000000000..65b6d19891b9a3097cf511725b2702d3e364ae0c --- /dev/null +++ b/vlm/train/r1lIKlSYvH/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3c4fa42a97159b4d2a26b799a5b411e98c8fdb740bee15fc18be5b97fe6d8037 +size 472919 diff --git a/vlm/train/r1lIKlSYvH/11.png b/vlm/train/r1lIKlSYvH/11.png new file mode 100644 index 0000000000000000000000000000000000000000..100b87d21c2468cc195df379eaf92fc0cb0ddca8 --- /dev/null +++ b/vlm/train/r1lIKlSYvH/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fab10f2c9fc9ba23284194461c0fffd4f751e45d3544e77f4da2d0432a8ec9f2 +size 435399 diff --git a/vlm/train/r1lIKlSYvH/12.png b/vlm/train/r1lIKlSYvH/12.png new file mode 100644 index 0000000000000000000000000000000000000000..c9c58865517c81049111d15ae21847a1f5d26f83 --- /dev/null +++ b/vlm/train/r1lIKlSYvH/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c763c680d3d7defa08e185adc809e52838fca039a88fd6b152516976b6cd468a +size 298026 diff --git a/vlm/train/r1lIKlSYvH/13.png b/vlm/train/r1lIKlSYvH/13.png new file mode 100644 index 0000000000000000000000000000000000000000..a0cbf44c15d3d58411fb0de8d4430c94b997319d --- /dev/null +++ b/vlm/train/r1lIKlSYvH/13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d6f1e3f0425b6388565ccd08e2306c6fa6113527f81f9243efc9a1d2481d3b63 +size 372100 diff --git a/vlm/train/r1lIKlSYvH/14.png b/vlm/train/r1lIKlSYvH/14.png new file mode 100644 index 0000000000000000000000000000000000000000..6087d6fe0e66839407c8d7ddb61114935a4a3ca8 --- /dev/null +++ b/vlm/train/r1lIKlSYvH/14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3a14d84bca302cd33b91ada04c3439c87122dfb3ce4b68c4e30bdbb7840a1254 +size 367981 diff --git a/vlm/train/r1lIKlSYvH/15.png b/vlm/train/r1lIKlSYvH/15.png new file mode 100644 index 0000000000000000000000000000000000000000..523b00527345f050bdce83f955e7a442f60ed026 --- /dev/null +++ b/vlm/train/r1lIKlSYvH/15.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6137761e2c8f48b82782778d8a66b8a879637765e9007e4b7f01d7bac3029200 +size 390120 diff --git a/vlm/train/r1lIKlSYvH/16.png b/vlm/train/r1lIKlSYvH/16.png new file mode 100644 index 0000000000000000000000000000000000000000..3cc4deaafaa5d35ae6d40bba363490d0eaddf9ad --- /dev/null +++ b/vlm/train/r1lIKlSYvH/16.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:538017f03d9e02d22708ff4ee18a4a968d780b85e2cbf60661fedf35169c39f5 +size 511878 diff --git a/vlm/train/r1lIKlSYvH/17.png b/vlm/train/r1lIKlSYvH/17.png new file mode 100644 index 0000000000000000000000000000000000000000..0aa932c7f75afcdc6724206171a4f1443735978c --- /dev/null +++ b/vlm/train/r1lIKlSYvH/17.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bcc302c54d6a1d70f516f16be11ed7e730ee42a75d5a33a93aeb2f692ffcf5a4 +size 339106 diff --git a/vlm/train/r1lIKlSYvH/18.png b/vlm/train/r1lIKlSYvH/18.png new file mode 100644 index 0000000000000000000000000000000000000000..9e36373c3e0c66bf04c86e29175ee234a6118326 --- /dev/null +++ b/vlm/train/r1lIKlSYvH/18.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d4accf372903ffa80ed102ae2d7a5ea3b48aadae84b5e666c7667232d1578f61 +size 188925 diff --git a/vlm/train/r1lIKlSYvH/2.png b/vlm/train/r1lIKlSYvH/2.png new file mode 100644 index 0000000000000000000000000000000000000000..916e7fc615a3546283c9fe03ac0189934bf7bcc6 --- /dev/null +++ b/vlm/train/r1lIKlSYvH/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:60e55217368137a110a17704a709c32f8e49c84cf39c506614f9e9d5ca9df754 +size 610470 diff --git a/vlm/train/r1lIKlSYvH/3.png b/vlm/train/r1lIKlSYvH/3.png new file mode 100644 index 0000000000000000000000000000000000000000..74cc95e3a1bb87b252f264fbf07daad29ef9d02d --- /dev/null +++ b/vlm/train/r1lIKlSYvH/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e928050b7f8147fbd29d6f23af730906f16135f991f40fe39dc0f21b3bd4a4fc +size 589705 diff --git a/vlm/train/r1lIKlSYvH/4.png b/vlm/train/r1lIKlSYvH/4.png new file mode 100644 index 0000000000000000000000000000000000000000..7de32567be1deedc904d52d94798bd63dbd14bd0 --- /dev/null +++ b/vlm/train/r1lIKlSYvH/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c019c16aeadf82375fa7567b54a63b407670e8f2fdb155fbaa5d5fbd8b5e02ab +size 541254 diff --git a/vlm/train/r1lIKlSYvH/5.png b/vlm/train/r1lIKlSYvH/5.png new file mode 100644 index 0000000000000000000000000000000000000000..8cb76fff0211b58ed6ea1f948c55d13c71584786 --- /dev/null +++ b/vlm/train/r1lIKlSYvH/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5496b43f4a7234e19daf0bd3c44fa6a203a859af6e2aa95af90d1fce9e84a6c6 +size 536609 diff --git a/vlm/train/r1lIKlSYvH/6.png b/vlm/train/r1lIKlSYvH/6.png new file mode 100644 index 0000000000000000000000000000000000000000..bc6d2a45b8ae773ca52c07fed294b9cd47f15e8b --- /dev/null +++ b/vlm/train/r1lIKlSYvH/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5a8d719c836d0aa02951fcaa643929c8c18ae8766e3d268c86804db82253b7f0 +size 567536 diff --git a/vlm/train/r1lIKlSYvH/7.png b/vlm/train/r1lIKlSYvH/7.png new file mode 100644 index 0000000000000000000000000000000000000000..db4b36b3bf843ac442462e15323e479a20c2292f --- /dev/null +++ b/vlm/train/r1lIKlSYvH/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7db841b2a12df6f3f0bc26b630364d1727fc0fb7a825038ec050c12e1b63cae8 +size 564355 diff --git a/vlm/train/r1lIKlSYvH/8.png b/vlm/train/r1lIKlSYvH/8.png new file mode 100644 index 0000000000000000000000000000000000000000..334b9e026d575949c51afe51f65ef5d2c4fd89be --- /dev/null +++ b/vlm/train/r1lIKlSYvH/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1fb474094b3200f5672bbae696f481f6822ad79c54e6267ab7dd7cf2a162fe26 +size 505405 diff --git a/vlm/train/r1lIKlSYvH/9.png b/vlm/train/r1lIKlSYvH/9.png new file mode 100644 index 0000000000000000000000000000000000000000..8d7660d1f000c229de0f533cef59412ab95fee2b --- /dev/null +++ b/vlm/train/r1lIKlSYvH/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fe17b93547f930fe32ca70266c1d794c72b1381b3349ab2021ecabd92a6a8d70 +size 494824 diff --git a/vlm/train/r1lnxTEYPS/0.png b/vlm/train/r1lnxTEYPS/0.png new file mode 100644 index 0000000000000000000000000000000000000000..3301f339f65df4b5a7234bef61f339ec7339aebd --- /dev/null +++ b/vlm/train/r1lnxTEYPS/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aedf89d5cf5552a531b96ef4e517756815880073c1323841a96a070de1820ad2 +size 544026 diff --git a/vlm/train/r1lnxTEYPS/1.png b/vlm/train/r1lnxTEYPS/1.png new file mode 100644 index 0000000000000000000000000000000000000000..563e9c215ab0344e246cfec16505c28e07f0b5a9 --- /dev/null +++ b/vlm/train/r1lnxTEYPS/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:65cf590a3fa0c67915955e31260e3931c3fe2c33efe408a4a6ed2f9fa8009cb2 +size 577203 diff --git a/vlm/train/r1lnxTEYPS/10.png b/vlm/train/r1lnxTEYPS/10.png new file mode 100644 index 0000000000000000000000000000000000000000..58d64f8f8b7bf8fba50730e28930e434af38ffff --- /dev/null +++ b/vlm/train/r1lnxTEYPS/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:abc4d3dc6944ef6c67234c5d7040732a7f8ae9234bce6b74721e0f79162dcd44 +size 588565 diff --git a/vlm/train/r1lnxTEYPS/11.png b/vlm/train/r1lnxTEYPS/11.png new file mode 100644 index 0000000000000000000000000000000000000000..77261e91cb80eca906810de81bf0e1ae933c297d --- /dev/null +++ b/vlm/train/r1lnxTEYPS/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c28bf973101257476bb1ea1b89b945655ef4e2cc0a9ccf8f0d5ed4ac91e14933 +size 365929 diff --git a/vlm/train/r1lnxTEYPS/12.png b/vlm/train/r1lnxTEYPS/12.png new file mode 100644 index 0000000000000000000000000000000000000000..b403d7acd37e50f68305ce12d616af816a907720 --- /dev/null +++ b/vlm/train/r1lnxTEYPS/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:016f14e5d74e0ac8b447c21b3362163b062ebdcbe8508cea75a2c9f76cef3420 +size 474068 diff --git a/vlm/train/r1lnxTEYPS/13.png b/vlm/train/r1lnxTEYPS/13.png new file mode 100644 index 0000000000000000000000000000000000000000..bddb20af1ca0725e5a6fce23d8a00c306e7c1474 --- /dev/null +++ b/vlm/train/r1lnxTEYPS/13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:595bec94eab545e22522d668da20c474e6fce7f6e874147efa5edafefe265ba6 +size 475900 diff --git a/vlm/train/r1lnxTEYPS/14.png b/vlm/train/r1lnxTEYPS/14.png new file mode 100644 index 0000000000000000000000000000000000000000..6315f7a86721900f9c7ddebd84022e71dceee68b --- /dev/null +++ b/vlm/train/r1lnxTEYPS/14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:19b8dfc21001beb0589f0fa6934499bd43be2bcc6926262b86d6b2d968ea1867 +size 421620 diff --git a/vlm/train/r1lnxTEYPS/2.png b/vlm/train/r1lnxTEYPS/2.png new file mode 100644 index 0000000000000000000000000000000000000000..0b3cc5a572bf1f32056ce9eea8e530c6cdd9712b --- /dev/null +++ b/vlm/train/r1lnxTEYPS/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bfd252d9e708154be3695d2c59bf5f58ab23c246612fba9b866d1170a9f53713 +size 635257 diff --git a/vlm/train/r1lnxTEYPS/3.png b/vlm/train/r1lnxTEYPS/3.png new file mode 100644 index 0000000000000000000000000000000000000000..34e41de984088ab90461c6e640ce4bc3afe2b245 --- /dev/null +++ b/vlm/train/r1lnxTEYPS/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:52d49ea540555cca2b62c06651454da173488a4743d9e9370c305418a6a787e7 +size 514216 diff --git a/vlm/train/r1lnxTEYPS/4.png b/vlm/train/r1lnxTEYPS/4.png new file mode 100644 index 0000000000000000000000000000000000000000..8a8e22ac5ab793de6e65c8823a92038cdf4e18e9 --- /dev/null +++ b/vlm/train/r1lnxTEYPS/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e2be492b3a8a94241e3432523c03d1cc62795caa3187e80a98118a80e4bd3e43 +size 708907 diff --git a/vlm/train/r1lnxTEYPS/5.png b/vlm/train/r1lnxTEYPS/5.png new file mode 100644 index 0000000000000000000000000000000000000000..35a379518e21015fd5d2f0c05fbbd7f3f1afd669 --- /dev/null +++ b/vlm/train/r1lnxTEYPS/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5ec3f0f86f9df8fe6da751204603d26562436e1bb413ee00299e14a8b308b814 +size 652455 diff --git a/vlm/train/r1lnxTEYPS/6.png b/vlm/train/r1lnxTEYPS/6.png new file mode 100644 index 0000000000000000000000000000000000000000..8fd8514dddbf320651ef30b242c35ee939f5e699 --- /dev/null +++ b/vlm/train/r1lnxTEYPS/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0d34f9d3c655070ff82979b9b69f4152b30e2eee76d9c14300001c4f6b2caa98 +size 567836 diff --git a/vlm/train/r1lnxTEYPS/7.png b/vlm/train/r1lnxTEYPS/7.png new file mode 100644 index 0000000000000000000000000000000000000000..286b379a941ec07d49ceba49068ef0cc35c5541b --- /dev/null +++ b/vlm/train/r1lnxTEYPS/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5051d75181074173eaf052e2aa7fd49d6df1be43060bfde6870e64b419eeafe2 +size 536323 diff --git a/vlm/train/r1lnxTEYPS/8.png b/vlm/train/r1lnxTEYPS/8.png new file mode 100644 index 0000000000000000000000000000000000000000..eec3500301b05265b1e98d207ab1e5086794edad --- /dev/null +++ b/vlm/train/r1lnxTEYPS/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f67bc0f9fc843bee27a877b6c61a51cd600f9329eead3c8ec6996700c94bb9d4 +size 506750 diff --git a/vlm/train/r1lnxTEYPS/9.png b/vlm/train/r1lnxTEYPS/9.png new file mode 100644 index 0000000000000000000000000000000000000000..f5d624e7436a204eaf62b6a323444d9657784101 --- /dev/null +++ b/vlm/train/r1lnxTEYPS/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:436dbbeb69a285f2faabb94fcc18ce9f29a8c9c1ea33297149f76ada9225735e +size 557910 diff --git a/vlm/train/rJwelMbR-/0.png b/vlm/train/rJwelMbR-/0.png new file mode 100644 index 0000000000000000000000000000000000000000..e12f43629bec00ac9e0d7637137a9a206ddc5a3f --- /dev/null +++ b/vlm/train/rJwelMbR-/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:137380d40fb9e06bde61096b6c9a080604e4a28d5fc9575af826991ed5c97bce +size 499478 diff --git a/vlm/train/rJwelMbR-/1.png b/vlm/train/rJwelMbR-/1.png new file mode 100644 index 0000000000000000000000000000000000000000..0dcdec1f0adb1d2e818ca220a3de7c9e3798ad10 --- /dev/null +++ b/vlm/train/rJwelMbR-/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:70e220164cb95163249325091136043241aca3e82eb3f44e7de6757bbe8ff6ac +size 592518 diff --git a/vlm/train/rJwelMbR-/10.png b/vlm/train/rJwelMbR-/10.png new file mode 100644 index 0000000000000000000000000000000000000000..aa87dc9556b51c749a88e067545fc00cc6651036 --- /dev/null +++ b/vlm/train/rJwelMbR-/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:893bfbd6a9d7e8c4f39ff1b8d78a88a9459f2ee8ad827c6eab4690270801b648 +size 279208 diff --git a/vlm/train/rJwelMbR-/11.png b/vlm/train/rJwelMbR-/11.png new file mode 100644 index 0000000000000000000000000000000000000000..f531881f5357440b1ef53c760c5103322923b430 --- /dev/null +++ b/vlm/train/rJwelMbR-/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:11458adc7435e3e09abe8102fad9490c54fbc9d15d4662da6e12d007de4e336e +size 314443 diff --git a/vlm/train/rJwelMbR-/12.png b/vlm/train/rJwelMbR-/12.png new file mode 100644 index 0000000000000000000000000000000000000000..677ded180f281e442c232999a167c10894276d7a --- /dev/null +++ b/vlm/train/rJwelMbR-/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b058d5e2a808265eb8f7360c9255f95e8d1aaf537101701c4d15a6f4a25cb727 +size 510129 diff --git a/vlm/train/rJwelMbR-/13.png b/vlm/train/rJwelMbR-/13.png new file mode 100644 index 0000000000000000000000000000000000000000..160334b6477b5c1c63261a284fcb989dde8cde75 --- /dev/null +++ b/vlm/train/rJwelMbR-/13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aaecad459ac0b299a7835bc1e7870d834c14d7e5abbf3ded0dfd105f8f8e6b12 +size 253762 diff --git a/vlm/train/rJwelMbR-/2.png b/vlm/train/rJwelMbR-/2.png new file mode 100644 index 0000000000000000000000000000000000000000..8cfacb3b86be74bcff3b29d5c94dd4e22770836e --- /dev/null +++ b/vlm/train/rJwelMbR-/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:19dbc9b7dff15547e17aebcc905180d99aa4f620b259450d7a6669b3132600f1 +size 570422 diff --git a/vlm/train/rJwelMbR-/3.png b/vlm/train/rJwelMbR-/3.png new file mode 100644 index 0000000000000000000000000000000000000000..3f401433a54e713a774f18e7b8f5560916469efc --- /dev/null +++ b/vlm/train/rJwelMbR-/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d7785725e553487c5d344187668819fe6ff3d455e2c5a7d81bdea9e3f7851b9e +size 498525 diff --git a/vlm/train/rJwelMbR-/4.png b/vlm/train/rJwelMbR-/4.png new file mode 100644 index 0000000000000000000000000000000000000000..36f9cb0cff94352f67ea036b27e41fe70626cc01 --- /dev/null +++ b/vlm/train/rJwelMbR-/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6ad74cb3ebdbd7ac366ff09e4e5165b4f85a83559e07ef6641be613e7bcbafde +size 465237 diff --git a/vlm/train/rJwelMbR-/5.png b/vlm/train/rJwelMbR-/5.png new file mode 100644 index 0000000000000000000000000000000000000000..adf3a79b7935fc6e34132e541f48b45423e02021 --- /dev/null +++ b/vlm/train/rJwelMbR-/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3e6e1f9d5baa432703ca8cd3aa71997df1388feaf6c023e580299ca06287f212 +size 549311 diff --git a/vlm/train/rJwelMbR-/6.png b/vlm/train/rJwelMbR-/6.png new file mode 100644 index 0000000000000000000000000000000000000000..8129c6f1faaa547744ecc72677a1e2cec4ee6519 --- /dev/null +++ b/vlm/train/rJwelMbR-/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a8f09f8631f3305987b72f3c9cd4030ca68f72cf470961f2be7512651e7e32c3 +size 643486 diff --git a/vlm/train/rJwelMbR-/7.png b/vlm/train/rJwelMbR-/7.png new file mode 100644 index 0000000000000000000000000000000000000000..25d131a79240a11e8e1c529c4c34bd217da86c86 --- /dev/null +++ b/vlm/train/rJwelMbR-/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:40c68d4fa93da64e15822c1465271576b681fedbb87f25d1a7e85fb1cc60fd95 +size 520358 diff --git a/vlm/train/rJwelMbR-/8.png b/vlm/train/rJwelMbR-/8.png new file mode 100644 index 0000000000000000000000000000000000000000..80f318b355b77f74fd2227937c96f43c282742b5 --- /dev/null +++ b/vlm/train/rJwelMbR-/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cf36556bbd9a2f450921e5de4b3070e01401f00035d107bf809747ae5c6f0386 +size 468833 diff --git a/vlm/train/rJwelMbR-/9.png b/vlm/train/rJwelMbR-/9.png new file mode 100644 index 0000000000000000000000000000000000000000..98eb168726d1888a46870f4b55ecf0c1ba362d9a --- /dev/null +++ b/vlm/train/rJwelMbR-/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fa7765fb32d0b316e1dde2f63397fd953c10894d3013820a5c1e7ad8c1de3cbc +size 421430 diff --git a/vlm/train/rJxDkvqee/0.png b/vlm/train/rJxDkvqee/0.png new file mode 100644 index 0000000000000000000000000000000000000000..03e9e1c0cc9eaf9c4eff5715f9eaf5a533e26a37 --- /dev/null +++ b/vlm/train/rJxDkvqee/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:56190d906aed14347edf3d2522329ac3f70614bf713955f2f927bafdd7772dc5 +size 510579 diff --git a/vlm/train/rJxDkvqee/1.png b/vlm/train/rJxDkvqee/1.png new file mode 100644 index 0000000000000000000000000000000000000000..df769ef608957e050cd53d8fd2556b8987e55c30 --- /dev/null +++ b/vlm/train/rJxDkvqee/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:61a5fd62979daaa9089b16b7843c3bc24f5a5d71ec4d7bea57425a2b4aa365fc +size 530937 diff --git a/vlm/train/rJxDkvqee/10.png b/vlm/train/rJxDkvqee/10.png new file mode 100644 index 0000000000000000000000000000000000000000..a3a95a9c8fdbea82de370f350dadd8ba98325816 --- /dev/null +++ b/vlm/train/rJxDkvqee/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:63cf26f76b5100cda6b0524d999d7fb16d2bacd543a2195b43845d4983b4f059 +size 528475 diff --git a/vlm/train/rJxDkvqee/11.png b/vlm/train/rJxDkvqee/11.png new file mode 100644 index 0000000000000000000000000000000000000000..7c34b7f5f293b01d14014ec81a7840ef13d5b2f3 --- /dev/null +++ b/vlm/train/rJxDkvqee/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0413158677837517abe08d09f7908df8288de60c42d0fcf908f45eb0e83d5146 +size 236325 diff --git a/vlm/train/rJxDkvqee/12.png b/vlm/train/rJxDkvqee/12.png new file mode 100644 index 0000000000000000000000000000000000000000..132dee85aa20e3573e26a22e404f0ecbb7e0b6d5 --- /dev/null +++ b/vlm/train/rJxDkvqee/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8eca883295b102c8b3345d39547f72be6dc94314e24634fe1c4f38efeab5493c +size 302147 diff --git a/vlm/train/rJxDkvqee/2.png b/vlm/train/rJxDkvqee/2.png new file mode 100644 index 0000000000000000000000000000000000000000..cffe547613761222af9f0942b8edcb268b1ce24f --- /dev/null +++ b/vlm/train/rJxDkvqee/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d41f8d3e0c68872e4836ca6334e268916d1f686c776841850e0c8e4da5fc462f +size 511142 diff --git a/vlm/train/rJxDkvqee/3.png b/vlm/train/rJxDkvqee/3.png new file mode 100644 index 0000000000000000000000000000000000000000..80fab13f82aa598e295fe493e7b192b9da9d368c --- /dev/null +++ b/vlm/train/rJxDkvqee/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:65dd58983ba88017d2283a429bfa083dd65fbaf7881aeb57c33104e33fe5400e +size 590783 diff --git a/vlm/train/rJxDkvqee/4.png b/vlm/train/rJxDkvqee/4.png new file mode 100644 index 0000000000000000000000000000000000000000..fafd8c741300b97b866f560d3367933dd341287c --- /dev/null +++ b/vlm/train/rJxDkvqee/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ea9dbb2a7c0188f5562e76238f643629287c21540aa468b80680041e9b8d4ece +size 586367 diff --git a/vlm/train/rJxDkvqee/5.png b/vlm/train/rJxDkvqee/5.png new file mode 100644 index 0000000000000000000000000000000000000000..e2486d3ed34694f4a8e70d589e46544f403a4180 --- /dev/null +++ b/vlm/train/rJxDkvqee/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4bccb3e31b6db5da293d0d15dd1b72c839f931cde6ddd4c9fe09d484ddcf1267 +size 568951 diff --git a/vlm/train/rJxDkvqee/6.png b/vlm/train/rJxDkvqee/6.png new file mode 100644 index 0000000000000000000000000000000000000000..4f48a8f23484b983608f283bea261c47d2ffb017 --- /dev/null +++ b/vlm/train/rJxDkvqee/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:68bcecf3228bafaac2eb9f1bcf50b3d1f20e45652e585730ae97fc068d637bd1 +size 452507 diff --git a/vlm/train/rJxDkvqee/7.png b/vlm/train/rJxDkvqee/7.png new file mode 100644 index 0000000000000000000000000000000000000000..f3ded65a3434eabdc7fcc629194abdff5c9e886f --- /dev/null +++ b/vlm/train/rJxDkvqee/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3df81426b8d14687ee998dd7edc09391f106fdadf1c0319fa44bb8504a61a416 +size 528931 diff --git a/vlm/train/rJxDkvqee/8.png b/vlm/train/rJxDkvqee/8.png new file mode 100644 index 0000000000000000000000000000000000000000..de3260b049ac2cc3a0a5e74638067a21a9a8d316 --- /dev/null +++ b/vlm/train/rJxDkvqee/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3828c97469cb5ed927b1d2a4ef2a7a8ad7bfcf7472f41131ae790f8703de4a5a +size 329945 diff --git a/vlm/train/rJxDkvqee/9.png b/vlm/train/rJxDkvqee/9.png new file mode 100644 index 0000000000000000000000000000000000000000..e79a159751b5ffc68771d1ba7b72ded488990dd8 --- /dev/null +++ b/vlm/train/rJxDkvqee/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3ae40ae7c7c6e8b681278aeef874544cbca88e7804adf99e8cce54da6011f01e +size 556133 diff --git a/vlm/train/rkgpy3C5tX/13.png b/vlm/train/rkgpy3C5tX/13.png new file mode 100644 index 0000000000000000000000000000000000000000..09ee7e32fcf9042be8178dc31075bbf8d2431d1c --- /dev/null +++ b/vlm/train/rkgpy3C5tX/13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5ce9fe0f71f43a3d927d01cfe7b71347116a6b8247baad5d49e5959f72bc2d9b +size 190440 diff --git a/vlm/train/rkgpy3C5tX/4.png b/vlm/train/rkgpy3C5tX/4.png new file mode 100644 index 0000000000000000000000000000000000000000..4baa64de87ae2340c762f2cacbcc33c1482ac15f --- /dev/null +++ b/vlm/train/rkgpy3C5tX/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:35f50ea8f43228068c69cf5ab2d3f3ffbc3b76fca03f28f6847f58fd19b65fbb +size 620518 diff --git a/vlm/train/rkxaNjA9Ym/10.png b/vlm/train/rkxaNjA9Ym/10.png new file mode 100644 index 0000000000000000000000000000000000000000..9d15fc51fde2a454162942a88b7aa162672eeacd --- /dev/null +++ b/vlm/train/rkxaNjA9Ym/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f03601eda01010ab638fbdb5a2808cbd70c598d029a767327a5c7d57313e0ce6 +size 465278 diff --git a/vlm/train/rkxaNjA9Ym/17.png b/vlm/train/rkxaNjA9Ym/17.png new file mode 100644 index 0000000000000000000000000000000000000000..da76342fee9965c4d59b7311d499691c2a2b35dc --- /dev/null +++ b/vlm/train/rkxaNjA9Ym/17.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b799f4c60072356cf7a0b8d79e9a8f6fea2dfd56bafe39695ba3c6c5b5008848 +size 250411 diff --git a/vlm/train/rkxaNjA9Ym/21.png b/vlm/train/rkxaNjA9Ym/21.png new file mode 100644 index 0000000000000000000000000000000000000000..94e5eb168a4039f251b177e30ffffdec55fb4961 --- /dev/null +++ b/vlm/train/rkxaNjA9Ym/21.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1eedd939eeab87f46a47a3ba7dde7726913d9701d8b432c64a64b5b6620de134 +size 359573 diff --git a/vlm/train/rkxaNjA9Ym/23.png b/vlm/train/rkxaNjA9Ym/23.png new file mode 100644 index 0000000000000000000000000000000000000000..ffef5f12d08ac973e235f71ecda2c62793d81630 --- /dev/null +++ b/vlm/train/rkxaNjA9Ym/23.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6639a2ed4ab906b60e623b5e955f971222de0cfbbf5271b1c4aef06ace38c9a8 +size 307378 diff --git a/vlm/train/rkxaNjA9Ym/24.png b/vlm/train/rkxaNjA9Ym/24.png new file mode 100644 index 0000000000000000000000000000000000000000..2ba700ff814c2066386df665f7377c8f2a77b1ba --- /dev/null +++ b/vlm/train/rkxaNjA9Ym/24.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4d3ce5d299f2e2d1efabad2b4e4f80e82cb8c62d0622b9251a5ef35d9566507d +size 291110 diff --git a/vlm/train/rkxaNjA9Ym/3.png b/vlm/train/rkxaNjA9Ym/3.png new file mode 100644 index 0000000000000000000000000000000000000000..0c3ca59094eb052b571f6f0da4190026cc8ca9c8 --- /dev/null +++ b/vlm/train/rkxaNjA9Ym/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:35d396a402465ceb5ad06fe14c05a21986061d12573c6b9842fd4476f0188de9 +size 501917 diff --git a/vlm/train/rkxaNjA9Ym/6.png b/vlm/train/rkxaNjA9Ym/6.png new file mode 100644 index 0000000000000000000000000000000000000000..203d0f32faf8a67a8198c2609053d476dc0fc2fb --- /dev/null +++ b/vlm/train/rkxaNjA9Ym/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4541223a19d01db149d919e729e09a8e243f5fd655b3bdc401658d874c3c719b +size 505962 diff --git a/vlm/train/rsf1z-JSj87/0.png b/vlm/train/rsf1z-JSj87/0.png new file mode 100644 index 0000000000000000000000000000000000000000..c85fcc4abb79fd820e0a96cdab48bb2b648bde6e --- /dev/null +++ b/vlm/train/rsf1z-JSj87/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:964ec4232d05b1a61b334111d69bb60277cd8ac1d9721a2f89a2481dd848f3d1 +size 495229 diff --git a/vlm/train/rsf1z-JSj87/1.png b/vlm/train/rsf1z-JSj87/1.png new file mode 100644 index 0000000000000000000000000000000000000000..d188c164ef4c9c6dd7df76ec174720f1217b6528 --- /dev/null +++ b/vlm/train/rsf1z-JSj87/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:28e81d0e7d95ce53262974738fa5e60f14c3f2a9c7469ef637d8a7121c4cf4e3 +size 571001 diff --git a/vlm/train/rsf1z-JSj87/10.png b/vlm/train/rsf1z-JSj87/10.png new file mode 100644 index 0000000000000000000000000000000000000000..39b292cade08bd63398b70c38353a379efa16883 --- /dev/null +++ b/vlm/train/rsf1z-JSj87/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f2f9ae326d743b22162b0df516453b1477a68f4c8fc9ce04ec96ec50292b713a +size 513521 diff --git a/vlm/train/rsf1z-JSj87/11.png b/vlm/train/rsf1z-JSj87/11.png new file mode 100644 index 0000000000000000000000000000000000000000..96a81705646b0a20ebce8b240e37b22ab0efed5e --- /dev/null +++ b/vlm/train/rsf1z-JSj87/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d0fa45e48a6721527b7aee418f60116af0d5f0a19b5258473409863c90560f28 +size 516285 diff --git a/vlm/train/rsf1z-JSj87/12.png b/vlm/train/rsf1z-JSj87/12.png new file mode 100644 index 0000000000000000000000000000000000000000..1e74d482358050b1746679f1310063806157ecda --- /dev/null +++ b/vlm/train/rsf1z-JSj87/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1833fbe0d8136234380b07d2a8d6a1e3efb916e5d872aa5b02d6e3089ad3a715 +size 493280 diff --git a/vlm/train/rsf1z-JSj87/13.png b/vlm/train/rsf1z-JSj87/13.png new file mode 100644 index 0000000000000000000000000000000000000000..2821999ff21b08cda037c95769830434f92ebcc1 --- /dev/null +++ b/vlm/train/rsf1z-JSj87/13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:21c6c8f4c7ddfa8d88b76193a897243e9df74a1a45c8257fd4a792c5732fe8de +size 500961 diff --git a/vlm/train/rsf1z-JSj87/14.png b/vlm/train/rsf1z-JSj87/14.png new file mode 100644 index 0000000000000000000000000000000000000000..549e78dda5bd8e6c9eefa06dbfa202bd8cb585fc --- /dev/null +++ b/vlm/train/rsf1z-JSj87/14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:334aa4639e3d2ed0c99f5dce08753f2eddbc2a994865f2f00ba30ca182c81c5f +size 176151 diff --git a/vlm/train/rsf1z-JSj87/15.png b/vlm/train/rsf1z-JSj87/15.png new file mode 100644 index 0000000000000000000000000000000000000000..fcb621ceb6a632e71c15f370ed23e6013c3f8737 --- /dev/null +++ b/vlm/train/rsf1z-JSj87/15.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9de1568b448a49f8691cc8b8765c95e3b838f3052424307e76ea9d0d2ea35d6f +size 506403 diff --git a/vlm/train/rsf1z-JSj87/16.png b/vlm/train/rsf1z-JSj87/16.png new file mode 100644 index 0000000000000000000000000000000000000000..e101975819637e7340e5a94b5cd52b954e7ae252 --- /dev/null +++ b/vlm/train/rsf1z-JSj87/16.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ca9d787214fbe1f632f35361bfed0d1117d280fd5349668b932ac9e4bbe7fa0f +size 383258 diff --git a/vlm/train/rsf1z-JSj87/17.png b/vlm/train/rsf1z-JSj87/17.png new file mode 100644 index 0000000000000000000000000000000000000000..b3fd93d0234a9283f06c823dcffb9c69cd7cef91 --- /dev/null +++ b/vlm/train/rsf1z-JSj87/17.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:72c7c6c990e1d72cd04c0b3f351122446dfae73768aca9348a0eea3eec5f0c5c +size 313264 diff --git a/vlm/train/rsf1z-JSj87/18.png b/vlm/train/rsf1z-JSj87/18.png new file mode 100644 index 0000000000000000000000000000000000000000..944f66bf56184db820e5afcf9604ac9297eaa769 --- /dev/null +++ b/vlm/train/rsf1z-JSj87/18.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fe39116bde0b7d2926d795b382d827412d1a1de9cc84678ad1825abdb44ae483 +size 330863 diff --git a/vlm/train/rsf1z-JSj87/19.png b/vlm/train/rsf1z-JSj87/19.png new file mode 100644 index 0000000000000000000000000000000000000000..54c736e4becc227f76ec0e7888a309c1b7820b6c --- /dev/null +++ b/vlm/train/rsf1z-JSj87/19.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a4c508625aa3d638056b0f65983106915ef4af1779e473eeb47363ec19fe6898 +size 280324 diff --git a/vlm/train/rsf1z-JSj87/2.png b/vlm/train/rsf1z-JSj87/2.png new file mode 100644 index 0000000000000000000000000000000000000000..205f451f9c60645daa852c1a6062cb51c394a1e4 --- /dev/null +++ b/vlm/train/rsf1z-JSj87/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:89a2bf32756dc8a986dba37d9978e5e3216dc91bc90c731b33166f5268335979 +size 673392 diff --git a/vlm/train/rsf1z-JSj87/20.png b/vlm/train/rsf1z-JSj87/20.png new file mode 100644 index 0000000000000000000000000000000000000000..30445b2c7ee23ad6af86e78defa4df68e6e216a8 --- /dev/null +++ b/vlm/train/rsf1z-JSj87/20.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a7ae158f887e4bbe6d95193a05c1e0d5c209c1d68cfc05a7c8ba50cfb73b0ad2 +size 422529 diff --git a/vlm/train/rsf1z-JSj87/21.png b/vlm/train/rsf1z-JSj87/21.png new file mode 100644 index 0000000000000000000000000000000000000000..8bc29f7d00ae0c3fec8aedbc80bc4bc978b3b99b --- /dev/null +++ b/vlm/train/rsf1z-JSj87/21.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:234d286c6065d575952120ca5a3fe2d7943a318c1af902130b885e1e6a49dc02 +size 454218 diff --git a/vlm/train/rsf1z-JSj87/22.png b/vlm/train/rsf1z-JSj87/22.png new file mode 100644 index 0000000000000000000000000000000000000000..3e90bddcbe7e4a33ee58d2bf1d0417349234455b --- /dev/null +++ b/vlm/train/rsf1z-JSj87/22.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:565c1cab51f15ba9b0239c79f2de13ac482c9860fdf55329a084780a675ed75a +size 106853 diff --git a/vlm/train/rsf1z-JSj87/3.png b/vlm/train/rsf1z-JSj87/3.png new file mode 100644 index 0000000000000000000000000000000000000000..e0e0d71626e8155ed4ba509cb6d995bbab5d8d3a --- /dev/null +++ b/vlm/train/rsf1z-JSj87/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:88c73e45f63314c99499fae2ed033a089bc739690690e257b3a861f830f1776f +size 561428 diff --git a/vlm/train/rsf1z-JSj87/4.png b/vlm/train/rsf1z-JSj87/4.png new file mode 100644 index 0000000000000000000000000000000000000000..12db8cbd18276e4a1e282141f9cebce7ecdfd91e --- /dev/null +++ b/vlm/train/rsf1z-JSj87/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:64723ae8b906add4ec138b876894630844b93e4e9798f3b8b03a389603454038 +size 555189 diff --git a/vlm/train/rsf1z-JSj87/5.png b/vlm/train/rsf1z-JSj87/5.png new file mode 100644 index 0000000000000000000000000000000000000000..6411bef27b3a796fef4050012d2b4e3575518b4f --- /dev/null +++ b/vlm/train/rsf1z-JSj87/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fe78f5f7e764d83ef3187b7fc466ad5250a502df8f512f154d358d81bd914d8a +size 647822 diff --git a/vlm/train/rsf1z-JSj87/6.png b/vlm/train/rsf1z-JSj87/6.png new file mode 100644 index 0000000000000000000000000000000000000000..9359e4556c1714670850ea43f7c8e509bf620933 --- /dev/null +++ b/vlm/train/rsf1z-JSj87/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f7e621754c66e57684387852908586856eb5f06f73a5c61706898c8ad4307b06 +size 621182 diff --git a/vlm/train/rsf1z-JSj87/7.png b/vlm/train/rsf1z-JSj87/7.png new file mode 100644 index 0000000000000000000000000000000000000000..4045d2460471943e58e8140757744cd4628cff30 --- /dev/null +++ b/vlm/train/rsf1z-JSj87/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d03ca8f7779d1be77d6b11034c793f39641541dcaba98bf6197a69a843d12d75 +size 536295 diff --git a/vlm/train/rsf1z-JSj87/8.png b/vlm/train/rsf1z-JSj87/8.png new file mode 100644 index 0000000000000000000000000000000000000000..7598299e840e65914f7e0af7e0edb5d90506b9b7 --- /dev/null +++ b/vlm/train/rsf1z-JSj87/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d66d03c66becbe63d00eba2470e88a9625305496ec8ff1d9e3fef24e56add4e7 +size 298258 diff --git a/vlm/train/rsf1z-JSj87/9.png b/vlm/train/rsf1z-JSj87/9.png new file mode 100644 index 0000000000000000000000000000000000000000..9a65e84bb0f1d3cd6b45171cca4654d4e0998057 --- /dev/null +++ b/vlm/train/rsf1z-JSj87/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:08612860fcfe8196c2df33572bb7dd1c810fedd2ec06174f2818daa4d79d6f87 +size 521687 diff --git a/vlm/train/ry8dvM-R-/0.png b/vlm/train/ry8dvM-R-/0.png new file mode 100644 index 0000000000000000000000000000000000000000..ba40813d668e283d2290831882678165c448dfa1 --- /dev/null +++ b/vlm/train/ry8dvM-R-/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1df36db9bb2b7e343ce8945a3ff20f93a88be55b39fe8b469c347083ccd04476 +size 501997 diff --git a/vlm/train/ry8dvM-R-/1.png b/vlm/train/ry8dvM-R-/1.png new file mode 100644 index 0000000000000000000000000000000000000000..7f8d8ecb8e44fc475f616d1faccea804ed9eac68 --- /dev/null +++ b/vlm/train/ry8dvM-R-/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:19bde8d111c88449b5d84a71dc8b3ad1371807fc3d971b6f0273d41b59bf02f0 +size 627134 diff --git a/vlm/train/ry8dvM-R-/10.png b/vlm/train/ry8dvM-R-/10.png new file mode 100644 index 0000000000000000000000000000000000000000..39e10f4f4a6d2d396ebe330129ced6c1826dde90 --- /dev/null +++ b/vlm/train/ry8dvM-R-/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:17f39b77f41b3082c3415c8831b9f54c2a7b161ebddea332e3340f5432abb1fc +size 496650 diff --git a/vlm/train/ry8dvM-R-/11.png b/vlm/train/ry8dvM-R-/11.png new file mode 100644 index 0000000000000000000000000000000000000000..528a4968370f1a281d30056ee50ffcfb9f6ae549 --- /dev/null +++ b/vlm/train/ry8dvM-R-/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fa58bb9fe97fc2d28ee3756c20e7b7e74e6ab1faf7356391460578b4e8eb2696 +size 521929 diff --git a/vlm/train/ry8dvM-R-/12.png b/vlm/train/ry8dvM-R-/12.png new file mode 100644 index 0000000000000000000000000000000000000000..0a94977c04d3255b80b4a80eafbde3afbd416a40 --- /dev/null +++ b/vlm/train/ry8dvM-R-/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f764339534868f7e1337c53cda05d9fbb858944568f80aa9ffde398c62bb8747 +size 230804 diff --git a/vlm/train/ry8dvM-R-/13.png b/vlm/train/ry8dvM-R-/13.png new file mode 100644 index 0000000000000000000000000000000000000000..b543c79957b1047a82871ce1384b22929944eea1 --- /dev/null +++ b/vlm/train/ry8dvM-R-/13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9b51d90999cfae0b33cc523bad19b9b6395dd51b3987adf383d340398f47aa67 +size 265980 diff --git a/vlm/train/ry8dvM-R-/14.png b/vlm/train/ry8dvM-R-/14.png new file mode 100644 index 0000000000000000000000000000000000000000..9d8ff20c89fbc8c0a870fe6e6fb7e30244b61cac --- /dev/null +++ b/vlm/train/ry8dvM-R-/14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b07b2f837912f31196fe58980d5291d6d6553e4e3acaeb0c3b7d4740da0cbb9a +size 318471 diff --git a/vlm/train/ry8dvM-R-/15.png b/vlm/train/ry8dvM-R-/15.png new file mode 100644 index 0000000000000000000000000000000000000000..973196a8eac783cabd0e0d4da0199c76c8214401 --- /dev/null +++ b/vlm/train/ry8dvM-R-/15.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8ddfae4c02cfbbbe7517a70958452191aefd1e8d88d5de9e7652aa1403e2c685 +size 441825 diff --git a/vlm/train/ry8dvM-R-/2.png b/vlm/train/ry8dvM-R-/2.png new file mode 100644 index 0000000000000000000000000000000000000000..fb4f4735d9e089eda2ab520dbe9488895ed5c385 --- /dev/null +++ b/vlm/train/ry8dvM-R-/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:84db90f7ea7654ee36c61152a36994cd59a25800a2cebdfa104012caea6eccee +size 541907 diff --git a/vlm/train/ry8dvM-R-/3.png b/vlm/train/ry8dvM-R-/3.png new file mode 100644 index 0000000000000000000000000000000000000000..bd74bee37fc6226ceb60aa19ec2b056f60501b5b --- /dev/null +++ b/vlm/train/ry8dvM-R-/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:44138fd483c00f2253f7a83d3763b7735f232c8a5782026e5b686d90ab647d38 +size 496167 diff --git a/vlm/train/ry8dvM-R-/4.png b/vlm/train/ry8dvM-R-/4.png new file mode 100644 index 0000000000000000000000000000000000000000..fee6bf4f4143d86fa94037a9dc56dcc72d276a32 --- /dev/null +++ b/vlm/train/ry8dvM-R-/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d6dd66553c82c8223db7758d9bbe0c8e07b866e7fea316274c1c05e20fbbccac +size 514747 diff --git a/vlm/train/ry8dvM-R-/5.png b/vlm/train/ry8dvM-R-/5.png new file mode 100644 index 0000000000000000000000000000000000000000..2a5cd9b97fcb313953846a132782acc2d12bb19a --- /dev/null +++ b/vlm/train/ry8dvM-R-/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:870fb0ceb986e64bd9abeb95e0e5c7fb755e10933690f325c7100cf1eb2cdbf5 +size 617173 diff --git a/vlm/train/ry8dvM-R-/6.png b/vlm/train/ry8dvM-R-/6.png new file mode 100644 index 0000000000000000000000000000000000000000..31e8f659085fda9363651fbe41462afcc05e1c09 --- /dev/null +++ b/vlm/train/ry8dvM-R-/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7643ffe0218b55eec8e3c688de0d3c8b3854e0a5a8bfa347f52fec47d082b432 +size 625529 diff --git a/vlm/train/ry8dvM-R-/7.png b/vlm/train/ry8dvM-R-/7.png new file mode 100644 index 0000000000000000000000000000000000000000..ac6821655ac87008bae597cdcdb94a2a8f392a36 --- /dev/null +++ b/vlm/train/ry8dvM-R-/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cc4ff4504ba303ba5177a2591a323989568e508f11e9194e403e8e1ac9ce5bc0 +size 464925 diff --git a/vlm/train/ry8dvM-R-/8.png b/vlm/train/ry8dvM-R-/8.png new file mode 100644 index 0000000000000000000000000000000000000000..880e67e22eb6829be49f7edffcb9beaaf5c2fc2c --- /dev/null +++ b/vlm/train/ry8dvM-R-/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:037c5bd7c20736a725ca4a17c88270698e1577aba310265d5cb9693ccbc6d31c +size 569597 diff --git a/vlm/train/ry8dvM-R-/9.png b/vlm/train/ry8dvM-R-/9.png new file mode 100644 index 0000000000000000000000000000000000000000..9703e93eb7dddd227bd7d4a2b76d34907d2e9c2e --- /dev/null +++ b/vlm/train/ry8dvM-R-/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1f61500ca6240d5478e28ddf28530683e3a33cdd6e2c9ef54440c7f5d4eb2a65 +size 471184 diff --git a/vlm/train/rylT0AVtwH/0.png b/vlm/train/rylT0AVtwH/0.png new file mode 100644 index 0000000000000000000000000000000000000000..db01b8066e8412a2b12b3ce74cdf0ab1d9dc7754 --- /dev/null +++ b/vlm/train/rylT0AVtwH/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fd99174901fa7866c2c7cb9da29cb6341499f470346874fac93757a848034df0 +size 524308 diff --git a/vlm/train/rylT0AVtwH/1.png b/vlm/train/rylT0AVtwH/1.png new file mode 100644 index 0000000000000000000000000000000000000000..39024a156a9d848869e3368dc999e55dc73c9b6d --- /dev/null +++ b/vlm/train/rylT0AVtwH/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eb9ffdffab6d2412700cc0b191bd3170688c960afd407c12b806b160844e94b3 +size 622927 diff --git a/vlm/train/rylT0AVtwH/10.png b/vlm/train/rylT0AVtwH/10.png new file mode 100644 index 0000000000000000000000000000000000000000..c1072e43d378b7f804b275c6351b2eb24d975e16 --- /dev/null +++ b/vlm/train/rylT0AVtwH/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ef85950fba615c4c55145c5c2603dfdbe1aea63d309df0848872ec6813779789 +size 182493 diff --git a/vlm/train/rylT0AVtwH/11.png b/vlm/train/rylT0AVtwH/11.png new file mode 100644 index 0000000000000000000000000000000000000000..06c731a55dd56da87d50854e8a4849b4cb36a118 --- /dev/null +++ b/vlm/train/rylT0AVtwH/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:08bd6f5a2b10d7f70de222aeffe56a62d73bc2cb2806cab0537100f577115edc +size 487994 diff --git a/vlm/train/rylT0AVtwH/12.png b/vlm/train/rylT0AVtwH/12.png new file mode 100644 index 0000000000000000000000000000000000000000..639ab0f368a1afa85c051e818278bcd31540364d --- /dev/null +++ b/vlm/train/rylT0AVtwH/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:406894257281a85939f093f1f3ec422544108f35e887eaec7ff734f1546431e0 +size 576763 diff --git a/vlm/train/rylT0AVtwH/13.png b/vlm/train/rylT0AVtwH/13.png new file mode 100644 index 0000000000000000000000000000000000000000..22d78964e4123d13e49de236208e71b9dd22a73c --- /dev/null +++ b/vlm/train/rylT0AVtwH/13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a5d5036f0aee42abe59619272c22351dfd6b750e487cd86a864937bbcb7bb45f +size 352433 diff --git a/vlm/train/rylT0AVtwH/14.png b/vlm/train/rylT0AVtwH/14.png new file mode 100644 index 0000000000000000000000000000000000000000..63fb047221e07bcbd9f489d1da99ac1befeef7ff --- /dev/null +++ b/vlm/train/rylT0AVtwH/14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8b6ff45fc60977a7121cd08a663a52455db69c5daaedf286c71ca40557b73471 +size 349484 diff --git a/vlm/train/rylT0AVtwH/15.png b/vlm/train/rylT0AVtwH/15.png new file mode 100644 index 0000000000000000000000000000000000000000..a4e005473f7cd38c31d931ca5dacdb153a924a87 --- /dev/null +++ b/vlm/train/rylT0AVtwH/15.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:71a651bda7a064221b6ca70f8c1226c95e55544b447d82311e578b593e6361ca +size 446065 diff --git a/vlm/train/rylT0AVtwH/16.png b/vlm/train/rylT0AVtwH/16.png new file mode 100644 index 0000000000000000000000000000000000000000..01be31fc9eb154f78a0f7f75af3666f47ba7fa1e --- /dev/null +++ b/vlm/train/rylT0AVtwH/16.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3ef937369789e5ea1b2f737a6380a0cfdcf2e4cfd11d62dc1eda7f9d38998219 +size 345348 diff --git a/vlm/train/rylT0AVtwH/17.png b/vlm/train/rylT0AVtwH/17.png new file mode 100644 index 0000000000000000000000000000000000000000..57080242025a6e136a1480d2accfa83827ea8f3b --- /dev/null +++ b/vlm/train/rylT0AVtwH/17.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7e575e954a2aefcf307a5beeec5e05aef1a49c53543988d578e4da64b217251e +size 390205 diff --git a/vlm/train/rylT0AVtwH/2.png b/vlm/train/rylT0AVtwH/2.png new file mode 100644 index 0000000000000000000000000000000000000000..a1b21d825acdbd9a2924ad84dbef57495900434a --- /dev/null +++ b/vlm/train/rylT0AVtwH/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d42b21d981eb5ced2bf3cb11c1de3b5f5484f43ddaa5969416cb2ce5a6b89e59 +size 537477 diff --git a/vlm/train/rylT0AVtwH/3.png b/vlm/train/rylT0AVtwH/3.png new file mode 100644 index 0000000000000000000000000000000000000000..5091421b2d9ece25fc65aacd2479e820eb1923d1 --- /dev/null +++ b/vlm/train/rylT0AVtwH/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a8d533df780f22f5a76ba0b1833fda4c12831d0e04fb475a3fdac3300462c02d +size 465999 diff --git a/vlm/train/rylT0AVtwH/4.png b/vlm/train/rylT0AVtwH/4.png new file mode 100644 index 0000000000000000000000000000000000000000..3885b7098ab2f1d4b48077578d4ec6251f04c23a --- /dev/null +++ b/vlm/train/rylT0AVtwH/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f00f0eb8c5ebf5c780e9bdce449e599116e9e67e737c16197c003d89b4d3372a +size 533855 diff --git a/vlm/train/rylT0AVtwH/5.png b/vlm/train/rylT0AVtwH/5.png new file mode 100644 index 0000000000000000000000000000000000000000..213653a7f37007be9924c1786f8410a3f12283f1 --- /dev/null +++ b/vlm/train/rylT0AVtwH/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:39f71b608e029c12e102b6c39cb467f363df6b0895bba99419603206d94770a1 +size 537142 diff --git a/vlm/train/rylT0AVtwH/6.png b/vlm/train/rylT0AVtwH/6.png new file mode 100644 index 0000000000000000000000000000000000000000..b8035d1e9b3146ddcc82b2654f19ae2e3ef0a04d --- /dev/null +++ b/vlm/train/rylT0AVtwH/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6d5e2e6669ab9dbeea5d74e3f679ad831636cb9667bf375138888023da6b5774 +size 602275 diff --git a/vlm/train/rylT0AVtwH/7.png b/vlm/train/rylT0AVtwH/7.png new file mode 100644 index 0000000000000000000000000000000000000000..2a000115b98985c0aa5084e8062532ee2211c17d --- /dev/null +++ b/vlm/train/rylT0AVtwH/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6465c53cb0e5379ca40afa76ab359af5194578cb7b984c7ff3904e15c4648c86 +size 559153 diff --git a/vlm/train/rylT0AVtwH/8.png b/vlm/train/rylT0AVtwH/8.png new file mode 100644 index 0000000000000000000000000000000000000000..f8204265bef7cc98f77285426dc2ae510d34677d --- /dev/null +++ b/vlm/train/rylT0AVtwH/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7f3b55d094435208cf51fe982fdbf3adafe3f29f0389fa630e97b2ede8c58254 +size 559114 diff --git a/vlm/train/rylT0AVtwH/9.png b/vlm/train/rylT0AVtwH/9.png new file mode 100644 index 0000000000000000000000000000000000000000..16a3bd981b81dbce261f6a7eba1cc98f81abe9ac --- /dev/null +++ b/vlm/train/rylT0AVtwH/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:93599bb85fcc611439e7ba1f26fe52150cb3fbc5e16937a9c4cd2a7fc827cb36 +size 570487 diff --git a/vlm/train/rywHCPkAW/0.png b/vlm/train/rywHCPkAW/0.png new file mode 100644 index 0000000000000000000000000000000000000000..6ebac355e12dd1838dae807bac203f2402816814 --- /dev/null +++ b/vlm/train/rywHCPkAW/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0acdc01c8c44ca1e3cda8fab5aeb87ef7dfbe4050b984a549acc801a6e5263b2 +size 471283 diff --git a/vlm/train/rywHCPkAW/1.png b/vlm/train/rywHCPkAW/1.png new file mode 100644 index 0000000000000000000000000000000000000000..0d8f0b366bddabf02a9225010b63bdca31f9d724 --- /dev/null +++ b/vlm/train/rywHCPkAW/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:df0a8cf2387dad68bb4f72aed1952abfe20f958c900e4d0aaf6267b7a7478ddd +size 558909 diff --git a/vlm/train/rywHCPkAW/10.png b/vlm/train/rywHCPkAW/10.png new file mode 100644 index 0000000000000000000000000000000000000000..1b6bb63d0d8a50dc1bd6d905e121e4bbd0a7cb38 --- /dev/null +++ b/vlm/train/rywHCPkAW/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:66b390912aa6b70737bb878989acae483a87180b6b3f923b6e42f4e866abe769 +size 539189 diff --git a/vlm/train/rywHCPkAW/11.png b/vlm/train/rywHCPkAW/11.png new file mode 100644 index 0000000000000000000000000000000000000000..30949f9b8170368c6185c790c07e6686a7981744 --- /dev/null +++ b/vlm/train/rywHCPkAW/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e3ebee722235e71322567cd364b371bb7fb02627f64f40b62cb0c5d6baf7ac8b +size 265180 diff --git a/vlm/train/rywHCPkAW/12.png b/vlm/train/rywHCPkAW/12.png new file mode 100644 index 0000000000000000000000000000000000000000..fef1a8a30f034d851d1e999bc1749f0867954992 --- /dev/null +++ b/vlm/train/rywHCPkAW/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1b3574167e3c418bba612437293eaea8cf759fbf699a82ca069684b02d440af4 +size 432425 diff --git a/vlm/train/rywHCPkAW/13.png b/vlm/train/rywHCPkAW/13.png new file mode 100644 index 0000000000000000000000000000000000000000..90d2e0241e3c814c0e6f5883c0cf8b5b4552e4a1 --- /dev/null +++ b/vlm/train/rywHCPkAW/13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b6cba9c7bafa52fb8b9f49cc7486de6ef5e45c283754bb7af3f46d7ee0cc252e +size 157783 diff --git a/vlm/train/rywHCPkAW/14.png b/vlm/train/rywHCPkAW/14.png new file mode 100644 index 0000000000000000000000000000000000000000..40aa28c87c901e8d2d6e127fe26df7eb206045d1 --- /dev/null +++ b/vlm/train/rywHCPkAW/14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:de59e5910099a9f0031f09b3e6a7e47996f974fc7c6777c33f22bbaf286a909f +size 313148 diff --git a/vlm/train/rywHCPkAW/15.png b/vlm/train/rywHCPkAW/15.png new file mode 100644 index 0000000000000000000000000000000000000000..329c096e2dae31658d7a4c2afb306d0f7b348d76 --- /dev/null +++ b/vlm/train/rywHCPkAW/15.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ecfe452df8570dfb0161e4b026c9de222163e7fbd7ec2a0e7abac289e99f169b +size 263112 diff --git a/vlm/train/rywHCPkAW/16.png b/vlm/train/rywHCPkAW/16.png new file mode 100644 index 0000000000000000000000000000000000000000..8f5fc06f3c965137af9de0d9d4971e63f05fc158 --- /dev/null +++ b/vlm/train/rywHCPkAW/16.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bf1102a0bc5d7d7226a415dfb15a67ca4ca944cb1537e42146ea7bf351f466d6 +size 196250 diff --git a/vlm/train/rywHCPkAW/17.png b/vlm/train/rywHCPkAW/17.png new file mode 100644 index 0000000000000000000000000000000000000000..ca88d68e348e5bac6c9da571ea0cb6c5584cc49b --- /dev/null +++ b/vlm/train/rywHCPkAW/17.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:75bfe24f07a48b77dabc22480d937be6b5a2d5e0f4cb4ade350a9ee7f8324bbd +size 555981 diff --git a/vlm/train/rywHCPkAW/18.png b/vlm/train/rywHCPkAW/18.png new file mode 100644 index 0000000000000000000000000000000000000000..db37fd439ff2509b8351bc0bb7e24f4c62799904 --- /dev/null +++ b/vlm/train/rywHCPkAW/18.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4a11af833d6bafbe5dbc4db9bda96a13bbe84b84931e053f65c476f783abf17e +size 1637425 diff --git a/vlm/train/rywHCPkAW/19.png b/vlm/train/rywHCPkAW/19.png new file mode 100644 index 0000000000000000000000000000000000000000..803d130a3cc67ca01f17472b07dc89a87d9831e5 --- /dev/null +++ b/vlm/train/rywHCPkAW/19.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:23994cc8b81e61f775f22628aa638bf74a7d9960fc36436573490eee63f11e1d +size 1501714 diff --git a/vlm/train/rywHCPkAW/2.png b/vlm/train/rywHCPkAW/2.png new file mode 100644 index 0000000000000000000000000000000000000000..2340ebae9aa7c6c383df442a4e4bcf2e8e181286 --- /dev/null +++ b/vlm/train/rywHCPkAW/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:684b22bee39fd1fe4933fa8570967924626cb8dbaea7e5e08a4f383217a3b196 +size 492069 diff --git a/vlm/train/rywHCPkAW/20.png b/vlm/train/rywHCPkAW/20.png new file mode 100644 index 0000000000000000000000000000000000000000..5442b33da1b35b96d8b480dcd6d68598c6bb87c5 --- /dev/null +++ b/vlm/train/rywHCPkAW/20.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b602534bb221ff0d803c2f679ce4983cd7091f393cd9df53a8798bfc27d9a47d +size 1564938 diff --git a/vlm/train/rywHCPkAW/3.png b/vlm/train/rywHCPkAW/3.png new file mode 100644 index 0000000000000000000000000000000000000000..c5f70633d2bad37e1e1cc29aa99fdfa3945b7f15 --- /dev/null +++ b/vlm/train/rywHCPkAW/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:744ad7d482b6bbe654a39c1ea7b09ce0b4b0888aa715b05414ffe90d37d454ea +size 503758 diff --git a/vlm/train/rywHCPkAW/4.png b/vlm/train/rywHCPkAW/4.png new file mode 100644 index 0000000000000000000000000000000000000000..363e7c575a6e0e158cb39703ad0bb435decedf52 --- /dev/null +++ b/vlm/train/rywHCPkAW/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2d84504a72277898992782c45689e38257274a3f35ed732c18cb6fe235c25177 +size 508806 diff --git a/vlm/train/rywHCPkAW/5.png b/vlm/train/rywHCPkAW/5.png new file mode 100644 index 0000000000000000000000000000000000000000..331e75353a01ac63624e9d213ba69410264b350b --- /dev/null +++ b/vlm/train/rywHCPkAW/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7d74264dd71ef80dbf5ad02d94482cfc5c27e70a5b815064861a5594b9bd5096 +size 469454 diff --git a/vlm/train/rywHCPkAW/6.png b/vlm/train/rywHCPkAW/6.png new file mode 100644 index 0000000000000000000000000000000000000000..2d73d784c20345d7dfe73b5768ea0dc7a824322c --- /dev/null +++ b/vlm/train/rywHCPkAW/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8a5d6df408c8af4506f63b8246e6e656f3474ae44b2c09c4fc270cdf94eb4b98 +size 519758 diff --git a/vlm/train/rywHCPkAW/7.png b/vlm/train/rywHCPkAW/7.png new file mode 100644 index 0000000000000000000000000000000000000000..50ceed7ee63d489ee60a45ac2ff11c72333aa2e0 --- /dev/null +++ b/vlm/train/rywHCPkAW/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:60f833641e781c670f4e8368e19257d98b8ac62dbedc73e0dd081a5ad25723db +size 530585 diff --git a/vlm/train/rywHCPkAW/8.png b/vlm/train/rywHCPkAW/8.png new file mode 100644 index 0000000000000000000000000000000000000000..7564cd811f6adc340e3cfbe2cf60f0984d2a42f2 --- /dev/null +++ b/vlm/train/rywHCPkAW/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:134949c82853f02b97ddcfc74b99fc990d392dd4d0d04160d76b57169ae39be9 +size 579759 diff --git a/vlm/train/rywHCPkAW/9.png b/vlm/train/rywHCPkAW/9.png new file mode 100644 index 0000000000000000000000000000000000000000..62a15559957270797a0a8de1806a086be93785d3 --- /dev/null +++ b/vlm/train/rywHCPkAW/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eaf63ffbf29f628271481dc6a5b6b7a72ff9571fc73506ea350b35a6b0cf6188 +size 533424 diff --git a/vlm/train/ryxwJhC9YX/0.png b/vlm/train/ryxwJhC9YX/0.png new file mode 100644 index 0000000000000000000000000000000000000000..b25c4bcd8b9f8e18cd273e0a67b2e972dbef4ef1 --- /dev/null +++ b/vlm/train/ryxwJhC9YX/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:582767aee83a1229786b2e3e7a1fcd7d9bd4f9d73d0e401b712ee9a86d23c937 +size 563986 diff --git a/vlm/train/ryxwJhC9YX/10.png b/vlm/train/ryxwJhC9YX/10.png new file mode 100644 index 0000000000000000000000000000000000000000..01317bb8360e3219c0f31d95a4ae073db93ede1d --- /dev/null +++ b/vlm/train/ryxwJhC9YX/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f0f931248b881e0aa675f215ea07dc5e93855e7d81207cb76007c3cbc870e307 +size 458785 diff --git a/vlm/train/ryxwJhC9YX/11.png b/vlm/train/ryxwJhC9YX/11.png new file mode 100644 index 0000000000000000000000000000000000000000..b249b09e6978d40d337fb5030ec7bf261831d3c8 --- /dev/null +++ b/vlm/train/ryxwJhC9YX/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a0df6a3b39bc4449cbb0554bc286ff30d314968cc7a8e0b538a0df0c1794cc8f +size 605861 diff --git a/vlm/train/ryxwJhC9YX/14.png b/vlm/train/ryxwJhC9YX/14.png new file mode 100644 index 0000000000000000000000000000000000000000..9c90eac8f4d9b914ad70afad72c4bcdc2d083289 --- /dev/null +++ b/vlm/train/ryxwJhC9YX/14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5f2ce358bcc75aa1bf52dfc23b41898ca5cd53920a5da61e9090994610744537 +size 1640293 diff --git a/vlm/train/ryxwJhC9YX/15.png b/vlm/train/ryxwJhC9YX/15.png new file mode 100644 index 0000000000000000000000000000000000000000..3b45fd24339852754b2e9ccb014a3fa0bc475863 --- /dev/null +++ b/vlm/train/ryxwJhC9YX/15.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:99b7f07eb98477fa442a1025874ed54c96ac32e78b03f3e32e17876c677dcb38 +size 1775915 diff --git a/vlm/train/ryxwJhC9YX/17.png b/vlm/train/ryxwJhC9YX/17.png new file mode 100644 index 0000000000000000000000000000000000000000..81399b3dd376e6f3b939f659198f7bf490d7ff8f --- /dev/null +++ b/vlm/train/ryxwJhC9YX/17.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:39db9249c1a15bca5a80599a369da6591e19d1f349c024611ce465478093ed9e +size 1696037 diff --git a/vlm/train/ryxwJhC9YX/2.png b/vlm/train/ryxwJhC9YX/2.png new file mode 100644 index 0000000000000000000000000000000000000000..7c9a5343e1438cb95589026b62e3941f5f132367 --- /dev/null +++ b/vlm/train/ryxwJhC9YX/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4ae33d448edef076503a910b1cf9ffba49f727671cf6eca2522cc3de4d8daae3 +size 598869 diff --git a/vlm/train/ryxwJhC9YX/21.png b/vlm/train/ryxwJhC9YX/21.png new file mode 100644 index 0000000000000000000000000000000000000000..b77994e1a6e283cfac0ce7d4dd222556489704e4 --- /dev/null +++ b/vlm/train/ryxwJhC9YX/21.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1f2498f891c36bf176e3f2d5abbe6e13b4ebed3de80547d725d98736025beeec +size 1418079 diff --git a/vlm/train/ryxwJhC9YX/23.png b/vlm/train/ryxwJhC9YX/23.png new file mode 100644 index 0000000000000000000000000000000000000000..77c17f01600a5cc5a867f6a713ca5e03c6bc6a0a --- /dev/null +++ b/vlm/train/ryxwJhC9YX/23.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:321afce34e02739461bac33d9a49dff0f8c8f05fcab5b4e5adae3fdec03db57b +size 689070 diff --git a/vlm/train/ryxwJhC9YX/24.png b/vlm/train/ryxwJhC9YX/24.png new file mode 100644 index 0000000000000000000000000000000000000000..4e701e8bfa0d14a259e09d2562c0cc28507520f3 --- /dev/null +++ b/vlm/train/ryxwJhC9YX/24.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6dcf4cf0b535a42031626817b42da5ac13247e8c2aaddbdf22ebed16210d989e +size 629937 diff --git a/vlm/train/ryxwJhC9YX/3.png b/vlm/train/ryxwJhC9YX/3.png new file mode 100644 index 0000000000000000000000000000000000000000..b7b3a8817d400544a8869d05f03cba6ae1837625 --- /dev/null +++ b/vlm/train/ryxwJhC9YX/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e17f732f95d799d33a2eb916b4503c29701de6b0fefe54459cb28fe109891ba5 +size 561003 diff --git a/vlm/train/ryxwJhC9YX/6.png b/vlm/train/ryxwJhC9YX/6.png new file mode 100644 index 0000000000000000000000000000000000000000..ec240f83d8dfe325a1b745190bf5f8810e34fec0 --- /dev/null +++ b/vlm/train/ryxwJhC9YX/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:acaf7350681a0d55eefd7e17f6fd6ceb22291af5f936d71f4d7399c8ccef130b +size 858059 diff --git a/vlm/train/ryxwJhC9YX/9.png b/vlm/train/ryxwJhC9YX/9.png new file mode 100644 index 0000000000000000000000000000000000000000..482c2969a0c6733d9a91f3698abc9bda9309af10 --- /dev/null +++ b/vlm/train/ryxwJhC9YX/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d18a7cee6f3545d50a90e458209d204c6bcf234a986af96090f7f91e97ef96a8 +size 548660 diff --git a/vlm/train/tyd9yxioXgO/0.png b/vlm/train/tyd9yxioXgO/0.png new file mode 100644 index 0000000000000000000000000000000000000000..a2d216eaf13416d598ef18fddeb6fdd438b1508c --- /dev/null +++ b/vlm/train/tyd9yxioXgO/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:df10515166931770d9f78f29b0ab1d0063281850b2da57b76ae32d3629574cb6 +size 632207 diff --git a/vlm/train/tyd9yxioXgO/1.png b/vlm/train/tyd9yxioXgO/1.png new file mode 100644 index 0000000000000000000000000000000000000000..e534e3151b048dc1a35e0695ec50dfa30709f181 --- /dev/null +++ b/vlm/train/tyd9yxioXgO/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a833f6fbf9143927ba3154551297ba10630b99e4b6b7e195a1e4c78f66bfe18a +size 626994 diff --git a/vlm/train/tyd9yxioXgO/10.png b/vlm/train/tyd9yxioXgO/10.png new file mode 100644 index 0000000000000000000000000000000000000000..bf17932534bc7ec4f29577d24bf2a731d9a8cb63 --- /dev/null +++ b/vlm/train/tyd9yxioXgO/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:235d7e208f5bfe7f8cc42fd38e31d3726a09ac32fb33d079957e1a678cf78513 +size 531383 diff --git a/vlm/train/tyd9yxioXgO/11.png b/vlm/train/tyd9yxioXgO/11.png new file mode 100644 index 0000000000000000000000000000000000000000..87790d4ee17662d630b95d3d9aa57113af3f074d --- /dev/null +++ b/vlm/train/tyd9yxioXgO/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:797dc3d995acddc5a96709c04ad021b34b46baee9a63fe03730291a0c1c17919 +size 581752 diff --git a/vlm/train/tyd9yxioXgO/12.png b/vlm/train/tyd9yxioXgO/12.png new file mode 100644 index 0000000000000000000000000000000000000000..60adad708d0641947361b2f97d9d2d21b9ad160b --- /dev/null +++ b/vlm/train/tyd9yxioXgO/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3a90ae70737d41a499f063d3587696b148ab163881498706daada21bc9cee470 +size 511561 diff --git a/vlm/train/tyd9yxioXgO/13.png b/vlm/train/tyd9yxioXgO/13.png new file mode 100644 index 0000000000000000000000000000000000000000..4c5692bb4466ca76284bdb35750e0e995b1a97b8 --- /dev/null +++ b/vlm/train/tyd9yxioXgO/13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:73556ae9471cca2fef96bd52566a57fc148de53b1817c8465f7533811d4649d2 +size 445314 diff --git a/vlm/train/tyd9yxioXgO/14.png b/vlm/train/tyd9yxioXgO/14.png new file mode 100644 index 0000000000000000000000000000000000000000..eb475d1bfb2638aabb10dacec3b690521339951c --- /dev/null +++ b/vlm/train/tyd9yxioXgO/14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:32d54d16185106f739f43a1c162291b9b9091187c693d58e585f576dbda35e1b +size 729742 diff --git a/vlm/train/tyd9yxioXgO/15.png b/vlm/train/tyd9yxioXgO/15.png new file mode 100644 index 0000000000000000000000000000000000000000..43a0b507b047ba62cb4bd3c5fb2a37604b65e94b --- /dev/null +++ b/vlm/train/tyd9yxioXgO/15.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:73c1dad1df605789e33ab313c5edae9ac91f744b00a1716e0afda251e6b5067d +size 1245892 diff --git a/vlm/train/tyd9yxioXgO/16.png b/vlm/train/tyd9yxioXgO/16.png new file mode 100644 index 0000000000000000000000000000000000000000..67d43fbd6f02b77d891bf48f692226d3b35fcb4f --- /dev/null +++ b/vlm/train/tyd9yxioXgO/16.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1757eb46f6bdcf2dcafd1be4ba38cc57fbcc5d95d330130cb7eec5c8f6b256c6 +size 650309 diff --git a/vlm/train/tyd9yxioXgO/17.png b/vlm/train/tyd9yxioXgO/17.png new file mode 100644 index 0000000000000000000000000000000000000000..a7612c7ce099f07332703489ab55e774693f787e --- /dev/null +++ b/vlm/train/tyd9yxioXgO/17.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0cfcb59220295e1aeb791db51e7bd3a1633b1fe8a7912f4eec201fd65c641b7a +size 339948 diff --git a/vlm/train/tyd9yxioXgO/18.png b/vlm/train/tyd9yxioXgO/18.png new file mode 100644 index 0000000000000000000000000000000000000000..79648fe3416fba8917d436e9d7cfb2a38c4a4653 --- /dev/null +++ b/vlm/train/tyd9yxioXgO/18.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f33b3c0e462294f29e5604caf31708eec45ae53bf1600879ba244f7c6c8c51f0 +size 570712 diff --git a/vlm/train/tyd9yxioXgO/2.png b/vlm/train/tyd9yxioXgO/2.png new file mode 100644 index 0000000000000000000000000000000000000000..cc49a0755611a301c317903922719443b6a50fc3 --- /dev/null +++ b/vlm/train/tyd9yxioXgO/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:16a2351721a40a037e90fd4266a62b43c5dd681935d520a9504b4be5a463a156 +size 668597 diff --git a/vlm/train/tyd9yxioXgO/3.png b/vlm/train/tyd9yxioXgO/3.png new file mode 100644 index 0000000000000000000000000000000000000000..a81a0be7c6c8dde9bac0088c66f94633553dd697 --- /dev/null +++ b/vlm/train/tyd9yxioXgO/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a409de4e81707b8eb24726ef18db1811e15f723a7008bf506ed97dad2627981d +size 649635 diff --git a/vlm/train/tyd9yxioXgO/4.png b/vlm/train/tyd9yxioXgO/4.png new file mode 100644 index 0000000000000000000000000000000000000000..883728eb4e48aba05a6d17f549ae498401fa81f1 --- /dev/null +++ b/vlm/train/tyd9yxioXgO/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1bde1f4c936eda06280ab9222eb8c409771a89993b3747708d942a61d2e596b1 +size 589849 diff --git a/vlm/train/tyd9yxioXgO/5.png b/vlm/train/tyd9yxioXgO/5.png new file mode 100644 index 0000000000000000000000000000000000000000..d7352b732c894d4c37a4405a461da5e536350379 --- /dev/null +++ b/vlm/train/tyd9yxioXgO/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:28f7b3cae5b352c59751c9aa2c2ff9d5858bd35f3acf7c72666980d749ebb1e2 +size 764022 diff --git a/vlm/train/tyd9yxioXgO/6.png b/vlm/train/tyd9yxioXgO/6.png new file mode 100644 index 0000000000000000000000000000000000000000..8c2f3f2073680e9729aa3a1964cf4b404132ad0f --- /dev/null +++ b/vlm/train/tyd9yxioXgO/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c1acf899b70c5867aa506afa95caa83793d401844ca0400fd37ee25c1c06da50 +size 794143 diff --git a/vlm/train/tyd9yxioXgO/7.png b/vlm/train/tyd9yxioXgO/7.png new file mode 100644 index 0000000000000000000000000000000000000000..ac8c41f4d77be268d2882b59cf729aaef0325d6c --- /dev/null +++ b/vlm/train/tyd9yxioXgO/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e7229b115881669027d1257084049bf223bcc6bab87911c406e3a9afb6b3d6b2 +size 570608 diff --git a/vlm/train/tyd9yxioXgO/8.png b/vlm/train/tyd9yxioXgO/8.png new file mode 100644 index 0000000000000000000000000000000000000000..217389450a95575522f9e3889807ed33293c3ddb --- /dev/null +++ b/vlm/train/tyd9yxioXgO/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6d0c469be113a399ddfca5c9483e5fdeed50a5c1881f4e56e48c48364d12007c +size 497795 diff --git a/vlm/train/tyd9yxioXgO/9.png b/vlm/train/tyd9yxioXgO/9.png new file mode 100644 index 0000000000000000000000000000000000000000..dee32a364eac7be6ad2a210d7d555f510b9a990c --- /dev/null +++ b/vlm/train/tyd9yxioXgO/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:643a58055572e50952ff444a228945d50e3fde5841dc32bc222152f877fa050e +size 561229 diff --git a/vlm/train/vlcVTDaufN/0.png b/vlm/train/vlcVTDaufN/0.png new file mode 100644 index 0000000000000000000000000000000000000000..7c7ee61a8cae6e3a17ad2194b5b676f39fcb687e --- /dev/null +++ b/vlm/train/vlcVTDaufN/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:25a984a804499565e0a902dee77b691c511cf3a50dba00778ba70773b14e1923 +size 492243 diff --git a/vlm/train/vlcVTDaufN/1.png b/vlm/train/vlcVTDaufN/1.png new file mode 100644 index 0000000000000000000000000000000000000000..0485babe92f361e82d7d949e5bc15e5520210953 --- /dev/null +++ b/vlm/train/vlcVTDaufN/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:351bd9bf8f2fae9813e84134054ab0d16aa79580efd634c19836eab0a92fe1c7 +size 563991 diff --git a/vlm/train/vlcVTDaufN/10.png b/vlm/train/vlcVTDaufN/10.png new file mode 100644 index 0000000000000000000000000000000000000000..ac17aa96928caff1fb0fb5d7e85f590784bbd65d --- /dev/null +++ b/vlm/train/vlcVTDaufN/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cdcbf39f1a14c15e91290990c1c47f84bfa30882efa953ab3398673bde4269ec +size 459233 diff --git a/vlm/train/vlcVTDaufN/2.png b/vlm/train/vlcVTDaufN/2.png new file mode 100644 index 0000000000000000000000000000000000000000..13f10c5de784e5dadfa75667af8cfbaa6c43ece4 --- /dev/null +++ b/vlm/train/vlcVTDaufN/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:14fcc47c774ee57f93a11c055157fbda87555d2e273efb9cf3859739c184c63e +size 563670 diff --git a/vlm/train/vlcVTDaufN/3.png b/vlm/train/vlcVTDaufN/3.png new file mode 100644 index 0000000000000000000000000000000000000000..956b9ac705d5697c81ee544649c4ff9c9168b63f --- /dev/null +++ b/vlm/train/vlcVTDaufN/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:82de7350571943dbfc3cd05546a22a6f304498841a7ddb56aa848804a79938cf +size 531513 diff --git a/vlm/train/vlcVTDaufN/4.png b/vlm/train/vlcVTDaufN/4.png new file mode 100644 index 0000000000000000000000000000000000000000..1a39726fa57c82fcc20c5332512a83bccbc0b613 --- /dev/null +++ b/vlm/train/vlcVTDaufN/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fa274d4a5c2967ced36de759ba7f25bbc5cb29c2ea6194d6caf60ec0bbb40e1 +size 541139 diff --git a/vlm/train/vlcVTDaufN/5.png b/vlm/train/vlcVTDaufN/5.png new file mode 100644 index 0000000000000000000000000000000000000000..4bc27ebb67c015807ef60006f8fa8de30d879351 --- /dev/null +++ b/vlm/train/vlcVTDaufN/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2e7bdd8210a1aba23efb6a4f4047fc81f7e20594bcd1bbf8f17cc989bc2707e1 +size 632115 diff --git a/vlm/train/vlcVTDaufN/6.png b/vlm/train/vlcVTDaufN/6.png new file mode 100644 index 0000000000000000000000000000000000000000..cc68ef0ceb4370875d701a200ff5c7327c5b1295 --- /dev/null +++ b/vlm/train/vlcVTDaufN/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f433c7529fd715de47ebcb508b50675dfa2244acf3b39b853705ebe84a42cb36 +size 516168 diff --git a/vlm/train/vlcVTDaufN/7.png b/vlm/train/vlcVTDaufN/7.png new file mode 100644 index 0000000000000000000000000000000000000000..e49a7d58609d73f2073693d254317919ec5ec1d0 --- /dev/null +++ b/vlm/train/vlcVTDaufN/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:feda00d15009b8a04adb0568a45bc89f02b1d4966bdef6ceab21758e935371d6 +size 673487 diff --git a/vlm/train/vlcVTDaufN/8.png b/vlm/train/vlcVTDaufN/8.png new file mode 100644 index 0000000000000000000000000000000000000000..43c80386590d6f085196c9a61c0f898d3d11f6f5 --- /dev/null +++ b/vlm/train/vlcVTDaufN/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1bf9474b7e3c57b5d2df4d91614153b9b25285c91c3a0a5487eb269f268e9ca2 +size 585170 diff --git a/vlm/train/vlcVTDaufN/9.png b/vlm/train/vlcVTDaufN/9.png new file mode 100644 index 0000000000000000000000000000000000000000..0ad189127830643b87b173404484c25be10633e6 --- /dev/null +++ b/vlm/train/vlcVTDaufN/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:70aa32e008e82656e3e73bcf59adb19f8955e5899c6932627e8698226778f03e +size 545184 diff --git a/vlm/train/wRXzOa2z5T/10.png b/vlm/train/wRXzOa2z5T/10.png new file mode 100644 index 0000000000000000000000000000000000000000..6d95f9c258c76a38c6c39c6201c43e7998343fc4 --- /dev/null +++ b/vlm/train/wRXzOa2z5T/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5e65d8fabe1fd3ad52a32163b69ee62a70afc0f8c48392e2e0b35a8618744128 +size 495344 diff --git a/vlm/train/wRXzOa2z5T/3.png b/vlm/train/wRXzOa2z5T/3.png new file mode 100644 index 0000000000000000000000000000000000000000..216cb84c1d449b1a748489d1142ab1828b26b773 --- /dev/null +++ b/vlm/train/wRXzOa2z5T/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:07a5a6a25fbb29a99eb54ceafda7f062dfc40aa04cb7f89dbdc68914fac74d51 +size 546887 diff --git a/vlm/train/wRXzOa2z5T/6.png b/vlm/train/wRXzOa2z5T/6.png new file mode 100644 index 0000000000000000000000000000000000000000..3ffbad0ce74279fbd5ea56efe6ab58b9d6c791c5 --- /dev/null +++ b/vlm/train/wRXzOa2z5T/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:48c1911dbcdac510896a0f9ae8f641d4c21047ec92b16e75c3dcda474748f1ae +size 599047 diff --git a/vlm/train/wTutcPE7zOC/0.png b/vlm/train/wTutcPE7zOC/0.png new file mode 100644 index 0000000000000000000000000000000000000000..cce86ff8bc52f0fc2a70193a90788b23ad2884ea --- /dev/null +++ b/vlm/train/wTutcPE7zOC/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9fbe3de9ede81ccc436ce98c38648434a1c4b93538d3938d7800a20b0d21efd2 +size 437955 diff --git a/vlm/train/wTutcPE7zOC/1.png b/vlm/train/wTutcPE7zOC/1.png new file mode 100644 index 0000000000000000000000000000000000000000..bc435f9a7ea934fd658d4e2f56677ec34a043bc6 --- /dev/null +++ b/vlm/train/wTutcPE7zOC/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f5da4c434a816cc435aea17e8d6cbc58798f45402934accb7153c7fb022583e4 +size 604269 diff --git a/vlm/train/wTutcPE7zOC/10.png b/vlm/train/wTutcPE7zOC/10.png new file mode 100644 index 0000000000000000000000000000000000000000..d98ac39dbd14ca12b9644f9f36d41f999beb7578 --- /dev/null +++ b/vlm/train/wTutcPE7zOC/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f51a8c10c7a8490f26fe166813ce926ce456f83ad07bef7d8249daa86d113902 +size 542252 diff --git a/vlm/train/wTutcPE7zOC/11.png b/vlm/train/wTutcPE7zOC/11.png new file mode 100644 index 0000000000000000000000000000000000000000..b473d06f575affe999e1dd6fb7b0cb24f26b10db --- /dev/null +++ b/vlm/train/wTutcPE7zOC/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:96394eee8f9d8db6239a377c966ef7c522eb4c5698590c333814b61bcf980765 +size 85995 diff --git a/vlm/train/wTutcPE7zOC/2.png b/vlm/train/wTutcPE7zOC/2.png new file mode 100644 index 0000000000000000000000000000000000000000..c02eab006d5e17f34259c0028a3c9b5e4c15c906 --- /dev/null +++ b/vlm/train/wTutcPE7zOC/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:19481749eab6088cd1f168ff7680aa65ed28a4029daeb3b1589697a8a42a0d16 +size 389496 diff --git a/vlm/train/wTutcPE7zOC/3.png b/vlm/train/wTutcPE7zOC/3.png new file mode 100644 index 0000000000000000000000000000000000000000..12390196f1774a866695a487750cd7fa314b4402 --- /dev/null +++ b/vlm/train/wTutcPE7zOC/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1f66d47f0992e499bdfa42e08d39768413b1680cebd2a3cd7ca96f1867002bd8 +size 403811 diff --git a/vlm/train/wTutcPE7zOC/4.png b/vlm/train/wTutcPE7zOC/4.png new file mode 100644 index 0000000000000000000000000000000000000000..55a2c2e021b3d3d8566fca22c2251960c98dc90d --- /dev/null +++ b/vlm/train/wTutcPE7zOC/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:429a6dce6ca5ff5cf2e19bbc1e3e9c638fe9144642374a619dcee6be0105eb97 +size 520863 diff --git a/vlm/train/wTutcPE7zOC/5.png b/vlm/train/wTutcPE7zOC/5.png new file mode 100644 index 0000000000000000000000000000000000000000..3494cd0ec0bf696bbffecd6e1a2def4f46f99921 --- /dev/null +++ b/vlm/train/wTutcPE7zOC/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:94da7ec4e292ca9ceac4ad8ff928e7281a4464df80cd06e3b0a09f799231f288 +size 505739 diff --git a/vlm/train/wTutcPE7zOC/6.png b/vlm/train/wTutcPE7zOC/6.png new file mode 100644 index 0000000000000000000000000000000000000000..23b05b4ce002239e58308705fc25e82cc2699006 --- /dev/null +++ b/vlm/train/wTutcPE7zOC/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ff6c06ae142e35c27838577730fffbda4300f757435eeef104c5111487dc35f2 +size 597685 diff --git a/vlm/train/wTutcPE7zOC/7.png b/vlm/train/wTutcPE7zOC/7.png new file mode 100644 index 0000000000000000000000000000000000000000..d791cb699caa6baa1c21d3ec70969cd3a80e61ac --- /dev/null +++ b/vlm/train/wTutcPE7zOC/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4066ec34a609ebcc1bc891a99849927ea0ce7c30e55ef7b562b718e4df813f1a +size 465436 diff --git a/vlm/train/wTutcPE7zOC/8.png b/vlm/train/wTutcPE7zOC/8.png new file mode 100644 index 0000000000000000000000000000000000000000..5e52926ae7060d4037458380924b1ff12279a3c6 --- /dev/null +++ b/vlm/train/wTutcPE7zOC/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b275e75d3512f81f3a6c418a824c8d9a614b8594c38af46a4c24ed273b0ceda2 +size 559052 diff --git a/vlm/train/wTutcPE7zOC/9.png b/vlm/train/wTutcPE7zOC/9.png new file mode 100644 index 0000000000000000000000000000000000000000..47ce1a1f0c1b8a67511438d92b7eeed7611a8b14 --- /dev/null +++ b/vlm/train/wTutcPE7zOC/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8dc685f7baf4a9a0e048cd90378588b598f0f878aa0fccd42567f8c1efc65dff +size 669263 diff --git a/vlm/train/wXgk_iCiYGo/0.png b/vlm/train/wXgk_iCiYGo/0.png new file mode 100644 index 0000000000000000000000000000000000000000..24b26e4c7e39945e16bf8d14748525f6239d40f1 --- /dev/null +++ b/vlm/train/wXgk_iCiYGo/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5026534512b9faa22e0990695101dc2ba670fbf5f6fcdc06a22e4a248c1d237e +size 491276 diff --git a/vlm/train/wXgk_iCiYGo/1.png b/vlm/train/wXgk_iCiYGo/1.png new file mode 100644 index 0000000000000000000000000000000000000000..1ddf56696ef9aab69622004c8f97bd7725afea03 --- /dev/null +++ b/vlm/train/wXgk_iCiYGo/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ad3b5499c946be8148c27982e1dfd74a36aa53c7d3097ae053c3dba4bb7ce58d +size 584533 diff --git a/vlm/train/wXgk_iCiYGo/10.png b/vlm/train/wXgk_iCiYGo/10.png new file mode 100644 index 0000000000000000000000000000000000000000..46c624e73a0c6eabace14df5d0bdfd4d866e6326 --- /dev/null +++ b/vlm/train/wXgk_iCiYGo/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a8044150bb66816c6412c649910f77b082ae7f6e86edf2c4925202bd771bbbea +size 550168 diff --git a/vlm/train/wXgk_iCiYGo/11.png b/vlm/train/wXgk_iCiYGo/11.png new file mode 100644 index 0000000000000000000000000000000000000000..c1a25517e88fc1f4c9a69c4e51aaa72aeb5a7407 --- /dev/null +++ b/vlm/train/wXgk_iCiYGo/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:284a2a2b2fa6e71118f8839e9395136cca3004da297209749290e3f990ce5db6 +size 514725 diff --git a/vlm/train/wXgk_iCiYGo/12.png b/vlm/train/wXgk_iCiYGo/12.png new file mode 100644 index 0000000000000000000000000000000000000000..25c364aeaf876a21fa86b0c30306e2a67edf8425 --- /dev/null +++ b/vlm/train/wXgk_iCiYGo/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d80b59b33e466f222e13a5930c50758debf8dfb03c0093c19378e47a9c5af0e4 +size 347961 diff --git a/vlm/train/wXgk_iCiYGo/13.png b/vlm/train/wXgk_iCiYGo/13.png new file mode 100644 index 0000000000000000000000000000000000000000..3b540b626cbe3fa8a9314d06f716312fb253f599 --- /dev/null +++ b/vlm/train/wXgk_iCiYGo/13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a046d3cdb1f414a0558f29afb3661e7bb02f6b6f7ae3b20c4bc254dcfc2a32d1 +size 314904 diff --git a/vlm/train/wXgk_iCiYGo/14.png b/vlm/train/wXgk_iCiYGo/14.png new file mode 100644 index 0000000000000000000000000000000000000000..2c0509cb8cddfa4574f46df08f0b00311fc487f1 --- /dev/null +++ b/vlm/train/wXgk_iCiYGo/14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b096f25db1387b02310a4a73da9af1a19209659333de125b61643e49691c5425 +size 258978 diff --git a/vlm/train/wXgk_iCiYGo/15.png b/vlm/train/wXgk_iCiYGo/15.png new file mode 100644 index 0000000000000000000000000000000000000000..58063d2abe5ae688488d271e508968a78e18509e --- /dev/null +++ b/vlm/train/wXgk_iCiYGo/15.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a61d56d58c6f9527bf2e70aba6ab00dc1e42122689a3a7ad0640729c4a484a80 +size 293608 diff --git a/vlm/train/wXgk_iCiYGo/16.png b/vlm/train/wXgk_iCiYGo/16.png new file mode 100644 index 0000000000000000000000000000000000000000..70ff0bec64e03cc2471b74791081a3087c34e395 --- /dev/null +++ b/vlm/train/wXgk_iCiYGo/16.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4d542ba63abc34b032da3fc8b3a7240b825f2604d9fcac4902685263b3b86084 +size 275632 diff --git a/vlm/train/wXgk_iCiYGo/17.png b/vlm/train/wXgk_iCiYGo/17.png new file mode 100644 index 0000000000000000000000000000000000000000..3bc148a4be8f10e58f23d48b56f91215a42075ad --- /dev/null +++ b/vlm/train/wXgk_iCiYGo/17.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:20860965d16fa54a1777986f5d3b9c7b7a74c176e6b78ae887f176e46656cb13 +size 481992 diff --git a/vlm/train/wXgk_iCiYGo/18.png b/vlm/train/wXgk_iCiYGo/18.png new file mode 100644 index 0000000000000000000000000000000000000000..bb4c480c862d942f14799e2207549a7811e9384d --- /dev/null +++ b/vlm/train/wXgk_iCiYGo/18.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:11b9290adb1528b4208d7de84ee9ecc02e7ce07bdf27efdc348dec9273bd1536 +size 244039 diff --git a/vlm/train/wXgk_iCiYGo/19.png b/vlm/train/wXgk_iCiYGo/19.png new file mode 100644 index 0000000000000000000000000000000000000000..18c7a6d53cb4dd081bc63ce7ef5402d788c5118b --- /dev/null +++ b/vlm/train/wXgk_iCiYGo/19.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e3aa0555915b5bd5ca69db73a92834622c6d6e18919f7993b3fdb85bbc8f4e9c +size 441043 diff --git a/vlm/train/wXgk_iCiYGo/2.png b/vlm/train/wXgk_iCiYGo/2.png new file mode 100644 index 0000000000000000000000000000000000000000..28d90d38cc015dfb477a321f843d100866be79da --- /dev/null +++ b/vlm/train/wXgk_iCiYGo/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:11bf763269aa9b76bc97896e275f9f1e449a85799d694c9747f73fdbfb532180 +size 455272 diff --git a/vlm/train/wXgk_iCiYGo/20.png b/vlm/train/wXgk_iCiYGo/20.png new file mode 100644 index 0000000000000000000000000000000000000000..0de585273c71ed89b7fbe6e373a8da9bea811ba2 --- /dev/null +++ b/vlm/train/wXgk_iCiYGo/20.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7c300b0be97b9608479c2beab537b11bdf7b21506ed066d3a3dbb7a1b0cb248d +size 131583 diff --git a/vlm/train/wXgk_iCiYGo/21.png b/vlm/train/wXgk_iCiYGo/21.png new file mode 100644 index 0000000000000000000000000000000000000000..4b948b1eea2fae0dd6014e324d5df567ebb2637a --- /dev/null +++ b/vlm/train/wXgk_iCiYGo/21.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:088116aebf654c7154761876930e138efefc90b6895cfd2c5618d9c8b46f82a2 +size 131466 diff --git a/vlm/train/wXgk_iCiYGo/22.png b/vlm/train/wXgk_iCiYGo/22.png new file mode 100644 index 0000000000000000000000000000000000000000..3d8733d00c30f8701fdfb58dd5102402b392bb19 --- /dev/null +++ b/vlm/train/wXgk_iCiYGo/22.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:840deecab8a79f3d3b82a3f10bcf1f07fcd2909db1bbb67b4759fbd58945ed0e +size 135699 diff --git a/vlm/train/wXgk_iCiYGo/23.png b/vlm/train/wXgk_iCiYGo/23.png new file mode 100644 index 0000000000000000000000000000000000000000..a5eb9f123070578fb682f2e2795a0e96f2096ac7 --- /dev/null +++ b/vlm/train/wXgk_iCiYGo/23.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aadb27b53256952f919f394bfceed6f9bb8b8cadab1a75ff0ff70f37e4a5ac67 +size 302866 diff --git a/vlm/train/wXgk_iCiYGo/24.png b/vlm/train/wXgk_iCiYGo/24.png new file mode 100644 index 0000000000000000000000000000000000000000..8600986a3cecaf39b10a8360493bed156a7828d5 --- /dev/null +++ b/vlm/train/wXgk_iCiYGo/24.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b56c9bf81e8ad2712ec65a98e6dbbeab81f7d3324138070f72c293ed50bd620f +size 134765 diff --git a/vlm/train/wXgk_iCiYGo/25.png b/vlm/train/wXgk_iCiYGo/25.png new file mode 100644 index 0000000000000000000000000000000000000000..a110dbfd649423d91ec293430c6babe26dd00860 --- /dev/null +++ b/vlm/train/wXgk_iCiYGo/25.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a807e42151b0a1f814ae4b93338137bd7552c7f8a793f3f2e32590efc4953fea +size 505300 diff --git a/vlm/train/wXgk_iCiYGo/26.png b/vlm/train/wXgk_iCiYGo/26.png new file mode 100644 index 0000000000000000000000000000000000000000..415eab08e7a6ca36a9ef730faca3115b004f80b0 --- /dev/null +++ b/vlm/train/wXgk_iCiYGo/26.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:12a986afd6840efc4a93509c2129c72856869111853a6a26e2aac8d2c6237fbd +size 274006 diff --git a/vlm/train/wXgk_iCiYGo/27.png b/vlm/train/wXgk_iCiYGo/27.png new file mode 100644 index 0000000000000000000000000000000000000000..2fbac85cd18235b9c2df3de280fe16e9bc8de371 --- /dev/null +++ b/vlm/train/wXgk_iCiYGo/27.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d7c9d4154478957978233bf3612952fbad6afeb3404866baeb5e3bfd0bcbd5a0 +size 195859 diff --git a/vlm/train/wXgk_iCiYGo/3.png b/vlm/train/wXgk_iCiYGo/3.png new file mode 100644 index 0000000000000000000000000000000000000000..59197b9e96babd6fbef4101cc87d2fd9c0bd3be9 --- /dev/null +++ b/vlm/train/wXgk_iCiYGo/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:79a51c6c55ffdbb3bfd371d71a0ac860df32760c0fcfbc3c3b392d66477b4d5e +size 479435 diff --git a/vlm/train/wXgk_iCiYGo/4.png b/vlm/train/wXgk_iCiYGo/4.png new file mode 100644 index 0000000000000000000000000000000000000000..d7fa6be5f31af003d84933fadef8684816d943eb --- /dev/null +++ b/vlm/train/wXgk_iCiYGo/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:42e0f827c1f9e09a22da3c20d639668ddfcfbef9e7d72112f7c3824917fdbb1f +size 486879 diff --git a/vlm/train/wXgk_iCiYGo/5.png b/vlm/train/wXgk_iCiYGo/5.png new file mode 100644 index 0000000000000000000000000000000000000000..7c0e57efc2de25d40335656745a1729035d538a2 --- /dev/null +++ b/vlm/train/wXgk_iCiYGo/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3245a83746431c22768bd41441095f94fa0c80ef30d49ebeb3794b066698193c +size 593911 diff --git a/vlm/train/wXgk_iCiYGo/6.png b/vlm/train/wXgk_iCiYGo/6.png new file mode 100644 index 0000000000000000000000000000000000000000..5d04a48bb5eb1d4f859451014e3d3c699f48c977 --- /dev/null +++ b/vlm/train/wXgk_iCiYGo/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:014439c6b1b6cf08e35f97f6d8f8524e2b0f20889d0a7ea527b9157ecc8c4c39 +size 446318 diff --git a/vlm/train/wXgk_iCiYGo/7.png b/vlm/train/wXgk_iCiYGo/7.png new file mode 100644 index 0000000000000000000000000000000000000000..0de85b39e96d0b1ca12c458fb77d79856685abb4 --- /dev/null +++ b/vlm/train/wXgk_iCiYGo/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:601e5858f006b6c7e3368c0a5b2577de89c61a3a45f5e93ee9fc064a894a2a75 +size 343742 diff --git a/vlm/train/wXgk_iCiYGo/8.png b/vlm/train/wXgk_iCiYGo/8.png new file mode 100644 index 0000000000000000000000000000000000000000..26b10776acb29e8c185b29d40c380fa220fb0659 --- /dev/null +++ b/vlm/train/wXgk_iCiYGo/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3abacc0d266d5f2c422e2ba4f03bbe121eb9a07647198c00cbbe18aa6cfb028d +size 559227 diff --git a/vlm/train/wXgk_iCiYGo/9.png b/vlm/train/wXgk_iCiYGo/9.png new file mode 100644 index 0000000000000000000000000000000000000000..3c3b173a791158fe7611f157747ff24bd562dd8c --- /dev/null +++ b/vlm/train/wXgk_iCiYGo/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f7af96bf41274011d925a40f6c652e54c538b0c9774fc9901150484c2bc44af2 +size 521933 diff --git a/vlm/train/x8gM-4nFq9b/0.png b/vlm/train/x8gM-4nFq9b/0.png new file mode 100644 index 0000000000000000000000000000000000000000..3a4f7abf2df0f49df4cb8e802fae98dfe0c0a0cd --- /dev/null +++ b/vlm/train/x8gM-4nFq9b/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:21648de2eb49306536682cf7aad8b2e7547e0d58ce9cbda9a10f1ad4d91c2f7f +size 408536 diff --git a/vlm/train/x8gM-4nFq9b/1.png b/vlm/train/x8gM-4nFq9b/1.png new file mode 100644 index 0000000000000000000000000000000000000000..d50cec55c231381eea1f74d7d502c80f60bc5620 --- /dev/null +++ b/vlm/train/x8gM-4nFq9b/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:017c10e22a4d2f6d81179035cbdbeb892f30cd35a8ff28fde9a4cab6f3c1d376 +size 533109 diff --git a/vlm/train/x8gM-4nFq9b/10.png b/vlm/train/x8gM-4nFq9b/10.png new file mode 100644 index 0000000000000000000000000000000000000000..d19504757a49c94965ac616a7bd57abef5a62b9e --- /dev/null +++ b/vlm/train/x8gM-4nFq9b/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6f9638548075e89ee2d5cccbfb701e40a3c7fa38d6025de0b2b677ed8e10b0f6 +size 533971 diff --git a/vlm/train/x8gM-4nFq9b/11.png b/vlm/train/x8gM-4nFq9b/11.png new file mode 100644 index 0000000000000000000000000000000000000000..828c71d7c8f08304c0c571b44a00680cab5a17bb --- /dev/null +++ b/vlm/train/x8gM-4nFq9b/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aa61bcf4a7df5b521c3f4569f1e9e84154d82850a7a2771c88a373a785c645a4 +size 476422 diff --git a/vlm/train/x8gM-4nFq9b/12.png b/vlm/train/x8gM-4nFq9b/12.png new file mode 100644 index 0000000000000000000000000000000000000000..8926c163f35aa20395ba4038efa65e85393610b1 --- /dev/null +++ b/vlm/train/x8gM-4nFq9b/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d7c3cb36ae2c80d73d13768b81e69b6501ab799fa35a72f1c1bafe87d77a5334 +size 370424 diff --git a/vlm/train/x8gM-4nFq9b/2.png b/vlm/train/x8gM-4nFq9b/2.png new file mode 100644 index 0000000000000000000000000000000000000000..fbafc8cd55becc0fa75f85b40346bd96d7d4faab --- /dev/null +++ b/vlm/train/x8gM-4nFq9b/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:339527bc46a858b9b63455764b62abccb6527331a26853eaef27bc58f1e351ee +size 589819 diff --git a/vlm/train/x8gM-4nFq9b/3.png b/vlm/train/x8gM-4nFq9b/3.png new file mode 100644 index 0000000000000000000000000000000000000000..924f278c1c50e5a370f4271d34d826cb5ad4f53d --- /dev/null +++ b/vlm/train/x8gM-4nFq9b/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:08ca96f60e944170ed294d532b5ad5cddc237c2170429f370e0e1ec0db3f72d7 +size 503053 diff --git a/vlm/train/x8gM-4nFq9b/4.png b/vlm/train/x8gM-4nFq9b/4.png new file mode 100644 index 0000000000000000000000000000000000000000..4a43acc584132fb01c14a55013ed3d21c308b88f --- /dev/null +++ b/vlm/train/x8gM-4nFq9b/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4657c8271b94f8ea716b973e69b1fc49339ac24d2d05c2dedfde9fdb7c086c45 +size 456761 diff --git a/vlm/train/x8gM-4nFq9b/5.png b/vlm/train/x8gM-4nFq9b/5.png new file mode 100644 index 0000000000000000000000000000000000000000..4136511093dbf8385b72a2d34235fc08a8f22959 --- /dev/null +++ b/vlm/train/x8gM-4nFq9b/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c6e35009c687db0dc374a64c3b0537d743c56ab4c6dd74fc4b1cf0013d8ce151 +size 516895 diff --git a/vlm/train/x8gM-4nFq9b/6.png b/vlm/train/x8gM-4nFq9b/6.png new file mode 100644 index 0000000000000000000000000000000000000000..c54339b04755c3d5bd183b5cc9db52acc56efa31 --- /dev/null +++ b/vlm/train/x8gM-4nFq9b/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:935fab8b9c948a9c9073d78e6284d954fd362510eb4d65169799e90224b67248 +size 475694 diff --git a/vlm/train/x8gM-4nFq9b/7.png b/vlm/train/x8gM-4nFq9b/7.png new file mode 100644 index 0000000000000000000000000000000000000000..ba5436dad63898cd5727de8a4bca03bf0944d876 --- /dev/null +++ b/vlm/train/x8gM-4nFq9b/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a3c9fd3d821ab07e54384f6d84a9db879621c012e9f32b4f8d4355a68cc0bcd7 +size 532175 diff --git a/vlm/train/x8gM-4nFq9b/8.png b/vlm/train/x8gM-4nFq9b/8.png new file mode 100644 index 0000000000000000000000000000000000000000..aff0136c4d0611de999606080e0f425c54edea53 --- /dev/null +++ b/vlm/train/x8gM-4nFq9b/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:14608d93c745b0f7b68ea4a66dd3ff53191bb213a016455cc4138fcfbc3d5683 +size 409249 diff --git a/vlm/train/x8gM-4nFq9b/9.png b/vlm/train/x8gM-4nFq9b/9.png new file mode 100644 index 0000000000000000000000000000000000000000..d27f4164ce8f6157137930a2ecb5c79d718b2d69 --- /dev/null +++ b/vlm/train/x8gM-4nFq9b/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5a986606759ef3336135ca098ac01e95cd354953815bb97e2971529b4bb0eee8 +size 480604